
com.pulumi.azurenative.quota.inputs.GetGroupQuotaPlainArgs 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.quota.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGroupQuotaPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupQuotaPlainArgs Empty = new GetGroupQuotaPlainArgs();
/**
* The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
*
*/
@Import(name="groupQuotaName", required=true)
private String groupQuotaName;
/**
* @return The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
*
*/
public String groupQuotaName() {
return this.groupQuotaName;
}
/**
* Management Group Id.
*
*/
@Import(name="managementGroupId", required=true)
private String managementGroupId;
/**
* @return Management Group Id.
*
*/
public String managementGroupId() {
return this.managementGroupId;
}
private GetGroupQuotaPlainArgs() {}
private GetGroupQuotaPlainArgs(GetGroupQuotaPlainArgs $) {
this.groupQuotaName = $.groupQuotaName;
this.managementGroupId = $.managementGroupId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupQuotaPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupQuotaPlainArgs $;
public Builder() {
$ = new GetGroupQuotaPlainArgs();
}
public Builder(GetGroupQuotaPlainArgs defaults) {
$ = new GetGroupQuotaPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param groupQuotaName The GroupQuota name. The name should be unique for the provided context tenantId/MgId.
*
* @return builder
*
*/
public Builder groupQuotaName(String groupQuotaName) {
$.groupQuotaName = groupQuotaName;
return this;
}
/**
* @param managementGroupId Management Group Id.
*
* @return builder
*
*/
public Builder managementGroupId(String managementGroupId) {
$.managementGroupId = managementGroupId;
return this;
}
public GetGroupQuotaPlainArgs build() {
if ($.groupQuotaName == null) {
throw new MissingRequiredPropertyException("GetGroupQuotaPlainArgs", "groupQuotaName");
}
if ($.managementGroupId == null) {
throw new MissingRequiredPropertyException("GetGroupQuotaPlainArgs", "managementGroupId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy