
com.pulumi.azurenative.datafactory.outputs.ScriptActivityResponse 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.ScriptActivityScriptBlockResponse;
import com.pulumi.azurenative.datafactory.outputs.ScriptActivityTypePropertiesResponseLogSettings;
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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ScriptActivityResponse {
/**
* @return Activity depends on condition.
*
*/
private @Nullable List dependsOn;
/**
* @return Activity description.
*
*/
private @Nullable String description;
/**
* @return Linked service reference.
*
*/
private LinkedServiceReferenceResponse linkedServiceName;
/**
* @return Log settings of script activity.
*
*/
private @Nullable ScriptActivityTypePropertiesResponseLogSettings logSettings;
/**
* @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 ScriptBlock execution timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
private @Nullable Object scriptBlockExecutionTimeout;
/**
* @return Array of script blocks. Type: array.
*
*/
private @Nullable List scripts;
/**
* @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 'Script'.
*
*/
private String type;
/**
* @return Activity user properties.
*
*/
private @Nullable List userProperties;
private ScriptActivityResponse() {}
/**
* @return Activity depends on condition.
*
*/
public List dependsOn() {
return this.dependsOn == null ? List.of() : this.dependsOn;
}
/**
* @return Activity description.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Linked service reference.
*
*/
public LinkedServiceReferenceResponse linkedServiceName() {
return this.linkedServiceName;
}
/**
* @return Log settings of script activity.
*
*/
public Optional logSettings() {
return Optional.ofNullable(this.logSettings);
}
/**
* @return Activity name.
*
*/
public String name() {
return this.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.
*
*/
public Optional onInactiveMarkAs() {
return Optional.ofNullable(this.onInactiveMarkAs);
}
/**
* @return Activity policy.
*
*/
public Optional policy() {
return Optional.ofNullable(this.policy);
}
/**
* @return ScriptBlock execution timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy