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

com.pulumi.azurenative.network.inputs.GetNetworkExperimentProfilePlainArgs Maven / Gradle / Ivy

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

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


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

    public static final GetNetworkExperimentProfilePlainArgs Empty = new GetNetworkExperimentProfilePlainArgs();

    /**
     * The Profile identifier associated with the Tenant and Partner
     * 
     */
    @Import(name="profileName", required=true)
    private String profileName;

    /**
     * @return The Profile identifier associated with the Tenant and Partner
     * 
     */
    public String profileName() {
        return this.profileName;
    }

    /**
     * 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 GetNetworkExperimentProfilePlainArgs() {}

    private GetNetworkExperimentProfilePlainArgs(GetNetworkExperimentProfilePlainArgs $) {
        this.profileName = $.profileName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetNetworkExperimentProfilePlainArgs $;

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

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

        /**
         * @param profileName The Profile identifier associated with the Tenant and Partner
         * 
         * @return builder
         * 
         */
        public Builder profileName(String profileName) {
            $.profileName = profileName;
            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 GetNetworkExperimentProfilePlainArgs build() {
            if ($.profileName == null) {
                throw new MissingRequiredPropertyException("GetNetworkExperimentProfilePlainArgs", "profileName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetNetworkExperimentProfilePlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy