Skip to content

Commit c752c2c

Browse files
author
Autogenerator Pipeline
committed
Autogenerate schemas
1 parent 9fd21a0 commit c752c2c

File tree

1 file changed

+154
-1
lines changed

1 file changed

+154
-1
lines changed

schemas/2018-06-01/Microsoft.DataFactory.json

Lines changed: 154 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6815,6 +6815,9 @@
68156815
{
68166816
"$ref": "#/definitions/MongoDbSource"
68176817
},
6818+
{
6819+
"$ref": "#/definitions/MongoDbAtlasSource"
6820+
},
68186821
{
68196822
"$ref": "#/definitions/MongoDbV2Source"
68206823
},
@@ -8116,6 +8119,9 @@
81168119
{
81178120
"$ref": "#/definitions/MongoDbCollectionDataset"
81188121
},
8122+
{
8123+
"$ref": "#/definitions/MongoDbAtlasCollectionDataset"
8124+
},
81198125
{
81208126
"$ref": "#/definitions/MongoDbV2CollectionDataset"
81218127
},
@@ -16412,6 +16418,9 @@
1641216418
{
1641316419
"$ref": "#/definitions/MongoDbLinkedService"
1641416420
},
16421+
{
16422+
"$ref": "#/definitions/MongoDbAtlasLinkedService"
16423+
},
1641516424
{
1641616425
"$ref": "#/definitions/MongoDbV2LinkedService"
1641716426
},
@@ -17547,6 +17556,149 @@
1754717556
},
1754817557
"description": "Microsoft Access table dataset properties."
1754917558
},
17559+
"MongoDbAtlasCollectionDataset": {
17560+
"type": "object",
17561+
"properties": {
17562+
"type": {
17563+
"type": "string",
17564+
"enum": [
17565+
"MongoDbAtlasCollection"
17566+
]
17567+
},
17568+
"typeProperties": {
17569+
"oneOf": [
17570+
{
17571+
"$ref": "#/definitions/MongoDbAtlasCollectionDatasetTypeProperties"
17572+
},
17573+
{
17574+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
17575+
}
17576+
],
17577+
"description": "MongoDB Atlas database dataset properties."
17578+
}
17579+
},
17580+
"required": [
17581+
"type",
17582+
"typeProperties"
17583+
],
17584+
"description": "The MongoDB Atlas database dataset."
17585+
},
17586+
"MongoDbAtlasCollectionDatasetTypeProperties": {
17587+
"type": "object",
17588+
"properties": {
17589+
"collection": {
17590+
"type": "object",
17591+
"properties": {},
17592+
"description": "The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string)."
17593+
}
17594+
},
17595+
"required": [
17596+
"collection"
17597+
],
17598+
"description": "MongoDB Atlas database dataset properties."
17599+
},
17600+
"MongoDbAtlasLinkedService": {
17601+
"type": "object",
17602+
"properties": {
17603+
"type": {
17604+
"type": "string",
17605+
"enum": [
17606+
"MongoDbAtlas"
17607+
]
17608+
},
17609+
"typeProperties": {
17610+
"oneOf": [
17611+
{
17612+
"$ref": "#/definitions/MongoDbAtlasLinkedServiceTypeProperties"
17613+
},
17614+
{
17615+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
17616+
}
17617+
],
17618+
"description": "MongoDB Atlas linked service properties."
17619+
}
17620+
},
17621+
"required": [
17622+
"type",
17623+
"typeProperties"
17624+
],
17625+
"description": "Linked service for MongoDB Atlas data source."
17626+
},
17627+
"MongoDbAtlasLinkedServiceTypeProperties": {
17628+
"type": "object",
17629+
"properties": {
17630+
"connectionString": {
17631+
"type": "object",
17632+
"properties": {},
17633+
"description": "The MongoDB Atlas connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference."
17634+
},
17635+
"database": {
17636+
"type": "object",
17637+
"properties": {},
17638+
"description": "The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string)."
17639+
}
17640+
},
17641+
"required": [
17642+
"connectionString",
17643+
"database"
17644+
],
17645+
"description": "MongoDB Atlas linked service properties."
17646+
},
17647+
"MongoDbAtlasSource": {
17648+
"type": "object",
17649+
"properties": {
17650+
"additionalColumns": {
17651+
"oneOf": [
17652+
{
17653+
"type": "array",
17654+
"items": {
17655+
"$ref": "#/definitions/AdditionalColumns"
17656+
}
17657+
},
17658+
{
17659+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
17660+
}
17661+
],
17662+
"description": "Specifies the additional columns to be added to source data. Type: array of objects (or Expression with resultType array of objects)."
17663+
},
17664+
"batchSize": {
17665+
"type": "object",
17666+
"properties": {},
17667+
"description": "Specifies the number of documents to return in each batch of the response from MongoDB Atlas instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer)."
17668+
},
17669+
"cursorMethods": {
17670+
"oneOf": [
17671+
{
17672+
"$ref": "#/definitions/MongoDbCursorMethodsProperties"
17673+
},
17674+
{
17675+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
17676+
}
17677+
],
17678+
"description": "Cursor methods for Mongodb query"
17679+
},
17680+
"filter": {
17681+
"type": "object",
17682+
"properties": {},
17683+
"description": "Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string)."
17684+
},
17685+
"queryTimeout": {
17686+
"type": "object",
17687+
"properties": {},
17688+
"description": "Query timeout. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
17689+
},
17690+
"type": {
17691+
"type": "string",
17692+
"enum": [
17693+
"MongoDbAtlasSource"
17694+
]
17695+
}
17696+
},
17697+
"required": [
17698+
"type"
17699+
],
17700+
"description": "A copy activity source for a MongoDB Atlas database."
17701+
},
1755017702
"MongoDbCollectionDataset": {
1755117703
"type": "object",
1755217704
"properties": {
@@ -19161,7 +19313,8 @@
1916119313
"enum": [
1916219314
"none",
1916319315
"zlib",
19164-
"snappy"
19316+
"snappy",
19317+
"lzo"
1916519318
]
1916619319
},
1916719320
{

0 commit comments

Comments
 (0)