com.pulumi.gcp.organizations.kotlin.outputs.GetFoldersFolder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.organizations.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property createTime The timestamp of when the folder was created
* @property deleteTime The timestamp of when the folder was requested to be deleted (if applicable)
* @property displayName The display name of the folder
* @property etag Entity tag identifier of the folder
* @property name The id of the folder
* @property parent The parent id of the folder
* @property state The lifecycle state of the folder
* @property updateTime The timestamp of when the folder was last modified
*/
public data class GetFoldersFolder(
public val createTime: String,
public val deleteTime: String,
public val displayName: String,
public val etag: String,
public val name: String,
public val parent: String,
public val state: String,
public val updateTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.organizations.outputs.GetFoldersFolder): GetFoldersFolder = GetFoldersFolder(
createTime = javaType.createTime(),
deleteTime = javaType.deleteTime(),
displayName = javaType.displayName(),
etag = javaType.etag(),
name = javaType.name(),
parent = javaType.parent(),
state = javaType.state(),
updateTime = javaType.updateTime(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy