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

com.pulumi.azurenative.migrate.inputs.GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs 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.migrate.inputs;

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


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

    public static final GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs Empty = new GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs();

    /**
     * Migrate project name.
     * 
     */
    @Import(name="migrateProjectName", required=true)
    private String migrateProjectName;

    /**
     * @return Migrate project name.
     * 
     */
    public String migrateProjectName() {
        return this.migrateProjectName;
    }

    /**
     * Private endpoint connection name.
     * 
     */
    @Import(name="peConnectionName", required=true)
    private String peConnectionName;

    /**
     * @return Private endpoint connection name.
     * 
     */
    public String peConnectionName() {
        return this.peConnectionName;
    }

    /**
     * Name of the Azure Resource Group that project is part of.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return Name of the Azure Resource Group that project is part of.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs() {}

    private GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs(GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs $) {
        this.migrateProjectName = $.migrateProjectName;
        this.peConnectionName = $.peConnectionName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs $;

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

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

        /**
         * @param migrateProjectName Migrate project name.
         * 
         * @return builder
         * 
         */
        public Builder migrateProjectName(String migrateProjectName) {
            $.migrateProjectName = migrateProjectName;
            return this;
        }

        /**
         * @param peConnectionName Private endpoint connection name.
         * 
         * @return builder
         * 
         */
        public Builder peConnectionName(String peConnectionName) {
            $.peConnectionName = peConnectionName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the Azure Resource Group that project is part of.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs build() {
            if ($.migrateProjectName == null) {
                throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs", "migrateProjectName");
            }
            if ($.peConnectionName == null) {
                throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs", "peConnectionName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetPrivateEndpointConnectionControllerPrivateEndpointConnectionPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy