
com.pulumi.azurenative.machinelearningservices.inputs.GetRaiPolicyPlainArgs 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 GetRaiPolicyPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRaiPolicyPlainArgs Empty = new GetRaiPolicyPlainArgs();
/**
* Name of the endpoint resource.
*
*/
@Import(name="endpointName", required=true)
private String endpointName;
/**
* @return Name of the endpoint resource.
*
*/
public String endpointName() {
return this.endpointName;
}
/**
* Name of the Rai Policy.
*
*/
@Import(name="raiPolicyName", required=true)
private String raiPolicyName;
/**
* @return Name of the Rai Policy.
*
*/
public String raiPolicyName() {
return this.raiPolicyName;
}
/**
* 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;
}
/**
* Azure Machine Learning Workspace Name
*
*/
@Import(name="workspaceName", required=true)
private String workspaceName;
/**
* @return Azure Machine Learning Workspace Name
*
*/
public String workspaceName() {
return this.workspaceName;
}
private GetRaiPolicyPlainArgs() {}
private GetRaiPolicyPlainArgs(GetRaiPolicyPlainArgs $) {
this.endpointName = $.endpointName;
this.raiPolicyName = $.raiPolicyName;
this.resourceGroupName = $.resourceGroupName;
this.workspaceName = $.workspaceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRaiPolicyPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetRaiPolicyPlainArgs $;
public Builder() {
$ = new GetRaiPolicyPlainArgs();
}
public Builder(GetRaiPolicyPlainArgs defaults) {
$ = new GetRaiPolicyPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param endpointName Name of the endpoint resource.
*
* @return builder
*
*/
public Builder endpointName(String endpointName) {
$.endpointName = endpointName;
return this;
}
/**
* @param raiPolicyName Name of the Rai Policy.
*
* @return builder
*
*/
public Builder raiPolicyName(String raiPolicyName) {
$.raiPolicyName = raiPolicyName;
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 workspaceName Azure Machine Learning Workspace Name
*
* @return builder
*
*/
public Builder workspaceName(String workspaceName) {
$.workspaceName = workspaceName;
return this;
}
public GetRaiPolicyPlainArgs build() {
if ($.endpointName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyPlainArgs", "endpointName");
}
if ($.raiPolicyName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyPlainArgs", "raiPolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyPlainArgs", "resourceGroupName");
}
if ($.workspaceName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyPlainArgs", "workspaceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy