
com.pulumi.azurenative.cognitiveservices.inputs.GetRaiPolicyArgs 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.cognitiveservices.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetRaiPolicyArgs extends com.pulumi.resources.InvokeArgs {
public static final GetRaiPolicyArgs Empty = new GetRaiPolicyArgs();
/**
* The name of Cognitive Services account.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return The name of Cognitive Services account.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* The name of the RaiPolicy associated with the Cognitive Services Account
*
*/
@Import(name="raiPolicyName", required=true)
private Output raiPolicyName;
/**
* @return The name of the RaiPolicy associated with the Cognitive Services Account
*
*/
public Output raiPolicyName() {
return this.raiPolicyName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetRaiPolicyArgs() {}
private GetRaiPolicyArgs(GetRaiPolicyArgs $) {
this.accountName = $.accountName;
this.raiPolicyName = $.raiPolicyName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRaiPolicyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetRaiPolicyArgs $;
public Builder() {
$ = new GetRaiPolicyArgs();
}
public Builder(GetRaiPolicyArgs defaults) {
$ = new GetRaiPolicyArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of Cognitive Services account.
*
* @return builder
*
*/
public Builder accountName(Output accountName) {
$.accountName = accountName;
return this;
}
/**
* @param accountName The name of Cognitive Services account.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
return accountName(Output.of(accountName));
}
/**
* @param raiPolicyName The name of the RaiPolicy associated with the Cognitive Services Account
*
* @return builder
*
*/
public Builder raiPolicyName(Output raiPolicyName) {
$.raiPolicyName = raiPolicyName;
return this;
}
/**
* @param raiPolicyName The name of the RaiPolicy associated with the Cognitive Services Account
*
* @return builder
*
*/
public Builder raiPolicyName(String raiPolicyName) {
return raiPolicyName(Output.of(raiPolicyName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetRaiPolicyArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyArgs", "accountName");
}
if ($.raiPolicyName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyArgs", "raiPolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetRaiPolicyArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy