
com.pulumi.azurenative.authorization.outputs.GetPolicyDefinitionResult 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.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetPolicyDefinitionResult {
/**
* @return The policy definition description.
*
*/
private @Nullable String description;
/**
* @return The display name of the policy definition.
*
*/
private @Nullable String displayName;
/**
* @return The ID of the policy definition.
*
*/
private String id;
/**
* @return The policy definition metadata. Metadata is an open ended object and is typically a collection of key value pairs.
*
*/
private @Nullable Object metadata;
/**
* @return The policy definition mode. Some examples are All, Indexed, Microsoft.KeyVault.Data.
*
*/
private @Nullable String mode;
/**
* @return The name of the policy definition.
*
*/
private String name;
/**
* @return The parameter definitions for parameters used in the policy rule. The keys are the parameter names.
*
*/
private @Nullable Map parameters;
/**
* @return The policy rule.
*
*/
private @Nullable Object policyRule;
/**
* @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/policyDefinitions).
*
*/
private String type;
private GetPolicyDefinitionResult() {}
/**
* @return The policy definition description.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The display name of the policy definition.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
/**
* @return The ID of the policy definition.
*
*/
public String id() {
return this.id;
}
/**
* @return The policy 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