Skip to content

Commit

Permalink
CodeGen from PR 15661 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 8576d2fbc2761753196cb906298494f1b0b50f3e into 60d6c393c7e71b45ebe0976a35fd7a5841993159
  • Loading branch information
SDKAuto committed Aug 17, 2021
1 parent 5150e49 commit 2c1cdcd
Showing 1 changed file with 185 additions and 0 deletions.
185 changes: 185 additions & 0 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,182 @@
],
"description": "A copy activity Amazon Marketplace Web Service source."
},
"AmazonRdsForSqlServerLinkedService": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"AmazonRdsForSqlServer"
]
},
"typeProperties": {
"oneOf": [
{
"$ref": "#/definitions/AmazonRdsForSqlServerLinkedServiceTypeProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Amazon Rds for SQL Server linked service properties."
}
},
"required": [
"type",
"typeProperties"
],
"description": "Amazon RDS for SQL Server linked service."
},
"AmazonRdsForSqlServerLinkedServiceTypeProperties": {
"type": "object",
"properties": {
"alwaysEncryptedSettings": {
"oneOf": [
{
"$ref": "#/definitions/SqlAlwaysEncryptedProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sql always encrypted properties."
},
"connectionString": {
"type": "object",
"properties": {},
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference."
},
"encryptedCredential": {
"type": "object",
"properties": {},
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
},
"password": {
"oneOf": [
{
"$ref": "#/definitions/SecretBase"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The base definition of a secret type."
},
"userName": {
"type": "object",
"properties": {},
"description": "The on-premises Windows authentication user name. Type: string (or Expression with resultType string)."
}
},
"required": [
"connectionString"
],
"description": "Amazon Rds for SQL Server linked service properties."
},
"AmazonRdsForSqlServerSource": {
"type": "object",
"properties": {
"partitionOption": {
"type": "object",
"properties": {},
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\"."
},
"partitionSettings": {
"oneOf": [
{
"$ref": "#/definitions/SqlPartitionSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The settings that will be leveraged for Sql source partitioning."
},
"produceAdditionalTypes": {
"type": "object",
"properties": {},
"description": "Which additional types to produce."
},
"sqlReaderQuery": {
"type": "object",
"properties": {},
"description": "SQL reader query. Type: string (or Expression with resultType string)."
},
"sqlReaderStoredProcedureName": {
"type": "object",
"properties": {},
"description": "Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string)."
},
"storedProcedureParameters": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/StoredProcedureParameter"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Value and type setting for stored procedure parameters. Example: \"{Parameter1: {value: \"1\", type: \"int\"}}\"."
},
"type": {
"type": "string",
"enum": [
"AmazonRdsForSqlServerSource"
]
}
},
"required": [
"type"
],
"description": "A copy activity Amazon RDS for SQL Server source."
},
"AmazonRdsForSqlServerTableDataset": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"AmazonRdsForSqlServerTable"
]
},
"typeProperties": {
"oneOf": [
{
"$ref": "#/definitions/AmazonRdsForSqlServerTableDatasetTypeProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The Amazon RDS for SQL Server dataset properties."
}
},
"required": [
"type"
],
"description": "The Amazon RDS for SQL Server dataset."
},
"AmazonRdsForSqlServerTableDatasetTypeProperties": {
"type": "object",
"properties": {
"schema": {
"type": "object",
"properties": {},
"description": "The schema name of the SQL Server dataset. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"properties": {},
"description": "The table name of the SQL Server dataset. Type: string (or Expression with resultType string)."
}
},
"description": "The Amazon RDS for SQL Server dataset properties."
},
"AmazonRedshiftLinkedService": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -8776,6 +8952,9 @@
{
"$ref": "#/definitions/SqlServerTableDataset"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerTableDataset"
},
{
"$ref": "#/definitions/RestResourceDataset"
},
Expand Down Expand Up @@ -17104,6 +17283,9 @@
{
"$ref": "#/definitions/SqlServerLinkedService"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerLinkedService"
},
{
"$ref": "#/definitions/AzureSqlDatabaseLinkedService"
},
Expand Down Expand Up @@ -27319,6 +27501,9 @@
{
"$ref": "#/definitions/SqlServerSource"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerSource"
},
{
"$ref": "#/definitions/AzureSqlSource"
},
Expand Down

0 comments on commit 2c1cdcd

Please sign in to comment.