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

com.pulumi.azurenative.security.kotlin.outputs.GovernanceRuleMetadataResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.security.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The governance rule metadata
 * @property createdBy Governance rule Created by object id (GUID)
 * @property createdOn Governance rule creation date
 * @property updatedBy Governance rule last updated by object id (GUID)
 * @property updatedOn Governance rule last update date
 */
public data class GovernanceRuleMetadataResponse(
    public val createdBy: String,
    public val createdOn: String,
    public val updatedBy: String,
    public val updatedOn: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.security.outputs.GovernanceRuleMetadataResponse): GovernanceRuleMetadataResponse = GovernanceRuleMetadataResponse(
            createdBy = javaType.createdBy(),
            createdOn = javaType.createdOn(),
            updatedBy = javaType.updatedBy(),
            updatedOn = javaType.updatedOn(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy