
com.pulumi.gcp.endpoints.kotlin.outputs.GetServiceIamPolicyResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.endpoints.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getServiceIamPolicy.
* @property etag (Computed) The etag of the IAM policy.
* @property id The provider-assigned unique ID for this managed resource.
* @property policyData (Required only by `gcp.endpoints.ServiceIamPolicy`) The policy data generated by
* a `gcp.organizations.getIAMPolicy` data source.
* @property serviceName
*/
public data class GetServiceIamPolicyResult(
public val etag: String,
public val id: String,
public val policyData: String,
public val serviceName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.endpoints.outputs.GetServiceIamPolicyResult): GetServiceIamPolicyResult = GetServiceIamPolicyResult(
etag = javaType.etag(),
id = javaType.id(),
policyData = javaType.policyData(),
serviceName = javaType.serviceName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy