
com.pulumi.gcp.accesscontextmanager.kotlin.outputs.GetAccessPolicyResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.accesscontextmanager.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getAccessPolicy.
* @property id The provider-assigned unique ID for this managed resource.
* @property name Resource name of the AccessPolicy.
* @property parent
* @property scopes
* @property title Human readable title. Does not affect behavior.
*/
public data class GetAccessPolicyResult(
public val id: String,
public val name: String,
public val parent: String,
public val scopes: List? = null,
public val title: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.accesscontextmanager.outputs.GetAccessPolicyResult): GetAccessPolicyResult = GetAccessPolicyResult(
id = javaType.id(),
name = javaType.name(),
parent = javaType.parent(),
scopes = javaType.scopes().map({ args0 -> args0 }),
title = javaType.title(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy