SftpServerLinkedService Class
A linked service for an SSH File Transfer Protocol (SFTP) server.
All required parameters must be populated in order to send to Azure.
- Inheritance
-
azure.synapse.artifacts.models._models_py3.LinkedServiceSftpServerLinkedService
Constructor
SftpServerLinkedService(*, host: object, additional_properties: Optional[Dict[str, object]] = None, connect_via: Optional[azure.synapse.artifacts.models._models_py3.IntegrationRuntimeReference] = None, description: Optional[str] = None, parameters: Optional[Dict[str, azure.synapse.artifacts.models._models_py3.ParameterSpecification]] = None, annotations: Optional[List[object]] = None, port: Optional[object] = None, authentication_type: Optional[Union[str, azure.synapse.artifacts.models._artifacts_client_enums.SftpAuthenticationType]] = None, user_name: Optional[object] = None, password: Optional[azure.synapse.artifacts.models._models_py3.SecretBase] = None, encrypted_credential: Optional[object] = None, private_key_path: Optional[object] = None, private_key_content: Optional[azure.synapse.artifacts.models._models_py3.SecretBase] = None, pass_phrase: Optional[azure.synapse.artifacts.models._models_py3.SecretBase] = None, skip_host_key_validation: Optional[object] = None, host_key_fingerprint: Optional[object] = None, **kwargs)
Parameters
Unmatched properties from the message are deserialized to this collection.
- host
- object
Required. The SFTP server host name. Type: string (or Expression with resultType string).
- port
- object
The TCP port number that the SFTP server uses to listen for client connections. Default value is 22. Type: integer (or Expression with resultType integer), minimum: 0.
- authentication_type
- str or SftpAuthenticationType
The authentication type to be used to connect to the FTP server. Possible values include: "Basic", "SshPublicKey".
- user_name
- object
The username used to log on to the SFTP server. Type: string (or Expression with resultType string).
- encrypted_credential
- object
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- private_key_path
- object
The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string).
- private_key_content
- SecretBase
Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format.
- pass_phrase
- SecretBase
The password to decrypt the SSH private key if the SSH private key is encrypted.
- skip_host_key_validation
- object
If true, skip the SSH host key validation. Default value is false. Type: boolean (or Expression with resultType boolean).
- host_key_fingerprint
- object
The host key finger-print of the SFTP server. When SkipHostKeyValidation is false, HostKeyFingerprint should be specified. Type: string (or Expression with resultType string).
Feedback
Submit and view feedback for