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

com.pulumi.azurenative.securityinsights.inputs.AutomationRulePropertyArrayChangedValuesConditionArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.inputs;

import com.pulumi.azurenative.securityinsights.enums.AutomationRulePropertyArrayChangedConditionSupportedArrayType;
import com.pulumi.azurenative.securityinsights.enums.AutomationRulePropertyArrayChangedConditionSupportedChangeType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class AutomationRulePropertyArrayChangedValuesConditionArgs extends com.pulumi.resources.ResourceArgs {

    public static final AutomationRulePropertyArrayChangedValuesConditionArgs Empty = new AutomationRulePropertyArrayChangedValuesConditionArgs();

    @Import(name="arrayType")
    private @Nullable Output> arrayType;

    public Optional>> arrayType() {
        return Optional.ofNullable(this.arrayType);
    }

    @Import(name="changeType")
    private @Nullable Output> changeType;

    public Optional>> changeType() {
        return Optional.ofNullable(this.changeType);
    }

    private AutomationRulePropertyArrayChangedValuesConditionArgs() {}

    private AutomationRulePropertyArrayChangedValuesConditionArgs(AutomationRulePropertyArrayChangedValuesConditionArgs $) {
        this.arrayType = $.arrayType;
        this.changeType = $.changeType;
    }

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

    public static final class Builder {
        private AutomationRulePropertyArrayChangedValuesConditionArgs $;

        public Builder() {
            $ = new AutomationRulePropertyArrayChangedValuesConditionArgs();
        }

        public Builder(AutomationRulePropertyArrayChangedValuesConditionArgs defaults) {
            $ = new AutomationRulePropertyArrayChangedValuesConditionArgs(Objects.requireNonNull(defaults));
        }

        public Builder arrayType(@Nullable Output> arrayType) {
            $.arrayType = arrayType;
            return this;
        }

        public Builder arrayType(Either arrayType) {
            return arrayType(Output.of(arrayType));
        }

        public Builder arrayType(String arrayType) {
            return arrayType(Either.ofLeft(arrayType));
        }

        public Builder arrayType(AutomationRulePropertyArrayChangedConditionSupportedArrayType arrayType) {
            return arrayType(Either.ofRight(arrayType));
        }

        public Builder changeType(@Nullable Output> changeType) {
            $.changeType = changeType;
            return this;
        }

        public Builder changeType(Either changeType) {
            return changeType(Output.of(changeType));
        }

        public Builder changeType(String changeType) {
            return changeType(Either.ofLeft(changeType));
        }

        public Builder changeType(AutomationRulePropertyArrayChangedConditionSupportedChangeType changeType) {
            return changeType(Either.ofRight(changeType));
        }

        public AutomationRulePropertyArrayChangedValuesConditionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy