getClient

Get info about a Google Cloud IAP Client.

Example Usage

data "google_project" "project" {
project_id = "foobar"
}
data "google_iap_client" "project_client" {
brand = "projects/${data.google_project.project.number}/brands/[BRAND_NUMBER]"
client_id = FOO.apps.googleusercontent.com
}

Return

A collection of values returned by getClient.

Parameters

argument

A collection of arguments for invoking getClient.


suspend fun getClient(brand: String, clientId: String): GetClientResult

Return

A collection of values returned by getClient.

Parameters

brand

The name of the brand.

clientId

The client_id of the brand.

See also


suspend fun getClient(argument: suspend GetClientPlainArgsBuilder.() -> Unit): GetClientResult

Return

A collection of values returned by getClient.

Parameters

argument

Builder for com.pulumi.gcp.iap.kotlin.inputs.GetClientPlainArgs.

See also