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

SqlServerConnectionProfile

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

Specifies connection parameters required specifically for SQL Server databases.

interface SqlServerConnectionProfile {
backups?: SqlServerBackups;
cloudSqlId?: string;
forwardSshConnectivity?: ForwardSshTunnelConnectivity;
host?: string;
password?: string;
readonly passwordSet?: boolean;
port?: number;
privateConnectivity?: PrivateConnectivity;
privateServiceConnectConnectivity?: PrivateServiceConnectConnectivity;
ssl?: SslConfig;
staticIpConnectivity?: StaticIpConnectivity;
username?: string;
}

§Properties

§

The backup details in Cloud Storage for homogeneous migration to Cloud SQL for SQL Server.

§
cloudSqlId?: string
[src]

If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.

§
forwardSshConnectivity?: ForwardSshTunnelConnectivity
[src]

Forward SSH tunnel connectivity.

§
host?: string
[src]

Required. The IP or hostname of the source SQL Server database.

§
password?: string
[src]

Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.

§
readonly passwordSet?: boolean
[src]

Output only. Indicates whether a new password is included in the request.

§
port?: number
[src]

Required. The network port of the source SQL Server database.

§
privateConnectivity?: PrivateConnectivity
[src]

Private connectivity.

§
privateServiceConnectConnectivity?: PrivateServiceConnectConnectivity
[src]

Private Service Connect connectivity.

§

SSL configuration for the destination to connect to the source database.

§
staticIpConnectivity?: StaticIpConnectivity
[src]

Static IP connectivity data (default, no additional details needed).

§
username?: string
[src]

Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.