SquareLinkedService.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;
/** Square Service linked service. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("Square")
@JsonFlatten
@Fluent
public class SquareLinkedService extends LinkedService {
/*
* Properties used to connect to Square. It is mutually exclusive with any
* other properties in the linked service. Type: object.
*/
@JsonProperty(value = "typeProperties.connectionProperties")
private Object connectionProperties;
/*
* The URL of the Square instance. (i.e. mystore.mysquare.com)
*/
@JsonProperty(value = "typeProperties.host", required = true)
private Object host;
/*
* The client ID associated with your Square application.
*/
@JsonProperty(value = "typeProperties.clientId", required = true)
private Object clientId;
/*
* The client secret associated with your Square application.
*/
@JsonProperty(value = "typeProperties.clientSecret")
private SecretBase clientSecret;
/*
* The redirect URL assigned in the Square application dashboard. (i.e.
* http://localhost:2500)
*/
@JsonProperty(value = "typeProperties.redirectUri", required = true)
private Object redirectUri;
/*
* 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 connectionProperties property: Properties used to connect to Square. It is mutually exclusive with any
* other properties in the linked service. Type: object.
*
* @return the connectionProperties value.
*/
public Object getConnectionProperties() {
return this.connectionProperties;
}
/**
* Set the connectionProperties property: Properties used to connect to Square. It is mutually exclusive with any
* other properties in the linked service. Type: object.
*
* @param connectionProperties the connectionProperties value to set.
* @return the SquareLinkedService object itself.
*/
public SquareLinkedService setConnectionProperties(Object connectionProperties) {
this.connectionProperties = connectionProperties;
return this;
}
/**
* Get the host property: The URL of the Square instance. (i.e. mystore.mysquare.com).
*
* @return the host value.
*/
public Object getHost() {
return this.host;
}
/**
* Set the host property: The URL of the Square instance. (i.e. mystore.mysquare.com).
*
* @param host the host value to set.
* @return the SquareLinkedService object itself.
*/
public SquareLinkedService setHost(Object host) {
this.host = host;
return this;
}
/**
* Get the clientId property: The client ID associated with your Square application.
*
* @return the clientId value.
*/
public Object getClientId() {
return this.clientId;
}
/**
* Set the clientId property: The client ID associated with your Square application.
*
* @param clientId the clientId value to set.
* @return the SquareLinkedService object itself.
*/
public SquareLinkedService setClientId(Object clientId) {
this.clientId = clientId;
return this;
}
/**
* Get the clientSecret property: The client secret associated with your Square application.
*
* @return the clientSecret value.
*/
public SecretBase getClientSecret() {
return this.clientSecret;
}
/**
* Set the clientSecret property: The client secret associated with your Square application.
*
* @param clientSecret the clientSecret value to set.
* @return the SquareLinkedService object itself.
*/
public SquareLinkedService setClientSecret(SecretBase clientSecret) {
this.clientSecret = clientSecret;
return this;
}
/**
* Get the redirectUri property: The redirect URL assigned in the Square application dashboard. (i.e.
* http://localhost:2500).
*
* @return the redirectUri value.
*/
public Object getRedirectUri() {
return this.redirectUri;
}
/**
* Set the redirectUri property: The redirect URL assigned in the Square application dashboard. (i.e.
* http://localhost:2500).
*
* @param redirectUri the redirectUri value to set.
* @return the SquareLinkedService object itself.
*/
public SquareLinkedService setRedirectUri(Object redirectUri) {
this.redirectUri = redirectUri;
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 SquareLinkedService object itself.
*/
public SquareLinkedService 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 SquareLinkedService object itself.
*/
public SquareLinkedService 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 SquareLinkedService object itself.
*/
public SquareLinkedService 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 SquareLinkedService object itself.
*/
public SquareLinkedService setEncryptedCredential(Object encryptedCredential) {
this.encryptedCredential = encryptedCredential;
return this;
}
}