-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
MigrateSqlServerSqlMITask.json
214 lines (214 loc) · 6.32 KB
/
MigrateSqlServerSqlMITask.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"swagger": "2.0",
"info": {
"title": "Azure Data Migration Service Resource Provider",
"version": "2018-03-15-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": {
"MigrateSqlServerSqlMITaskInput": {
"type": "object",
"description": "Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance.",
"allOf": [
{
"$ref": "./TasksCommon.json#/definitions/SqlMigrationTaskInput"
}
],
"properties": {
"selectedDatabases": {
"description": "Databases to migrate",
"type": "array",
"items": {
"$ref": "./TasksCommon.json#/definitions/MigrateSqlServerSqlMIDatabaseInput"
}
},
"backupFileShare": {
"$ref": "./TasksCommon.json#/definitions/FileShare",
"description": "Backup file share information for all selected databases."
},
"backupBlobShare": {
"$ref": "./TasksCommon.json#/definitions/BlobShare",
"description": "SAS URI of Azure Storage Account Container to be used for storing backup files."
}
},
"required": [
"selectedDatabases",
"backupBlobShare"
]
},
"MigrateSqlServerSqlMITaskOutput": {
"type": "object",
"description": "Output for task that migrates SQL Server databases 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"
},
"MigrateSqlServerSqlMITaskOutputMigrationLevel": {
"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
},
"state": {
"$ref": "TasksCommon.json#/definitions/MigrationState",
"description": "Current state of migration",
"readOnly": true
},
"message": {
"type": "string",
"description": "Migration progress message",
"readOnly": true
},
"databases": {
"type": "string",
"description": "Selected databases as a map from database name to database id",
"additionalProperties": {
"type": "string"
},
"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
}
},
"allOf": [
{
"$ref": "#/definitions/MigrateSqlServerSqlMITaskOutput"
}
]
},
"MigrateSqlServerSqlMITaskOutputDatabaseLevel": {
"type": "object",
"x-ms-discriminator-value": "DatabaseLevelOutput",
"properties": {
"databaseName": {
"type": "string",
"description": "Name of the database",
"readOnly": true
},
"state": {
"$ref": "./TasksCommon.json#/definitions/MigrationState",
"description": "Current state of migration",
"readOnly": true
},
"stage": {
"$ref": "./TasksCommon.json#/definitions/DatabaseMigrationStage",
"description": "Current stage of migration",
"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/MigrateSqlServerSqlMITaskOutput"
}
]
},
"MigrateSqlServerSqlMITaskOutputError": {
"type": "object",
"x-ms-discriminator-value": "ErrorOutput",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the exception",
"readOnly": true
},
"error": {
"$ref": "Common.json#/definitions/ReportableException",
"description": "Migration error",
"readOnly": true
}
},
"allOf": [
{
"$ref": "#/definitions/MigrateSqlServerSqlMITaskOutput"
}
]
}
}
}