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

com.pulumi.azurenative.cloudngfw.kotlin.outputs.GetLocalRulestackChangeLogResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.cloudngfw.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Changelog list
 * @property changes list of changes
 * @property lastCommitted lastCommitted timestamp
 * @property lastModified lastModified timestamp
 */
public data class GetLocalRulestackChangeLogResult(
    public val changes: List,
    public val lastCommitted: String? = null,
    public val lastModified: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.cloudngfw.outputs.GetLocalRulestackChangeLogResult): GetLocalRulestackChangeLogResult = GetLocalRulestackChangeLogResult(
            changes = javaType.changes().map({ args0 -> args0 }),
            lastCommitted = javaType.lastCommitted().map({ args0 -> args0 }).orElse(null),
            lastModified = javaType.lastModified().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy