Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.bigquery.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.bigquery.DatasetIamMemberArgs.builder
import com.pulumi.gcp.bigquery.kotlin.inputs.DatasetIamMemberConditionArgs
import com.pulumi.gcp.bigquery.kotlin.inputs.DatasetIamMemberConditionArgsBuilder
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.jvm.JvmName
/**
* Three different resources help you manage your IAM policy for BigQuery dataset. Each of these resources serves a different use case:
* * `gcp.bigquery.DatasetIamPolicy`: Authoritative. Sets the IAM policy for the dataset and replaces any existing policy already attached.
* * `gcp.bigquery.DatasetIamBinding`: 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 dataset are preserved.
* * `gcp.bigquery.DatasetIamMember`: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the dataset are preserved.
* These resources are intended to convert the permissions system for BigQuery datasets to the standard IAM interface. For advanced usages, including [creating authorized views](https://cloud.google.com/bigquery/docs/share-access-views), please use either `gcp.bigquery.DatasetAccess` or the `access` field on `gcp.bigquery.Dataset`.
* > **Note:** These resources **cannot** be used with `gcp.bigquery.DatasetAccess` resources or the `access` field on `gcp.bigquery.Dataset` or they will fight over what the policy should be.
* > **Note:** Using any of these resources will remove any authorized view permissions from the dataset. To assign and preserve authorized view permissions use the `gcp.bigquery.DatasetAccess` instead.
* > **Note:** Legacy BigQuery roles `OWNER` `WRITER` and `READER` **cannot** be used with any of these IAM resources. Instead use the full role form of: `roles/bigquery.dataOwner` `roles/bigquery.dataEditor` and `roles/bigquery.dataViewer`.
* > **Note:** `gcp.bigquery.DatasetIamPolicy` **cannot** be used in conjunction with `gcp.bigquery.DatasetIamBinding` and `gcp.bigquery.DatasetIamMember` or they will fight over what your policy should be.
* > **Note:** `gcp.bigquery.DatasetIamBinding` resources **can be** used in conjunction with `gcp.bigquery.DatasetIamMember` resources **only if** they do not grant privilege to the same role.
* ## gcp.bigquery.DatasetIamPolicy
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const owner = gcp.organizations.getIAMPolicy({
* bindings: [{
* role: "roles/bigquery.dataOwner",
* members: ["user:jane@example.com"],
* }],
* });
* const datasetDataset = new gcp.bigquery.Dataset("dataset", {datasetId: "example_dataset"});
* const dataset = new gcp.bigquery.DatasetIamPolicy("dataset", {
* datasetId: datasetDataset.datasetId,
* policyData: owner.then(owner => owner.policyData),
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* owner = gcp.organizations.get_iam_policy(bindings=[{
* "role": "roles/bigquery.dataOwner",
* "members": ["user:jane@example.com"],
* }])
* dataset_dataset = gcp.bigquery.Dataset("dataset", dataset_id="example_dataset")
* dataset = gcp.bigquery.DatasetIamPolicy("dataset",
* dataset_id=dataset_dataset.dataset_id,
* policy_data=owner.policy_data)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var owner = Gcp.Organizations.GetIAMPolicy.Invoke(new()
* {
* Bindings = new[]
* {
* new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
* {
* Role = "roles/bigquery.dataOwner",
* Members = new[]
* {
* "user:[email protected]",
* },
* },
* },
* });
* var datasetDataset = new Gcp.BigQuery.Dataset("dataset", new()
* {
* DatasetId = "example_dataset",
* });
* var dataset = new Gcp.BigQuery.DatasetIamPolicy("dataset", new()
* {
* DatasetId = datasetDataset.DatasetId,
* PolicyData = owner.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
* "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 {
* owner, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
* Bindings: []organizations.GetIAMPolicyBinding{
* {
* Role: "roles/bigquery.dataOwner",
* Members: []string{
* "user:[email protected]",
* },
* },
* },
* }, nil)
* if err != nil {
* return err
* }
* datasetDataset, err := bigquery.NewDataset(ctx, "dataset", &bigquery.DatasetArgs{
* DatasetId: pulumi.String("example_dataset"),
* })
* if err != nil {
* return err
* }
* _, err = bigquery.NewDatasetIamPolicy(ctx, "dataset", &bigquery.DatasetIamPolicyArgs{
* DatasetId: datasetDataset.DatasetId,
* PolicyData: pulumi.String(owner.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.bigquery.Dataset;
* import com.pulumi.gcp.bigquery.DatasetArgs;
* import com.pulumi.gcp.bigquery.DatasetIamPolicy;
* import com.pulumi.gcp.bigquery.DatasetIamPolicyArgs;
* 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 owner = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
* .bindings(GetIAMPolicyBindingArgs.builder()
* .role("roles/bigquery.dataOwner")
* .members("user:[email protected]")
* .build())
* .build());
* var datasetDataset = new Dataset("datasetDataset", DatasetArgs.builder()
* .datasetId("example_dataset")
* .build());
* var dataset = new DatasetIamPolicy("dataset", DatasetIamPolicyArgs.builder()
* .datasetId(datasetDataset.datasetId())
* .policyData(owner.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* dataset:
* type: gcp:bigquery:DatasetIamPolicy
* properties:
* datasetId: ${datasetDataset.datasetId}
* policyData: ${owner.policyData}
* datasetDataset:
* type: gcp:bigquery:Dataset
* name: dataset
* properties:
* datasetId: example_dataset
* variables:
* owner:
* fn::invoke:
* Function: gcp:organizations:getIAMPolicy
* Arguments:
* bindings:
* - role: roles/bigquery.dataOwner
* members:
* - user:[email protected]
* ```
*
* ## gcp.bigquery.DatasetIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const dataset = new gcp.bigquery.Dataset("dataset", {datasetId: "example_dataset"});
* const reader = new gcp.bigquery.DatasetIamBinding("reader", {
* datasetId: dataset.datasetId,
* role: "roles/bigquery.dataViewer",
* members: ["user:jane@example.com"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* dataset = gcp.bigquery.Dataset("dataset", dataset_id="example_dataset")
* reader = gcp.bigquery.DatasetIamBinding("reader",
* dataset_id=dataset.dataset_id,
* role="roles/bigquery.dataViewer",
* members=["user:jane@example.com"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var dataset = new Gcp.BigQuery.Dataset("dataset", new()
* {
* DatasetId = "example_dataset",
* });
* var reader = new Gcp.BigQuery.DatasetIamBinding("reader", new()
* {
* DatasetId = dataset.DatasetId,
* Role = "roles/bigquery.dataViewer",
* Members = new[]
* {
* "user:[email protected]",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* dataset, err := bigquery.NewDataset(ctx, "dataset", &bigquery.DatasetArgs{
* DatasetId: pulumi.String("example_dataset"),
* })
* if err != nil {
* return err
* }
* _, err = bigquery.NewDatasetIamBinding(ctx, "reader", &bigquery.DatasetIamBindingArgs{
* DatasetId: dataset.DatasetId,
* Role: pulumi.String("roles/bigquery.dataViewer"),
* 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.bigquery.Dataset;
* import com.pulumi.gcp.bigquery.DatasetArgs;
* import com.pulumi.gcp.bigquery.DatasetIamBinding;
* import com.pulumi.gcp.bigquery.DatasetIamBindingArgs;
* 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 dataset = new Dataset("dataset", DatasetArgs.builder()
* .datasetId("example_dataset")
* .build());
* var reader = new DatasetIamBinding("reader", DatasetIamBindingArgs.builder()
* .datasetId(dataset.datasetId())
* .role("roles/bigquery.dataViewer")
* .members("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* reader:
* type: gcp:bigquery:DatasetIamBinding
* properties:
* datasetId: ${dataset.datasetId}
* role: roles/bigquery.dataViewer
* members:
* - user:[email protected]
* dataset:
* type: gcp:bigquery:Dataset
* properties:
* datasetId: example_dataset
* ```
*
* ## gcp.bigquery.DatasetIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const dataset = new gcp.bigquery.Dataset("dataset", {datasetId: "example_dataset"});
* const editor = new gcp.bigquery.DatasetIamMember("editor", {
* datasetId: dataset.datasetId,
* role: "roles/bigquery.dataEditor",
* member: "user:[email protected]",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* dataset = gcp.bigquery.Dataset("dataset", dataset_id="example_dataset")
* editor = gcp.bigquery.DatasetIamMember("editor",
* dataset_id=dataset.dataset_id,
* role="roles/bigquery.dataEditor",
* member="user:[email protected]")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var dataset = new Gcp.BigQuery.Dataset("dataset", new()
* {
* DatasetId = "example_dataset",
* });
* var editor = new Gcp.BigQuery.DatasetIamMember("editor", new()
* {
* DatasetId = dataset.DatasetId,
* Role = "roles/bigquery.dataEditor",
* Member = "user:[email protected]",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* dataset, err := bigquery.NewDataset(ctx, "dataset", &bigquery.DatasetArgs{
* DatasetId: pulumi.String("example_dataset"),
* })
* if err != nil {
* return err
* }
* _, err = bigquery.NewDatasetIamMember(ctx, "editor", &bigquery.DatasetIamMemberArgs{
* DatasetId: dataset.DatasetId,
* Role: pulumi.String("roles/bigquery.dataEditor"),
* 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.bigquery.Dataset;
* import com.pulumi.gcp.bigquery.DatasetArgs;
* import com.pulumi.gcp.bigquery.DatasetIamMember;
* import com.pulumi.gcp.bigquery.DatasetIamMemberArgs;
* 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 dataset = new Dataset("dataset", DatasetArgs.builder()
* .datasetId("example_dataset")
* .build());
* var editor = new DatasetIamMember("editor", DatasetIamMemberArgs.builder()
* .datasetId(dataset.datasetId())
* .role("roles/bigquery.dataEditor")
* .member("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigquery:DatasetIamMember
* properties:
* datasetId: ${dataset.datasetId}
* role: roles/bigquery.dataEditor
* member: user:[email protected]
* dataset:
* type: gcp:bigquery:Dataset
* properties:
* datasetId: example_dataset
* ```
*
* ## gcp.bigquery.DatasetIamBinding
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const dataset = new gcp.bigquery.Dataset("dataset", {datasetId: "example_dataset"});
* const reader = new gcp.bigquery.DatasetIamBinding("reader", {
* datasetId: dataset.datasetId,
* role: "roles/bigquery.dataViewer",
* members: ["user:jane@example.com"],
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* dataset = gcp.bigquery.Dataset("dataset", dataset_id="example_dataset")
* reader = gcp.bigquery.DatasetIamBinding("reader",
* dataset_id=dataset.dataset_id,
* role="roles/bigquery.dataViewer",
* members=["user:jane@example.com"])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var dataset = new Gcp.BigQuery.Dataset("dataset", new()
* {
* DatasetId = "example_dataset",
* });
* var reader = new Gcp.BigQuery.DatasetIamBinding("reader", new()
* {
* DatasetId = dataset.DatasetId,
* Role = "roles/bigquery.dataViewer",
* Members = new[]
* {
* "user:[email protected]",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* dataset, err := bigquery.NewDataset(ctx, "dataset", &bigquery.DatasetArgs{
* DatasetId: pulumi.String("example_dataset"),
* })
* if err != nil {
* return err
* }
* _, err = bigquery.NewDatasetIamBinding(ctx, "reader", &bigquery.DatasetIamBindingArgs{
* DatasetId: dataset.DatasetId,
* Role: pulumi.String("roles/bigquery.dataViewer"),
* 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.bigquery.Dataset;
* import com.pulumi.gcp.bigquery.DatasetArgs;
* import com.pulumi.gcp.bigquery.DatasetIamBinding;
* import com.pulumi.gcp.bigquery.DatasetIamBindingArgs;
* 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 dataset = new Dataset("dataset", DatasetArgs.builder()
* .datasetId("example_dataset")
* .build());
* var reader = new DatasetIamBinding("reader", DatasetIamBindingArgs.builder()
* .datasetId(dataset.datasetId())
* .role("roles/bigquery.dataViewer")
* .members("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* reader:
* type: gcp:bigquery:DatasetIamBinding
* properties:
* datasetId: ${dataset.datasetId}
* role: roles/bigquery.dataViewer
* members:
* - user:[email protected]
* dataset:
* type: gcp:bigquery:Dataset
* properties:
* datasetId: example_dataset
* ```
*
* ## gcp.bigquery.DatasetIamMember
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const dataset = new gcp.bigquery.Dataset("dataset", {datasetId: "example_dataset"});
* const editor = new gcp.bigquery.DatasetIamMember("editor", {
* datasetId: dataset.datasetId,
* role: "roles/bigquery.dataEditor",
* member: "user:[email protected]",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* dataset = gcp.bigquery.Dataset("dataset", dataset_id="example_dataset")
* editor = gcp.bigquery.DatasetIamMember("editor",
* dataset_id=dataset.dataset_id,
* role="roles/bigquery.dataEditor",
* member="user:[email protected]")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var dataset = new Gcp.BigQuery.Dataset("dataset", new()
* {
* DatasetId = "example_dataset",
* });
* var editor = new Gcp.BigQuery.DatasetIamMember("editor", new()
* {
* DatasetId = dataset.DatasetId,
* Role = "roles/bigquery.dataEditor",
* Member = "user:[email protected]",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/bigquery"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* dataset, err := bigquery.NewDataset(ctx, "dataset", &bigquery.DatasetArgs{
* DatasetId: pulumi.String("example_dataset"),
* })
* if err != nil {
* return err
* }
* _, err = bigquery.NewDatasetIamMember(ctx, "editor", &bigquery.DatasetIamMemberArgs{
* DatasetId: dataset.DatasetId,
* Role: pulumi.String("roles/bigquery.dataEditor"),
* 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.bigquery.Dataset;
* import com.pulumi.gcp.bigquery.DatasetArgs;
* import com.pulumi.gcp.bigquery.DatasetIamMember;
* import com.pulumi.gcp.bigquery.DatasetIamMemberArgs;
* 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 dataset = new Dataset("dataset", DatasetArgs.builder()
* .datasetId("example_dataset")
* .build());
* var editor = new DatasetIamMember("editor", DatasetIamMemberArgs.builder()
* .datasetId(dataset.datasetId())
* .role("roles/bigquery.dataEditor")
* .member("user:[email protected]")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* editor:
* type: gcp:bigquery:DatasetIamMember
* properties:
* datasetId: ${dataset.datasetId}
* role: roles/bigquery.dataEditor
* member: user:[email protected]
* dataset:
* type: gcp:bigquery:Dataset
* properties:
* datasetId: example_dataset
* ```
*
* ## Import
* ### Importing IAM policies
* IAM policy imports use the identifier of the BigQuery Dataset resource. For example:
* * `projects/{{project_id}}/datasets/{{dataset_id}}`
* An `import` block (Terraform v1.5.0 and later) can be used to import IAM policies:
* tf
* import {
* id = projects/{{project_id}}/datasets/{{dataset_id}}
* to = google_bigquery_dataset_iam_policy.default
* }
* The `pulumi import` command can also be used:
* ```sh
* $ pulumi import gcp:bigquery/datasetIamMember:DatasetIamMember default projects/{{project_id}}/datasets/{{dataset_id}}
* ```
* @property condition
* @property datasetId The dataset ID.
* @property member Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **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.
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **iamMember:{principal}**: Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group. This is used for example for workload/workforce federated identities (principal, principalSet).
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property role The role that should be applied. Only one
* `gcp.bigquery.DatasetIamBinding` can be used per role. Note that custom roles must be of the format
* `[projects|organizations]/{parent-name}/roles/{role-name}`.
*/
public data class DatasetIamMemberArgs(
public val condition: Output? = null,
public val datasetId: Output? = null,
public val member: Output? = null,
public val project: Output? = null,
public val role: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.bigquery.DatasetIamMemberArgs =
com.pulumi.gcp.bigquery.DatasetIamMemberArgs.builder()
.condition(condition?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.datasetId(datasetId?.applyValue({ args0 -> args0 }))
.member(member?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.role(role?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DatasetIamMemberArgs].
*/
@PulumiTagMarker
public class DatasetIamMemberArgsBuilder internal constructor() {
private var condition: Output? = null
private var datasetId: Output? = null
private var member: Output? = null
private var project: Output? = null
private var role: Output? = null
/**
* @param value
*/
@JvmName("vwneektvkksbdywp")
public suspend fun condition(`value`: Output) {
this.condition = value
}
/**
* @param value The dataset ID.
*/
@JvmName("brfjuuxetqbhhwii")
public suspend fun datasetId(`value`: Output) {
this.datasetId = value
}
/**
* @param value Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **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.
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **iamMember:{principal}**: Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group. This is used for example for workload/workforce federated identities (principal, principalSet).
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
*/
@JvmName("tbsjtpopcwrxkcwe")
public suspend fun member(`value`: Output) {
this.member = value
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("cayejupkbmopgohx")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The role that should be applied. Only one
* `gcp.bigquery.DatasetIamBinding` can be used per role. Note that custom roles must be of the format
* `[projects|organizations]/{parent-name}/roles/{role-name}`.
*/
@JvmName("onggfebtvtfmflsy")
public suspend fun role(`value`: Output) {
this.role = value
}
/**
* @param value
*/
@JvmName("pvnejisgmjemymia")
public suspend fun condition(`value`: DatasetIamMemberConditionArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.condition = mapped
}
/**
* @param argument
*/
@JvmName("mtgjnulmnigcvkio")
public suspend fun condition(argument: suspend DatasetIamMemberConditionArgsBuilder.() -> Unit) {
val toBeMapped = DatasetIamMemberConditionArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.condition = mapped
}
/**
* @param value The dataset ID.
*/
@JvmName("pahfhvlyprwaxpww")
public suspend fun datasetId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.datasetId = mapped
}
/**
* @param value Identities that will be granted the privilege in `role`.
* Each entry can have one of the following values:
* * **allAuthenticatedUsers**: A special identifier that represents anyone who is authenticated with a Google account or a service account.
* * **allUsers**: A special identifier that represents anyone who is on the internet; with or without a Google account.
* * **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.
* * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
* * **iamMember:{principal}**: Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group. This is used for example for workload/workforce federated identities (principal, principalSet).
* * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
* * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
*/
@JvmName("tvomgfgguvskhldm")
public suspend fun member(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.member = mapped
}
/**
* @param value The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
@JvmName("lthjbxdxsmfgquks")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The role that should be applied. Only one
* `gcp.bigquery.DatasetIamBinding` can be used per role. Note that custom roles must be of the format
* `[projects|organizations]/{parent-name}/roles/{role-name}`.
*/
@JvmName("aoqlerbrrotdmehk")
public suspend fun role(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.role = mapped
}
internal fun build(): DatasetIamMemberArgs = DatasetIamMemberArgs(
condition = condition,
datasetId = datasetId,
member = member,
project = project,
role = role,
)
}