@azure/arm-resourcesdeployments 1.0.0-alpha.20250718.1 → 1.0.0-alpha.20250730.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/deploymentsClient.js +15 -5
- package/dist/browser/deploymentsClient.js.map +1 -1
- package/dist/browser/lroImpl.js +7 -3
- package/dist/browser/lroImpl.js.map +1 -1
- package/dist/browser/models/mappers.js +5 -2
- package/dist/browser/models/mappers.js.map +1 -1
- package/dist/browser/operations/deploymentOperations.js +111 -196
- package/dist/browser/operations/deploymentOperations.js.map +1 -1
- package/dist/browser/operations/deployments.js +325 -315
- package/dist/browser/operations/deployments.js.map +1 -1
- package/dist/browser/pagingHelper.js +2 -4
- package/dist/browser/pagingHelper.js.map +1 -1
- package/dist/commonjs/deploymentsClient.js +15 -5
- package/dist/commonjs/deploymentsClient.js.map +1 -1
- package/dist/commonjs/lroImpl.js +7 -3
- package/dist/commonjs/lroImpl.js.map +1 -1
- package/dist/commonjs/models/mappers.js +5 -2
- package/dist/commonjs/models/mappers.js.map +1 -1
- package/dist/commonjs/operations/deploymentOperations.js +111 -195
- package/dist/commonjs/operations/deploymentOperations.js.map +1 -1
- package/dist/commonjs/operations/deployments.js +325 -314
- package/dist/commonjs/operations/deployments.js.map +1 -1
- package/dist/commonjs/pagingHelper.js +2 -4
- package/dist/commonjs/pagingHelper.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +11 -11
- package/dist/esm/deploymentsClient.js +15 -5
- package/dist/esm/deploymentsClient.js.map +1 -1
- package/dist/esm/lroImpl.js +7 -3
- package/dist/esm/lroImpl.js.map +1 -1
- package/dist/esm/models/mappers.js +5 -2
- package/dist/esm/models/mappers.js.map +1 -1
- package/dist/esm/operations/deploymentOperations.js +111 -196
- package/dist/esm/operations/deploymentOperations.js.map +1 -1
- package/dist/esm/operations/deployments.js +325 -315
- package/dist/esm/operations/deployments.js.map +1 -1
- package/dist/esm/pagingHelper.js +2 -4
- package/dist/esm/pagingHelper.js.map +1 -1
- package/dist/react-native/deploymentsClient.js +15 -5
- package/dist/react-native/deploymentsClient.js.map +1 -1
- package/dist/react-native/lroImpl.js +7 -3
- package/dist/react-native/lroImpl.js.map +1 -1
- package/dist/react-native/models/mappers.js +5 -2
- package/dist/react-native/models/mappers.js.map +1 -1
- package/dist/react-native/operations/deploymentOperations.js +111 -196
- package/dist/react-native/operations/deploymentOperations.js.map +1 -1
- package/dist/react-native/operations/deployments.js +325 -315
- package/dist/react-native/operations/deployments.js.map +1 -1
- package/dist/react-native/pagingHelper.js +2 -4
- package/dist/react-native/pagingHelper.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-resourcesdeployments-node.api.md +1226 -1226
|
@@ -16,6 +16,7 @@ const Parameters = tslib_1.__importStar(require("../models/parameters.js"));
|
|
|
16
16
|
/// <reference lib="esnext.asynciterable" />
|
|
17
17
|
/** Class containing DeploymentOperations operations. */
|
|
18
18
|
class DeploymentOperationsImpl {
|
|
19
|
+
client;
|
|
19
20
|
/**
|
|
20
21
|
* Initialize a new instance of the class DeploymentOperations class.
|
|
21
22
|
* @param client Reference to the service client
|
|
@@ -39,52 +40,35 @@ class DeploymentOperationsImpl {
|
|
|
39
40
|
return this;
|
|
40
41
|
},
|
|
41
42
|
byPage: (settings) => {
|
|
42
|
-
if (settings
|
|
43
|
+
if (settings?.maxPageSize) {
|
|
43
44
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
44
45
|
}
|
|
45
46
|
return this.listAtScopePagingPage(scope, deploymentName, options, settings);
|
|
46
47
|
},
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
|
-
listAtScopePagingPage(scope, deploymentName, options, settings) {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}
|
|
67
|
-
});
|
|
50
|
+
async *listAtScopePagingPage(scope, deploymentName, options, settings) {
|
|
51
|
+
let result;
|
|
52
|
+
let continuationToken = settings?.continuationToken;
|
|
53
|
+
if (!continuationToken) {
|
|
54
|
+
result = await this._listAtScope(scope, deploymentName, options);
|
|
55
|
+
let page = result.value || [];
|
|
56
|
+
continuationToken = result.nextLink;
|
|
57
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
58
|
+
yield page;
|
|
59
|
+
}
|
|
60
|
+
while (continuationToken) {
|
|
61
|
+
result = await this._listAtScopeNext(scope, deploymentName, continuationToken, options);
|
|
62
|
+
continuationToken = result.nextLink;
|
|
63
|
+
let page = result.value || [];
|
|
64
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
65
|
+
yield page;
|
|
66
|
+
}
|
|
68
67
|
}
|
|
69
|
-
listAtScopePagingAll(scope, deploymentName, options) {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
for (var _d = true, _e = tslib_1.__asyncValues(this.listAtScopePagingPage(scope, deploymentName, options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
|
|
74
|
-
_c = _f.value;
|
|
75
|
-
_d = false;
|
|
76
|
-
const page = _c;
|
|
77
|
-
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
81
|
-
finally {
|
|
82
|
-
try {
|
|
83
|
-
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__await(_b.call(_e));
|
|
84
|
-
}
|
|
85
|
-
finally { if (e_1) throw e_1.error; }
|
|
86
|
-
}
|
|
87
|
-
});
|
|
68
|
+
async *listAtScopePagingAll(scope, deploymentName, options) {
|
|
69
|
+
for await (const page of this.listAtScopePagingPage(scope, deploymentName, options)) {
|
|
70
|
+
yield* page;
|
|
71
|
+
}
|
|
88
72
|
}
|
|
89
73
|
/**
|
|
90
74
|
* Gets all deployments operations for a deployment.
|
|
@@ -101,52 +85,35 @@ class DeploymentOperationsImpl {
|
|
|
101
85
|
return this;
|
|
102
86
|
},
|
|
103
87
|
byPage: (settings) => {
|
|
104
|
-
if (settings
|
|
88
|
+
if (settings?.maxPageSize) {
|
|
105
89
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
106
90
|
}
|
|
107
91
|
return this.listAtTenantScopePagingPage(deploymentName, options, settings);
|
|
108
92
|
},
|
|
109
93
|
};
|
|
110
94
|
}
|
|
111
|
-
listAtTenantScopePagingPage(deploymentName, options, settings) {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
});
|
|
95
|
+
async *listAtTenantScopePagingPage(deploymentName, options, settings) {
|
|
96
|
+
let result;
|
|
97
|
+
let continuationToken = settings?.continuationToken;
|
|
98
|
+
if (!continuationToken) {
|
|
99
|
+
result = await this._listAtTenantScope(deploymentName, options);
|
|
100
|
+
let page = result.value || [];
|
|
101
|
+
continuationToken = result.nextLink;
|
|
102
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
103
|
+
yield page;
|
|
104
|
+
}
|
|
105
|
+
while (continuationToken) {
|
|
106
|
+
result = await this._listAtTenantScopeNext(deploymentName, continuationToken, options);
|
|
107
|
+
continuationToken = result.nextLink;
|
|
108
|
+
let page = result.value || [];
|
|
109
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
110
|
+
yield page;
|
|
111
|
+
}
|
|
130
112
|
}
|
|
131
|
-
listAtTenantScopePagingAll(deploymentName, options) {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
for (var _d = true, _e = tslib_1.__asyncValues(this.listAtTenantScopePagingPage(deploymentName, options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
|
|
136
|
-
_c = _f.value;
|
|
137
|
-
_d = false;
|
|
138
|
-
const page = _c;
|
|
139
|
-
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
143
|
-
finally {
|
|
144
|
-
try {
|
|
145
|
-
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__await(_b.call(_e));
|
|
146
|
-
}
|
|
147
|
-
finally { if (e_2) throw e_2.error; }
|
|
148
|
-
}
|
|
149
|
-
});
|
|
113
|
+
async *listAtTenantScopePagingAll(deploymentName, options) {
|
|
114
|
+
for await (const page of this.listAtTenantScopePagingPage(deploymentName, options)) {
|
|
115
|
+
yield* page;
|
|
116
|
+
}
|
|
150
117
|
}
|
|
151
118
|
/**
|
|
152
119
|
* Gets all deployments operations for a deployment.
|
|
@@ -164,52 +131,35 @@ class DeploymentOperationsImpl {
|
|
|
164
131
|
return this;
|
|
165
132
|
},
|
|
166
133
|
byPage: (settings) => {
|
|
167
|
-
if (settings
|
|
134
|
+
if (settings?.maxPageSize) {
|
|
168
135
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
169
136
|
}
|
|
170
137
|
return this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings);
|
|
171
138
|
},
|
|
172
139
|
};
|
|
173
140
|
}
|
|
174
|
-
listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings) {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
}
|
|
192
|
-
});
|
|
141
|
+
async *listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings) {
|
|
142
|
+
let result;
|
|
143
|
+
let continuationToken = settings?.continuationToken;
|
|
144
|
+
if (!continuationToken) {
|
|
145
|
+
result = await this._listAtManagementGroupScope(groupId, deploymentName, options);
|
|
146
|
+
let page = result.value || [];
|
|
147
|
+
continuationToken = result.nextLink;
|
|
148
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
149
|
+
yield page;
|
|
150
|
+
}
|
|
151
|
+
while (continuationToken) {
|
|
152
|
+
result = await this._listAtManagementGroupScopeNext(groupId, deploymentName, continuationToken, options);
|
|
153
|
+
continuationToken = result.nextLink;
|
|
154
|
+
let page = result.value || [];
|
|
155
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
156
|
+
yield page;
|
|
157
|
+
}
|
|
193
158
|
}
|
|
194
|
-
listAtManagementGroupScopePagingAll(groupId, deploymentName, options) {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
for (var _d = true, _e = tslib_1.__asyncValues(this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
|
|
199
|
-
_c = _f.value;
|
|
200
|
-
_d = false;
|
|
201
|
-
const page = _c;
|
|
202
|
-
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
206
|
-
finally {
|
|
207
|
-
try {
|
|
208
|
-
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__await(_b.call(_e));
|
|
209
|
-
}
|
|
210
|
-
finally { if (e_3) throw e_3.error; }
|
|
211
|
-
}
|
|
212
|
-
});
|
|
159
|
+
async *listAtManagementGroupScopePagingAll(groupId, deploymentName, options) {
|
|
160
|
+
for await (const page of this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options)) {
|
|
161
|
+
yield* page;
|
|
162
|
+
}
|
|
213
163
|
}
|
|
214
164
|
/**
|
|
215
165
|
* Gets all deployments operations for a deployment.
|
|
@@ -226,52 +176,35 @@ class DeploymentOperationsImpl {
|
|
|
226
176
|
return this;
|
|
227
177
|
},
|
|
228
178
|
byPage: (settings) => {
|
|
229
|
-
if (settings
|
|
179
|
+
if (settings?.maxPageSize) {
|
|
230
180
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
231
181
|
}
|
|
232
182
|
return this.listAtSubscriptionScopePagingPage(deploymentName, options, settings);
|
|
233
183
|
},
|
|
234
184
|
};
|
|
235
185
|
}
|
|
236
|
-
listAtSubscriptionScopePagingPage(deploymentName, options, settings) {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
}
|
|
254
|
-
});
|
|
186
|
+
async *listAtSubscriptionScopePagingPage(deploymentName, options, settings) {
|
|
187
|
+
let result;
|
|
188
|
+
let continuationToken = settings?.continuationToken;
|
|
189
|
+
if (!continuationToken) {
|
|
190
|
+
result = await this._listAtSubscriptionScope(deploymentName, options);
|
|
191
|
+
let page = result.value || [];
|
|
192
|
+
continuationToken = result.nextLink;
|
|
193
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
194
|
+
yield page;
|
|
195
|
+
}
|
|
196
|
+
while (continuationToken) {
|
|
197
|
+
result = await this._listAtSubscriptionScopeNext(deploymentName, continuationToken, options);
|
|
198
|
+
continuationToken = result.nextLink;
|
|
199
|
+
let page = result.value || [];
|
|
200
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
201
|
+
yield page;
|
|
202
|
+
}
|
|
255
203
|
}
|
|
256
|
-
listAtSubscriptionScopePagingAll(deploymentName, options) {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
for (var _d = true, _e = tslib_1.__asyncValues(this.listAtSubscriptionScopePagingPage(deploymentName, options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
|
|
261
|
-
_c = _f.value;
|
|
262
|
-
_d = false;
|
|
263
|
-
const page = _c;
|
|
264
|
-
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
268
|
-
finally {
|
|
269
|
-
try {
|
|
270
|
-
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__await(_b.call(_e));
|
|
271
|
-
}
|
|
272
|
-
finally { if (e_4) throw e_4.error; }
|
|
273
|
-
}
|
|
274
|
-
});
|
|
204
|
+
async *listAtSubscriptionScopePagingAll(deploymentName, options) {
|
|
205
|
+
for await (const page of this.listAtSubscriptionScopePagingPage(deploymentName, options)) {
|
|
206
|
+
yield* page;
|
|
207
|
+
}
|
|
275
208
|
}
|
|
276
209
|
/**
|
|
277
210
|
* Gets all deployments operations for a deployment.
|
|
@@ -289,52 +222,35 @@ class DeploymentOperationsImpl {
|
|
|
289
222
|
return this;
|
|
290
223
|
},
|
|
291
224
|
byPage: (settings) => {
|
|
292
|
-
if (settings
|
|
225
|
+
if (settings?.maxPageSize) {
|
|
293
226
|
throw new Error("maxPageSize is not supported by this operation.");
|
|
294
227
|
}
|
|
295
228
|
return this.listPagingPage(resourceGroupName, deploymentName, options, settings);
|
|
296
229
|
},
|
|
297
230
|
};
|
|
298
231
|
}
|
|
299
|
-
listPagingPage(resourceGroupName, deploymentName, options, settings) {
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}
|
|
317
|
-
});
|
|
232
|
+
async *listPagingPage(resourceGroupName, deploymentName, options, settings) {
|
|
233
|
+
let result;
|
|
234
|
+
let continuationToken = settings?.continuationToken;
|
|
235
|
+
if (!continuationToken) {
|
|
236
|
+
result = await this._list(resourceGroupName, deploymentName, options);
|
|
237
|
+
let page = result.value || [];
|
|
238
|
+
continuationToken = result.nextLink;
|
|
239
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
240
|
+
yield page;
|
|
241
|
+
}
|
|
242
|
+
while (continuationToken) {
|
|
243
|
+
result = await this._listNext(resourceGroupName, deploymentName, continuationToken, options);
|
|
244
|
+
continuationToken = result.nextLink;
|
|
245
|
+
let page = result.value || [];
|
|
246
|
+
(0, pagingHelper_js_1.setContinuationToken)(page, continuationToken);
|
|
247
|
+
yield page;
|
|
248
|
+
}
|
|
318
249
|
}
|
|
319
|
-
listPagingAll(resourceGroupName, deploymentName, options) {
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
for (var _d = true, _e = tslib_1.__asyncValues(this.listPagingPage(resourceGroupName, deploymentName, options)), _f; _f = yield tslib_1.__await(_e.next()), _a = _f.done, !_a; _d = true) {
|
|
324
|
-
_c = _f.value;
|
|
325
|
-
_d = false;
|
|
326
|
-
const page = _c;
|
|
327
|
-
yield tslib_1.__await(yield* tslib_1.__asyncDelegator(tslib_1.__asyncValues(page)));
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
331
|
-
finally {
|
|
332
|
-
try {
|
|
333
|
-
if (!_d && !_a && (_b = _e.return)) yield tslib_1.__await(_b.call(_e));
|
|
334
|
-
}
|
|
335
|
-
finally { if (e_5) throw e_5.error; }
|
|
336
|
-
}
|
|
337
|
-
});
|
|
250
|
+
async *listPagingAll(resourceGroupName, deploymentName, options) {
|
|
251
|
+
for await (const page of this.listPagingPage(resourceGroupName, deploymentName, options)) {
|
|
252
|
+
yield* page;
|
|
253
|
+
}
|
|
338
254
|
}
|
|
339
255
|
/**
|
|
340
256
|
* Gets a deployments operation.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploymentOperations.js","sourceRoot":"","sources":["../../../src/operations/deploymentOperations.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator, PageSettings } from \"@azure/core-paging\";\nimport { setContinuationToken } from \"../pagingHelper.js\";\nimport { DeploymentOperations } from \"../operationsInterfaces/index.js\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers.js\";\nimport * as Parameters from \"../models/parameters.js\";\nimport { DeploymentsClient } from \"../deploymentsClient.js\";\nimport {\n DeploymentOperation,\n DeploymentOperationsListAtScopeNextOptionalParams,\n DeploymentOperationsListAtScopeOptionalParams,\n DeploymentOperationsListAtScopeResponse,\n DeploymentOperationsListAtTenantScopeNextOptionalParams,\n DeploymentOperationsListAtTenantScopeOptionalParams,\n DeploymentOperationsListAtTenantScopeResponse,\n DeploymentOperationsListAtManagementGroupScopeNextOptionalParams,\n DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n DeploymentOperationsListAtManagementGroupScopeResponse,\n DeploymentOperationsListAtSubscriptionScopeNextOptionalParams,\n DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n DeploymentOperationsListAtSubscriptionScopeResponse,\n DeploymentOperationsListNextOptionalParams,\n DeploymentOperationsListOptionalParams,\n DeploymentOperationsListResponse,\n DeploymentOperationsGetAtScopeOptionalParams,\n DeploymentOperationsGetAtScopeResponse,\n DeploymentOperationsGetAtTenantScopeOptionalParams,\n DeploymentOperationsGetAtTenantScopeResponse,\n DeploymentOperationsGetAtManagementGroupScopeOptionalParams,\n DeploymentOperationsGetAtManagementGroupScopeResponse,\n DeploymentOperationsGetAtSubscriptionScopeOptionalParams,\n DeploymentOperationsGetAtSubscriptionScopeResponse,\n DeploymentOperationsGetOptionalParams,\n DeploymentOperationsGetResponse,\n DeploymentOperationsListAtScopeNextResponse,\n DeploymentOperationsListAtTenantScopeNextResponse,\n DeploymentOperationsListAtManagementGroupScopeNextResponse,\n DeploymentOperationsListAtSubscriptionScopeNextResponse,\n DeploymentOperationsListNextResponse,\n} from \"../models/index.js\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing DeploymentOperations operations. */\nexport class DeploymentOperationsImpl implements DeploymentOperations {\n private readonly client: DeploymentsClient;\n\n /**\n * Initialize a new instance of the class DeploymentOperations class.\n * @param client Reference to the service client\n */\n constructor(client: DeploymentsClient) {\n this.client = client;\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtScope(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtScopePagingAll(scope, deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtScopePagingPage(\n scope,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtScopePagingPage(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtScope(scope, deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtScopeNext(\n scope,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtScopePagingAll(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtScopePagingPage(\n scope,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtTenantScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtTenantScopePagingAll(deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtTenantScopePagingPage(\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtTenantScopePagingPage(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtTenantScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtTenantScope(deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtTenantScopeNext(\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtTenantScopePagingAll(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtTenantScopePagingPage(\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtManagementGroupScopePagingAll(\n groupId,\n deploymentName,\n options,\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtManagementGroupScopePagingPage(\n groupId,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtManagementGroupScopePagingPage(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtManagementGroupScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtManagementGroupScope(\n groupId,\n deploymentName,\n options,\n );\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtManagementGroupScopeNext(\n groupId,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtManagementGroupScopePagingAll(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtManagementGroupScopePagingPage(\n groupId,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtSubscriptionScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtSubscriptionScopePagingAll(deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtSubscriptionScopePagingPage(\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtSubscriptionScopePagingPage(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtSubscriptionScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtSubscriptionScope(deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtSubscriptionScopeNext(\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtSubscriptionScopePagingAll(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtSubscriptionScopePagingPage(\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public list(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listPagingAll(resourceGroupName, deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listPagingPage(\n resourceGroupName,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listPagingPage(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._list(resourceGroupName, deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listNext(\n resourceGroupName,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listPagingAll(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listPagingPage(\n resourceGroupName,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets a deployments operation.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtScope(\n scope: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtScopeResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, operationId, options },\n getAtScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtScope(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtScopeResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, options },\n listAtScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtTenantScope(\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtTenantScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtTenantScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, operationId, options },\n getAtTenantScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtTenantScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtTenantScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, options },\n listAtTenantScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtManagementGroupScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtManagementGroupScopeResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, operationId, options },\n getAtManagementGroupScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtManagementGroupScopeResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, options },\n listAtManagementGroupScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtSubscriptionScope(\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtSubscriptionScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtSubscriptionScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, operationId, options },\n getAtSubscriptionScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtSubscriptionScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtSubscriptionScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, options },\n listAtSubscriptionScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetOptionalParams,\n ): Promise<DeploymentOperationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, operationId, options },\n getOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _list(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): Promise<DeploymentOperationsListResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, options },\n listOperationSpec,\n );\n }\n\n /**\n * ListAtScopeNext\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtScope method.\n * @param options The options parameters.\n */\n private _listAtScopeNext(\n scope: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtScopeNextResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, nextLink, options },\n listAtScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtTenantScopeNext\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtTenantScope method.\n * @param options The options parameters.\n */\n private _listAtTenantScopeNext(\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtTenantScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtTenantScopeNextResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, nextLink, options },\n listAtTenantScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtManagementGroupScopeNext\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtManagementGroupScope\n * method.\n * @param options The options parameters.\n */\n private _listAtManagementGroupScopeNext(\n groupId: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtManagementGroupScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtManagementGroupScopeNextResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, nextLink, options },\n listAtManagementGroupScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtSubscriptionScopeNext\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtSubscriptionScope\n * method.\n * @param options The options parameters.\n */\n private _listAtSubscriptionScopeNext(\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtSubscriptionScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtSubscriptionScopeNextResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, nextLink, options },\n listAtSubscriptionScopeNextOperationSpec,\n );\n }\n\n /**\n * ListNext\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n resourceGroupName: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListNextOptionalParams,\n ): Promise<DeploymentOperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, nextLink, options },\n listNextOperationSpec,\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getAtScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtTenantScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtTenantScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [Parameters.$host, Parameters.deploymentName],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtManagementGroupScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtManagementGroupScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtSubscriptionScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtSubscriptionScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtTenantScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtManagementGroupScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtSubscriptionScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\n"]}
|
|
1
|
+
{"version":3,"file":"deploymentOperations.js","sourceRoot":"","sources":["../../../src/operations/deploymentOperations.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator, PageSettings } from \"@azure/core-paging\";\nimport { setContinuationToken } from \"../pagingHelper.js\";\nimport { DeploymentOperations } from \"../operationsInterfaces/index.js\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers.js\";\nimport * as Parameters from \"../models/parameters.js\";\nimport { DeploymentsClient } from \"../deploymentsClient.js\";\nimport {\n DeploymentOperation,\n DeploymentOperationsListAtScopeNextOptionalParams,\n DeploymentOperationsListAtScopeOptionalParams,\n DeploymentOperationsListAtScopeResponse,\n DeploymentOperationsListAtTenantScopeNextOptionalParams,\n DeploymentOperationsListAtTenantScopeOptionalParams,\n DeploymentOperationsListAtTenantScopeResponse,\n DeploymentOperationsListAtManagementGroupScopeNextOptionalParams,\n DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n DeploymentOperationsListAtManagementGroupScopeResponse,\n DeploymentOperationsListAtSubscriptionScopeNextOptionalParams,\n DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n DeploymentOperationsListAtSubscriptionScopeResponse,\n DeploymentOperationsListNextOptionalParams,\n DeploymentOperationsListOptionalParams,\n DeploymentOperationsListResponse,\n DeploymentOperationsGetAtScopeOptionalParams,\n DeploymentOperationsGetAtScopeResponse,\n DeploymentOperationsGetAtTenantScopeOptionalParams,\n DeploymentOperationsGetAtTenantScopeResponse,\n DeploymentOperationsGetAtManagementGroupScopeOptionalParams,\n DeploymentOperationsGetAtManagementGroupScopeResponse,\n DeploymentOperationsGetAtSubscriptionScopeOptionalParams,\n DeploymentOperationsGetAtSubscriptionScopeResponse,\n DeploymentOperationsGetOptionalParams,\n DeploymentOperationsGetResponse,\n DeploymentOperationsListAtScopeNextResponse,\n DeploymentOperationsListAtTenantScopeNextResponse,\n DeploymentOperationsListAtManagementGroupScopeNextResponse,\n DeploymentOperationsListAtSubscriptionScopeNextResponse,\n DeploymentOperationsListNextResponse,\n} from \"../models/index.js\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing DeploymentOperations operations. */\nexport class DeploymentOperationsImpl implements DeploymentOperations {\n private readonly client: DeploymentsClient;\n\n /**\n * Initialize a new instance of the class DeploymentOperations class.\n * @param client Reference to the service client\n */\n constructor(client: DeploymentsClient) {\n this.client = client;\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtScope(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtScopePagingAll(scope, deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtScopePagingPage(\n scope,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtScopePagingPage(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtScope(scope, deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtScopeNext(\n scope,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtScopePagingAll(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtScopePagingPage(\n scope,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtTenantScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtTenantScopePagingAll(deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtTenantScopePagingPage(\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtTenantScopePagingPage(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtTenantScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtTenantScope(deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtTenantScopeNext(\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtTenantScopePagingAll(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtTenantScopePagingPage(\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtManagementGroupScopePagingAll(\n groupId,\n deploymentName,\n options,\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtManagementGroupScopePagingPage(\n groupId,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtManagementGroupScopePagingPage(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtManagementGroupScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtManagementGroupScope(\n groupId,\n deploymentName,\n options,\n );\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtManagementGroupScopeNext(\n groupId,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtManagementGroupScopePagingAll(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtManagementGroupScopePagingPage(\n groupId,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public listAtSubscriptionScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listAtSubscriptionScopePagingAll(deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listAtSubscriptionScopePagingPage(\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listAtSubscriptionScopePagingPage(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListAtSubscriptionScopeResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._listAtSubscriptionScope(deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listAtSubscriptionScopeNext(\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listAtSubscriptionScopePagingAll(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listAtSubscriptionScopePagingPage(\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n public list(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): PagedAsyncIterableIterator<DeploymentOperation> {\n const iter = this.listPagingAll(resourceGroupName, deploymentName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings?: PageSettings) => {\n if (settings?.maxPageSize) {\n throw new Error(\"maxPageSize is not supported by this operation.\");\n }\n return this.listPagingPage(\n resourceGroupName,\n deploymentName,\n options,\n settings,\n );\n },\n };\n }\n\n private async *listPagingPage(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n settings?: PageSettings,\n ): AsyncIterableIterator<DeploymentOperation[]> {\n let result: DeploymentOperationsListResponse;\n let continuationToken = settings?.continuationToken;\n if (!continuationToken) {\n result = await this._list(resourceGroupName, deploymentName, options);\n let page = result.value || [];\n continuationToken = result.nextLink;\n setContinuationToken(page, continuationToken);\n yield page;\n }\n while (continuationToken) {\n result = await this._listNext(\n resourceGroupName,\n deploymentName,\n continuationToken,\n options,\n );\n continuationToken = result.nextLink;\n let page = result.value || [];\n setContinuationToken(page, continuationToken);\n yield page;\n }\n }\n\n private async *listPagingAll(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): AsyncIterableIterator<DeploymentOperation> {\n for await (const page of this.listPagingPage(\n resourceGroupName,\n deploymentName,\n options,\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets a deployments operation.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtScope(\n scope: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtScopeResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, operationId, options },\n getAtScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtScope(\n scope: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtScopeResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, options },\n listAtScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtTenantScope(\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtTenantScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtTenantScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, operationId, options },\n getAtTenantScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtTenantScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtTenantScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtTenantScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, options },\n listAtTenantScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtManagementGroupScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtManagementGroupScopeResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, operationId, options },\n getAtManagementGroupScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtManagementGroupScope(\n groupId: string,\n deploymentName: string,\n options?: DeploymentOperationsListAtManagementGroupScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtManagementGroupScopeResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, options },\n listAtManagementGroupScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n getAtSubscriptionScope(\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetAtSubscriptionScopeOptionalParams,\n ): Promise<DeploymentOperationsGetAtSubscriptionScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, operationId, options },\n getAtSubscriptionScopeOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _listAtSubscriptionScope(\n deploymentName: string,\n options?: DeploymentOperationsListAtSubscriptionScopeOptionalParams,\n ): Promise<DeploymentOperationsListAtSubscriptionScopeResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, options },\n listAtSubscriptionScopeOperationSpec,\n );\n }\n\n /**\n * Gets a deployments operation.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param operationId The ID of the operation to get.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n deploymentName: string,\n operationId: string,\n options?: DeploymentOperationsGetOptionalParams,\n ): Promise<DeploymentOperationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, operationId, options },\n getOperationSpec,\n );\n }\n\n /**\n * Gets all deployments operations for a deployment.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param options The options parameters.\n */\n private _list(\n resourceGroupName: string,\n deploymentName: string,\n options?: DeploymentOperationsListOptionalParams,\n ): Promise<DeploymentOperationsListResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, options },\n listOperationSpec,\n );\n }\n\n /**\n * ListAtScopeNext\n * @param scope The resource scope.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtScope method.\n * @param options The options parameters.\n */\n private _listAtScopeNext(\n scope: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtScopeNextResponse> {\n return this.client.sendOperationRequest(\n { scope, deploymentName, nextLink, options },\n listAtScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtTenantScopeNext\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtTenantScope method.\n * @param options The options parameters.\n */\n private _listAtTenantScopeNext(\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtTenantScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtTenantScopeNextResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, nextLink, options },\n listAtTenantScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtManagementGroupScopeNext\n * @param groupId The management group ID.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtManagementGroupScope\n * method.\n * @param options The options parameters.\n */\n private _listAtManagementGroupScopeNext(\n groupId: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtManagementGroupScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtManagementGroupScopeNextResponse> {\n return this.client.sendOperationRequest(\n { groupId, deploymentName, nextLink, options },\n listAtManagementGroupScopeNextOperationSpec,\n );\n }\n\n /**\n * ListAtSubscriptionScopeNext\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the ListAtSubscriptionScope\n * method.\n * @param options The options parameters.\n */\n private _listAtSubscriptionScopeNext(\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListAtSubscriptionScopeNextOptionalParams,\n ): Promise<DeploymentOperationsListAtSubscriptionScopeNextResponse> {\n return this.client.sendOperationRequest(\n { deploymentName, nextLink, options },\n listAtSubscriptionScopeNextOperationSpec,\n );\n }\n\n /**\n * ListNext\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param deploymentName The name of the deployment.\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n resourceGroupName: string,\n deploymentName: string,\n nextLink: string,\n options?: DeploymentOperationsListNextOptionalParams,\n ): Promise<DeploymentOperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, deploymentName, nextLink, options },\n listNextOperationSpec,\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getAtScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/{scope}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtTenantScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtTenantScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [Parameters.$host, Parameters.deploymentName],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtManagementGroupScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtManagementGroupScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getAtSubscriptionScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtSubscriptionScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperation,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.operationId,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n queryParameters: [Parameters.apiVersion, Parameters.top],\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.scope,\n Parameters.deploymentName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtTenantScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtManagementGroupScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.groupId,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listAtSubscriptionScopeNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DeploymentOperationsListResult,\n },\n default: {\n bodyMapper: Mappers.CloudError,\n },\n },\n urlParameters: [\n Parameters.$host,\n Parameters.deploymentName,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.nextLink,\n ],\n headerParameters: [Parameters.accept],\n serializer,\n};\n"]}
|