All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.compute.kotlin.InstanceIAMBindingArgs.kt Maven / Gradle / Ivy

@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.InstanceIAMBindingArgs.builder
import com.pulumi.gcp.compute.kotlin.inputs.InstanceIAMBindingConditionArgs
import com.pulumi.gcp.compute.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 your IAM policy for Compute Engine Instance. Each of these resources serves a different use case:
 * * `gcp.compute.InstanceIAMPolicy`: Authoritative. Sets the IAM policy for the instance and replaces any existing policy already attached.
 * * `gcp.compute.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.compute.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.
 * A data source can be used to retrieve policy data in advent you do not need creation
 * * `gcp.compute.InstanceIAMPolicy`: Retrieves the IAM policy for the instance
 * > **Note:** `gcp.compute.InstanceIAMPolicy` **cannot** be used in conjunction with `gcp.compute.InstanceIAMBinding` and `gcp.compute.InstanceIAMMember` or they will fight over what your policy should be.
 * > **Note:** `gcp.compute.InstanceIAMBinding` resources **can be** used in conjunction with `gcp.compute.InstanceIAMMember` resources **only if** they do not grant privilege to the same role.
 * > **Note:**  This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
 * ## gcp.compute.InstanceIAMPolicy
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const admin = gcp.organizations.getIAMPolicy({
 *     bindings: [{
 *         role: "roles/compute.osLogin",
 *         members: ["user:jane@example.com"],
 *     }],
 * });
 * const policy = new gcp.compute.InstanceIAMPolicy("policy", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     policyData: admin.then(admin => admin.policyData),
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * admin = gcp.organizations.get_iam_policy(bindings=[{
 *     "role": "roles/compute.osLogin",
 *     "members": ["user:jane@example.com"],
 * }])
 * policy = gcp.compute.InstanceIAMPolicy("policy",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     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/compute.osLogin",
 *                 Members = new[]
 *                 {
 *                     "user:[email protected]",
 *                 },
 *             },
 *         },
 *     });
 *     var policy = new Gcp.Compute.InstanceIAMPolicy("policy", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"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/compute.osLogin",
 * 					Members: []string{
 * 						"user:[email protected]",
 * 					},
 * 				},
 * 			},
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewInstanceIAMPolicy(ctx, "policy", &compute.InstanceIAMPolicyArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			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.compute.InstanceIAMPolicy;
 * import com.pulumi.gcp.compute.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/compute.osLogin")
 *                 .members("user:[email protected]")
 *                 .build())
 *             .build());
 *         var policy = new InstanceIAMPolicy("policy", InstanceIAMPolicyArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   policy:
 *     type: gcp:compute:InstanceIAMPolicy
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       policyData: ${admin.policyData}
 * variables:
 *   admin:
 *     fn::invoke:
 *       Function: gcp:organizations:getIAMPolicy
 *       Arguments:
 *         bindings:
 *           - role: roles/compute.osLogin
 *             members:
 *               - user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const admin = gcp.organizations.getIAMPolicy({
 *     bindings: [{
 *         role: "roles/compute.osLogin",
 *         members: ["user:jane@example.com"],
 *         condition: {
 *             title: "expires_after_2019_12_31",
 *             description: "Expiring at midnight of 2019-12-31",
 *             expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     }],
 * });
 * const policy = new gcp.compute.InstanceIAMPolicy("policy", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     policyData: admin.then(admin => admin.policyData),
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * admin = gcp.organizations.get_iam_policy(bindings=[{
 *     "role": "roles/compute.osLogin",
 *     "members": ["user:jane@example.com"],
 *     "condition": {
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * }])
 * policy = gcp.compute.InstanceIAMPolicy("policy",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     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/compute.osLogin",
 *                 Members = new[]
 *                 {
 *                     "user:[email protected]",
 *                 },
 *                 Condition = new Gcp.Organizations.Inputs.GetIAMPolicyBindingConditionInputArgs
 *                 {
 *                     Title = "expires_after_2019_12_31",
 *                     Description = "Expiring at midnight of 2019-12-31",
 *                     Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *                 },
 *             },
 *         },
 *     });
 *     var policy = new Gcp.Compute.InstanceIAMPolicy("policy", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"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/compute.osLogin",
 * 					Members: []string{
 * 						"user:[email protected]",
 * 					},
 * 					Condition: {
 * 						Title:       "expires_after_2019_12_31",
 * 						Description: pulumi.StringRef("Expiring at midnight of 2019-12-31"),
 * 						Expression:  "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 * 					},
 * 				},
 * 			},
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewInstanceIAMPolicy(ctx, "policy", &compute.InstanceIAMPolicyArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			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.compute.InstanceIAMPolicy;
 * import com.pulumi.gcp.compute.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/compute.osLogin")
 *                 .members("user:[email protected]")
 *                 .condition(GetIAMPolicyBindingConditionArgs.builder()
 *                     .title("expires_after_2019_12_31")
 *                     .description("Expiring at midnight of 2019-12-31")
 *                     .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                     .build())
 *                 .build())
 *             .build());
 *         var policy = new InstanceIAMPolicy("policy", InstanceIAMPolicyArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   policy:
 *     type: gcp:compute:InstanceIAMPolicy
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       policyData: ${admin.policyData}
 * variables:
 *   admin:
 *     fn::invoke:
 *       Function: gcp:organizations:getIAMPolicy
 *       Arguments:
 *         bindings:
 *           - role: roles/compute.osLogin
 *             members:
 *               - user:[email protected]
 *             condition:
 *               title: expires_after_2019_12_31
 *               description: Expiring at midnight of 2019-12-31
 *               expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## gcp.compute.InstanceIAMBinding
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const binding = new gcp.compute.InstanceIAMBinding("binding", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     members: ["user:jane@example.com"],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * binding = gcp.compute.InstanceIAMBinding("binding",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     members=["user:jane@example.com"])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var binding = new Gcp.Compute.InstanceIAMBinding("binding", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Members = new[]
 *         {
 *             "user:[email protected]",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMBinding(ctx, "binding", &compute.InstanceIAMBindingArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			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.compute.InstanceIAMBinding;
 * import com.pulumi.gcp.compute.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 binding = new InstanceIAMBinding("binding", InstanceIAMBindingArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .members("user:[email protected]")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   binding:
 *     type: gcp:compute:InstanceIAMBinding
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       members:
 *         - user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const binding = new gcp.compute.InstanceIAMBinding("binding", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     members: ["user:jane@example.com"],
 *     condition: {
 *         title: "expires_after_2019_12_31",
 *         description: "Expiring at midnight of 2019-12-31",
 *         expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * binding = gcp.compute.InstanceIAMBinding("binding",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     members=["user:jane@example.com"],
 *     condition={
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var binding = new Gcp.Compute.InstanceIAMBinding("binding", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Members = new[]
 *         {
 *             "user:[email protected]",
 *         },
 *         Condition = new Gcp.Compute.Inputs.InstanceIAMBindingConditionArgs
 *         {
 *             Title = "expires_after_2019_12_31",
 *             Description = "Expiring at midnight of 2019-12-31",
 *             Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMBinding(ctx, "binding", &compute.InstanceIAMBindingArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			Members: pulumi.StringArray{
 * 				pulumi.String("user:[email protected]"),
 * 			},
 * 			Condition: &compute.InstanceIAMBindingConditionArgs{
 * 				Title:       pulumi.String("expires_after_2019_12_31"),
 * 				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
 * 				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
 * 			},
 * 		})
 * 		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.compute.InstanceIAMBinding;
 * import com.pulumi.gcp.compute.InstanceIAMBindingArgs;
 * import com.pulumi.gcp.compute.inputs.InstanceIAMBindingConditionArgs;
 * 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 binding = new InstanceIAMBinding("binding", InstanceIAMBindingArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .members("user:[email protected]")
 *             .condition(InstanceIAMBindingConditionArgs.builder()
 *                 .title("expires_after_2019_12_31")
 *                 .description("Expiring at midnight of 2019-12-31")
 *                 .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   binding:
 *     type: gcp:compute:InstanceIAMBinding
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       members:
 *         - user:[email protected]
 *       condition:
 *         title: expires_after_2019_12_31
 *         description: Expiring at midnight of 2019-12-31
 *         expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## gcp.compute.InstanceIAMMember
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const member = new gcp.compute.InstanceIAMMember("member", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     member: "user:[email protected]",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * member = gcp.compute.InstanceIAMMember("member",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     member="user:[email protected]")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var member = new Gcp.Compute.InstanceIAMMember("member", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Member = "user:[email protected]",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMMember(ctx, "member", &compute.InstanceIAMMemberArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			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.compute.InstanceIAMMember;
 * import com.pulumi.gcp.compute.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 member = new InstanceIAMMember("member", InstanceIAMMemberArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .member("user:[email protected]")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   member:
 *     type: gcp:compute:InstanceIAMMember
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       member: user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const member = new gcp.compute.InstanceIAMMember("member", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     member: "user:[email protected]",
 *     condition: {
 *         title: "expires_after_2019_12_31",
 *         description: "Expiring at midnight of 2019-12-31",
 *         expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * member = gcp.compute.InstanceIAMMember("member",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     member="user:[email protected]",
 *     condition={
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var member = new Gcp.Compute.InstanceIAMMember("member", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Member = "user:[email protected]",
 *         Condition = new Gcp.Compute.Inputs.InstanceIAMMemberConditionArgs
 *         {
 *             Title = "expires_after_2019_12_31",
 *             Description = "Expiring at midnight of 2019-12-31",
 *             Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMMember(ctx, "member", &compute.InstanceIAMMemberArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			Member:       pulumi.String("user:[email protected]"),
 * 			Condition: &compute.InstanceIAMMemberConditionArgs{
 * 				Title:       pulumi.String("expires_after_2019_12_31"),
 * 				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
 * 				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
 * 			},
 * 		})
 * 		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.compute.InstanceIAMMember;
 * import com.pulumi.gcp.compute.InstanceIAMMemberArgs;
 * import com.pulumi.gcp.compute.inputs.InstanceIAMMemberConditionArgs;
 * 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 member = new InstanceIAMMember("member", InstanceIAMMemberArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .member("user:[email protected]")
 *             .condition(InstanceIAMMemberConditionArgs.builder()
 *                 .title("expires_after_2019_12_31")
 *                 .description("Expiring at midnight of 2019-12-31")
 *                 .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   member:
 *     type: gcp:compute:InstanceIAMMember
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       member: user:[email protected]
 *       condition:
 *         title: expires_after_2019_12_31
 *         description: Expiring at midnight of 2019-12-31
 *         expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## This resource supports User Project Overrides.
 * -
 * # IAM policy for Compute Engine Instance
 * Three different resources help you manage your IAM policy for Compute Engine Instance. Each of these resources serves a different use case:
 * * `gcp.compute.InstanceIAMPolicy`: Authoritative. Sets the IAM policy for the instance and replaces any existing policy already attached.
 * * `gcp.compute.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.compute.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.
 * A data source can be used to retrieve policy data in advent you do not need creation
 * * `gcp.compute.InstanceIAMPolicy`: Retrieves the IAM policy for the instance
 * > **Note:** `gcp.compute.InstanceIAMPolicy` **cannot** be used in conjunction with `gcp.compute.InstanceIAMBinding` and `gcp.compute.InstanceIAMMember` or they will fight over what your policy should be.
 * > **Note:** `gcp.compute.InstanceIAMBinding` resources **can be** used in conjunction with `gcp.compute.InstanceIAMMember` resources **only if** they do not grant privilege to the same role.
 * > **Note:**  This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
 * ## gcp.compute.InstanceIAMPolicy
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const admin = gcp.organizations.getIAMPolicy({
 *     bindings: [{
 *         role: "roles/compute.osLogin",
 *         members: ["user:jane@example.com"],
 *     }],
 * });
 * const policy = new gcp.compute.InstanceIAMPolicy("policy", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     policyData: admin.then(admin => admin.policyData),
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * admin = gcp.organizations.get_iam_policy(bindings=[{
 *     "role": "roles/compute.osLogin",
 *     "members": ["user:jane@example.com"],
 * }])
 * policy = gcp.compute.InstanceIAMPolicy("policy",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     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/compute.osLogin",
 *                 Members = new[]
 *                 {
 *                     "user:[email protected]",
 *                 },
 *             },
 *         },
 *     });
 *     var policy = new Gcp.Compute.InstanceIAMPolicy("policy", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"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/compute.osLogin",
 * 					Members: []string{
 * 						"user:[email protected]",
 * 					},
 * 				},
 * 			},
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewInstanceIAMPolicy(ctx, "policy", &compute.InstanceIAMPolicyArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			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.compute.InstanceIAMPolicy;
 * import com.pulumi.gcp.compute.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/compute.osLogin")
 *                 .members("user:[email protected]")
 *                 .build())
 *             .build());
 *         var policy = new InstanceIAMPolicy("policy", InstanceIAMPolicyArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   policy:
 *     type: gcp:compute:InstanceIAMPolicy
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       policyData: ${admin.policyData}
 * variables:
 *   admin:
 *     fn::invoke:
 *       Function: gcp:organizations:getIAMPolicy
 *       Arguments:
 *         bindings:
 *           - role: roles/compute.osLogin
 *             members:
 *               - user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const admin = gcp.organizations.getIAMPolicy({
 *     bindings: [{
 *         role: "roles/compute.osLogin",
 *         members: ["user:jane@example.com"],
 *         condition: {
 *             title: "expires_after_2019_12_31",
 *             description: "Expiring at midnight of 2019-12-31",
 *             expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     }],
 * });
 * const policy = new gcp.compute.InstanceIAMPolicy("policy", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     policyData: admin.then(admin => admin.policyData),
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * admin = gcp.organizations.get_iam_policy(bindings=[{
 *     "role": "roles/compute.osLogin",
 *     "members": ["user:jane@example.com"],
 *     "condition": {
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * }])
 * policy = gcp.compute.InstanceIAMPolicy("policy",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     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/compute.osLogin",
 *                 Members = new[]
 *                 {
 *                     "user:[email protected]",
 *                 },
 *                 Condition = new Gcp.Organizations.Inputs.GetIAMPolicyBindingConditionInputArgs
 *                 {
 *                     Title = "expires_after_2019_12_31",
 *                     Description = "Expiring at midnight of 2019-12-31",
 *                     Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *                 },
 *             },
 *         },
 *     });
 *     var policy = new Gcp.Compute.InstanceIAMPolicy("policy", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"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/compute.osLogin",
 * 					Members: []string{
 * 						"user:[email protected]",
 * 					},
 * 					Condition: {
 * 						Title:       "expires_after_2019_12_31",
 * 						Description: pulumi.StringRef("Expiring at midnight of 2019-12-31"),
 * 						Expression:  "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 * 					},
 * 				},
 * 			},
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = compute.NewInstanceIAMPolicy(ctx, "policy", &compute.InstanceIAMPolicyArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			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.compute.InstanceIAMPolicy;
 * import com.pulumi.gcp.compute.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/compute.osLogin")
 *                 .members("user:[email protected]")
 *                 .condition(GetIAMPolicyBindingConditionArgs.builder()
 *                     .title("expires_after_2019_12_31")
 *                     .description("Expiring at midnight of 2019-12-31")
 *                     .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                     .build())
 *                 .build())
 *             .build());
 *         var policy = new InstanceIAMPolicy("policy", InstanceIAMPolicyArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   policy:
 *     type: gcp:compute:InstanceIAMPolicy
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       policyData: ${admin.policyData}
 * variables:
 *   admin:
 *     fn::invoke:
 *       Function: gcp:organizations:getIAMPolicy
 *       Arguments:
 *         bindings:
 *           - role: roles/compute.osLogin
 *             members:
 *               - user:[email protected]
 *             condition:
 *               title: expires_after_2019_12_31
 *               description: Expiring at midnight of 2019-12-31
 *               expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## gcp.compute.InstanceIAMBinding
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const binding = new gcp.compute.InstanceIAMBinding("binding", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     members: ["user:jane@example.com"],
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * binding = gcp.compute.InstanceIAMBinding("binding",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     members=["user:jane@example.com"])
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var binding = new Gcp.Compute.InstanceIAMBinding("binding", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Members = new[]
 *         {
 *             "user:[email protected]",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMBinding(ctx, "binding", &compute.InstanceIAMBindingArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			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.compute.InstanceIAMBinding;
 * import com.pulumi.gcp.compute.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 binding = new InstanceIAMBinding("binding", InstanceIAMBindingArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .members("user:[email protected]")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   binding:
 *     type: gcp:compute:InstanceIAMBinding
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       members:
 *         - user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const binding = new gcp.compute.InstanceIAMBinding("binding", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     members: ["user:jane@example.com"],
 *     condition: {
 *         title: "expires_after_2019_12_31",
 *         description: "Expiring at midnight of 2019-12-31",
 *         expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * binding = gcp.compute.InstanceIAMBinding("binding",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     members=["user:jane@example.com"],
 *     condition={
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var binding = new Gcp.Compute.InstanceIAMBinding("binding", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Members = new[]
 *         {
 *             "user:[email protected]",
 *         },
 *         Condition = new Gcp.Compute.Inputs.InstanceIAMBindingConditionArgs
 *         {
 *             Title = "expires_after_2019_12_31",
 *             Description = "Expiring at midnight of 2019-12-31",
 *             Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMBinding(ctx, "binding", &compute.InstanceIAMBindingArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			Members: pulumi.StringArray{
 * 				pulumi.String("user:[email protected]"),
 * 			},
 * 			Condition: &compute.InstanceIAMBindingConditionArgs{
 * 				Title:       pulumi.String("expires_after_2019_12_31"),
 * 				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
 * 				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
 * 			},
 * 		})
 * 		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.compute.InstanceIAMBinding;
 * import com.pulumi.gcp.compute.InstanceIAMBindingArgs;
 * import com.pulumi.gcp.compute.inputs.InstanceIAMBindingConditionArgs;
 * 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 binding = new InstanceIAMBinding("binding", InstanceIAMBindingArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .members("user:[email protected]")
 *             .condition(InstanceIAMBindingConditionArgs.builder()
 *                 .title("expires_after_2019_12_31")
 *                 .description("Expiring at midnight of 2019-12-31")
 *                 .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   binding:
 *     type: gcp:compute:InstanceIAMBinding
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       members:
 *         - user:[email protected]
 *       condition:
 *         title: expires_after_2019_12_31
 *         description: Expiring at midnight of 2019-12-31
 *         expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## gcp.compute.InstanceIAMMember
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const member = new gcp.compute.InstanceIAMMember("member", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     member: "user:[email protected]",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * member = gcp.compute.InstanceIAMMember("member",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     member="user:[email protected]")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var member = new Gcp.Compute.InstanceIAMMember("member", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Member = "user:[email protected]",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMMember(ctx, "member", &compute.InstanceIAMMemberArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			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.compute.InstanceIAMMember;
 * import com.pulumi.gcp.compute.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 member = new InstanceIAMMember("member", InstanceIAMMemberArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .member("user:[email protected]")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   member:
 *     type: gcp:compute:InstanceIAMMember
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       member: user:[email protected]
 * ```
 * 
 * With IAM Conditions:
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const member = new gcp.compute.InstanceIAMMember("member", {
 *     project: _default.project,
 *     zone: _default.zone,
 *     instanceName: _default.name,
 *     role: "roles/compute.osLogin",
 *     member: "user:[email protected]",
 *     condition: {
 *         title: "expires_after_2019_12_31",
 *         description: "Expiring at midnight of 2019-12-31",
 *         expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * member = gcp.compute.InstanceIAMMember("member",
 *     project=default["project"],
 *     zone=default["zone"],
 *     instance_name=default["name"],
 *     role="roles/compute.osLogin",
 *     member="user:[email protected]",
 *     condition={
 *         "title": "expires_after_2019_12_31",
 *         "description": "Expiring at midnight of 2019-12-31",
 *         "expression": "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var member = new Gcp.Compute.InstanceIAMMember("member", new()
 *     {
 *         Project = @default.Project,
 *         Zone = @default.Zone,
 *         InstanceName = @default.Name,
 *         Role = "roles/compute.osLogin",
 *         Member = "user:[email protected]",
 *         Condition = new Gcp.Compute.Inputs.InstanceIAMMemberConditionArgs
 *         {
 *             Title = "expires_after_2019_12_31",
 *             Description = "Expiring at midnight of 2019-12-31",
 *             Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewInstanceIAMMember(ctx, "member", &compute.InstanceIAMMemberArgs{
 * 			Project:      pulumi.Any(_default.Project),
 * 			Zone:         pulumi.Any(_default.Zone),
 * 			InstanceName: pulumi.Any(_default.Name),
 * 			Role:         pulumi.String("roles/compute.osLogin"),
 * 			Member:       pulumi.String("user:[email protected]"),
 * 			Condition: &compute.InstanceIAMMemberConditionArgs{
 * 				Title:       pulumi.String("expires_after_2019_12_31"),
 * 				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
 * 				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
 * 			},
 * 		})
 * 		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.compute.InstanceIAMMember;
 * import com.pulumi.gcp.compute.InstanceIAMMemberArgs;
 * import com.pulumi.gcp.compute.inputs.InstanceIAMMemberConditionArgs;
 * 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 member = new InstanceIAMMember("member", InstanceIAMMemberArgs.builder()
 *             .project(default_.project())
 *             .zone(default_.zone())
 *             .instanceName(default_.name())
 *             .role("roles/compute.osLogin")
 *             .member("user:[email protected]")
 *             .condition(InstanceIAMMemberConditionArgs.builder()
 *                 .title("expires_after_2019_12_31")
 *                 .description("Expiring at midnight of 2019-12-31")
 *                 .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   member:
 *     type: gcp:compute:InstanceIAMMember
 *     properties:
 *       project: ${default.project}
 *       zone: ${default.zone}
 *       instanceName: ${default.name}
 *       role: roles/compute.osLogin
 *       member: user:[email protected]
 *       condition:
 *         title: expires_after_2019_12_31
 *         description: Expiring at midnight of 2019-12-31
 *         expression: request.time < timestamp("2020-01-01T00:00:00Z")
 * ```
 * 
 * ## Import
 * For all import syntaxes, the "resource in question" can take any of the following forms:
 * * projects/{{project}}/zones/{{zone}}/instances/{{name}}
 * * {{project}}/{{zone}}/{{name}}
 * * {{zone}}/{{name}}
 * * {{name}}
 * Any variables not passed in the import command will be taken from the provider configuration.
 * Compute Engine instance 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/instanceIAMBinding:InstanceIAMBinding editor "projects/{{project}}/zones/{{zone}}/instances/{{instance}} roles/compute.osLogin user:[email protected]"
 * ```
 * IAM binding imports use space-delimited identifiers: the resource in question and the role, e.g.
 * ```sh
 * $ pulumi import gcp:compute/instanceIAMBinding:InstanceIAMBinding editor "projects/{{project}}/zones/{{zone}}/instances/{{instance}} roles/compute.osLogin"
 * ```
 * IAM policy imports use the identifier of the resource in question, e.g.
 * ```sh
 * $ pulumi import gcp:compute/instanceIAMBinding:InstanceIAMBinding editor projects/{{project}}/zones/{{zone}}/instances/{{instance}}
 * ```
 * -> **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 condition An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
 * Structure is documented below.
 * @property instanceName Used to find the parent resource to bind the IAM policy to
 * @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.
 * * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
 * * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
 * * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
 * @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 role The role that should be applied. Only one
 * `gcp.compute.InstanceIAMBinding` can be used per role. Note that custom roles must be of the format
 * `[projects|organizations]/{parent-name}/roles/{role-name}`.
 * @property zone A reference to the zone where the machine resides. 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 zone is provided in the parent identifier and no
 * zone is specified, it is taken from the provider configuration.
 */
public data class InstanceIAMBindingArgs(
    public val condition: Output? = null,
    public val instanceName: Output? = null,
    public val members: Output>? = null,
    public val project: Output? = null,
    public val role: Output? = null,
    public val zone: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.InstanceIAMBindingArgs =
        com.pulumi.gcp.compute.InstanceIAMBindingArgs.builder()
            .condition(condition?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .instanceName(instanceName?.applyValue({ args0 -> args0 }))
            .members(members?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .project(project?.applyValue({ args0 -> args0 }))
            .role(role?.applyValue({ args0 -> args0 }))
            .zone(zone?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InstanceIAMBindingArgs].
 */
@PulumiTagMarker
public class InstanceIAMBindingArgsBuilder internal constructor() {
    private var condition: Output? = null

    private var instanceName: Output? = null

    private var members: Output>? = null

    private var project: Output? = null

    private var role: Output? = null

    private var zone: Output? = null

    /**
     * @param value An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
     * Structure is documented below.
     */
    @JvmName("sbhmuqkctswbcnxj")
    public suspend fun condition(`value`: Output) {
        this.condition = value
    }

    /**
     * @param value Used to find the parent resource to bind the IAM policy to
     */
    @JvmName("odsmuqoftysjvcwf")
    public suspend fun instanceName(`value`: Output) {
        this.instanceName = 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.
     * * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
     * * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
     * * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
     */
    @JvmName("ceuqxkhguwlxfinp")
    public suspend fun members(`value`: Output>) {
        this.members = value
    }

    @JvmName("oatxrrwwsckyikhb")
    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.
     * * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
     * * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
     * * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
     */
    @JvmName("xexqphsfxytevciy")
    public suspend fun members(values: List>) {
        this.members = Output.all(values)
    }

    /**
     * @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("gejyqgxkljfxdfsm")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value The role that should be applied. Only one
     * `gcp.compute.InstanceIAMBinding` can be used per role. Note that custom roles must be of the format
     * `[projects|organizations]/{parent-name}/roles/{role-name}`.
     */
    @JvmName("akrspbagkhrxqjxn")
    public suspend fun role(`value`: Output) {
        this.role = value
    }

    /**
     * @param value A reference to the zone where the machine resides. 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 zone is provided in the parent identifier and no
     * zone is specified, it is taken from the provider configuration.
     */
    @JvmName("ngjkmsnknvauvfby")
    public suspend fun zone(`value`: Output) {
        this.zone = value
    }

    /**
     * @param value An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
     * Structure is documented below.
     */
    @JvmName("ghacqsprwtmtptst")
    public suspend fun condition(`value`: InstanceIAMBindingConditionArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.condition = mapped
    }

    /**
     * @param argument An [IAM Condition](https://cloud.google.com/iam/docs/conditions-overview) for a given binding.
     * Structure is documented below.
     */
    @JvmName("cxnagpxjfkpaevym")
    public suspend fun condition(argument: suspend InstanceIAMBindingConditionArgsBuilder.() -> Unit) {
        val toBeMapped = InstanceIAMBindingConditionArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.condition = mapped
    }

    /**
     * @param value Used to find the parent resource to bind the IAM policy to
     */
    @JvmName("behvoxbbonxtiobi")
    public suspend fun instanceName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.instanceName = mapped
    }

    /**
     * @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.
     * * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
     * * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
     * * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
     */
    @JvmName("ydtwpdqandpjpxfd")
    public suspend fun members(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.members = mapped
    }

    /**
     * @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.
     * * **projectOwner:projectid**: Owners of the given project. For example, "projectOwner:my-example-project"
     * * **projectEditor:projectid**: Editors of the given project. For example, "projectEditor:my-example-project"
     * * **projectViewer:projectid**: Viewers of the given project. For example, "projectViewer:my-example-project"
     */
    @JvmName("upomndrybpflhkol")
    public suspend fun members(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.members = 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("fmeqiqlqvtnqgykw")
    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.compute.InstanceIAMBinding` can be used per role. Note that custom roles must be of the format
     * `[projects|organizations]/{parent-name}/roles/{role-name}`.
     */
    @JvmName("odeynygoeiilscay")
    public suspend fun role(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.role = mapped
    }

    /**
     * @param value A reference to the zone where the machine resides. 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 zone is provided in the parent identifier and no
     * zone is specified, it is taken from the provider configuration.
     */
    @JvmName("sreutlhvbnhkuydq")
    public suspend fun zone(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.zone = mapped
    }

    internal fun build(): InstanceIAMBindingArgs = InstanceIAMBindingArgs(
        condition = condition,
        instanceName = instanceName,
        members = members,
        project = project,
        role = role,
        zone = zone,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy