com.pulumi.gcp.iam.kotlin.outputs.GetTestablePermissionsPermission.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.iam.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property apiDisabled Whether the corresponding API has been enabled for the resource.
* @property customSupportLevel The level of support for custom roles. Can be one of `"NOT_SUPPORTED"`, `"SUPPORTED"`, `"TESTING"`. Default is `"SUPPORTED"`
* @property name Name of the permission.
* @property stage Release stage of the permission.
* @property title Human readable title of the permission.
*/
public data class GetTestablePermissionsPermission(
public val apiDisabled: Boolean,
public val customSupportLevel: String,
public val name: String,
public val stage: String,
public val title: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.iam.outputs.GetTestablePermissionsPermission): GetTestablePermissionsPermission = GetTestablePermissionsPermission(
apiDisabled = javaType.apiDisabled(),
customSupportLevel = javaType.customSupportLevel(),
name = javaType.name(),
stage = javaType.stage(),
title = javaType.title(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy