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

com.pulumi.azurenative.digitaltwins.inputs.GetDigitalTwinsEndpointPlainArgs 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.digitaltwins.inputs;

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


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

    public static final GetDigitalTwinsEndpointPlainArgs Empty = new GetDigitalTwinsEndpointPlainArgs();

    /**
     * Name of Endpoint Resource.
     * 
     */
    @Import(name="endpointName", required=true)
    private String endpointName;

    /**
     * @return Name of Endpoint Resource.
     * 
     */
    public String endpointName() {
        return this.endpointName;
    }

    /**
     * The name of the resource group that contains the DigitalTwinsInstance.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group that contains the DigitalTwinsInstance.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

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

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

    private GetDigitalTwinsEndpointPlainArgs() {}

    private GetDigitalTwinsEndpointPlainArgs(GetDigitalTwinsEndpointPlainArgs $) {
        this.endpointName = $.endpointName;
        this.resourceGroupName = $.resourceGroupName;
        this.resourceName = $.resourceName;
    }

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

    public static final class Builder {
        private GetDigitalTwinsEndpointPlainArgs $;

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

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

        /**
         * @param endpointName Name of Endpoint Resource.
         * 
         * @return builder
         * 
         */
        public Builder endpointName(String endpointName) {
            $.endpointName = endpointName;
            return this;
        }

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

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

        public GetDigitalTwinsEndpointPlainArgs build() {
            if ($.endpointName == null) {
                throw new MissingRequiredPropertyException("GetDigitalTwinsEndpointPlainArgs", "endpointName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetDigitalTwinsEndpointPlainArgs", "resourceGroupName");
            }
            if ($.resourceName == null) {
                throw new MissingRequiredPropertyException("GetDigitalTwinsEndpointPlainArgs", "resourceName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy