
com.pulumi.azurenative.authorization.inputs.GetPolicySetDefinitionVersionAtManagementGroupPlainArgs 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.authorization.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetPolicySetDefinitionVersionAtManagementGroupPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetPolicySetDefinitionVersionAtManagementGroupPlainArgs Empty = new GetPolicySetDefinitionVersionAtManagementGroupPlainArgs();
/**
* 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;
}
/**
* The policy set definition version. The format is x.y.z where x is the major version number, y is the minor version number, and z is the patch number
*
*/
@Import(name="policyDefinitionVersion", required=true)
private String policyDefinitionVersion;
/**
* @return The policy set definition version. The format is x.y.z where x is the major version number, y is the minor version number, and z is the patch number
*
*/
public String policyDefinitionVersion() {
return this.policyDefinitionVersion;
}
/**
* The name of the policy set definition.
*
*/
@Import(name="policySetDefinitionName", required=true)
private String policySetDefinitionName;
/**
* @return The name of the policy set definition.
*
*/
public String policySetDefinitionName() {
return this.policySetDefinitionName;
}
private GetPolicySetDefinitionVersionAtManagementGroupPlainArgs() {}
private GetPolicySetDefinitionVersionAtManagementGroupPlainArgs(GetPolicySetDefinitionVersionAtManagementGroupPlainArgs $) {
this.managementGroupName = $.managementGroupName;
this.policyDefinitionVersion = $.policyDefinitionVersion;
this.policySetDefinitionName = $.policySetDefinitionName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetPolicySetDefinitionVersionAtManagementGroupPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetPolicySetDefinitionVersionAtManagementGroupPlainArgs $;
public Builder() {
$ = new GetPolicySetDefinitionVersionAtManagementGroupPlainArgs();
}
public Builder(GetPolicySetDefinitionVersionAtManagementGroupPlainArgs defaults) {
$ = new GetPolicySetDefinitionVersionAtManagementGroupPlainArgs(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;
}
/**
* @param policyDefinitionVersion The policy set definition version. The format is x.y.z where x is the major version number, y is the minor version number, and z is the patch number
*
* @return builder
*
*/
public Builder policyDefinitionVersion(String policyDefinitionVersion) {
$.policyDefinitionVersion = policyDefinitionVersion;
return this;
}
/**
* @param policySetDefinitionName The name of the policy set definition.
*
* @return builder
*
*/
public Builder policySetDefinitionName(String policySetDefinitionName) {
$.policySetDefinitionName = policySetDefinitionName;
return this;
}
public GetPolicySetDefinitionVersionAtManagementGroupPlainArgs build() {
if ($.managementGroupName == null) {
throw new MissingRequiredPropertyException("GetPolicySetDefinitionVersionAtManagementGroupPlainArgs", "managementGroupName");
}
if ($.policyDefinitionVersion == null) {
throw new MissingRequiredPropertyException("GetPolicySetDefinitionVersionAtManagementGroupPlainArgs", "policyDefinitionVersion");
}
if ($.policySetDefinitionName == null) {
throw new MissingRequiredPropertyException("GetPolicySetDefinitionVersionAtManagementGroupPlainArgs", "policySetDefinitionName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy