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

com.pulumi.azurenative.securityinsights.outputs.AutomationRulePropertyArrayChangedValuesConditionResponse 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.securityinsights.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class AutomationRulePropertyArrayChangedValuesConditionResponse {
    private @Nullable String arrayType;
    private @Nullable String changeType;

    private AutomationRulePropertyArrayChangedValuesConditionResponse() {}
    public Optional arrayType() {
        return Optional.ofNullable(this.arrayType);
    }
    public Optional changeType() {
        return Optional.ofNullable(this.changeType);
    }

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

    public static Builder builder(AutomationRulePropertyArrayChangedValuesConditionResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String arrayType;
        private @Nullable String changeType;
        public Builder() {}
        public Builder(AutomationRulePropertyArrayChangedValuesConditionResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.arrayType = defaults.arrayType;
    	      this.changeType = defaults.changeType;
        }

        @CustomType.Setter
        public Builder arrayType(@Nullable String arrayType) {

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

            this.changeType = changeType;
            return this;
        }
        public AutomationRulePropertyArrayChangedValuesConditionResponse build() {
            final var _resultValue = new AutomationRulePropertyArrayChangedValuesConditionResponse();
            _resultValue.arrayType = arrayType;
            _resultValue.changeType = changeType;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy