
com.pulumi.azurenative.cognitiveservices.inputs.GetCommitmentPlanAssociationPlainArgs Maven / Gradle / Ivy
// *** 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetCommitmentPlanAssociationPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetCommitmentPlanAssociationPlainArgs Empty = new GetCommitmentPlanAssociationPlainArgs();
/**
* The name of the commitment plan association with the Cognitive Services Account
*
*/
@Import(name="commitmentPlanAssociationName", required=true)
private String commitmentPlanAssociationName;
/**
* @return The name of the commitment plan association with the Cognitive Services Account
*
*/
public String commitmentPlanAssociationName() {
return this.commitmentPlanAssociationName;
}
/**
* The name of the commitmentPlan associated with the Cognitive Services Account
*
*/
@Import(name="commitmentPlanName", required=true)
private String commitmentPlanName;
/**
* @return The name of the commitmentPlan associated with the Cognitive Services Account
*
*/
public String commitmentPlanName() {
return this.commitmentPlanName;
}
/**
* 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 GetCommitmentPlanAssociationPlainArgs() {}
private GetCommitmentPlanAssociationPlainArgs(GetCommitmentPlanAssociationPlainArgs $) {
this.commitmentPlanAssociationName = $.commitmentPlanAssociationName;
this.commitmentPlanName = $.commitmentPlanName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCommitmentPlanAssociationPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetCommitmentPlanAssociationPlainArgs $;
public Builder() {
$ = new GetCommitmentPlanAssociationPlainArgs();
}
public Builder(GetCommitmentPlanAssociationPlainArgs defaults) {
$ = new GetCommitmentPlanAssociationPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param commitmentPlanAssociationName The name of the commitment plan association with the Cognitive Services Account
*
* @return builder
*
*/
public Builder commitmentPlanAssociationName(String commitmentPlanAssociationName) {
$.commitmentPlanAssociationName = commitmentPlanAssociationName;
return this;
}
/**
* @param commitmentPlanName The name of the commitmentPlan associated with the Cognitive Services Account
*
* @return builder
*
*/
public Builder commitmentPlanName(String commitmentPlanName) {
$.commitmentPlanName = commitmentPlanName;
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 GetCommitmentPlanAssociationPlainArgs build() {
if ($.commitmentPlanAssociationName == null) {
throw new MissingRequiredPropertyException("GetCommitmentPlanAssociationPlainArgs", "commitmentPlanAssociationName");
}
if ($.commitmentPlanName == null) {
throw new MissingRequiredPropertyException("GetCommitmentPlanAssociationPlainArgs", "commitmentPlanName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetCommitmentPlanAssociationPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy