com.pulumi.gcp.projects.kotlin.outputs.GetProjectServiceResult.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.projects.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getProjectService.
* @property disableDependentServices
* @property disableOnDestroy
* @property id The provider-assigned unique ID for this managed resource.
* @property project
* @property service
*/
public data class GetProjectServiceResult(
public val disableDependentServices: Boolean,
public val disableOnDestroy: Boolean,
public val id: String,
public val project: String? = null,
public val service: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.projects.outputs.GetProjectServiceResult): GetProjectServiceResult = GetProjectServiceResult(
disableDependentServices = javaType.disableDependentServices(),
disableOnDestroy = javaType.disableOnDestroy(),
id = javaType.id(),
project = javaType.project().map({ args0 -> args0 }).orElse(null),
service = javaType.service(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy