All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.datafactory.outputs.SetVariableActivityResponse Maven / Gradle / Ivy

// *** 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.SecureInputOutputPolicyResponse;
import com.pulumi.azurenative.datafactory.outputs.UserPropertyResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
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 SetVariableActivityResponse {
    /**
     * @return Activity depends on condition.
     * 
     */
    private @Nullable List dependsOn;
    /**
     * @return Activity description.
     * 
     */
    private @Nullable String description;
    /**
     * @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 SecureInputOutputPolicyResponse policy;
    /**
     * @return If set to true, it sets the pipeline run return value.
     * 
     */
    private @Nullable Boolean setSystemVariable;
    /**
     * @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 'SetVariable'.
     * 
     */
    private String type;
    /**
     * @return Activity user properties.
     * 
     */
    private @Nullable List userProperties;
    /**
     * @return Value to be set. Could be a static value or Expression.
     * 
     */
    private @Nullable Object value;
    /**
     * @return Name of the variable whose value needs to be set.
     * 
     */
    private @Nullable String variableName;

    private SetVariableActivityResponse() {}
    /**
     * @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 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 If set to true, it sets the pipeline run return value.
     * 
     */
    public Optional setSystemVariable() {
        return Optional.ofNullable(this.setSystemVariable);
    }
    /**
     * @return Activity state. This is an optional property and if not provided, the state will be Active by default.
     * 
     */
    public Optional state() {
        return Optional.ofNullable(this.state);
    }
    /**
     * @return Type of activity.
     * Expected value is 'SetVariable'.
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return Activity user properties.
     * 
     */
    public List userProperties() {
        return this.userProperties == null ? List.of() : this.userProperties;
    }
    /**
     * @return Value to be set. Could be a static value or Expression.
     * 
     */
    public Optional value() {
        return Optional.ofNullable(this.value);
    }
    /**
     * @return Name of the variable whose value needs to be set.
     * 
     */
    public Optional variableName() {
        return Optional.ofNullable(this.variableName);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(SetVariableActivityResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List dependsOn;
        private @Nullable String description;
        private String name;
        private @Nullable String onInactiveMarkAs;
        private @Nullable SecureInputOutputPolicyResponse policy;
        private @Nullable Boolean setSystemVariable;
        private @Nullable String state;
        private String type;
        private @Nullable List userProperties;
        private @Nullable Object value;
        private @Nullable String variableName;
        public Builder() {}
        public Builder(SetVariableActivityResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dependsOn = defaults.dependsOn;
    	      this.description = defaults.description;
    	      this.name = defaults.name;
    	      this.onInactiveMarkAs = defaults.onInactiveMarkAs;
    	      this.policy = defaults.policy;
    	      this.setSystemVariable = defaults.setSystemVariable;
    	      this.state = defaults.state;
    	      this.type = defaults.type;
    	      this.userProperties = defaults.userProperties;
    	      this.value = defaults.value;
    	      this.variableName = defaults.variableName;
        }

        @CustomType.Setter
        public Builder dependsOn(@Nullable List dependsOn) {

            this.dependsOn = dependsOn;
            return this;
        }
        public Builder dependsOn(ActivityDependencyResponse... dependsOn) {
            return dependsOn(List.of(dependsOn));
        }
        @CustomType.Setter
        public Builder description(@Nullable String description) {

            this.description = description;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("SetVariableActivityResponse", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder onInactiveMarkAs(@Nullable String onInactiveMarkAs) {

            this.onInactiveMarkAs = onInactiveMarkAs;
            return this;
        }
        @CustomType.Setter
        public Builder policy(@Nullable SecureInputOutputPolicyResponse policy) {

            this.policy = policy;
            return this;
        }
        @CustomType.Setter
        public Builder setSystemVariable(@Nullable Boolean setSystemVariable) {

            this.setSystemVariable = setSystemVariable;
            return this;
        }
        @CustomType.Setter
        public Builder state(@Nullable String state) {

            this.state = state;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("SetVariableActivityResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder userProperties(@Nullable List userProperties) {

            this.userProperties = userProperties;
            return this;
        }
        public Builder userProperties(UserPropertyResponse... userProperties) {
            return userProperties(List.of(userProperties));
        }
        @CustomType.Setter
        public Builder value(@Nullable Object value) {

            this.value = value;
            return this;
        }
        @CustomType.Setter
        public Builder variableName(@Nullable String variableName) {

            this.variableName = variableName;
            return this;
        }
        public SetVariableActivityResponse build() {
            final var _resultValue = new SetVariableActivityResponse();
            _resultValue.dependsOn = dependsOn;
            _resultValue.description = description;
            _resultValue.name = name;
            _resultValue.onInactiveMarkAs = onInactiveMarkAs;
            _resultValue.policy = policy;
            _resultValue.setSystemVariable = setSystemVariable;
            _resultValue.state = state;
            _resultValue.type = type;
            _resultValue.userProperties = userProperties;
            _resultValue.value = value;
            _resultValue.variableName = variableName;
            return _resultValue;
        }
    }
}