pub struct SqlServerConnectionProfile {Show 15 fields
pub backups: Option<SqlServerBackups>,
pub cloud_sql_id: Option<String>,
pub cloud_sql_project_id: Option<String>,
pub database: Option<String>,
pub dbm_port: Option<i32>,
pub forward_ssh_connectivity: Option<ForwardSshTunnelConnectivity>,
pub host: Option<String>,
pub password: Option<String>,
pub password_set: Option<bool>,
pub port: Option<i32>,
pub private_connectivity: Option<PrivateConnectivity>,
pub private_service_connect_connectivity: Option<PrivateServiceConnectConnectivity>,
pub ssl: Option<SslConfig>,
pub static_ip_connectivity: Option<StaticIpConnectivity>,
pub username: Option<String>,
}Expand description
Specifies connection parameters required specifically for SQL Server databases.
This type is not used in any activity, and only used as part of another schema.
Fields§
§backups: Option<SqlServerBackups>The backup details in Cloud Storage for homogeneous migration to Cloud SQL for SQL Server.
cloud_sql_id: Option<String>If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.
cloud_sql_project_id: Option<String>Optional. The project id of the Cloud SQL instance. If not provided, the project id of the connection profile will be used.
database: Option<String>Required. The name of the specific database within the host.
dbm_port: Option<i32>Optional. The Database Mirroring (DBM) port of the source SQL Server instance.
forward_ssh_connectivity: Option<ForwardSshTunnelConnectivity>Forward SSH tunnel connectivity.
host: Option<String>Required. The IP or hostname of the source SQL Server database.
password: Option<String>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.
password_set: Option<bool>Output only. Indicates whether a new password is included in the request.
port: Option<i32>Required. The network port of the source SQL Server database.
private_connectivity: Option<PrivateConnectivity>Private connectivity.
private_service_connect_connectivity: Option<PrivateServiceConnectConnectivity>Private Service Connect connectivity.
ssl: Option<SslConfig>SSL configuration for the destination to connect to the source database.
static_ip_connectivity: Option<StaticIpConnectivity>Static IP connectivity data (default, no additional details needed).
username: Option<String>Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.
Trait Implementations§
Source§impl Clone for SqlServerConnectionProfile
impl Clone for SqlServerConnectionProfile
Source§fn clone(&self) -> SqlServerConnectionProfile
fn clone(&self) -> SqlServerConnectionProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more