
com.pulumi.azurenative.authorization.outputs.GetPolicySetDefinitionVersionAtManagementGroupResult 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.outputs;
import com.pulumi.azurenative.authorization.outputs.ParameterDefinitionsValueResponse;
import com.pulumi.azurenative.authorization.outputs.PolicyDefinitionGroupResponse;
import com.pulumi.azurenative.authorization.outputs.PolicyDefinitionReferenceResponse;
import com.pulumi.azurenative.authorization.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetPolicySetDefinitionVersionAtManagementGroupResult {
/**
* @return The policy set definition description.
*
*/
private @Nullable String description;
/**
* @return The display name of the policy set definition.
*
*/
private @Nullable String displayName;
/**
* @return The ID of the policy set definition version.
*
*/
private String id;
/**
* @return The policy set definition metadata. Metadata is an open ended object and is typically a collection of key value pairs.
*
*/
private @Nullable Object metadata;
/**
* @return The name of the policy set definition version.
*
*/
private String name;
/**
* @return The policy set definition parameters that can be used in policy definition references.
*
*/
private @Nullable Map parameters;
/**
* @return The metadata describing groups of policy definition references within the policy set definition.
*
*/
private @Nullable List policyDefinitionGroups;
/**
* @return An array of policy definition references.
*
*/
private List policyDefinitions;
/**
* @return The type of policy definition. Possible values are NotSpecified, BuiltIn, Custom, and Static.
*
*/
private @Nullable String policyType;
/**
* @return The system metadata relating to this resource.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource (Microsoft.Authorization/policySetDefinitions/versions).
*
*/
private String type;
/**
* @return The policy set definition version in #.#.# format.
*
*/
private @Nullable String version;
private GetPolicySetDefinitionVersionAtManagementGroupResult() {}
/**
* @return The policy set definition description.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The display name of the policy set definition.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The ID of the policy set definition version.
*
*/
public String id() {
return this.id;
}
/**
* @return The policy set definition metadata. Metadata is an open ended object and is typically a collection of key value pairs.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy