Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DataFactory]Support AmazonRdsForOracle Connector #15626

Merged
merged 7 commits into from
Aug 26, 2021
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 @@ -1724,6 +1724,37 @@
}
}
},
"AmazonRdsForOracleTableDataset": {
"x-ms-discriminator-value": "AmazonRdsForOracleTable",
"description": "The AmazonRdsForOracle database dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "AmazonRdsForOracle dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AmazonRdsForOracleTableDatasetTypeProperties"
}
}
},
"AmazonRdsForOracleTableDatasetTypeProperties": {
"description": "AmazonRdsForOracle dataset properties.",
"type": "object",
"properties": {
"schema": {
"type": "object",
"description": "The schema name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"description": "The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string)."
}
}
},
"TeradataTableDataset": {
"x-ms-discriminator-value": "TeradataTable",
"description": "The Teradata database dataset.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,47 @@
"connectionString"
]
},
"AmazonRdsForOracleLinkedService": {
"x-ms-discriminator-value": "AmazonRdsForOracle",
"description": "AmazonRdsForOracle database.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "AmazonRdsForOracle database linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AmazonRdsForLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AmazonRdsForLinkedServiceTypeProperties": {
"description": "AmazonRdsForOracle database linked service properties.",
"type": "object",
"properties": {
"connectionString": {
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"password": {
"$ref": "../datafactory.json#/definitions/SecretBase",
"description": "The Azure key vault secret reference of password in connection string."
},
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
}
},
"required": [
"connectionString"
]
},
"AzureMySqlLinkedService": {
"x-ms-discriminator-value": "AzureMySql",
"description": "Azure MySQL database linked service.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2683,6 +2683,75 @@
}
}
},
"AmazonRdsForOracleSource": {
"description": "A copy activity AmazonRdsForOracle source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"oracleReaderQuery": {
"type": "object",
"description": "AmazonRdsForOracle reader query. Type: string (or Expression with resultType string)."
},
"queryTimeout": {
"type": "object",
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
},
"partitionOption": {
"type": "object",
"description": "The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string)."
},
"partitionSettings": {
"description": "The settings that will be leveraged for AmazonRdsForOracle source partitioning.",
"$ref": "#/definitions/AmazonRdsForOraclePartitionSettings"
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
}
}
},
"AmazonRdsForOraclePartitionOption": {
"type": "string",
"enum": [
"None",
"PhysicalPartitionsOfTable",
"DynamicRange"
],
"x-ms-enum": {
"name": "AmazonRdsForOraclePartitionOption",
"modelAsString": true
}
},
"AmazonRdsForOraclePartitionSettings": {
"description": "The settings that will be leveraged for AmazonRdsForOracle source partitioning.",
"type": "object",
"properties": {
"partitionNames": {
"type": "object",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"description": "Names of the physical partitions of AmazonRdsForOracle table. "
},
"partitionColumnName": {
"type": "object",
"description": "The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
},
"partitionUpperBound": {
"type": "object",
"description": "The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
},
"partitionLowerBound": {
"type": "object",
"description": "The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
}
}
},
"TeradataSource": {
"description": "A copy activity Teradata source.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1706,6 +1706,37 @@
}
}
},
"AmazonRdsForOracleTableDataset": {
"x-ms-discriminator-value": "AmazonRdsForOracleTable",
"description": "The AmazonRdsForOracle database dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "AmazonRdsForOracle dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AmazonRdsForOracleTableDatasetTypeProperties"
}
}
},
"AmazonRdsForOracleTableDatasetTypeProperties": {
"description": "AmazonRdsForOracle dataset properties.",
"type": "object",
"properties": {
"schema": {
"type": "object",
"description": "The schema name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string)."
},
"table": {
"type": "object",
"description": "The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string)."
}
}
},
"TeradataTableDataset": {
"x-ms-discriminator-value": "TeradataTable",
"description": "The Teradata database dataset.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1088,6 +1088,47 @@
"connectionString"
]
},
"AmazonRdsForOracleLinkedService": {
"x-ms-discriminator-value": "AmazonRdsForOracle",
"description": "AmazonRdsForOracle database.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "AmazonRdsForOracle database linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AmazonRdsForLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AmazonRdsForLinkedServiceTypeProperties": {
"description": "AmazonRdsForOracle database linked service properties.",
"type": "object",
"properties": {
"connectionString": {
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"password": {
"$ref": "../artifacts.json#/definitions/SecretBase",
"description": "The Azure key vault secret reference of password in connection string."
},
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
}
},
"required": [
"connectionString"
]
},
"AzureMySqlLinkedService": {
"x-ms-discriminator-value": "AzureMySql",
"description": "Azure MySQL database linked service.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2566,6 +2566,75 @@
}
}
},
"AmazonRdsForOracleSource": {
"description": "A copy activity AmazonRdsForOracle source.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CopySource"
}
],
"properties": {
"oracleReaderQuery": {
"type": "object",
"description": "AmazonRdsForOracle reader query. Type: string (or Expression with resultType string)."
},
"queryTimeout": {
"type": "object",
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
},
"partitionOption": {
"type": "object",
"description": "The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string)."
},
"partitionSettings": {
"description": "The settings that will be leveraged for AmazonRdsForOracle source partitioning.",
"$ref": "#/definitions/AmazonRdsForOraclePartitionSettings"
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
}
}
},
"AmazonRdsForOraclePartitionOption": {
"type": "string",
"enum": [
"None",
"PhysicalPartitionsOfTable",
"DynamicRange"
],
"x-ms-enum": {
"name": "AmazonRdsForOraclePartitionOption",
"modelAsString": true
}
},
"AmazonRdsForOraclePartitionSettings": {
"description": "The settings that will be leveraged for AmazonRdsForOracle source partitioning.",
"type": "object",
"properties": {
"partitionNames": {
"type": "object",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
},
"description": "Names of the physical partitions of AmazonRdsForOracle table. "
},
"partitionColumnName": {
"type": "object",
"description": "The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
},
"partitionUpperBound": {
"type": "object",
"description": "The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
},
"partitionLowerBound": {
"type": "object",
"description": "The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string)."
}
}
},
"TeradataSource": {
"description": "A copy activity Teradata source.",
"type": "object",
Expand Down