SparkLinkedService.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.annotation.JsonFlatten;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/** Spark Server linked service. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("Spark")
@JsonFlatten
@Fluent
public class SparkLinkedService extends LinkedService {
/*
* IP address or host name of the Spark server
*/
@JsonProperty(value = "typeProperties.host", required = true)
private Object host;
/*
* The TCP port that the Spark server uses to listen for client
* connections.
*/
@JsonProperty(value = "typeProperties.port", required = true)
private Object port;
/*
* The type of Spark server.
*/
@JsonProperty(value = "typeProperties.serverType")
private SparkServerType serverType;
/*
* The transport protocol to use in the Thrift layer.
*/
@JsonProperty(value = "typeProperties.thriftTransportProtocol")
private SparkThriftTransportProtocol thriftTransportProtocol;
/*
* The authentication method used to access the Spark server.
*/
@JsonProperty(value = "typeProperties.authenticationType", required = true)
private SparkAuthenticationType authenticationType;
/*
* The user name that you use to access Spark Server.
*/
@JsonProperty(value = "typeProperties.username")
private Object username;
/*
* The password corresponding to the user name that you provided in the
* Username field
*/
@JsonProperty(value = "typeProperties.password")
private SecretBase password;
/*
* The partial URL corresponding to the Spark server.
*/
@JsonProperty(value = "typeProperties.httpPath")
private Object httpPath;
/*
* Specifies whether the connections to the server are encrypted using SSL.
* The default value is false.
*/
@JsonProperty(value = "typeProperties.enableSsl")
private Object enableSsl;
/*
* 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 file installed with the IR.
*/
@JsonProperty(value = "typeProperties.trustedCertPath")
private Object trustedCertPath;
/*
* Specifies whether to use a CA certificate from the system trust store or
* from a specified PEM file. The default value is false.
*/
@JsonProperty(value = "typeProperties.useSystemTrustStore")
private Object useSystemTrustStore;
/*
* Specifies whether to require a CA-issued SSL certificate name to match
* the host name of the server when connecting over SSL. The default value
* is false.
*/
@JsonProperty(value = "typeProperties.allowHostNameCNMismatch")
private Object allowHostNameCNMismatch;
/*
* Specifies whether to allow self-signed certificates from the server. The
* default value is false.
*/
@JsonProperty(value = "typeProperties.allowSelfSignedServerCert")
private Object allowSelfSignedServerCert;
/*
* The encrypted credential used for authentication. Credentials are
* encrypted using the integration runtime credential manager. Type: string
* (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.encryptedCredential")
private Object encryptedCredential;
/**
* Get the host property: IP address or host name of the Spark server.
*
* @return the host value.
*/
public Object getHost() {
return this.host;
}
/**
* Set the host property: IP address or host name of the Spark server.
*
* @param host the host value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setHost(Object host) {
this.host = host;
return this;
}
/**
* Get the port property: The TCP port that the Spark server uses to listen for client connections.
*
* @return the port value.
*/
public Object getPort() {
return this.port;
}
/**
* Set the port property: The TCP port that the Spark server uses to listen for client connections.
*
* @param port the port value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setPort(Object port) {
this.port = port;
return this;
}
/**
* Get the serverType property: The type of Spark server.
*
* @return the serverType value.
*/
public SparkServerType getServerType() {
return this.serverType;
}
/**
* Set the serverType property: The type of Spark server.
*
* @param serverType the serverType value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setServerType(SparkServerType serverType) {
this.serverType = serverType;
return this;
}
/**
* Get the thriftTransportProtocol property: The transport protocol to use in the Thrift layer.
*
* @return the thriftTransportProtocol value.
*/
public SparkThriftTransportProtocol getThriftTransportProtocol() {
return this.thriftTransportProtocol;
}
/**
* Set the thriftTransportProtocol property: The transport protocol to use in the Thrift layer.
*
* @param thriftTransportProtocol the thriftTransportProtocol value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setThriftTransportProtocol(SparkThriftTransportProtocol thriftTransportProtocol) {
this.thriftTransportProtocol = thriftTransportProtocol;
return this;
}
/**
* Get the authenticationType property: The authentication method used to access the Spark server.
*
* @return the authenticationType value.
*/
public SparkAuthenticationType getAuthenticationType() {
return this.authenticationType;
}
/**
* Set the authenticationType property: The authentication method used to access the Spark server.
*
* @param authenticationType the authenticationType value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setAuthenticationType(SparkAuthenticationType authenticationType) {
this.authenticationType = authenticationType;
return this;
}
/**
* Get the username property: The user name that you use to access Spark Server.
*
* @return the username value.
*/
public Object getUsername() {
return this.username;
}
/**
* Set the username property: The user name that you use to access Spark Server.
*
* @param username the username value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setUsername(Object username) {
this.username = username;
return this;
}
/**
* Get the password property: The password corresponding to the user name that you provided in the Username field.
*
* @return the password value.
*/
public SecretBase getPassword() {
return this.password;
}
/**
* Set the password property: The password corresponding to the user name that you provided in the Username field.
*
* @param password the password value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setPassword(SecretBase password) {
this.password = password;
return this;
}
/**
* Get the httpPath property: The partial URL corresponding to the Spark server.
*
* @return the httpPath value.
*/
public Object getHttpPath() {
return this.httpPath;
}
/**
* Set the httpPath property: The partial URL corresponding to the Spark server.
*
* @param httpPath the httpPath value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setHttpPath(Object httpPath) {
this.httpPath = httpPath;
return this;
}
/**
* Get the enableSsl property: Specifies whether the connections to the server are encrypted using SSL. The default
* value is false.
*
* @return the enableSsl value.
*/
public Object getEnableSsl() {
return this.enableSsl;
}
/**
* Set the enableSsl property: Specifies whether the connections to the server are encrypted using SSL. The default
* value is false.
*
* @param enableSsl the enableSsl value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setEnableSsl(Object enableSsl) {
this.enableSsl = enableSsl;
return this;
}
/**
* Get the trustedCertPath property: 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 file installed with the IR.
*
* @return the trustedCertPath value.
*/
public Object getTrustedCertPath() {
return this.trustedCertPath;
}
/**
* Set the trustedCertPath property: 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 file installed with the IR.
*
* @param trustedCertPath the trustedCertPath value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setTrustedCertPath(Object trustedCertPath) {
this.trustedCertPath = trustedCertPath;
return this;
}
/**
* Get the useSystemTrustStore property: Specifies whether to use a CA certificate from the system trust store or
* from a specified PEM file. The default value is false.
*
* @return the useSystemTrustStore value.
*/
public Object getUseSystemTrustStore() {
return this.useSystemTrustStore;
}
/**
* Set the useSystemTrustStore property: Specifies whether to use a CA certificate from the system trust store or
* from a specified PEM file. The default value is false.
*
* @param useSystemTrustStore the useSystemTrustStore value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setUseSystemTrustStore(Object useSystemTrustStore) {
this.useSystemTrustStore = useSystemTrustStore;
return this;
}
/**
* Get the allowHostNameCNMismatch property: Specifies whether to require a CA-issued SSL certificate name to match
* the host name of the server when connecting over SSL. The default value is false.
*
* @return the allowHostNameCNMismatch value.
*/
public Object getAllowHostNameCNMismatch() {
return this.allowHostNameCNMismatch;
}
/**
* Set the allowHostNameCNMismatch property: Specifies whether to require a CA-issued SSL certificate name to match
* the host name of the server when connecting over SSL. The default value is false.
*
* @param allowHostNameCNMismatch the allowHostNameCNMismatch value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setAllowHostNameCNMismatch(Object allowHostNameCNMismatch) {
this.allowHostNameCNMismatch = allowHostNameCNMismatch;
return this;
}
/**
* Get the allowSelfSignedServerCert property: Specifies whether to allow self-signed certificates from the server.
* The default value is false.
*
* @return the allowSelfSignedServerCert value.
*/
public Object getAllowSelfSignedServerCert() {
return this.allowSelfSignedServerCert;
}
/**
* Set the allowSelfSignedServerCert property: Specifies whether to allow self-signed certificates from the server.
* The default value is false.
*
* @param allowSelfSignedServerCert the allowSelfSignedServerCert value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setAllowSelfSignedServerCert(Object allowSelfSignedServerCert) {
this.allowSelfSignedServerCert = allowSelfSignedServerCert;
return this;
}
/**
* Get the encryptedCredential property: The encrypted credential used for authentication. Credentials are encrypted
* using the integration runtime credential manager. Type: string (or Expression with resultType string).
*
* @return the encryptedCredential value.
*/
public Object getEncryptedCredential() {
return this.encryptedCredential;
}
/**
* Set the encryptedCredential property: The encrypted credential used for authentication. Credentials are encrypted
* using the integration runtime credential manager. Type: string (or Expression with resultType string).
*
* @param encryptedCredential the encryptedCredential value to set.
* @return the SparkLinkedService object itself.
*/
public SparkLinkedService setEncryptedCredential(Object encryptedCredential) {
this.encryptedCredential = encryptedCredential;
return this;
}
}