com.pulumi.gcp.organizations.kotlin.outputs.GetActiveFolderResult.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
/**
* A collection of values returned by getActiveFolder.
* @property apiMethod
* @property displayName
* @property id The provider-assigned unique ID for this managed resource.
* @property name The resource name of the Folder. This uniquely identifies the folder.
* @property parent
*/
public data class GetActiveFolderResult(
public val apiMethod: String? = null,
public val displayName: String,
public val id: String,
public val name: String,
public val parent: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.organizations.outputs.GetActiveFolderResult): GetActiveFolderResult = GetActiveFolderResult(
apiMethod = javaType.apiMethod().map({ args0 -> args0 }).orElse(null),
displayName = javaType.displayName(),
id = javaType.id(),
name = javaType.name(),
parent = javaType.parent(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy