com.pulumi.gcp.bigtable.kotlin.InstanceIamBindingArgs.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.bigtable.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigtable.InstanceIamBindingArgs.builder
import com.pulumi.gcp.bigtable.kotlin.inputs.InstanceIamBindingConditionArgs
import com.pulumi.gcp.bigtable.kotlin.inputs.InstanceIamBindingConditionArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Three different resources help you manage IAM policies on bigtable instances. Each of these resources serves a different use case:
* * `gcp.bigtable.InstanceIamPolicy`: Authoritative. Sets the IAM policy for the instance and replaces any existing policy already attached.
* * `gcp.bigtable.InstanceIamBinding`: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the instance are preserved.
* * `gcp.bigtable.InstanceIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the instance are preserved.
* > **Note:** `gcp.bigtable.InstanceIamPolicy` **cannot** be used in conjunction with `gcp.bigtable.InstanceIamBinding` and `gcp.bigtable.InstanceIamMember` or they will fight over what your policy should be. In addition, be careful not to accidentally unset ownership of the instance as `gcp.bigtable.InstanceIamPolicy` replaces the entire policy.
* > **Note:** `gcp.bigtable.InstanceIamBinding` resources **can be** used in conjunction with `gcp.bigtable.InstanceIamMember` resources **only if** they do not grant privilege to the same role.
* ## gcp.bigtable.InstanceIamPolicy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const admin = gcp.organizations.getIAMPolicy({
* bindings: [{
* role: "roles/bigtable.user",
* members: ["user:jane@example.com"],
* }],
* });
* const editor = new gcp.bigtable.InstanceIamPolicy("editor", {
* project: "your-project",
* instance: "your-bigtable-instance",
* policyData: admin.then(admin => admin.policyData),
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
* role="roles/bigtable.user",
* members=["user:jane@example.com"],
* )])
* editor = gcp.bigtable.InstanceIamPolicy("editor",
* project="your-project",
* instance="your-bigtable-instance",
* policy_data=admin.policy_data)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
* {
* Bindings = new[]
* {
* new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
* {
* Role = "roles/bigtable.user",
* Members = new[]
* {
* "user:[email protected]",
* },
* },
* },
* });
* var editor = new Gcp.BigTable.InstanceIamPolicy("editor", new()
* {
* Project = "your-project",
* Instance = "your-bigtable-instance",
* PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
* Bindings: []organizations.GetIAMPolicyBinding{
* {
* Role: "roles/bigtable.user",
* Members: []string{
* "user:[email protected]",
* },
* },
* },
* }, nil)
* if err != nil {
* return err
* }
* _, err = bigtable.NewInstanceIamPolicy(ctx, "editor", &bigtable.InstanceIamPolicyArgs{
* Project: pulumi.String("your-project"),
* Instance: pulumi.String("your-bigtable-instance"),
* PolicyData: pulumi.String(admin.PolicyData),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.organizations.OrganizationsFunctions;
* import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
* import com.pulumi.gcp.bigtable.InstanceIamPolicy;
* import com.pulumi.gcp.bigtable.InstanceIamPolicyArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
* .bindings(GetIAMPolicyBindingArgs.builder()
* .role("roles/bigtable.user")
* .members("user:[email protected]")
* .build())
* .build());
* var editor = new InstanceIamPolicy("editor", InstanceIamPolicyArgs.builder()
* .project("your-project")
* .instance("your-bigtable-instance")
* .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamPolicy
* properties:
* project: your-project
* instance: your-bigtable-instance
* policyData: ${admin.policyData}
* variables:
* admin:
* fn::invoke:
* Function: gcp:organizations:getIAMPolicy
* Arguments:
* bindings:
* - role: roles/bigtable.user
* members:
* - user:[email protected]
* ```
*
* ## gcp.bigtable.InstanceIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const editor = new gcp.bigtable.InstanceIamBinding("editor", {
* instance: "your-bigtable-instance",
* role: "roles/bigtable.user",
* members: ["user:jane@example.com"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* editor = gcp.bigtable.InstanceIamBinding("editor",
* instance="your-bigtable-instance",
* role="roles/bigtable.user",
* members=["user:jane@example.com"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var editor = new Gcp.BigTable.InstanceIamBinding("editor", new()
* {
* Instance = "your-bigtable-instance",
* Role = "roles/bigtable.user",
* Members = new[]
* {
* "user:[email protected]",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := bigtable.NewInstanceIamBinding(ctx, "editor", &bigtable.InstanceIamBindingArgs{
* Instance: pulumi.String("your-bigtable-instance"),
* Role: pulumi.String("roles/bigtable.user"),
* Members: pulumi.StringArray{
* pulumi.String("user:[email protected]"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.bigtable.InstanceIamBinding;
* import com.pulumi.gcp.bigtable.InstanceIamBindingArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var editor = new InstanceIamBinding("editor", InstanceIamBindingArgs.builder()
* .instance("your-bigtable-instance")
* .role("roles/bigtable.user")
* .members("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamBinding
* properties:
* instance: your-bigtable-instance
* role: roles/bigtable.user
* members:
* - user:[email protected]
* ```
*
* ## gcp.bigtable.InstanceIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const editor = new gcp.bigtable.InstanceIamMember("editor", {
* instance: "your-bigtable-instance",
* role: "roles/bigtable.user",
* member: "user:[email protected]",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* editor = gcp.bigtable.InstanceIamMember("editor",
* instance="your-bigtable-instance",
* role="roles/bigtable.user",
* member="user:[email protected]")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var editor = new Gcp.BigTable.InstanceIamMember("editor", new()
* {
* Instance = "your-bigtable-instance",
* Role = "roles/bigtable.user",
* Member = "user:[email protected]",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := bigtable.NewInstanceIamMember(ctx, "editor", &bigtable.InstanceIamMemberArgs{
* Instance: pulumi.String("your-bigtable-instance"),
* Role: pulumi.String("roles/bigtable.user"),
* Member: pulumi.String("user:[email protected]"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.bigtable.InstanceIamMember;
* import com.pulumi.gcp.bigtable.InstanceIamMemberArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var editor = new InstanceIamMember("editor", InstanceIamMemberArgs.builder()
* .instance("your-bigtable-instance")
* .role("roles/bigtable.user")
* .member("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamMember
* properties:
* instance: your-bigtable-instance
* role: roles/bigtable.user
* member: user:[email protected]
* ```
*
* ## gcp.bigtable.InstanceIamPolicy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const admin = gcp.organizations.getIAMPolicy({
* bindings: [{
* role: "roles/bigtable.user",
* members: ["user:jane@example.com"],
* }],
* });
* const editor = new gcp.bigtable.InstanceIamPolicy("editor", {
* project: "your-project",
* instance: "your-bigtable-instance",
* policyData: admin.then(admin => admin.policyData),
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
* role="roles/bigtable.user",
* members=["user:jane@example.com"],
* )])
* editor = gcp.bigtable.InstanceIamPolicy("editor",
* project="your-project",
* instance="your-bigtable-instance",
* policy_data=admin.policy_data)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
* {
* Bindings = new[]
* {
* new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
* {
* Role = "roles/bigtable.user",
* Members = new[]
* {
* "user:[email protected]",
* },
* },
* },
* });
* var editor = new Gcp.BigTable.InstanceIamPolicy("editor", new()
* {
* Project = "your-project",
* Instance = "your-bigtable-instance",
* PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
* Bindings: []organizations.GetIAMPolicyBinding{
* {
* Role: "roles/bigtable.user",
* Members: []string{
* "user:[email protected]",
* },
* },
* },
* }, nil)
* if err != nil {
* return err
* }
* _, err = bigtable.NewInstanceIamPolicy(ctx, "editor", &bigtable.InstanceIamPolicyArgs{
* Project: pulumi.String("your-project"),
* Instance: pulumi.String("your-bigtable-instance"),
* PolicyData: pulumi.String(admin.PolicyData),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.organizations.OrganizationsFunctions;
* import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
* import com.pulumi.gcp.bigtable.InstanceIamPolicy;
* import com.pulumi.gcp.bigtable.InstanceIamPolicyArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
* .bindings(GetIAMPolicyBindingArgs.builder()
* .role("roles/bigtable.user")
* .members("user:[email protected]")
* .build())
* .build());
* var editor = new InstanceIamPolicy("editor", InstanceIamPolicyArgs.builder()
* .project("your-project")
* .instance("your-bigtable-instance")
* .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamPolicy
* properties:
* project: your-project
* instance: your-bigtable-instance
* policyData: ${admin.policyData}
* variables:
* admin:
* fn::invoke:
* Function: gcp:organizations:getIAMPolicy
* Arguments:
* bindings:
* - role: roles/bigtable.user
* members:
* - user:[email protected]
* ```
*
* ## gcp.bigtable.InstanceIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const editor = new gcp.bigtable.InstanceIamBinding("editor", {
* instance: "your-bigtable-instance",
* role: "roles/bigtable.user",
* members: ["user:jane@example.com"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* editor = gcp.bigtable.InstanceIamBinding("editor",
* instance="your-bigtable-instance",
* role="roles/bigtable.user",
* members=["user:jane@example.com"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var editor = new Gcp.BigTable.InstanceIamBinding("editor", new()
* {
* Instance = "your-bigtable-instance",
* Role = "roles/bigtable.user",
* Members = new[]
* {
* "user:[email protected]",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := bigtable.NewInstanceIamBinding(ctx, "editor", &bigtable.InstanceIamBindingArgs{
* Instance: pulumi.String("your-bigtable-instance"),
* Role: pulumi.String("roles/bigtable.user"),
* Members: pulumi.StringArray{
* pulumi.String("user:[email protected]"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.bigtable.InstanceIamBinding;
* import com.pulumi.gcp.bigtable.InstanceIamBindingArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var editor = new InstanceIamBinding("editor", InstanceIamBindingArgs.builder()
* .instance("your-bigtable-instance")
* .role("roles/bigtable.user")
* .members("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamBinding
* properties:
* instance: your-bigtable-instance
* role: roles/bigtable.user
* members:
* - user:[email protected]
* ```
*
* ## gcp.bigtable.InstanceIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const editor = new gcp.bigtable.InstanceIamMember("editor", {
* instance: "your-bigtable-instance",
* role: "roles/bigtable.user",
* member: "user:[email protected]",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* editor = gcp.bigtable.InstanceIamMember("editor",
* instance="your-bigtable-instance",
* role="roles/bigtable.user",
* member="user:[email protected]")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var editor = new Gcp.BigTable.InstanceIamMember("editor", new()
* {
* Instance = "your-bigtable-instance",
* Role = "roles/bigtable.user",
* Member = "user:[email protected]",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigtable"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := bigtable.NewInstanceIamMember(ctx, "editor", &bigtable.InstanceIamMemberArgs{
* Instance: pulumi.String("your-bigtable-instance"),
* Role: pulumi.String("roles/bigtable.user"),
* Member: pulumi.String("user:[email protected]"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.bigtable.InstanceIamMember;
* import com.pulumi.gcp.bigtable.InstanceIamMemberArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* var editor = new InstanceIamMember("editor", InstanceIamMemberArgs.builder()
* .instance("your-bigtable-instance")
* .role("roles/bigtable.user")
* .member("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigtable:InstanceIamMember
* properties:
* instance: your-bigtable-instance
* role: roles/bigtable.user
* member: user:[email protected]
* ```
*
* ## Import
* ### Importing IAM policies
* IAM policy imports use the `instance` identifier of the Bigtable Instance resource only. For example:
* * `"projects/{project}/instances/{instance}"`
* An `import` block (Terraform v1.5.0 and later) can be used to import IAM policies:
* tf
* import {
* id = "projects/{project}/instances/{instance}"
* to = google_bigtable_instance_iam_policy.default
* }
* The `pulumi import` command can also be used:
* ```sh
* $ pulumi import gcp:bigtable/instanceIamBinding:InstanceIamBinding default projects/{project}/instances/{instance}
* ```
* @property condition
* @property instance The name or relative resource id of the instance to manage IAM policies for.
* For `gcp.bigtable.InstanceIamMember` or `gcp.bigtable.InstanceIamBinding`:
* @property members Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
* @property project The project in which the instance belongs. If it
* is not provided, a default will be supplied.
* @property role The role that should be applied. Only one
* `gcp.bigtable.InstanceIamBinding` can be used per role. Note that custom roles must be of the format
* `[projects|organizations]/{parent-name}/roles/{role-name}`. Read more about roles [here](https://cloud.google.com/bigtable/docs/access-control#roles).
* `gcp.bigtable.InstanceIamPolicy` only:
*/
public data class InstanceIamBindingArgs(
public val condition: Output? = null,
public val instance: Output? = null,
public val members: Output>? = null,
public val project: Output? = null,
public val role: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigtable.InstanceIamBindingArgs =
com.pulumi.gcp.bigtable.InstanceIamBindingArgs.builder()
.condition(condition?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.instance(instance?.applyValue({ args0 -> args0 }))
.members(members?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.project(project?.applyValue({ args0 -> args0 }))
.role(role?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [InstanceIamBindingArgs].
*/
@PulumiTagMarker
public class InstanceIamBindingArgsBuilder internal constructor() {
private var condition: Output? = null
private var instance: Output? = null
private var members: Output>? = null
private var project: Output? = null
private var role: Output? = null
/**
* @param value
*/
@JvmName("gfigjptgreaybfrn")
public suspend fun condition(`value`: Output) {
this.condition = value
}
/**
* @param value The name or relative resource id of the instance to manage IAM policies for.
* For `gcp.bigtable.InstanceIamMember` or `gcp.bigtable.InstanceIamBinding`:
*/
@JvmName("ixhuskpsqtioodnv")
public suspend fun instance(`value`: Output) {
this.instance = value
}
/**
* @param value Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
*/
@JvmName("bsfmflbqqhgohaaj")
public suspend fun members(`value`: Output>) {
this.members = value
}
@JvmName("lowhdmqgumrqwevm")
public suspend fun members(vararg values: Output) {
this.members = Output.all(values.asList())
}
/**
* @param values Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
*/
@JvmName("gslejkqtxhmkiqpv")
public suspend fun members(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy