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

Oauth2ClientCredentials

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

OAuth2 Client Credentials.

interface Oauth2ClientCredentials {
clientId?: string;
clientSecret?: string;
secretManagerStoredClientSecret?: string;
}

§Properties

§
clientId?: string
[src]

Required. Client ID for Salesforce OAuth2 Client Credentials.

§
clientSecret?: string
[src]

Optional. Client secret for Salesforce OAuth2 Client Credentials. Mutually exclusive with the secret_manager_stored_client_secret field.

§
secretManagerStoredClientSecret?: string
[src]

Optional. A reference to a Secret Manager resource name storing the Salesforce OAuth2 client_secret. Mutually exclusive with the client_secret field.