1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. iap
  5. Client
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.iap.Client

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    Contains the data that describes an Identity Aware Proxy owned client.

    Note: Only internal org clients can be created via declarative tools. External clients must be manually created via the GCP console. This restriction is due to the existing APIs and not lack of support in this tool.

    To get more information about Client, see:

    Example Usage

    Iap Client

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.organizations.Project("project", {
        projectId: "my-project",
        name: "my-project",
        orgId: "123456789",
    });
    const projectService = new gcp.projects.Service("project_service", {
        project: project.projectId,
        service: "iap.googleapis.com",
    });
    const projectBrand = new gcp.iap.Brand("project_brand", {
        supportEmail: "support@example.com",
        applicationTitle: "Cloud IAP protected Application",
        project: projectService.project,
    });
    const projectClient = new gcp.iap.Client("project_client", {
        displayName: "Test Client",
        brand: projectBrand.name,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.organizations.Project("project",
        project_id="my-project",
        name="my-project",
        org_id="123456789")
    project_service = gcp.projects.Service("project_service",
        project=project.project_id,
        service="iap.googleapis.com")
    project_brand = gcp.iap.Brand("project_brand",
        support_email="support@example.com",
        application_title="Cloud IAP protected Application",
        project=project_service.project)
    project_client = gcp.iap.Client("project_client",
        display_name="Test Client",
        brand=project_brand.name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/iap"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		project, err := organizations.NewProject(ctx, "project", &organizations.ProjectArgs{
    			ProjectId: pulumi.String("my-project"),
    			Name:      pulumi.String("my-project"),
    			OrgId:     pulumi.String("123456789"),
    		})
    		if err != nil {
    			return err
    		}
    		projectService, err := projects.NewService(ctx, "project_service", &projects.ServiceArgs{
    			Project: project.ProjectId,
    			Service: pulumi.String("iap.googleapis.com"),
    		})
    		if err != nil {
    			return err
    		}
    		projectBrand, err := iap.NewBrand(ctx, "project_brand", &iap.BrandArgs{
    			SupportEmail:     pulumi.String("support@example.com"),
    			ApplicationTitle: pulumi.String("Cloud IAP protected Application"),
    			Project:          projectService.Project,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iap.NewClient(ctx, "project_client", &iap.ClientArgs{
    			DisplayName: pulumi.String("Test Client"),
    			Brand:       projectBrand.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Organizations.Project("project", new()
        {
            ProjectId = "my-project",
            Name = "my-project",
            OrgId = "123456789",
        });
    
        var projectService = new Gcp.Projects.Service("project_service", new()
        {
            Project = project.ProjectId,
            ServiceName = "iap.googleapis.com",
        });
    
        var projectBrand = new Gcp.Iap.Brand("project_brand", new()
        {
            SupportEmail = "support@example.com",
            ApplicationTitle = "Cloud IAP protected Application",
            Project = projectService.Project,
        });
    
        var projectClient = new Gcp.Iap.Client("project_client", new()
        {
            DisplayName = "Test Client",
            Brand = projectBrand.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.organizations.Project;
    import com.pulumi.gcp.organizations.ProjectArgs;
    import com.pulumi.gcp.projects.Service;
    import com.pulumi.gcp.projects.ServiceArgs;
    import com.pulumi.gcp.iap.Brand;
    import com.pulumi.gcp.iap.BrandArgs;
    import com.pulumi.gcp.iap.Client;
    import com.pulumi.gcp.iap.ClientArgs;
    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 project = new Project("project", ProjectArgs.builder()        
                .projectId("my-project")
                .name("my-project")
                .orgId("123456789")
                .build());
    
            var projectService = new Service("projectService", ServiceArgs.builder()        
                .project(project.projectId())
                .service("iap.googleapis.com")
                .build());
    
            var projectBrand = new Brand("projectBrand", BrandArgs.builder()        
                .supportEmail("support@example.com")
                .applicationTitle("Cloud IAP protected Application")
                .project(projectService.project())
                .build());
    
            var projectClient = new Client("projectClient", ClientArgs.builder()        
                .displayName("Test Client")
                .brand(projectBrand.name())
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:organizations:Project
        properties:
          projectId: my-project
          name: my-project
          orgId: '123456789'
      projectService:
        type: gcp:projects:Service
        name: project_service
        properties:
          project: ${project.projectId}
          service: iap.googleapis.com
      projectBrand:
        type: gcp:iap:Brand
        name: project_brand
        properties:
          supportEmail: support@example.com
          applicationTitle: Cloud IAP protected Application
          project: ${projectService.project}
      projectClient:
        type: gcp:iap:Client
        name: project_client
        properties:
          displayName: Test Client
          brand: ${projectBrand.name}
    

    Create Client Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Client(name: string, args: ClientArgs, opts?: CustomResourceOptions);
    @overload
    def Client(resource_name: str,
               args: ClientArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Client(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               brand: Optional[str] = None,
               display_name: Optional[str] = None)
    func NewClient(ctx *Context, name string, args ClientArgs, opts ...ResourceOption) (*Client, error)
    public Client(string name, ClientArgs args, CustomResourceOptions? opts = null)
    public Client(String name, ClientArgs args)
    public Client(String name, ClientArgs args, CustomResourceOptions options)
    
    type: gcp:iap:Client
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ClientArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ClientArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ClientArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClientArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClientArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var gcpClientResource = new Gcp.Iap.Client("gcpClientResource", new()
    {
        Brand = "string",
        DisplayName = "string",
    });
    
    example, err := iap.NewClient(ctx, "gcpClientResource", &iap.ClientArgs{
    	Brand:       pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    })
    
    var gcpClientResource = new Client("gcpClientResource", ClientArgs.builder()        
        .brand("string")
        .displayName("string")
        .build());
    
    gcp_client_resource = gcp.iap.Client("gcpClientResource",
        brand="string",
        display_name="string")
    
    const gcpClientResource = new gcp.iap.Client("gcpClientResource", {
        brand: "string",
        displayName: "string",
    });
    
    type: gcp:iap:Client
    properties:
        brand: string
        displayName: string
    

    Client Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Client resource accepts the following input properties:

    Brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    DisplayName string
    Human-friendly name given to the OAuth client.
    Brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    DisplayName string
    Human-friendly name given to the OAuth client.
    brand String
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    displayName String
    Human-friendly name given to the OAuth client.
    brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    displayName string
    Human-friendly name given to the OAuth client.
    brand str
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    display_name str
    Human-friendly name given to the OAuth client.
    brand String
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    displayName String
    Human-friendly name given to the OAuth client.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Client resource produces the following output properties:

    ClientId string
    The OAuth2 ID of the client.
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    ClientId string
    The OAuth2 ID of the client.
    Id string
    The provider-assigned unique ID for this managed resource.
    Secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    clientId String
    The OAuth2 ID of the client.
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    clientId string
    The OAuth2 ID of the client.
    id string
    The provider-assigned unique ID for this managed resource.
    secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    client_id str
    The OAuth2 ID of the client.
    id str
    The provider-assigned unique ID for this managed resource.
    secret str
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    clientId String
    The OAuth2 ID of the client.
    id String
    The provider-assigned unique ID for this managed resource.
    secret String
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.

    Look up Existing Client Resource

    Get an existing Client resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ClientState, opts?: CustomResourceOptions): Client
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            brand: Optional[str] = None,
            client_id: Optional[str] = None,
            display_name: Optional[str] = None,
            secret: Optional[str] = None) -> Client
    func GetClient(ctx *Context, name string, id IDInput, state *ClientState, opts ...ResourceOption) (*Client, error)
    public static Client Get(string name, Input<string> id, ClientState? state, CustomResourceOptions? opts = null)
    public static Client get(String name, Output<String> id, ClientState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    ClientId string
    The OAuth2 ID of the client.
    DisplayName string
    Human-friendly name given to the OAuth client.
    Secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    Brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    ClientId string
    The OAuth2 ID of the client.
    DisplayName string
    Human-friendly name given to the OAuth client.
    Secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    brand String
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    clientId String
    The OAuth2 ID of the client.
    displayName String
    Human-friendly name given to the OAuth client.
    secret String
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    brand string
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    clientId string
    The OAuth2 ID of the client.
    displayName string
    Human-friendly name given to the OAuth client.
    secret string
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    brand str
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    client_id str
    The OAuth2 ID of the client.
    display_name str
    Human-friendly name given to the OAuth client.
    secret str
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.
    brand String
    Identifier of the brand to which this client is attached to. The format is projects/{project_number}/brands/{brand_id}/identityAwareProxyClients/{client_id}.


    clientId String
    The OAuth2 ID of the client.
    displayName String
    Human-friendly name given to the OAuth client.
    secret String
    Output only. Client secret of the OAuth client. Note: This property is sensitive and will not be displayed in the plan.

    Import

    Client can be imported using any of these accepted formats:

    • {{brand}}/identityAwareProxyClients/{{client_id}}

    • {{brand}}/{{client_id}}

    When using the pulumi import command, Client can be imported using one of the formats above. For example:

    $ pulumi import gcp:iap/client:Client default {{brand}}/identityAwareProxyClients/{{client_id}}
    
    $ pulumi import gcp:iap/client:Client default {{brand}}/{{client_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi