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

com.pulumi.azurenative.machinelearningservices.inputs.GetRegistryComponentContainerPlainArgs Maven / Gradle / Ivy

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

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


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

    public static final GetRegistryComponentContainerPlainArgs Empty = new GetRegistryComponentContainerPlainArgs();

    /**
     * Container name.
     * 
     */
    @Import(name="componentName", required=true)
    private String componentName;

    /**
     * @return Container name.
     * 
     */
    public String componentName() {
        return this.componentName;
    }

    /**
     * Name of Azure Machine Learning registry. This is case-insensitive
     * 
     */
    @Import(name="registryName", required=true)
    private String registryName;

    /**
     * @return Name of Azure Machine Learning registry. This is case-insensitive
     * 
     */
    public String registryName() {
        return this.registryName;
    }

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

    private GetRegistryComponentContainerPlainArgs(GetRegistryComponentContainerPlainArgs $) {
        this.componentName = $.componentName;
        this.registryName = $.registryName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetRegistryComponentContainerPlainArgs $;

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

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

        /**
         * @param componentName Container name.
         * 
         * @return builder
         * 
         */
        public Builder componentName(String componentName) {
            $.componentName = componentName;
            return this;
        }

        /**
         * @param registryName Name of Azure Machine Learning registry. This is case-insensitive
         * 
         * @return builder
         * 
         */
        public Builder registryName(String registryName) {
            $.registryName = registryName;
            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 GetRegistryComponentContainerPlainArgs build() {
            if ($.componentName == null) {
                throw new MissingRequiredPropertyException("GetRegistryComponentContainerPlainArgs", "componentName");
            }
            if ($.registryName == null) {
                throw new MissingRequiredPropertyException("GetRegistryComponentContainerPlainArgs", "registryName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetRegistryComponentContainerPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy