Skip to content

Commit

Permalink
Fix Linter Errors For S360 (Azure#24255)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingshu923 authored and harryli0108 committed Jul 28, 2023
1 parent d695ba3 commit 8e9b40c
Showing 1 changed file with 23 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
"title": "DataFactoryManagementClient",
"version": "2018-06-01"
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow.",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {},
"definitions": {
"ChangeDataCapture": {
Expand All @@ -24,7 +35,7 @@
"description": "The description of the change data capture.",
"type": "string"
},
"SourceConnectionsInfo": {
"sourceConnectionsInfo": {
"description": "List of sources connections that can be used as sources in the CDC.",
"type": "array",
"items": {
Expand All @@ -33,7 +44,7 @@
},
"x-ms-identifiers": []
},
"TargetConnectionsInfo": {
"targetConnectionsInfo": {
"description": "List of target connections that can be used as sources in the CDC.",
"type": "array",
"items": {
Expand All @@ -42,7 +53,7 @@
},
"x-ms-identifiers": []
},
"Policy": {
"policy": {
"description": "CDC policy",
"type": "object",
"$ref": "#/definitions/MapperPolicy"
Expand All @@ -57,16 +68,16 @@
}
},
"required": [
"SourceConnectionsInfo",
"TargetConnectionsInfo",
"Policy"
"sourceConnectionsInfo",
"targetConnectionsInfo",
"policy"
]
},
"MapperSourceConnectionsInfo": {
"description": "A object which contains list of tables and connection details for a source connection.",
"type": "object",
"properties": {
"SourceEntities": {
"sourceEntities": {
"description": "List of source tables for a source connection.",
"type": "array",
"items": {
Expand All @@ -77,7 +88,7 @@
"name"
]
},
"Connection": {
"connection": {
"type": "object",
"$ref": "#/definitions/MapperConnection"
}
Expand All @@ -87,7 +98,7 @@
"description": "A object which contains list of tables and connection details for a target connection.",
"type": "object",
"properties": {
"TargetEntities": {
"targetEntities": {
"description": "List of source tables for a target connection.",
"type": "array",
"items": {
Expand All @@ -98,11 +109,11 @@
"name"
]
},
"Connection": {
"connection": {
"type": "object",
"$ref": "#/definitions/MapperConnection"
},
"DataMapperMappings": {
"dataMapperMappings": {
"description": "List of table mappings.",
"type": "array",
"items": {
Expand All @@ -114,7 +125,7 @@
"sourceEntityName"
]
},
"Relationships": {
"relationships": {
"description": "List of relationship info among the tables.",
"type": "array",
"items": {
Expand Down

0 comments on commit 8e9b40c

Please sign in to comment.