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