
com.pulumi.azurenative.machinelearningservices.inputs.GetRegistryModelVersionPlainArgs 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 GetRegistryModelVersionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRegistryModelVersionPlainArgs Empty = new GetRegistryModelVersionPlainArgs();
/**
* Container name. This is case-sensitive.
*
*/
@Import(name="modelName", required=true)
private String modelName;
/**
* @return Container name. This is case-sensitive.
*
*/
public String modelName() {
return this.modelName;
}
/**
* 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 GetRegistryModelVersionPlainArgs() {}
private GetRegistryModelVersionPlainArgs(GetRegistryModelVersionPlainArgs $) {
this.modelName = $.modelName;
this.registryName = $.registryName;
this.resourceGroupName = $.resourceGroupName;
this.version = $.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRegistryModelVersionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetRegistryModelVersionPlainArgs $;
public Builder() {
$ = new GetRegistryModelVersionPlainArgs();
}
public Builder(GetRegistryModelVersionPlainArgs defaults) {
$ = new GetRegistryModelVersionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param modelName Container name. This is case-sensitive.
*
* @return builder
*
*/
public Builder modelName(String modelName) {
$.modelName = modelName;
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 GetRegistryModelVersionPlainArgs build() {
if ($.modelName == null) {
throw new MissingRequiredPropertyException("GetRegistryModelVersionPlainArgs", "modelName");
}
if ($.registryName == null) {
throw new MissingRequiredPropertyException("GetRegistryModelVersionPlainArgs", "registryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetRegistryModelVersionPlainArgs", "resourceGroupName");
}
if ($.version == null) {
throw new MissingRequiredPropertyException("GetRegistryModelVersionPlainArgs", "version");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy