com.pulumi.azurenative.datafactory.outputs.AzureFunctionActivityResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.ActivityDependencyResponse;
import com.pulumi.azurenative.datafactory.outputs.ActivityPolicyResponse;
import com.pulumi.azurenative.datafactory.outputs.LinkedServiceReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.UserPropertyResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AzureFunctionActivityResponse {
/**
* @return 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).
*
*/
private @Nullable Object body;
/**
* @return Activity depends on condition.
*
*/
private @Nullable List dependsOn;
/**
* @return Activity description.
*
*/
private @Nullable String description;
/**
* @return Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
*
*/
private Object functionName;
/**
* @return 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).
*
*/
private @Nullable Map headers;
/**
* @return Linked service reference.
*
*/
private @Nullable LinkedServiceReferenceResponse linkedServiceName;
/**
* @return Rest API method for target endpoint.
*
*/
private String method;
/**
* @return Activity name.
*
*/
private String name;
/**
* @return 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.
*
*/
private @Nullable String onInactiveMarkAs;
/**
* @return Activity policy.
*
*/
private @Nullable ActivityPolicyResponse policy;
/**
* @return Activity state. This is an optional property and if not provided, the state will be Active by default.
*
*/
private @Nullable String state;
/**
* @return Type of activity.
* Expected value is 'AzureFunctionActivity'.
*
*/
private String type;
/**
* @return Activity user properties.
*
*/
private @Nullable List userProperties;
private AzureFunctionActivityResponse() {}
/**
* @return 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).
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy