Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BackendServiceIAP

import type { BackendServiceIAP } from "https://googleapis.deno.dev/v1/compute:v1.ts";

Identity-Aware Proxy

interface BackendServiceIAP {
enabled?: boolean;
oauth2ClientId?: string;
oauth2ClientSecret?: string;
oauth2ClientSecretSha256?: string;
}

§Properties

§
enabled?: boolean
[src]

Whether the serving infrastructure will authenticate and authorize all incoming requests.

§
oauth2ClientId?: string
[src]

OAuth2 client ID to use for the authentication flow.

§
oauth2ClientSecret?: string
[src]

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 oauth2ClientSecretSha256 field.

§
oauth2ClientSecretSha256?: string
[src]

[Output Only] SHA256 hash value for the field oauth2_client_secret above.