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

com.pulumi.alicloud.ros.outputs.GetChangeSetsSetParameter Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.ros.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class GetChangeSetsSetParameter {
    /**
     * @return The parameters.
     * 
     */
    private String parameterKey;
    /**
     * @return The parameters.
     * 
     */
    private String parameterValue;

    private GetChangeSetsSetParameter() {}
    /**
     * @return The parameters.
     * 
     */
    public String parameterKey() {
        return this.parameterKey;
    }
    /**
     * @return The parameters.
     * 
     */
    public String parameterValue() {
        return this.parameterValue;
    }

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

    public static Builder builder(GetChangeSetsSetParameter defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String parameterKey;
        private String parameterValue;
        public Builder() {}
        public Builder(GetChangeSetsSetParameter defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.parameterKey = defaults.parameterKey;
    	      this.parameterValue = defaults.parameterValue;
        }

        @CustomType.Setter
        public Builder parameterKey(String parameterKey) {
            if (parameterKey == null) {
              throw new MissingRequiredPropertyException("GetChangeSetsSetParameter", "parameterKey");
            }
            this.parameterKey = parameterKey;
            return this;
        }
        @CustomType.Setter
        public Builder parameterValue(String parameterValue) {
            if (parameterValue == null) {
              throw new MissingRequiredPropertyException("GetChangeSetsSetParameter", "parameterValue");
            }
            this.parameterValue = parameterValue;
            return this;
        }
        public GetChangeSetsSetParameter build() {
            final var _resultValue = new GetChangeSetsSetParameter();
            _resultValue.parameterKey = parameterKey;
            _resultValue.parameterValue = parameterValue;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy