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

com.pulumi.gcp.firebase.kotlin.outputs.GetWebAppResult.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.firebase.kotlin.outputs

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

/**
 * A collection of values returned by getWebApp.
 * @property apiKeyId
 * @property appId Immutable. The globally unique, Firebase-assigned identifier of the App.
 * This identifier should be treated as an opaque token, as the data format is not specified.
 * @property appUrls
 * @property deletionPolicy
 * @property displayName
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name The fully qualified resource name of the App, for example:
 * projects/projectId/webApps/appId
 * @property project
 */
public data class GetWebAppResult(
    public val apiKeyId: String,
    public val appId: String,
    public val appUrls: List,
    public val deletionPolicy: String,
    public val displayName: String,
    public val id: String,
    public val name: String,
    public val project: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.firebase.outputs.GetWebAppResult): GetWebAppResult = GetWebAppResult(
            apiKeyId = javaType.apiKeyId(),
            appId = javaType.appId(),
            appUrls = javaType.appUrls().map({ args0 -> args0 }),
            deletionPolicy = javaType.deletionPolicy(),
            displayName = javaType.displayName(),
            id = javaType.id(),
            name = javaType.name(),
            project = javaType.project().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy