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

com.pulumi.azurenative.kubernetesruntime.inputs.GetStorageClassPlainArgs 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.kubernetesruntime.inputs;

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


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

    public static final GetStorageClassPlainArgs Empty = new GetStorageClassPlainArgs();

    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    @Import(name="resourceUri", required=true)
    private String resourceUri;

    /**
     * @return The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    public String resourceUri() {
        return this.resourceUri;
    }

    /**
     * The name of the the storage class
     * 
     */
    @Import(name="storageClassName", required=true)
    private String storageClassName;

    /**
     * @return The name of the the storage class
     * 
     */
    public String storageClassName() {
        return this.storageClassName;
    }

    private GetStorageClassPlainArgs() {}

    private GetStorageClassPlainArgs(GetStorageClassPlainArgs $) {
        this.resourceUri = $.resourceUri;
        this.storageClassName = $.storageClassName;
    }

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

    public static final class Builder {
        private GetStorageClassPlainArgs $;

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

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

        /**
         * @param resourceUri The fully qualified Azure Resource manager identifier of the resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceUri(String resourceUri) {
            $.resourceUri = resourceUri;
            return this;
        }

        /**
         * @param storageClassName The name of the the storage class
         * 
         * @return builder
         * 
         */
        public Builder storageClassName(String storageClassName) {
            $.storageClassName = storageClassName;
            return this;
        }

        public GetStorageClassPlainArgs build() {
            if ($.resourceUri == null) {
                throw new MissingRequiredPropertyException("GetStorageClassPlainArgs", "resourceUri");
            }
            if ($.storageClassName == null) {
                throw new MissingRequiredPropertyException("GetStorageClassPlainArgs", "storageClassName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy