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