ClientArgs

data class ClientArgs(val brand: Output<String>? = null, val displayName: Output<String>? = null) : ConvertibleToJava<ClientArgs>

{{% examples %}}

Example Usage

{{% /examples %}}

Import

Client can be imported using any of these accepted formats

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

Constructors

Link copied to clipboard
fun ClientArgs(brand: Output<String>? = null, displayName: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ClientArgs

Properties

Link copied to clipboard
val brand: Output<String>? = null

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

Link copied to clipboard
val displayName: Output<String>? = null

Human-friendly name given to the OAuth client.