com.pulumi.gcp.compute.kotlin.RegionBackendServiceIamPolicyArgs.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.compute.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.RegionBackendServiceIamPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* ## Import
* For all import syntaxes, the "resource in question" can take any of the following forms:
* * projects/{{project}}/regions/{{region}}/backendServices/{{name}}
* * {{project}}/{{region}}/{{name}}
* * {{region}}/{{name}}
* * {{name}}
* Any variables not passed in the import command will be taken from the provider configuration.
* Compute Engine regionbackendservice IAM resources can be imported using the resource identifiers, role, and member.
* IAM member imports use space-delimited identifiers: the resource in question, the role, and the member identity, e.g.
* ```sh
* $ pulumi import gcp:compute/regionBackendServiceIamPolicy:RegionBackendServiceIamPolicy editor "projects/{{project}}/regions/{{region}}/backendServices/{{region_backend_service}} roles/compute.admin user:[email protected]"
* ```
* IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
* ```sh
* $ pulumi import gcp:compute/regionBackendServiceIamPolicy:RegionBackendServiceIamPolicy editor "projects/{{project}}/regions/{{region}}/backendServices/{{region_backend_service}} roles/compute.admin"
* ```
* IAM policy imports use the identifier of the resource in question, e.g.
* ```sh
* $ pulumi import gcp:compute/regionBackendServiceIamPolicy:RegionBackendServiceIamPolicy editor projects/{{project}}/regions/{{region}}/backendServices/{{region_backend_service}}
* ```
* -> **Custom Roles**: If you're importing a IAM resource with a custom role, make sure to use the
* full name of the custom role, e.g. `[projects/my-project|organizations/my-org]/roles/my-custom-role`.
* @property name Used to find the parent resource to bind the IAM policy to
* @property policyData The policy data generated by
* a `gcp.organizations.getIAMPolicy` data source.
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
* @property region The Region in which the created backend service should reside.
* If it is not provided, the provider region is used.
* Used to find the parent resource to bind the IAM policy to. If not specified,
* the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
* region is specified, it is taken from the provider configuration.
*/
public data class RegionBackendServiceIamPolicyArgs(
public val name: Output? = null,
public val policyData: Output? = null,
public val project: Output? = null,
public val region: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.compute.RegionBackendServiceIamPolicyArgs =
com.pulumi.gcp.compute.RegionBackendServiceIamPolicyArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.policyData(policyData?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.region(region?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RegionBackendServiceIamPolicyArgs].
*/
@PulumiTagMarker
public class RegionBackendServiceIamPolicyArgsBuilder internal constructor() {
private var name: Output? = null
private var policyData: Output? = null
private var project: Output? = null
private var region: Output? = null
/**
* @param value Used to find the parent resource to bind the IAM policy to
*/
@JvmName("gtnkfweiwjinxosx")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The policy data generated by
* a `gcp.organizations.getIAMPolicy` data source.
*/
@JvmName("ogagtldmcjpwilcb")
public suspend fun policyData(`value`: Output) {
this.policyData = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
*/
@JvmName("nhwudsdphpdyxvge")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The Region in which the created backend service should reside.
* If it is not provided, the provider region is used.
* Used to find the parent resource to bind the IAM policy to. If not specified,
* the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
* region is specified, it is taken from the provider configuration.
*/
@JvmName("raevvonqlcgwvnaw")
public suspend fun region(`value`: Output) {
this.region = value
}
/**
* @param value Used to find the parent resource to bind the IAM policy to
*/
@JvmName("serhcgpkgajetiyx")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The policy data generated by
* a `gcp.organizations.getIAMPolicy` data source.
*/
@JvmName("ukydiapuuxwrikel")
public suspend fun policyData(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.policyData = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.
*/
@JvmName("avhvoqjqepauofyo")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The Region in which the created backend service should reside.
* If it is not provided, the provider region is used.
* Used to find the parent resource to bind the IAM policy to. If not specified,
* the value will be parsed from the identifier of the parent resource. If no region is provided in the parent identifier and no
* region is specified, it is taken from the provider configuration.
*/
@JvmName("ddndolvgfeladfig")
public suspend fun region(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.region = mapped
}
internal fun build(): RegionBackendServiceIamPolicyArgs = RegionBackendServiceIamPolicyArgs(
name = name,
policyData = policyData,
project = project,
region = region,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy