IdentityAwareProxyResponse

data class IdentityAwareProxyResponse(val enabled: Boolean, val oauth2ClientId: String, val oauth2ClientSecret: String, val oauth2ClientSecretSha256: String)

Identity-Aware Proxy

Constructors

Link copied to clipboard
fun IdentityAwareProxyResponse(enabled: Boolean, oauth2ClientId: String, oauth2ClientSecret: String, oauth2ClientSecretSha256: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.

Link copied to clipboard

OAuth2 client ID to use for the authentication flow.

Link copied to clipboard

OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly

Link copied to clipboard

Hex-encoded SHA-256 hash of the client secret.