@azure/arm-resourcesdeployments 1.0.0-alpha.20250716.1 → 1.0.0-alpha.20250721.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.
Files changed (51) hide show
  1. package/dist/browser/deploymentsClient.js +15 -5
  2. package/dist/browser/deploymentsClient.js.map +1 -1
  3. package/dist/browser/lroImpl.js +7 -3
  4. package/dist/browser/lroImpl.js.map +1 -1
  5. package/dist/browser/models/mappers.js +5 -2
  6. package/dist/browser/models/mappers.js.map +1 -1
  7. package/dist/browser/operations/deploymentOperations.js +111 -196
  8. package/dist/browser/operations/deploymentOperations.js.map +1 -1
  9. package/dist/browser/operations/deployments.js +325 -315
  10. package/dist/browser/operations/deployments.js.map +1 -1
  11. package/dist/browser/pagingHelper.js +2 -4
  12. package/dist/browser/pagingHelper.js.map +1 -1
  13. package/dist/commonjs/deploymentsClient.js +15 -5
  14. package/dist/commonjs/deploymentsClient.js.map +1 -1
  15. package/dist/commonjs/lroImpl.js +7 -3
  16. package/dist/commonjs/lroImpl.js.map +1 -1
  17. package/dist/commonjs/models/mappers.js +5 -2
  18. package/dist/commonjs/models/mappers.js.map +1 -1
  19. package/dist/commonjs/operations/deploymentOperations.js +111 -195
  20. package/dist/commonjs/operations/deploymentOperations.js.map +1 -1
  21. package/dist/commonjs/operations/deployments.js +325 -314
  22. package/dist/commonjs/operations/deployments.js.map +1 -1
  23. package/dist/commonjs/pagingHelper.js +2 -4
  24. package/dist/commonjs/pagingHelper.js.map +1 -1
  25. package/dist/commonjs/tsdoc-metadata.json +11 -11
  26. package/dist/esm/deploymentsClient.js +15 -5
  27. package/dist/esm/deploymentsClient.js.map +1 -1
  28. package/dist/esm/lroImpl.js +7 -3
  29. package/dist/esm/lroImpl.js.map +1 -1
  30. package/dist/esm/models/mappers.js +5 -2
  31. package/dist/esm/models/mappers.js.map +1 -1
  32. package/dist/esm/operations/deploymentOperations.js +111 -196
  33. package/dist/esm/operations/deploymentOperations.js.map +1 -1
  34. package/dist/esm/operations/deployments.js +325 -315
  35. package/dist/esm/operations/deployments.js.map +1 -1
  36. package/dist/esm/pagingHelper.js +2 -4
  37. package/dist/esm/pagingHelper.js.map +1 -1
  38. package/dist/react-native/deploymentsClient.js +15 -5
  39. package/dist/react-native/deploymentsClient.js.map +1 -1
  40. package/dist/react-native/lroImpl.js +7 -3
  41. package/dist/react-native/lroImpl.js.map +1 -1
  42. package/dist/react-native/models/mappers.js +5 -2
  43. package/dist/react-native/models/mappers.js.map +1 -1
  44. package/dist/react-native/operations/deploymentOperations.js +111 -196
  45. package/dist/react-native/operations/deploymentOperations.js.map +1 -1
  46. package/dist/react-native/operations/deployments.js +325 -315
  47. package/dist/react-native/operations/deployments.js.map +1 -1
  48. package/dist/react-native/pagingHelper.js +2 -4
  49. package/dist/react-native/pagingHelper.js.map +1 -1
  50. package/package.json +2 -2
  51. /package/review/{arm-resourcesdeployments.api.md → arm-resourcesdeployments-node.api.md} +0 -0
@@ -5,7 +5,6 @@
5
5
  * Code generated by Microsoft (R) AutoRest Code Generator.
6
6
  * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  */
8
- import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
9
8
  import { setContinuationToken } from "../pagingHelper.js";
10
9
  import * as coreClient from "@azure/core-client";
11
10
  import * as Mappers from "../models/mappers.js";
@@ -13,6 +12,7 @@ import * as Parameters from "../models/parameters.js";
13
12
  /// <reference lib="esnext.asynciterable" />
14
13
  /** Class containing DeploymentOperations operations. */
15
14
  export class DeploymentOperationsImpl {
15
+ client;
16
16
  /**
17
17
  * Initialize a new instance of the class DeploymentOperations class.
18
18
  * @param client Reference to the service client
@@ -36,52 +36,35 @@ export class DeploymentOperationsImpl {
36
36
  return this;
37
37
  },
38
38
  byPage: (settings) => {
39
- if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
39
+ if (settings?.maxPageSize) {
40
40
  throw new Error("maxPageSize is not supported by this operation.");
41
41
  }
42
42
  return this.listAtScopePagingPage(scope, deploymentName, options, settings);
43
43
  },
44
44
  };
45
45
  }
46
- listAtScopePagingPage(scope, deploymentName, options, settings) {
47
- return __asyncGenerator(this, arguments, function* listAtScopePagingPage_1() {
48
- let result;
49
- let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
50
- if (!continuationToken) {
51
- result = yield __await(this._listAtScope(scope, deploymentName, options));
52
- let page = result.value || [];
53
- continuationToken = result.nextLink;
54
- setContinuationToken(page, continuationToken);
55
- yield yield __await(page);
56
- }
57
- while (continuationToken) {
58
- result = yield __await(this._listAtScopeNext(scope, deploymentName, continuationToken, options));
59
- continuationToken = result.nextLink;
60
- let page = result.value || [];
61
- setContinuationToken(page, continuationToken);
62
- yield yield __await(page);
63
- }
64
- });
46
+ async *listAtScopePagingPage(scope, deploymentName, options, settings) {
47
+ let result;
48
+ let continuationToken = settings?.continuationToken;
49
+ if (!continuationToken) {
50
+ result = await this._listAtScope(scope, deploymentName, options);
51
+ let page = result.value || [];
52
+ continuationToken = result.nextLink;
53
+ setContinuationToken(page, continuationToken);
54
+ yield page;
55
+ }
56
+ while (continuationToken) {
57
+ result = await this._listAtScopeNext(scope, deploymentName, continuationToken, options);
58
+ continuationToken = result.nextLink;
59
+ let page = result.value || [];
60
+ setContinuationToken(page, continuationToken);
61
+ yield page;
62
+ }
65
63
  }
66
- listAtScopePagingAll(scope, deploymentName, options) {
67
- return __asyncGenerator(this, arguments, function* listAtScopePagingAll_1() {
68
- var _a, e_1, _b, _c;
69
- try {
70
- for (var _d = true, _e = __asyncValues(this.listAtScopePagingPage(scope, deploymentName, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
71
- _c = _f.value;
72
- _d = false;
73
- const page = _c;
74
- yield __await(yield* __asyncDelegator(__asyncValues(page)));
75
- }
76
- }
77
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
78
- finally {
79
- try {
80
- if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));
81
- }
82
- finally { if (e_1) throw e_1.error; }
83
- }
84
- });
64
+ async *listAtScopePagingAll(scope, deploymentName, options) {
65
+ for await (const page of this.listAtScopePagingPage(scope, deploymentName, options)) {
66
+ yield* page;
67
+ }
85
68
  }
86
69
  /**
87
70
  * Gets all deployments operations for a deployment.
@@ -98,52 +81,35 @@ export class DeploymentOperationsImpl {
98
81
  return this;
99
82
  },
100
83
  byPage: (settings) => {
101
- if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
84
+ if (settings?.maxPageSize) {
102
85
  throw new Error("maxPageSize is not supported by this operation.");
103
86
  }
104
87
  return this.listAtTenantScopePagingPage(deploymentName, options, settings);
105
88
  },
106
89
  };
107
90
  }
108
- listAtTenantScopePagingPage(deploymentName, options, settings) {
109
- return __asyncGenerator(this, arguments, function* listAtTenantScopePagingPage_1() {
110
- let result;
111
- let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
112
- if (!continuationToken) {
113
- result = yield __await(this._listAtTenantScope(deploymentName, options));
114
- let page = result.value || [];
115
- continuationToken = result.nextLink;
116
- setContinuationToken(page, continuationToken);
117
- yield yield __await(page);
118
- }
119
- while (continuationToken) {
120
- result = yield __await(this._listAtTenantScopeNext(deploymentName, continuationToken, options));
121
- continuationToken = result.nextLink;
122
- let page = result.value || [];
123
- setContinuationToken(page, continuationToken);
124
- yield yield __await(page);
125
- }
126
- });
91
+ async *listAtTenantScopePagingPage(deploymentName, options, settings) {
92
+ let result;
93
+ let continuationToken = settings?.continuationToken;
94
+ if (!continuationToken) {
95
+ result = await this._listAtTenantScope(deploymentName, options);
96
+ let page = result.value || [];
97
+ continuationToken = result.nextLink;
98
+ setContinuationToken(page, continuationToken);
99
+ yield page;
100
+ }
101
+ while (continuationToken) {
102
+ result = await this._listAtTenantScopeNext(deploymentName, continuationToken, options);
103
+ continuationToken = result.nextLink;
104
+ let page = result.value || [];
105
+ setContinuationToken(page, continuationToken);
106
+ yield page;
107
+ }
127
108
  }
128
- listAtTenantScopePagingAll(deploymentName, options) {
129
- return __asyncGenerator(this, arguments, function* listAtTenantScopePagingAll_1() {
130
- var _a, e_2, _b, _c;
131
- try {
132
- for (var _d = true, _e = __asyncValues(this.listAtTenantScopePagingPage(deploymentName, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
133
- _c = _f.value;
134
- _d = false;
135
- const page = _c;
136
- yield __await(yield* __asyncDelegator(__asyncValues(page)));
137
- }
138
- }
139
- catch (e_2_1) { e_2 = { error: e_2_1 }; }
140
- finally {
141
- try {
142
- if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));
143
- }
144
- finally { if (e_2) throw e_2.error; }
145
- }
146
- });
109
+ async *listAtTenantScopePagingAll(deploymentName, options) {
110
+ for await (const page of this.listAtTenantScopePagingPage(deploymentName, options)) {
111
+ yield* page;
112
+ }
147
113
  }
148
114
  /**
149
115
  * Gets all deployments operations for a deployment.
@@ -161,52 +127,35 @@ export class DeploymentOperationsImpl {
161
127
  return this;
162
128
  },
163
129
  byPage: (settings) => {
164
- if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
130
+ if (settings?.maxPageSize) {
165
131
  throw new Error("maxPageSize is not supported by this operation.");
166
132
  }
167
133
  return this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings);
168
134
  },
169
135
  };
170
136
  }
171
- listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings) {
172
- return __asyncGenerator(this, arguments, function* listAtManagementGroupScopePagingPage_1() {
173
- let result;
174
- let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
175
- if (!continuationToken) {
176
- result = yield __await(this._listAtManagementGroupScope(groupId, deploymentName, options));
177
- let page = result.value || [];
178
- continuationToken = result.nextLink;
179
- setContinuationToken(page, continuationToken);
180
- yield yield __await(page);
181
- }
182
- while (continuationToken) {
183
- result = yield __await(this._listAtManagementGroupScopeNext(groupId, deploymentName, continuationToken, options));
184
- continuationToken = result.nextLink;
185
- let page = result.value || [];
186
- setContinuationToken(page, continuationToken);
187
- yield yield __await(page);
188
- }
189
- });
137
+ async *listAtManagementGroupScopePagingPage(groupId, deploymentName, options, settings) {
138
+ let result;
139
+ let continuationToken = settings?.continuationToken;
140
+ if (!continuationToken) {
141
+ result = await this._listAtManagementGroupScope(groupId, deploymentName, options);
142
+ let page = result.value || [];
143
+ continuationToken = result.nextLink;
144
+ setContinuationToken(page, continuationToken);
145
+ yield page;
146
+ }
147
+ while (continuationToken) {
148
+ result = await this._listAtManagementGroupScopeNext(groupId, deploymentName, continuationToken, options);
149
+ continuationToken = result.nextLink;
150
+ let page = result.value || [];
151
+ setContinuationToken(page, continuationToken);
152
+ yield page;
153
+ }
190
154
  }
191
- listAtManagementGroupScopePagingAll(groupId, deploymentName, options) {
192
- return __asyncGenerator(this, arguments, function* listAtManagementGroupScopePagingAll_1() {
193
- var _a, e_3, _b, _c;
194
- try {
195
- for (var _d = true, _e = __asyncValues(this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
196
- _c = _f.value;
197
- _d = false;
198
- const page = _c;
199
- yield __await(yield* __asyncDelegator(__asyncValues(page)));
200
- }
201
- }
202
- catch (e_3_1) { e_3 = { error: e_3_1 }; }
203
- finally {
204
- try {
205
- if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));
206
- }
207
- finally { if (e_3) throw e_3.error; }
208
- }
209
- });
155
+ async *listAtManagementGroupScopePagingAll(groupId, deploymentName, options) {
156
+ for await (const page of this.listAtManagementGroupScopePagingPage(groupId, deploymentName, options)) {
157
+ yield* page;
158
+ }
210
159
  }
211
160
  /**
212
161
  * Gets all deployments operations for a deployment.
@@ -223,52 +172,35 @@ export class DeploymentOperationsImpl {
223
172
  return this;
224
173
  },
225
174
  byPage: (settings) => {
226
- if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
175
+ if (settings?.maxPageSize) {
227
176
  throw new Error("maxPageSize is not supported by this operation.");
228
177
  }
229
178
  return this.listAtSubscriptionScopePagingPage(deploymentName, options, settings);
230
179
  },
231
180
  };
232
181
  }
233
- listAtSubscriptionScopePagingPage(deploymentName, options, settings) {
234
- return __asyncGenerator(this, arguments, function* listAtSubscriptionScopePagingPage_1() {
235
- let result;
236
- let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
237
- if (!continuationToken) {
238
- result = yield __await(this._listAtSubscriptionScope(deploymentName, options));
239
- let page = result.value || [];
240
- continuationToken = result.nextLink;
241
- setContinuationToken(page, continuationToken);
242
- yield yield __await(page);
243
- }
244
- while (continuationToken) {
245
- result = yield __await(this._listAtSubscriptionScopeNext(deploymentName, continuationToken, options));
246
- continuationToken = result.nextLink;
247
- let page = result.value || [];
248
- setContinuationToken(page, continuationToken);
249
- yield yield __await(page);
250
- }
251
- });
182
+ async *listAtSubscriptionScopePagingPage(deploymentName, options, settings) {
183
+ let result;
184
+ let continuationToken = settings?.continuationToken;
185
+ if (!continuationToken) {
186
+ result = await this._listAtSubscriptionScope(deploymentName, options);
187
+ let page = result.value || [];
188
+ continuationToken = result.nextLink;
189
+ setContinuationToken(page, continuationToken);
190
+ yield page;
191
+ }
192
+ while (continuationToken) {
193
+ result = await this._listAtSubscriptionScopeNext(deploymentName, continuationToken, options);
194
+ continuationToken = result.nextLink;
195
+ let page = result.value || [];
196
+ setContinuationToken(page, continuationToken);
197
+ yield page;
198
+ }
252
199
  }
253
- listAtSubscriptionScopePagingAll(deploymentName, options) {
254
- return __asyncGenerator(this, arguments, function* listAtSubscriptionScopePagingAll_1() {
255
- var _a, e_4, _b, _c;
256
- try {
257
- for (var _d = true, _e = __asyncValues(this.listAtSubscriptionScopePagingPage(deploymentName, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
258
- _c = _f.value;
259
- _d = false;
260
- const page = _c;
261
- yield __await(yield* __asyncDelegator(__asyncValues(page)));
262
- }
263
- }
264
- catch (e_4_1) { e_4 = { error: e_4_1 }; }
265
- finally {
266
- try {
267
- if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));
268
- }
269
- finally { if (e_4) throw e_4.error; }
270
- }
271
- });
200
+ async *listAtSubscriptionScopePagingAll(deploymentName, options) {
201
+ for await (const page of this.listAtSubscriptionScopePagingPage(deploymentName, options)) {
202
+ yield* page;
203
+ }
272
204
  }
273
205
  /**
274
206
  * Gets all deployments operations for a deployment.
@@ -286,52 +218,35 @@ export class DeploymentOperationsImpl {
286
218
  return this;
287
219
  },
288
220
  byPage: (settings) => {
289
- if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
221
+ if (settings?.maxPageSize) {
290
222
  throw new Error("maxPageSize is not supported by this operation.");
291
223
  }
292
224
  return this.listPagingPage(resourceGroupName, deploymentName, options, settings);
293
225
  },
294
226
  };
295
227
  }
296
- listPagingPage(resourceGroupName, deploymentName, options, settings) {
297
- return __asyncGenerator(this, arguments, function* listPagingPage_1() {
298
- let result;
299
- let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
300
- if (!continuationToken) {
301
- result = yield __await(this._list(resourceGroupName, deploymentName, options));
302
- let page = result.value || [];
303
- continuationToken = result.nextLink;
304
- setContinuationToken(page, continuationToken);
305
- yield yield __await(page);
306
- }
307
- while (continuationToken) {
308
- result = yield __await(this._listNext(resourceGroupName, deploymentName, continuationToken, options));
309
- continuationToken = result.nextLink;
310
- let page = result.value || [];
311
- setContinuationToken(page, continuationToken);
312
- yield yield __await(page);
313
- }
314
- });
228
+ async *listPagingPage(resourceGroupName, deploymentName, options, settings) {
229
+ let result;
230
+ let continuationToken = settings?.continuationToken;
231
+ if (!continuationToken) {
232
+ result = await this._list(resourceGroupName, deploymentName, options);
233
+ let page = result.value || [];
234
+ continuationToken = result.nextLink;
235
+ setContinuationToken(page, continuationToken);
236
+ yield page;
237
+ }
238
+ while (continuationToken) {
239
+ result = await this._listNext(resourceGroupName, deploymentName, continuationToken, options);
240
+ continuationToken = result.nextLink;
241
+ let page = result.value || [];
242
+ setContinuationToken(page, continuationToken);
243
+ yield page;
244
+ }
315
245
  }
316
- listPagingAll(resourceGroupName, deploymentName, options) {
317
- return __asyncGenerator(this, arguments, function* listPagingAll_1() {
318
- var _a, e_5, _b, _c;
319
- try {
320
- for (var _d = true, _e = __asyncValues(this.listPagingPage(resourceGroupName, deploymentName, options)), _f; _f = yield __await(_e.next()), _a = _f.done, !_a; _d = true) {
321
- _c = _f.value;
322
- _d = false;
323
- const page = _c;
324
- yield __await(yield* __asyncDelegator(__asyncValues(page)));
325
- }
326
- }
327
- catch (e_5_1) { e_5 = { error: e_5_1 }; }
328
- finally {
329
- try {
330
- if (!_d && !_a && (_b = _e.return)) yield __await(_b.call(_e));
331
- }
332
- finally { if (e_5) throw e_5.error; }
333
- }
334
- });
246
+ async *listPagingAll(resourceGroupName, deploymentName, options) {
247
+ for await (const page of this.listPagingPage(resourceGroupName, deploymentName, options)) {
248
+ yield* page;
249
+ }
335
250
  }
336
251
  /**
337
252
  * 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"]}