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

com.pulumi.gcp.organizations.kotlin.outputs.GetActiveFolderResult.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: 8.12.0.0
Show newest version
@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