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

com.pulumi.azurenative.awsconnector.inputs.ModifyingPropertiesArgs 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.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.PropertyValueTypeEnumValueArgs;
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;


/**
 * Definition of ModifyingProperties
 * 
 */
public final class ModifyingPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final ModifyingPropertiesArgs Empty = new ModifyingPropertiesArgs();

    /**
     * <p>The current value of the domain property that is being modified.</p>
     * 
     */
    @Import(name="activeValue")
    private @Nullable Output activeValue;

    /**
     * @return <p>The current value of the domain property that is being modified.</p>
     * 
     */
    public Optional> activeValue() {
        return Optional.ofNullable(this.activeValue);
    }

    /**
     * <p>The name of the property that is currently being modified.</p>
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return <p>The name of the property that is currently being modified.</p>
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * <p>The value that the property that is currently being modified will eventually have.</p>
     * 
     */
    @Import(name="pendingValue")
    private @Nullable Output pendingValue;

    /**
     * @return <p>The value that the property that is currently being modified will eventually have.</p>
     * 
     */
    public Optional> pendingValue() {
        return Optional.ofNullable(this.pendingValue);
    }

    /**
     * <p>The type of value that is currently being modified. Properties can have two types:</p> <ul> <li> <p> <code>PLAIN_TEXT</code>: Contain direct values such as '1', 'True', or 'c5.large.search'.</p> </li> <li> <p> <code>STRINGIFIED_JSON</code>: Contain content in JSON format, such as {'Enabled':'True'}'.</p> </li> </ul>
     * 
     */
    @Import(name="valueType")
    private @Nullable Output valueType;

    /**
     * @return <p>The type of value that is currently being modified. Properties can have two types:</p> <ul> <li> <p> <code>PLAIN_TEXT</code>: Contain direct values such as '1', 'True', or 'c5.large.search'.</p> </li> <li> <p> <code>STRINGIFIED_JSON</code>: Contain content in JSON format, such as {'Enabled':'True'}'.</p> </li> </ul>
     * 
     */
    public Optional> valueType() {
        return Optional.ofNullable(this.valueType);
    }

    private ModifyingPropertiesArgs() {}

    private ModifyingPropertiesArgs(ModifyingPropertiesArgs $) {
        this.activeValue = $.activeValue;
        this.name = $.name;
        this.pendingValue = $.pendingValue;
        this.valueType = $.valueType;
    }

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

    public static final class Builder {
        private ModifyingPropertiesArgs $;

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

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

        /**
         * @param activeValue <p>The current value of the domain property that is being modified.</p>
         * 
         * @return builder
         * 
         */
        public Builder activeValue(@Nullable Output activeValue) {
            $.activeValue = activeValue;
            return this;
        }

        /**
         * @param activeValue <p>The current value of the domain property that is being modified.</p>
         * 
         * @return builder
         * 
         */
        public Builder activeValue(String activeValue) {
            return activeValue(Output.of(activeValue));
        }

        /**
         * @param name <p>The name of the property that is currently being modified.</p>
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name <p>The name of the property that is currently being modified.</p>
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param pendingValue <p>The value that the property that is currently being modified will eventually have.</p>
         * 
         * @return builder
         * 
         */
        public Builder pendingValue(@Nullable Output pendingValue) {
            $.pendingValue = pendingValue;
            return this;
        }

        /**
         * @param pendingValue <p>The value that the property that is currently being modified will eventually have.</p>
         * 
         * @return builder
         * 
         */
        public Builder pendingValue(String pendingValue) {
            return pendingValue(Output.of(pendingValue));
        }

        /**
         * @param valueType <p>The type of value that is currently being modified. Properties can have two types:</p> <ul> <li> <p> <code>PLAIN_TEXT</code>: Contain direct values such as '1', 'True', or 'c5.large.search'.</p> </li> <li> <p> <code>STRINGIFIED_JSON</code>: Contain content in JSON format, such as {'Enabled':'True'}'.</p> </li> </ul>
         * 
         * @return builder
         * 
         */
        public Builder valueType(@Nullable Output valueType) {
            $.valueType = valueType;
            return this;
        }

        /**
         * @param valueType <p>The type of value that is currently being modified. Properties can have two types:</p> <ul> <li> <p> <code>PLAIN_TEXT</code>: Contain direct values such as '1', 'True', or 'c5.large.search'.</p> </li> <li> <p> <code>STRINGIFIED_JSON</code>: Contain content in JSON format, such as {'Enabled':'True'}'.</p> </li> </ul>
         * 
         * @return builder
         * 
         */
        public Builder valueType(PropertyValueTypeEnumValueArgs valueType) {
            return valueType(Output.of(valueType));
        }

        public ModifyingPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy