Package com.microsoft.graph.models
Class CustomCalloutExtension
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.CustomCalloutExtension
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
AccessPackageAssignmentRequestWorkflowExtension,AccessPackageAssignmentWorkflowExtension,CustomTaskExtension
public class CustomCalloutExtension
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Custom Callout Extension.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Authentication Configuration.The Client Configuration.The Description.The Display Name.The Endpoint Configuration. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
authenticationConfiguration
@SerializedName(value="authenticationConfiguration", alternate="AuthenticationConfiguration") @Expose @Nullable public CustomExtensionAuthenticationConfiguration authenticationConfigurationThe Authentication Configuration. Configuration for securing the API call to the logic app. For example, using OAuth client credentials flow. -
clientConfiguration
@SerializedName(value="clientConfiguration", alternate="ClientConfiguration") @Expose @Nullable public CustomExtensionClientConfiguration clientConfigurationThe Client Configuration. HTTP connection settings that define how long Azure AD can wait for a connection to a logic app, how many times you can retry a timed-out connection and the exception scenarios when retries are allowed. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. Description for the customCalloutExtension object. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name for the customCalloutExtension object. -
endpointConfiguration
@SerializedName(value="endpointConfiguration", alternate="EndpointConfiguration") @Expose @Nullable public CustomExtensionEndpointConfiguration endpointConfigurationThe Endpoint Configuration. The type and details for configuring the endpoint to call the logic app's workflow.
-
-
Constructor Details
-
CustomCalloutExtension
public CustomCalloutExtension()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-