All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.policy.kotlin.outputs.GetPolicySetDefinitionPolicyDefinitionGroup.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.policy.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property additionalMetadataResourceId The ID of a resource that contains additional metadata about this policy definition group.
 * @property category The category of this policy definition group.
 * @property description The description of this policy definition group.
 * @property displayName Specifies the display name of the Policy Set Definition. Conflicts with `name`.
 * **NOTE** As `display_name` is not unique errors may occur when there are multiple policy set definitions with same display name.
 * @property name Specifies the name of the Policy Set Definition. Conflicts with `display_name`.
 */
public data class GetPolicySetDefinitionPolicyDefinitionGroup(
    public val additionalMetadataResourceId: String,
    public val category: String,
    public val description: String,
    public val displayName: String,
    public val name: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.policy.outputs.GetPolicySetDefinitionPolicyDefinitionGroup):
            GetPolicySetDefinitionPolicyDefinitionGroup = GetPolicySetDefinitionPolicyDefinitionGroup(
            additionalMetadataResourceId = javaType.additionalMetadataResourceId(),
            category = javaType.category(),
            description = javaType.description(),
            displayName = javaType.displayName(),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy