Skip to content

[DataFactory]Powershell Release #27766

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ public HiveLinkedService()
/// The default value is false.
/// </param>

/// <param name="enableServerCertificateValidation">Specifies whether the connections to the server will validate server
/// certificate, the default value is True. Only used for Version 2.0
/// </param>

/// <param name="trustedCertPath">The full path of the .pem file containing trusted CA certificates for
/// verifying the server when connecting over SSL. This property can only be
/// set when using SSL on self-hosted IR. The default value is the cacerts.pem
Expand All @@ -108,7 +112,7 @@ public HiveLinkedService()
/// <param name="encryptedCredential">The encrypted credential used for authentication. Credentials are encrypted
/// using the integration runtime credential manager. Type: string.
/// </param>
public HiveLinkedService(object host, string authenticationType, System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), string version = default(string), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), System.Collections.Generic.IDictionary<string, ParameterSpecification> parameters = default(System.Collections.Generic.IDictionary<string, ParameterSpecification>), System.Collections.Generic.IList<object> annotations = default(System.Collections.Generic.IList<object>), object port = default(object), string serverType = default(string), string thriftTransportProtocol = default(string), object serviceDiscoveryMode = default(object), object zooKeeperNameSpace = default(object), object useNativeQuery = default(object), object username = default(object), SecretBase password = default(SecretBase), object httpPath = default(object), object enableSsl = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))
public HiveLinkedService(object host, string authenticationType, System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), string version = default(string), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), System.Collections.Generic.IDictionary<string, ParameterSpecification> parameters = default(System.Collections.Generic.IDictionary<string, ParameterSpecification>), System.Collections.Generic.IList<object> annotations = default(System.Collections.Generic.IList<object>), object port = default(object), string serverType = default(string), string thriftTransportProtocol = default(string), object serviceDiscoveryMode = default(object), object zooKeeperNameSpace = default(object), object useNativeQuery = default(object), object username = default(object), SecretBase password = default(SecretBase), object httpPath = default(object), object enableSsl = default(object), object enableServerCertificateValidation = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))

: base(additionalProperties, version, connectVia, description, parameters, annotations)
{
Expand All @@ -124,6 +128,7 @@ public HiveLinkedService()
this.Password = password;
this.HttpPath = httpPath;
this.EnableSsl = enableSsl;
this.EnableServerCertificateValidation = enableServerCertificateValidation;
this.TrustedCertPath = trustedCertPath;
this.UseSystemTrustStore = useSystemTrustStore;
this.AllowHostNameCnMismatch = allowHostNameCnMismatch;
Expand Down Expand Up @@ -216,6 +221,13 @@ public HiveLinkedService()
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.enableSsl")]
public object EnableSsl {get; set; }

/// <summary>
/// Gets or sets specifies whether the connections to the server will validate
/// server certificate, the default value is True. Only used for Version 2.0
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.enableServerCertificateValidation")]
public object EnableServerCertificateValidation {get; set; }

/// <summary>
/// Gets or sets the full path of the .pem file containing trusted CA
/// certificates for verifying the server when connecting over SSL. This
Expand Down Expand Up @@ -288,6 +300,7 @@ public override void Validate()




}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ public HiveLinkedServiceTypeProperties()
/// The default value is false.
/// </param>

/// <param name="enableServerCertificateValidation">Specifies whether the connections to the server will validate server
/// certificate, the default value is True. Only used for Version 2.0
/// </param>

/// <param name="trustedCertPath">The full path of the .pem file containing trusted CA certificates for
/// verifying the server when connecting over SSL. This property can only be
/// set when using SSL on self-hosted IR. The default value is the cacerts.pem
Expand All @@ -87,7 +91,7 @@ public HiveLinkedServiceTypeProperties()
/// <param name="encryptedCredential">The encrypted credential used for authentication. Credentials are encrypted
/// using the integration runtime credential manager. Type: string.
/// </param>
public HiveLinkedServiceTypeProperties(object host, string authenticationType, object port = default(object), string serverType = default(string), string thriftTransportProtocol = default(string), object serviceDiscoveryMode = default(object), object zooKeeperNameSpace = default(object), object useNativeQuery = default(object), object username = default(object), SecretBase password = default(SecretBase), object httpPath = default(object), object enableSsl = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))
public HiveLinkedServiceTypeProperties(object host, string authenticationType, object port = default(object), string serverType = default(string), string thriftTransportProtocol = default(string), object serviceDiscoveryMode = default(object), object zooKeeperNameSpace = default(object), object useNativeQuery = default(object), object username = default(object), SecretBase password = default(SecretBase), object httpPath = default(object), object enableSsl = default(object), object enableServerCertificateValidation = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))

{
this.Host = host;
Expand All @@ -102,6 +106,7 @@ public HiveLinkedServiceTypeProperties()
this.Password = password;
this.HttpPath = httpPath;
this.EnableSsl = enableSsl;
this.EnableServerCertificateValidation = enableServerCertificateValidation;
this.TrustedCertPath = trustedCertPath;
this.UseSystemTrustStore = useSystemTrustStore;
this.AllowHostNameCnMismatch = allowHostNameCnMismatch;
Expand Down Expand Up @@ -194,6 +199,13 @@ public HiveLinkedServiceTypeProperties()
[Newtonsoft.Json.JsonProperty(PropertyName = "enableSsl")]
public object EnableSsl {get; set; }

/// <summary>
/// Gets or sets specifies whether the connections to the server will validate
/// server certificate, the default value is True. Only used for Version 2.0
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "enableServerCertificateValidation")]
public object EnableServerCertificateValidation {get; set; }

/// <summary>
/// Gets or sets the full path of the .pem file containing trusted CA
/// certificates for verifying the server when connecting over SSL. This
Expand Down Expand Up @@ -265,6 +277,7 @@ public virtual void Validate()




}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,19 @@ public ImpalaLinkedService()
/// <param name="password">The password corresponding to the user name when using UsernameAndPassword.
/// </param>

/// <param name="thriftTransportProtocol">The transport protocol to use in the Thrift layer (for V2 only). Default
/// value is Binary.
/// Possible values include: &#39;Binary&#39;, &#39;HTTP&#39;</param>

/// <param name="enableSsl">Specifies whether the connections to the server are encrypted using SSL.
/// The default value is false.
/// </param>

/// <param name="enableServerCertificateValidation">Specify whether to enable server SSL certificate validation when you
/// connect.Always use System Trust Store (for V2 only). The default value is
/// true.
/// </param>

/// <param name="trustedCertPath">The full path of the .pem file containing trusted CA certificates for
/// verifying the server when connecting over SSL. This property can only be
/// set when using SSL on self-hosted IR. The default value is the cacerts.pem
Expand All @@ -88,7 +97,7 @@ public ImpalaLinkedService()
/// <param name="encryptedCredential">The encrypted credential used for authentication. Credentials are encrypted
/// using the integration runtime credential manager. Type: string.
/// </param>
public ImpalaLinkedService(object host, string authenticationType, System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), string version = default(string), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), System.Collections.Generic.IDictionary<string, ParameterSpecification> parameters = default(System.Collections.Generic.IDictionary<string, ParameterSpecification>), System.Collections.Generic.IList<object> annotations = default(System.Collections.Generic.IList<object>), object port = default(object), object username = default(object), SecretBase password = default(SecretBase), object enableSsl = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))
public ImpalaLinkedService(object host, string authenticationType, System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), string version = default(string), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), System.Collections.Generic.IDictionary<string, ParameterSpecification> parameters = default(System.Collections.Generic.IDictionary<string, ParameterSpecification>), System.Collections.Generic.IList<object> annotations = default(System.Collections.Generic.IList<object>), object port = default(object), object username = default(object), SecretBase password = default(SecretBase), ImpalaThriftTransportProtocol? thriftTransportProtocol = default(ImpalaThriftTransportProtocol?), object enableSsl = default(object), object enableServerCertificateValidation = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))

: base(additionalProperties, version, connectVia, description, parameters, annotations)
{
Expand All @@ -97,7 +106,9 @@ public ImpalaLinkedService()
this.AuthenticationType = authenticationType;
this.Username = username;
this.Password = password;
this.ThriftTransportProtocol = thriftTransportProtocol;
this.EnableSsl = enableSsl;
this.EnableServerCertificateValidation = enableServerCertificateValidation;
this.TrustedCertPath = trustedCertPath;
this.UseSystemTrustStore = useSystemTrustStore;
this.AllowHostNameCnMismatch = allowHostNameCnMismatch;
Expand Down Expand Up @@ -146,13 +157,28 @@ public ImpalaLinkedService()
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.password")]
public SecretBase Password {get; set; }

/// <summary>
/// Gets or sets the transport protocol to use in the Thrift layer (for V2
/// only). Default value is Binary. Possible values include: &#39;Binary&#39;, &#39;HTTP&#39;
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.thriftTransportProtocol")]
public ImpalaThriftTransportProtocol? ThriftTransportProtocol {get; set; }

/// <summary>
/// Gets or sets specifies whether the connections to the server are encrypted
/// using SSL. The default value is false.
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.enableSsl")]
public object EnableSsl {get; set; }

/// <summary>
/// Gets or sets specify whether to enable server SSL certificate validation
/// when you connect.Always use System Trust Store (for V2 only). The default
/// value is true.
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "typeProperties.enableServerCertificateValidation")]
public object EnableServerCertificateValidation {get; set; }

/// <summary>
/// Gets or sets the full path of the .pem file containing trusted CA
/// certificates for verifying the server when connecting over SSL. This
Expand Down Expand Up @@ -219,6 +245,8 @@ public override void Validate()





}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,19 @@ public ImpalaLinkedServiceTypeProperties()
/// <param name="password">The password corresponding to the user name when using UsernameAndPassword.
/// </param>

/// <param name="thriftTransportProtocol">The transport protocol to use in the Thrift layer (for V2 only). Default
/// value is Binary.
/// Possible values include: &#39;Binary&#39;, &#39;HTTP&#39;</param>

/// <param name="enableSsl">Specifies whether the connections to the server are encrypted using SSL.
/// The default value is false.
/// </param>

/// <param name="enableServerCertificateValidation">Specify whether to enable server SSL certificate validation when you
/// connect.Always use System Trust Store (for V2 only). The default value is
/// true.
/// </param>

/// <param name="trustedCertPath">The full path of the .pem file containing trusted CA certificates for
/// verifying the server when connecting over SSL. This property can only be
/// set when using SSL on self-hosted IR. The default value is the cacerts.pem
Expand All @@ -67,15 +76,17 @@ public ImpalaLinkedServiceTypeProperties()
/// <param name="encryptedCredential">The encrypted credential used for authentication. Credentials are encrypted
/// using the integration runtime credential manager. Type: string.
/// </param>
public ImpalaLinkedServiceTypeProperties(object host, string authenticationType, object port = default(object), object username = default(object), SecretBase password = default(SecretBase), object enableSsl = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))
public ImpalaLinkedServiceTypeProperties(object host, string authenticationType, object port = default(object), object username = default(object), SecretBase password = default(SecretBase), ImpalaThriftTransportProtocol? thriftTransportProtocol = default(ImpalaThriftTransportProtocol?), object enableSsl = default(object), object enableServerCertificateValidation = default(object), object trustedCertPath = default(object), object useSystemTrustStore = default(object), object allowHostNameCnMismatch = default(object), object allowSelfSignedServerCert = default(object), string encryptedCredential = default(string))

{
this.Host = host;
this.Port = port;
this.AuthenticationType = authenticationType;
this.Username = username;
this.Password = password;
this.ThriftTransportProtocol = thriftTransportProtocol;
this.EnableSsl = enableSsl;
this.EnableServerCertificateValidation = enableServerCertificateValidation;
this.TrustedCertPath = trustedCertPath;
this.UseSystemTrustStore = useSystemTrustStore;
this.AllowHostNameCnMismatch = allowHostNameCnMismatch;
Expand Down Expand Up @@ -124,13 +135,28 @@ public ImpalaLinkedServiceTypeProperties()
[Newtonsoft.Json.JsonProperty(PropertyName = "password")]
public SecretBase Password {get; set; }

/// <summary>
/// Gets or sets the transport protocol to use in the Thrift layer (for V2
/// only). Default value is Binary. Possible values include: &#39;Binary&#39;, &#39;HTTP&#39;
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "thriftTransportProtocol")]
public ImpalaThriftTransportProtocol? ThriftTransportProtocol {get; set; }

/// <summary>
/// Gets or sets specifies whether the connections to the server are encrypted
/// using SSL. The default value is false.
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "enableSsl")]
public object EnableSsl {get; set; }

/// <summary>
/// Gets or sets specify whether to enable server SSL certificate validation
/// when you connect.Always use System Trust Store (for V2 only). The default
/// value is true.
/// </summary>
[Newtonsoft.Json.JsonProperty(PropertyName = "enableServerCertificateValidation")]
public object EnableServerCertificateValidation {get; set; }

/// <summary>
/// Gets or sets the full path of the .pem file containing trusted CA
/// certificates for verifying the server when connecting over SSL. This
Expand Down Expand Up @@ -196,6 +222,8 @@ public virtual void Validate()





}
}
}
Loading