JiraLinkedService.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;
/** Jira Service linked service. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("Jira")
@JsonFlatten
@Fluent
public class JiraLinkedService extends LinkedService {
/*
* The IP address or host name of the Jira service. (e.g. jira.example.com)
*/
@JsonProperty(value = "typeProperties.host", required = true)
private Object host;
/*
* The TCP port that the Jira server uses to listen for client connections.
* The default value is 443 if connecting through HTTPS, or 8080 if
* connecting through HTTP.
*/
@JsonProperty(value = "typeProperties.port")
private Object port;
/*
* The user name that you use to access Jira Service.
*/
@JsonProperty(value = "typeProperties.username", required = true)
private Object username;
/*
* The password corresponding to the user name that you provided in the
* username field.
*/
@JsonProperty(value = "typeProperties.password")
private SecretBase password;
/*
* Specifies whether the data source endpoints are encrypted using HTTPS.
* The default value is true.
*/
@JsonProperty(value = "typeProperties.useEncryptedEndpoints")
private Object useEncryptedEndpoints;
/*
* Specifies whether to require the host name in the server's certificate
* to match the host name of the server when connecting over SSL. The
* default value is true.
*/
@JsonProperty(value = "typeProperties.useHostVerification")
private Object useHostVerification;
/*
* Specifies whether to verify the identity of the server when connecting
* over SSL. The default value is true.
*/
@JsonProperty(value = "typeProperties.usePeerVerification")
private Object usePeerVerification;
/*
* 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: The IP address or host name of the Jira service. (e.g. jira.example.com).
*
* @return the host value.
*/
public Object getHost() {
return this.host;
}
/**
* Set the host property: The IP address or host name of the Jira service. (e.g. jira.example.com).
*
* @param host the host value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService setHost(Object host) {
this.host = host;
return this;
}
/**
* Get the port property: The TCP port that the Jira server uses to listen for client connections. The default value
* is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
*
* @return the port value.
*/
public Object getPort() {
return this.port;
}
/**
* Set the port property: The TCP port that the Jira server uses to listen for client connections. The default value
* is 443 if connecting through HTTPS, or 8080 if connecting through HTTP.
*
* @param port the port value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService setPort(Object port) {
this.port = port;
return this;
}
/**
* Get the username property: The user name that you use to access Jira Service.
*
* @return the username value.
*/
public Object getUsername() {
return this.username;
}
/**
* Set the username property: The user name that you use to access Jira Service.
*
* @param username the username value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService 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 JiraLinkedService object itself.
*/
public JiraLinkedService setPassword(SecretBase password) {
this.password = password;
return this;
}
/**
* Get the useEncryptedEndpoints property: Specifies whether the data source endpoints are encrypted using HTTPS.
* The default value is true.
*
* @return the useEncryptedEndpoints value.
*/
public Object getUseEncryptedEndpoints() {
return this.useEncryptedEndpoints;
}
/**
* Set the useEncryptedEndpoints property: Specifies whether the data source endpoints are encrypted using HTTPS.
* The default value is true.
*
* @param useEncryptedEndpoints the useEncryptedEndpoints value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService setUseEncryptedEndpoints(Object useEncryptedEndpoints) {
this.useEncryptedEndpoints = useEncryptedEndpoints;
return this;
}
/**
* Get the useHostVerification property: Specifies whether to require the host name in the server's certificate to
* match the host name of the server when connecting over SSL. The default value is true.
*
* @return the useHostVerification value.
*/
public Object getUseHostVerification() {
return this.useHostVerification;
}
/**
* Set the useHostVerification property: Specifies whether to require the host name in the server's certificate to
* match the host name of the server when connecting over SSL. The default value is true.
*
* @param useHostVerification the useHostVerification value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService setUseHostVerification(Object useHostVerification) {
this.useHostVerification = useHostVerification;
return this;
}
/**
* Get the usePeerVerification property: Specifies whether to verify the identity of the server when connecting over
* SSL. The default value is true.
*
* @return the usePeerVerification value.
*/
public Object getUsePeerVerification() {
return this.usePeerVerification;
}
/**
* Set the usePeerVerification property: Specifies whether to verify the identity of the server when connecting over
* SSL. The default value is true.
*
* @param usePeerVerification the usePeerVerification value to set.
* @return the JiraLinkedService object itself.
*/
public JiraLinkedService setUsePeerVerification(Object usePeerVerification) {
this.usePeerVerification = usePeerVerification;
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 JiraLinkedService object itself.
*/
public JiraLinkedService setEncryptedCredential(Object encryptedCredential) {
this.encryptedCredential = encryptedCredential;
return this;
}
}