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

com.pulumi.azurenative.fabric.inputs.GetFabricCapacityPlainArgs 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.fabric.inputs;

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


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

    public static final GetFabricCapacityPlainArgs Empty = new GetFabricCapacityPlainArgs();

    /**
     * The name of the Microsoft Fabric capacity. It must be a minimum of 3 characters, and a maximum of 63.
     * 
     */
    @Import(name="capacityName", required=true)
    private String capacityName;

    /**
     * @return The name of the Microsoft Fabric capacity. It must be a minimum of 3 characters, and a maximum of 63.
     * 
     */
    public String capacityName() {
        return this.capacityName;
    }

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

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

    private GetFabricCapacityPlainArgs() {}

    private GetFabricCapacityPlainArgs(GetFabricCapacityPlainArgs $) {
        this.capacityName = $.capacityName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetFabricCapacityPlainArgs $;

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

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

        /**
         * @param capacityName The name of the Microsoft Fabric capacity. It must be a minimum of 3 characters, and a maximum of 63.
         * 
         * @return builder
         * 
         */
        public Builder capacityName(String capacityName) {
            $.capacityName = capacityName;
            return this;
        }

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

        public GetFabricCapacityPlainArgs build() {
            if ($.capacityName == null) {
                throw new MissingRequiredPropertyException("GetFabricCapacityPlainArgs", "capacityName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetFabricCapacityPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy