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

com.pulumi.azurenative.hybridcompute.inputs.GetLicenseProfilePlainArgs 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.hybridcompute.inputs;

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


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

    public static final GetLicenseProfilePlainArgs Empty = new GetLicenseProfilePlainArgs();

    /**
     * The name of the license profile.
     * 
     */
    @Import(name="licenseProfileName", required=true)
    private String licenseProfileName;

    /**
     * @return The name of the license profile.
     * 
     */
    public String licenseProfileName() {
        return this.licenseProfileName;
    }

    /**
     * The name of the hybrid machine.
     * 
     */
    @Import(name="machineName", required=true)
    private String machineName;

    /**
     * @return The name of the hybrid machine.
     * 
     */
    public String machineName() {
        return this.machineName;
    }

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

    private GetLicenseProfilePlainArgs(GetLicenseProfilePlainArgs $) {
        this.licenseProfileName = $.licenseProfileName;
        this.machineName = $.machineName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetLicenseProfilePlainArgs $;

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

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

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

        /**
         * @param machineName The name of the hybrid machine.
         * 
         * @return builder
         * 
         */
        public Builder machineName(String machineName) {
            $.machineName = machineName;
            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 GetLicenseProfilePlainArgs build() {
            if ($.licenseProfileName == null) {
                throw new MissingRequiredPropertyException("GetLicenseProfilePlainArgs", "licenseProfileName");
            }
            if ($.machineName == null) {
                throw new MissingRequiredPropertyException("GetLicenseProfilePlainArgs", "machineName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetLicenseProfilePlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy