com.pulumi.gcp.firebase.kotlin.outputs.GetHostingChannelResult.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.firebase.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getHostingChannel.
* @property channelId
* @property effectiveLabels
* @property expireTime
* @property id The provider-assigned unique ID for this managed resource.
* @property labels
* @property name The fully-qualified resource name for the channel, in the format: `sites/{{site_id}}/channels/{{channel_id}}`.
* @property pulumiLabels
* @property retainedReleaseCount
* @property siteId
* @property ttl
*/
public data class GetHostingChannelResult(
public val channelId: String,
public val effectiveLabels: Map,
public val expireTime: String,
public val id: String,
public val labels: Map,
public val name: String,
public val pulumiLabels: Map,
public val retainedReleaseCount: Int,
public val siteId: String,
public val ttl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.firebase.outputs.GetHostingChannelResult): GetHostingChannelResult = GetHostingChannelResult(
channelId = javaType.channelId(),
effectiveLabels = javaType.effectiveLabels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
expireTime = javaType.expireTime(),
id = javaType.id(),
labels = javaType.labels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name(),
pulumiLabels = javaType.pulumiLabels().map({ args0 -> args0.key.to(args0.value) }).toMap(),
retainedReleaseCount = javaType.retainedReleaseCount(),
siteId = javaType.siteId(),
ttl = javaType.ttl(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy