WebActivityResponse

data class WebActivityResponse(val authentication: WebActivityAuthenticationResponse? = null, val body: Any? = null, val connectVia: IntegrationRuntimeReferenceResponse? = null, val datasets: List<DatasetReferenceResponse>? = null, val dependsOn: List<ActivityDependencyResponse>? = null, val description: String? = null, val disableCertValidation: Boolean? = null, val headers: Map<String, Any>? = null, val httpRequestTimeout: Any? = null, val linkedServiceName: LinkedServiceReferenceResponse? = null, val linkedServices: List<LinkedServiceReferenceResponse>? = null, val method: String, val name: String, val onInactiveMarkAs: String? = null, val policy: ActivityPolicyResponse? = null, val state: String? = null, val turnOffAsync: Boolean? = null, val type: String, val url: Any, val userProperties: List<UserPropertyResponse>? = null)

Web activity.

Constructors

Link copied to clipboard
constructor(authentication: WebActivityAuthenticationResponse? = null, body: Any? = null, connectVia: IntegrationRuntimeReferenceResponse? = null, datasets: List<DatasetReferenceResponse>? = null, dependsOn: List<ActivityDependencyResponse>? = null, description: String? = null, disableCertValidation: Boolean? = null, headers: Map<String, Any>? = null, httpRequestTimeout: Any? = null, linkedServiceName: LinkedServiceReferenceResponse? = null, linkedServices: List<LinkedServiceReferenceResponse>? = null, method: String, name: String, onInactiveMarkAs: String? = null, policy: ActivityPolicyResponse? = null, state: String? = null, turnOffAsync: Boolean? = null, type: String, url: Any, userProperties: List<UserPropertyResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Authentication method used for calling the endpoint.

Link copied to clipboard
val body: Any? = null

Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).

Link copied to clipboard

The integration runtime reference.

Link copied to clipboard

List of datasets passed to web endpoint.

Link copied to clipboard

Activity depends on condition.

Link copied to clipboard
val description: String? = null

Activity description.

Link copied to clipboard

When set to true, Certificate validation will be disabled.

Link copied to clipboard
val headers: Map<String, Any>? = null

Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).

Link copied to clipboard
val httpRequestTimeout: Any? = null

Timeout for the HTTP request to get a response. Format is in TimeSpan (hh:mm:ss). This value is the timeout to get a response, not the activity timeout. The default value is 00:01:00 (1 minute). The range is from 1 to 10 minutes

Link copied to clipboard

Linked service reference.

Link copied to clipboard

List of linked services passed to web endpoint.

Link copied to clipboard

Rest API method for target endpoint.

Link copied to clipboard

Activity name.

Link copied to clipboard

Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.

Link copied to clipboard

Activity policy.

Link copied to clipboard
val state: String? = null

Activity state. This is an optional property and if not provided, the state will be Active by default.

Link copied to clipboard
val turnOffAsync: Boolean? = null

Option to disable invoking HTTP GET on location given in response header of a HTTP 202 Response. If set true, it stops invoking HTTP GET on http location given in response header. If set false then continues to invoke HTTP GET call on location given in http response headers.

Link copied to clipboard

Type of activity. Expected value is 'WebActivity'.

Link copied to clipboard
val url: Any

Web activity target endpoint and path. Type: string (or Expression with resultType string).

Link copied to clipboard

Activity user properties.