Skip to content
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 @@ -22,10 +22,11 @@
@JsonFlatten
public class AzureMySqlLinkedService extends LinkedServiceInner {
/**
* The connection string.
* The connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString", required = true)
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class AzureMySqlLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the AzureMySqlLinkedService object itself.
*/
public AzureMySqlLinkedService withConnectionString(SecretBase connectionString) {
public AzureMySqlLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class AzurePostgreSqlLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class AzurePostgreSqlLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the AzurePostgreSqlLinkedService object itself.
*/
public AzurePostgreSqlLinkedService withConnectionString(SecretBase connectionString) {
public AzurePostgreSqlLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@
@JsonFlatten
public class AzureSqlDWLinkedService extends LinkedServiceInner {
/**
* The connection string.
* The connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString", required = true)
private SecretBase connectionString;
private Object connectionString;

/**
* The ID of the service principal used to authenticate against Azure SQL
Expand Down Expand Up @@ -61,7 +63,7 @@ public class AzureSqlDWLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -71,7 +73,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the AzureSqlDWLinkedService object itself.
*/
public AzureSqlDWLinkedService withConnectionString(SecretBase connectionString) {
public AzureSqlDWLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class AzureSqlDatabaseLinkedService extends LinkedServiceInner {
/**
* The connection string.
* The connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString", required = true)
private SecretBase connectionString;
private Object connectionString;

/**
* The ID of the service principal used to authenticate against Azure SQL
Expand Down Expand Up @@ -61,7 +62,7 @@ public class AzureSqlDatabaseLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -71,7 +72,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the AzureSqlDatabaseLinkedService object itself.
*/
public AzureSqlDatabaseLinkedService withConnectionString(SecretBase connectionString) {
public AzureSqlDatabaseLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
public class AzureStorageLinkedService extends LinkedServiceInner {
/**
* The connection string. It is mutually exclusive with sasUri property.
* Type: string, SecureString or AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* SAS URI of the Azure Storage resource. It is mutually exclusive with
Expand All @@ -47,7 +48,7 @@ public class AzureStorageLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -57,7 +58,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the AzureStorageLinkedService object itself.
*/
public AzureStorageLinkedService withConnectionString(SecretBase connectionString) {
public AzureStorageLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
@JsonTypeName("CopySource")
@JsonSubTypes({
@JsonSubTypes.Type(name = "AmazonRedshiftSource", value = AmazonRedshiftSource.class),
@JsonSubTypes.Type(name = "ResponsysSource", value = ResponsysSource.class),
@JsonSubTypes.Type(name = "SalesforceMarketingCloudSource", value = SalesforceMarketingCloudSource.class),
@JsonSubTypes.Type(name = "VerticaSource", value = VerticaSource.class),
@JsonSubTypes.Type(name = "NetezzaSource", value = NetezzaSource.class),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class CosmosDbLinkedService extends LinkedServiceInner {
/**
* The connection string.
* The connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString", required = true)
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class CosmosDbLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the CosmosDbLinkedService object itself.
*/
public CosmosDbLinkedService withConnectionString(SecretBase connectionString) {
public CosmosDbLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class CouchbaseLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class CouchbaseLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the CouchbaseLinkedService object itself.
*/
public CouchbaseLinkedService withConnectionString(SecretBase connectionString) {
public CouchbaseLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class DrillLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class DrillLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the DrillLinkedService object itself.
*/
public DrillLinkedService withConnectionString(SecretBase connectionString) {
public DrillLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class GreenplumLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class GreenplumLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the GreenplumLinkedService object itself.
*/
public GreenplumLinkedService withConnectionString(SecretBase connectionString) {
public GreenplumLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class MariaDBLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class MariaDBLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the MariaDBLinkedService object itself.
*/
public MariaDBLinkedService withConnectionString(SecretBase connectionString) {
public MariaDBLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
@JsonFlatten
public class NetezzaLinkedService extends LinkedServiceInner {
/**
* An ODBC connection string.
* An ODBC connection string. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString")
private SecretBase connectionString;
private Object connectionString;

/**
* The encrypted credential used for authentication. Credentials are
Expand All @@ -40,7 +41,7 @@ public class NetezzaLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -50,7 +51,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the NetezzaLinkedService object itself.
*/
public NetezzaLinkedService withConnectionString(SecretBase connectionString) {
public NetezzaLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
public class OdbcLinkedService extends LinkedServiceInner {
/**
* The non-access credential portion of the connection string as well as an
* optional encrypted credential.
* optional encrypted credential. Type: string, SecureString or
* AzureKeyVaultSecretReference.
*/
@JsonProperty(value = "typeProperties.connectionString", required = true)
private SecretBase connectionString;
private Object connectionString;

/**
* Type of authentication used to connect to the ODBC data store. Possible
Expand Down Expand Up @@ -69,7 +70,7 @@ public class OdbcLinkedService extends LinkedServiceInner {
*
* @return the connectionString value
*/
public SecretBase connectionString() {
public Object connectionString() {
return this.connectionString;
}

Expand All @@ -79,7 +80,7 @@ public SecretBase connectionString() {
* @param connectionString the connectionString value to set
* @return the OdbcLinkedService object itself.
*/
public OdbcLinkedService withConnectionString(SecretBase connectionString) {
public OdbcLinkedService withConnectionString(Object connectionString) {
this.connectionString = connectionString;
return this;
}
Expand Down
Loading