com.pulumi.azurenative.machinelearningservices.inputs.GetRegistryEnvironmentVersionPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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 GetRegistryEnvironmentVersionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRegistryEnvironmentVersionPlainArgs Empty = new GetRegistryEnvironmentVersionPlainArgs();
/**
* Container name. This is case-sensitive.
*
*/
@Import(name="environmentName", required=true)
private String environmentName;
/**
* @return Container name. This is case-sensitive.
*
*/
public String environmentName() {
return this.environmentName;
}
/**
* 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;
}
/**
* Version identifier. This is case-sensitive.
*
*/
@Import(name="version", required=true)
private String version;
/**
* @return Version identifier. This is case-sensitive.
*
*/
public String version() {
return this.version;
}
private GetRegistryEnvironmentVersionPlainArgs() {}
private GetRegistryEnvironmentVersionPlainArgs(GetRegistryEnvironmentVersionPlainArgs $) {
this.environmentName = $.environmentName;
this.registryName = $.registryName;
this.resourceGroupName = $.resourceGroupName;
this.version = $.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRegistryEnvironmentVersionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetRegistryEnvironmentVersionPlainArgs $;
public Builder() {
$ = new GetRegistryEnvironmentVersionPlainArgs();
}
public Builder(GetRegistryEnvironmentVersionPlainArgs defaults) {
$ = new GetRegistryEnvironmentVersionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param environmentName Container name. This is case-sensitive.
*
* @return builder
*
*/
public Builder environmentName(String environmentName) {
$.environmentName = environmentName;
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;
}
/**
* @param version Version identifier. This is case-sensitive.
*
* @return builder
*
*/
public Builder version(String version) {
$.version = version;
return this;
}
public GetRegistryEnvironmentVersionPlainArgs build() {
if ($.environmentName == null) {
throw new MissingRequiredPropertyException("GetRegistryEnvironmentVersionPlainArgs", "environmentName");
}
if ($.registryName == null) {
throw new MissingRequiredPropertyException("GetRegistryEnvironmentVersionPlainArgs", "registryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetRegistryEnvironmentVersionPlainArgs", "resourceGroupName");
}
if ($.version == null) {
throw new MissingRequiredPropertyException("GetRegistryEnvironmentVersionPlainArgs", "version");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy