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

com.pulumi.azurenative.visualstudio.inputs.GetExtensionPlainArgs 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.visualstudio.inputs;

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


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

    public static final GetExtensionPlainArgs Empty = new GetExtensionPlainArgs();

    /**
     * The name of the Visual Studio Team Services account resource.
     * 
     */
    @Import(name="accountResourceName", required=true)
    private String accountResourceName;

    /**
     * @return The name of the Visual Studio Team Services account resource.
     * 
     */
    public String accountResourceName() {
        return this.accountResourceName;
    }

    /**
     * The name of the extension.
     * 
     */
    @Import(name="extensionResourceName", required=true)
    private String extensionResourceName;

    /**
     * @return The name of the extension.
     * 
     */
    public String extensionResourceName() {
        return this.extensionResourceName;
    }

    /**
     * Name of the resource group within the Azure subscription.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return Name of the resource group within the Azure subscription.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetExtensionPlainArgs() {}

    private GetExtensionPlainArgs(GetExtensionPlainArgs $) {
        this.accountResourceName = $.accountResourceName;
        this.extensionResourceName = $.extensionResourceName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetExtensionPlainArgs $;

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

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

        /**
         * @param accountResourceName The name of the Visual Studio Team Services account resource.
         * 
         * @return builder
         * 
         */
        public Builder accountResourceName(String accountResourceName) {
            $.accountResourceName = accountResourceName;
            return this;
        }

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

        /**
         * @param resourceGroupName Name of the resource group within the Azure subscription.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetExtensionPlainArgs build() {
            if ($.accountResourceName == null) {
                throw new MissingRequiredPropertyException("GetExtensionPlainArgs", "accountResourceName");
            }
            if ($.extensionResourceName == null) {
                throw new MissingRequiredPropertyException("GetExtensionPlainArgs", "extensionResourceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetExtensionPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy