WebActivityArgs

data class WebActivityArgs(val authentication: Output<WebActivityAuthenticationArgs>? = null, val body: Output<Any>? = null, val connectVia: Output<IntegrationRuntimeReferenceArgs>? = null, val datasets: Output<List<DatasetReferenceArgs>>? = null, val dependsOn: Output<List<ActivityDependencyArgs>>? = null, val description: Output<String>? = null, val disableCertValidation: Output<Boolean>? = null, val headers: Output<Map<String, Any>>? = null, val httpRequestTimeout: Output<Any>? = null, val linkedServiceName: Output<LinkedServiceReferenceArgs>? = null, val linkedServices: Output<List<LinkedServiceReferenceArgs>>? = null, val method: Output<Either<String, WebActivityMethod>>, val name: Output<String>, val onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, val policy: Output<ActivityPolicyArgs>? = null, val state: Output<Either<String, ActivityState>>? = null, val turnOffAsync: Output<Boolean>? = null, val type: Output<String>, val url: Output<Any>, val userProperties: Output<List<UserPropertyArgs>>? = null) : ConvertibleToJava<WebActivityArgs>

Web activity.

Constructors

Link copied to clipboard
constructor(authentication: Output<WebActivityAuthenticationArgs>? = null, body: Output<Any>? = null, connectVia: Output<IntegrationRuntimeReferenceArgs>? = null, datasets: Output<List<DatasetReferenceArgs>>? = null, dependsOn: Output<List<ActivityDependencyArgs>>? = null, description: Output<String>? = null, disableCertValidation: Output<Boolean>? = null, headers: Output<Map<String, Any>>? = null, httpRequestTimeout: Output<Any>? = null, linkedServiceName: Output<LinkedServiceReferenceArgs>? = null, linkedServices: Output<List<LinkedServiceReferenceArgs>>? = null, method: Output<Either<String, WebActivityMethod>>, name: Output<String>, onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null, policy: Output<ActivityPolicyArgs>? = null, state: Output<Either<String, ActivityState>>? = null, turnOffAsync: Output<Boolean>? = null, type: Output<String>, url: Output<Any>, userProperties: Output<List<UserPropertyArgs>>? = null)

Properties

Link copied to clipboard

Authentication method used for calling the endpoint.

Link copied to clipboard
val body: Output<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
val datasets: Output<List<DatasetReferenceArgs>>? = null

List of datasets passed to web endpoint.

Link copied to clipboard
val dependsOn: Output<List<ActivityDependencyArgs>>? = null

Activity depends on condition.

Link copied to clipboard
val description: Output<String>? = null

Activity description.

Link copied to clipboard
val disableCertValidation: Output<Boolean>? = null

When set to true, Certificate validation will be disabled.

Link copied to clipboard
val headers: Output<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: Output<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
val method: Output<Either<String, WebActivityMethod>>

Rest API method for target endpoint.

Link copied to clipboard
val name: Output<String>

Activity name.

Link copied to clipboard
val onInactiveMarkAs: Output<Either<String, ActivityOnInactiveMarkAs>>? = null

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
val policy: Output<ActivityPolicyArgs>? = null

Activity policy.

Link copied to clipboard
val state: Output<Either<String, ActivityState>>? = 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: Output<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
val type: Output<String>

Type of activity. Expected value is 'WebActivity'.

Link copied to clipboard
val url: Output<Any>

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

Link copied to clipboard
val userProperties: Output<List<UserPropertyArgs>>? = null

Activity user properties.

Functions

Link copied to clipboard
open override fun toJava(): WebActivityArgs