MongoDbLinkedService Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MongoDbLinkedService() |
Initializes a new instance of the MongoDbLinkedService class. |
MongoDbLinkedService(Object, Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, String, Object, SecretBase, Object, Object, Object, Object, Object) |
Initializes a new instance of the MongoDbLinkedService class. |
MongoDbLinkedService()
Initializes a new instance of the MongoDbLinkedService class.
public MongoDbLinkedService ();
Public Sub New ()
Applies to
MongoDbLinkedService(Object, Object, IDictionary<String,Object>, IntegrationRuntimeReference, String, IDictionary<String,ParameterSpecification>, IList<Object>, String, Object, SecretBase, Object, Object, Object, Object, Object)
Initializes a new instance of the MongoDbLinkedService class.
public MongoDbLinkedService (object server, object databaseName, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference connectVia = default, string description = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, string authenticationType = default, object username = default, Microsoft.Azure.Management.DataFactory.Models.SecretBase password = default, object authSource = default, object port = default, object enableSsl = default, object allowSelfSignedServerCert = default, object encryptedCredential = default);
new Microsoft.Azure.Management.DataFactory.Models.MongoDbLinkedService : obj * obj * System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.DataFactory.Models.IntegrationRuntimeReference * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * string * obj * Microsoft.Azure.Management.DataFactory.Models.SecretBase * obj * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.MongoDbLinkedService
Public Sub New (server As Object, databaseName As Object, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional connectVia As IntegrationRuntimeReference = Nothing, Optional description As String = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional authenticationType As String = Nothing, Optional username As Object = Nothing, Optional password As SecretBase = Nothing, Optional authSource As Object = Nothing, Optional port As Object = Nothing, Optional enableSsl As Object = Nothing, Optional allowSelfSignedServerCert As Object = Nothing, Optional encryptedCredential As Object = Nothing)
Parameters
- server
- Object
The IP address or server name of the MongoDB server. Type: string (or Expression with resultType string).
- databaseName
- Object
The name of the MongoDB database that you want to access. Type: string (or Expression with resultType string).
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- connectVia
- IntegrationRuntimeReference
The integration runtime reference.
- description
- String
Linked service description.
- parameters
- IDictionary<String,ParameterSpecification>
Parameters for linked service.
- authenticationType
- String
The authentication type to be used to connect to the MongoDB database. Possible values include: 'Basic', 'Anonymous'
- username
- Object
Username for authentication. Type: string (or Expression with resultType string).
- password
- SecretBase
Password for authentication.
- authSource
- Object
Database to verify the username and password. Type: string (or Expression with resultType string).
- port
- Object
The TCP port number that the MongoDB server uses to listen for client connections. The default value is 27017. Type: integer (or Expression with resultType integer), minimum: 0.
- enableSsl
- Object
Specifies whether the connections to the server are encrypted using SSL. The default value is false. Type: boolean (or Expression with resultType boolean).
- allowSelfSignedServerCert
- Object
Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean).
- encryptedCredential
- Object
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
Applies to
Azure SDK for .NET