Skip to content

Commit

Permalink
[ReleasePR datafactory] [datafactory] add new connector amazon rds fo…
Browse files Browse the repository at this point in the history
  • Loading branch information
msftbot[bot] authored Sep 3, 2021
2 parents 6a97e8f + 1a50f15 commit 9d96184
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 @@ -1064,6 +1064,182 @@
},
"description": "AmazonRdsForOracle dataset properties."
},
"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 @@ -8953,6 +9129,9 @@
{
"$ref": "#/definitions/SqlServerTableDataset"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerTableDataset"
},
{
"$ref": "#/definitions/RestResourceDataset"
},
Expand Down Expand Up @@ -17291,6 +17470,9 @@
{
"$ref": "#/definitions/SqlServerLinkedService"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerLinkedService"
},
{
"$ref": "#/definitions/AzureSqlDatabaseLinkedService"
},
Expand Down Expand Up @@ -27520,6 +27702,9 @@
{
"$ref": "#/definitions/SqlServerSource"
},
{
"$ref": "#/definitions/AmazonRdsForSqlServerSource"
},
{
"$ref": "#/definitions/AzureSqlSource"
},
Expand Down

0 comments on commit 9d96184

Please sign in to comment.