HttpLinkedService 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
HttpLinkedService() |
Initializes a new instance of the HttpLinkedService class. |
HttpLinkedService(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 HttpLinkedService class. |
HttpLinkedService()
Initializes a new instance of the HttpLinkedService class.
public HttpLinkedService ();
Public Sub New ()
Applies to
HttpLinkedService(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 HttpLinkedService class.
public HttpLinkedService (object url, 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 authHeaders = default, object embeddedCertData = default, object certThumbprint = default, object encryptedCredential = default, object enableServerCertificateValidation = default);
new Microsoft.Azure.Management.DataFactory.Models.HttpLinkedService : 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.HttpLinkedService
Public Sub New (url 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 authHeaders As Object = Nothing, Optional embeddedCertData As Object = Nothing, Optional certThumbprint As Object = Nothing, Optional encryptedCredential As Object = Nothing, Optional enableServerCertificateValidation As Object = Nothing)
Parameters
- url
- Object
The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. 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 HTTP server. Possible values include: 'Basic', 'Anonymous', 'Digest', 'Windows', 'ClientCertificate'
- userName
- Object
User name for Basic, Digest, or Windows authentication. Type: string (or Expression with resultType string).
- password
- SecretBase
Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication.
- authHeaders
- Object
The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object).
- embeddedCertData
- Object
Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
- certThumbprint
- Object
Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string).
- encryptedCredential
- Object
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
- enableServerCertificateValidation
- Object
If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean).
Applies to
Azure SDK for .NET