-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
MigrateSsisTask.json
180 lines (180 loc) · 5.15 KB
/
MigrateSsisTask.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"swagger": "2.0",
"info": {
"title": "Azure Database Migration Service (classic) Resource Provider",
"version": "2022-03-30-preview"
},
"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": {
"MigrateSsisTaskInput": {
"type": "object",
"description": "Input for task that migrates SSIS packages from SQL Server to Azure SQL Database Managed Instance.",
"allOf": [
{
"$ref": "./TasksCommon.json#/definitions/SqlMigrationTaskInput"
}
],
"properties": {
"ssisMigrationInfo": {
"$ref": "./TasksCommon.json#/definitions/SsisMigrationInfo",
"description": "SSIS package migration information."
}
},
"required": [
"ssisMigrationInfo"
]
},
"MigrateSsisTaskOutput": {
"type": "object",
"description": "Output for task that migrates SSIS packages from SQL Server to Azure SQL Database Managed Instance.",
"properties": {
"id": {
"type": "string",
"description": "Result identifier",
"readOnly": true
},
"resultType": {
"description": "Result type",
"type": "string"
}
},
"required": [
"resultType"
],
"discriminator": "resultType"
},
"MigrateSsisTaskOutputMigrationLevel": {
"type": "object",
"x-ms-discriminator-value": "MigrationLevelOutput",
"properties": {
"startedOn": {
"type": "string",
"format": "date-time",
"description": "Migration start time",
"readOnly": true
},
"endedOn": {
"type": "string",
"format": "date-time",
"description": "Migration end time",
"readOnly": true
},
"status": {
"$ref": "TasksCommon.json#/definitions/MigrationStatus",
"description": "Current status of migration",
"readOnly": true
},
"message": {
"type": "string",
"description": "Migration progress message",
"readOnly": true
},
"sourceServerVersion": {
"type": "string",
"description": "Source server version",
"readOnly": true
},
"sourceServerBrandVersion": {
"type": "string",
"description": "Source server brand version",
"readOnly": true
},
"targetServerVersion": {
"type": "string",
"description": "Target server version",
"readOnly": true
},
"targetServerBrandVersion": {
"type": "string",
"description": "Target server brand version",
"readOnly": true
},
"exceptionsAndWarnings": {
"description": "Migration exceptions and warnings.",
"type": "array",
"items": {
"$ref": "./Common.json#/definitions/ReportableException"
},
"readOnly": true
},
"stage": {
"description": "Stage of SSIS migration.",
"$ref": "./TasksCommon.json#/definitions/SsisMigrationStage",
"readOnly": true
}
},
"allOf": [
{
"$ref": "#/definitions/MigrateSsisTaskOutput"
}
]
},
"MigrateSsisTaskOutputProjectLevel": {
"type": "object",
"x-ms-discriminator-value": "SsisProjectLevelOutput",
"properties": {
"folderName": {
"type": "string",
"description": "Name of the folder",
"readOnly": true
},
"projectName": {
"type": "string",
"description": "Name of the project",
"readOnly": true
},
"state": {
"$ref": "./TasksCommon.json#/definitions/MigrationState",
"description": "Current state of migration",
"readOnly": true
},
"stage": {
"description": "Stage of SSIS migration.",
"$ref": "./TasksCommon.json#/definitions/SsisMigrationStage",
"readOnly": true
},
"startedOn": {
"type": "string",
"format": "date-time",
"description": "Migration start time",
"readOnly": true
},
"endedOn": {
"type": "string",
"format": "date-time",
"description": "Migration end time",
"readOnly": true
},
"message": {
"type": "string",
"description": "Migration progress message",
"readOnly": true
},
"exceptionsAndWarnings": {
"description": "Migration exceptions and warnings",
"type": "array",
"items": {
"$ref": "Common.json#/definitions/ReportableException"
},
"readOnly": true
}
},
"allOf": [
{
"$ref": "#/definitions/MigrateSsisTaskOutput"
}
]
}
}
}