-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 1399f090601abea10de38ae50242895878947a74 (#4652)
Add paramref into custom-words.txt
- Loading branch information
1 parent
e92a92c
commit dc5a613
Showing
9 changed files
with
507 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
...ava/com/microsoft/azure/management/datafactory/v2018_06_01/AzureMariaDBLinkedService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.microsoft.rest.serializer.JsonFlatten; | ||
import com.microsoft.azure.management.datafactory.v2018_06_01.implementation.LinkedServiceInner; | ||
|
||
/** | ||
* Azure Database for MariaDB linked service. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("AzureMariaDB") | ||
@JsonFlatten | ||
public class AzureMariaDBLinkedService extends LinkedServiceInner { | ||
/** | ||
* An ODBC connection string. Type: string, SecureString or | ||
* AzureKeyVaultSecretReference. | ||
*/ | ||
@JsonProperty(value = "typeProperties.connectionString") | ||
private Object connectionString; | ||
|
||
/** | ||
* The Azure key vault secret reference of password in connection string. | ||
*/ | ||
@JsonProperty(value = "typeProperties.pwd") | ||
private AzureKeyVaultSecretReference pwd; | ||
|
||
/** | ||
* 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 an ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. | ||
* | ||
* @return the connectionString value | ||
*/ | ||
public Object connectionString() { | ||
return this.connectionString; | ||
} | ||
|
||
/** | ||
* Set an ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. | ||
* | ||
* @param connectionString the connectionString value to set | ||
* @return the AzureMariaDBLinkedService object itself. | ||
*/ | ||
public AzureMariaDBLinkedService withConnectionString(Object connectionString) { | ||
this.connectionString = connectionString; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the Azure key vault secret reference of password in connection string. | ||
* | ||
* @return the pwd value | ||
*/ | ||
public AzureKeyVaultSecretReference pwd() { | ||
return this.pwd; | ||
} | ||
|
||
/** | ||
* Set the Azure key vault secret reference of password in connection string. | ||
* | ||
* @param pwd the pwd value to set | ||
* @return the AzureMariaDBLinkedService object itself. | ||
*/ | ||
public AzureMariaDBLinkedService withPwd(AzureKeyVaultSecretReference pwd) { | ||
this.pwd = pwd; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get 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 encryptedCredential() { | ||
return this.encryptedCredential; | ||
} | ||
|
||
/** | ||
* Set 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 AzureMariaDBLinkedService object itself. | ||
*/ | ||
public AzureMariaDBLinkedService withEncryptedCredential(Object encryptedCredential) { | ||
this.encryptedCredential = encryptedCredential; | ||
return this; | ||
} | ||
|
||
} |
48 changes: 48 additions & 0 deletions
48
.../main/java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureMariaDBSource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
|
||
/** | ||
* A copy activity Azure MariaDB source. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("AzureMariaDBSource") | ||
public class AzureMariaDBSource extends CopySource { | ||
/** | ||
* A query to retrieve data from source. Type: string (or Expression with | ||
* resultType string). | ||
*/ | ||
@JsonProperty(value = "query") | ||
private Object query; | ||
|
||
/** | ||
* Get a query to retrieve data from source. Type: string (or Expression with resultType string). | ||
* | ||
* @return the query value | ||
*/ | ||
public Object query() { | ||
return this.query; | ||
} | ||
|
||
/** | ||
* Set a query to retrieve data from source. Type: string (or Expression with resultType string). | ||
* | ||
* @param query the query value to set | ||
* @return the AzureMariaDBSource object itself. | ||
*/ | ||
public AzureMariaDBSource withQuery(Object query) { | ||
this.query = query; | ||
return this; | ||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
...java/com/microsoft/azure/management/datafactory/v2018_06_01/AzureMariaDBTableDataset.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
*/ | ||
|
||
package com.microsoft.azure.management.datafactory.v2018_06_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.microsoft.rest.serializer.JsonFlatten; | ||
import com.microsoft.azure.management.datafactory.v2018_06_01.implementation.DatasetInner; | ||
|
||
/** | ||
* Azure Database for MariaDB dataset. | ||
*/ | ||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") | ||
@JsonTypeName("AzureMariaDBTable") | ||
@JsonFlatten | ||
public class AzureMariaDBTableDataset extends DatasetInner { | ||
/** | ||
* The table name. Type: string (or Expression with resultType string). | ||
*/ | ||
@JsonProperty(value = "typeProperties.tableName") | ||
private Object tableName; | ||
|
||
/** | ||
* Get the table name. Type: string (or Expression with resultType string). | ||
* | ||
* @return the tableName value | ||
*/ | ||
public Object tableName() { | ||
return this.tableName; | ||
} | ||
|
||
/** | ||
* Set the table name. Type: string (or Expression with resultType string). | ||
* | ||
* @param tableName the tableName value to set | ||
* @return the AzureMariaDBTableDataset object itself. | ||
*/ | ||
public AzureMariaDBTableDataset withTableName(Object tableName) { | ||
this.tableName = tableName; | ||
return this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.