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

UserCredentials

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

Username-password credentials.

interface UserCredentials {
password?: string;
secretManagerStoredPassword?: string;
secretManagerStoredSecurityToken?: string;
securityToken?: string;
username?: string;
}

§Properties

§
password?: string
[src]

Optional. Password for the Salesforce connection. Mutually exclusive with the secret_manager_stored_password field.

§
secretManagerStoredPassword?: string
[src]

Optional. A reference to a Secret Manager resource name storing the Salesforce connection's password. Mutually exclusive with the password field.

§
secretManagerStoredSecurityToken?: string
[src]

Optional. A reference to a Secret Manager resource name storing the Salesforce connection's security token. Mutually exclusive with the security_token field.

§
securityToken?: string
[src]

Optional. Security token for the Salesforce connection. Mutually exclusive with the secret_manager_stored_security_token field.

§
username?: string
[src]

Required. Username for the Salesforce connection.