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

com.pulumi.azurenative.devcenter.inputs.GetEncryptionSetArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.devcenter.inputs;

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


public final class GetEncryptionSetArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetEncryptionSetArgs Empty = new GetEncryptionSetArgs();

    /**
     * The name of the devcenter.
     * 
     */
    @Import(name="devCenterName", required=true)
    private Output devCenterName;

    /**
     * @return The name of the devcenter.
     * 
     */
    public Output devCenterName() {
        return this.devCenterName;
    }

    /**
     * The name of the devcenter encryption set.
     * 
     */
    @Import(name="encryptionSetName", required=true)
    private Output encryptionSetName;

    /**
     * @return The name of the devcenter encryption set.
     * 
     */
    public Output encryptionSetName() {
        return this.encryptionSetName;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetEncryptionSetArgs() {}

    private GetEncryptionSetArgs(GetEncryptionSetArgs $) {
        this.devCenterName = $.devCenterName;
        this.encryptionSetName = $.encryptionSetName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetEncryptionSetArgs $;

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

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

        /**
         * @param devCenterName The name of the devcenter.
         * 
         * @return builder
         * 
         */
        public Builder devCenterName(Output devCenterName) {
            $.devCenterName = devCenterName;
            return this;
        }

        /**
         * @param devCenterName The name of the devcenter.
         * 
         * @return builder
         * 
         */
        public Builder devCenterName(String devCenterName) {
            return devCenterName(Output.of(devCenterName));
        }

        /**
         * @param encryptionSetName The name of the devcenter encryption set.
         * 
         * @return builder
         * 
         */
        public Builder encryptionSetName(Output encryptionSetName) {
            $.encryptionSetName = encryptionSetName;
            return this;
        }

        /**
         * @param encryptionSetName The name of the devcenter encryption set.
         * 
         * @return builder
         * 
         */
        public Builder encryptionSetName(String encryptionSetName) {
            return encryptionSetName(Output.of(encryptionSetName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public GetEncryptionSetArgs build() {
            if ($.devCenterName == null) {
                throw new MissingRequiredPropertyException("GetEncryptionSetArgs", "devCenterName");
            }
            if ($.encryptionSetName == null) {
                throw new MissingRequiredPropertyException("GetEncryptionSetArgs", "encryptionSetName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetEncryptionSetArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy