@@ -108,7 +108,7 @@ A client wants to provision a new database:
108
108
POST https://graph.microsoft.com/v1.0/storage/databases/
109
109
110
110
{
111
- "displayName": "Retail DB",
111
+ "displayName": "Retail DB",
112
112
}
113
113
```
114
114
@@ -121,10 +121,10 @@ HTTP/1.1 201 Created
121
121
Location: https://graph.microsoft.com/v1.0/storage/databases/db1
122
122
123
123
{
124
- "id": "db1",
125
- "displayName": "Retail DB",
126
- "status": "provisioning",
127
- [ … other fields for "database" …]
124
+ "id": "db1",
125
+ "displayName": "Retail DB",
126
+ "status": "provisioning",
127
+ [ … other fields for "database" …]
128
128
}
129
129
```
130
130
@@ -135,10 +135,10 @@ GET https://graph.microsoft.com/v1.0/storage/databases/db1
135
135
136
136
HTTP/1.1 200 Ok
137
137
{
138
- "id": "db1",
139
- "displayName": "Retail DB",
140
- "status": "succeeded",
141
- [ … other fields for "database" …]
138
+ "id": "db1",
139
+ "displayName": "Retail DB",
140
+ "status": "succeeded",
141
+ [ … other fields for "database" …]
142
142
}
143
143
```
144
144
@@ -161,10 +161,10 @@ HTTP/1.1 202 Accepted
161
161
Retry-After: 30
162
162
163
163
{
164
- "id": "db1",
165
- "displayName": "Retail DB",
166
- "status": "deleting",
167
- [ … other fields for "database" …]
164
+ "id": "db1",
165
+ "displayName": "Retail DB",
166
+ "status": "deleting",
167
+ [ … other fields for "database" …]
168
168
}
169
169
```
170
170
@@ -181,8 +181,8 @@ HTTP/1.1 404 Not Found
181
181
POST https://graph.microsoft.com/v1.0/storage/archives/
182
182
183
183
{
184
- "displayName": "Image Archive",
185
- ...
184
+ "displayName": "Image Archive",
185
+ ...
186
186
}
187
187
```
188
188
@@ -211,9 +211,9 @@ HTTP/1.1 200 OK
211
211
Retry-After: 30
212
212
213
213
{
214
- "createdDateTime": "2015-06-19T12-01-03.4Z",
215
- "lastActionDateTime": "2015-06-19T12-01-03.45Z",
216
- "status": "running"
214
+ "createdDateTime": "2015-06-19T12-01-03.4Z",
215
+ "lastActionDateTime": "2015-06-19T12-01-03.45Z",
216
+ "status": "running"
217
217
}
218
218
```
219
219
@@ -232,10 +232,10 @@ location:
232
232
HTTP/1.1 200 OK
233
233
234
234
{
235
- "createdDateTime": "2015-06-19T12-01-03.45Z",
236
- "lastActionDateTime": "2015-06-19T12-06-03.0024Z",
237
- "status": "succeeded",
238
- "resourceLocation": "https://graph.microsoft.com/v1.0/storage/archives/987"
235
+ "createdDateTime": "2015-06-19T12-01-03.45Z",
236
+ "lastActionDateTime": "2015-06-19T12-06-03.0024Z",
237
+ "status": "succeeded",
238
+ "resourceLocation": "https://graph.microsoft.com/v1.0/storage/archives/987"
239
239
}
240
240
```
241
241
@@ -245,8 +245,8 @@ HTTP/1.1 200 OK
245
245
POST https://graph.microsoft.com/v1.0/storage/copyArchive
246
246
247
247
{
248
- "displayName": "Image Archive",
249
- "destination": "Second-tier storage"
248
+ "displayName": "Image Archive",
249
+ "destination": "Second-tier storage"
250
250
...
251
251
}
252
252
```
0 commit comments