@azure/arm-trafficmanager 6.1.0-alpha.20230320.1 → 6.1.0-alpha.20230501.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/index.js +24 -10
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/profilesListByResourceGroupSample.js +12 -5
- package/dist-esm/samples-dev/profilesListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/profilesListBySubscriptionSample.js +12 -5
- package/dist-esm/samples-dev/profilesListBySubscriptionSample.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +26 -26
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/operations/profiles.js +24 -10
- package/dist-esm/src/operations/profiles.js.map +1 -1
- package/dist-esm/test/trafficmanager_examples.spec.js +24 -10
- package/dist-esm/test/trafficmanager_examples.spec.js.map +1 -1
- package/package.json +2 -2
- package/types/tsdoc-metadata.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1313,17 +1313,24 @@ class ProfilesImpl {
|
|
|
1313
1313
|
}
|
|
1314
1314
|
listByResourceGroupPagingAll(resourceGroupName, options) {
|
|
1315
1315
|
return tslib.__asyncGenerator(this, arguments, function* listByResourceGroupPagingAll_1() {
|
|
1316
|
-
var e_1,
|
|
1316
|
+
var _a, e_1, _b, _c;
|
|
1317
1317
|
try {
|
|
1318
|
-
for (var
|
|
1319
|
-
|
|
1320
|
-
|
|
1318
|
+
for (var _d = true, _e = tslib.__asyncValues(this.listByResourceGroupPagingPage(resourceGroupName, options)), _f; _f = yield tslib.__await(_e.next()), _a = _f.done, !_a;) {
|
|
1319
|
+
_c = _f.value;
|
|
1320
|
+
_d = false;
|
|
1321
|
+
try {
|
|
1322
|
+
const page = _c;
|
|
1323
|
+
yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
|
|
1324
|
+
}
|
|
1325
|
+
finally {
|
|
1326
|
+
_d = true;
|
|
1327
|
+
}
|
|
1321
1328
|
}
|
|
1322
1329
|
}
|
|
1323
1330
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
1324
1331
|
finally {
|
|
1325
1332
|
try {
|
|
1326
|
-
if (
|
|
1333
|
+
if (!_d && !_a && (_b = _e.return)) yield tslib.__await(_b.call(_e));
|
|
1327
1334
|
}
|
|
1328
1335
|
finally { if (e_1) throw e_1.error; }
|
|
1329
1336
|
}
|
|
@@ -1359,17 +1366,24 @@ class ProfilesImpl {
|
|
|
1359
1366
|
}
|
|
1360
1367
|
listBySubscriptionPagingAll(options) {
|
|
1361
1368
|
return tslib.__asyncGenerator(this, arguments, function* listBySubscriptionPagingAll_1() {
|
|
1362
|
-
var e_2,
|
|
1369
|
+
var _a, e_2, _b, _c;
|
|
1363
1370
|
try {
|
|
1364
|
-
for (var
|
|
1365
|
-
|
|
1366
|
-
|
|
1371
|
+
for (var _d = true, _e = tslib.__asyncValues(this.listBySubscriptionPagingPage(options)), _f; _f = yield tslib.__await(_e.next()), _a = _f.done, !_a;) {
|
|
1372
|
+
_c = _f.value;
|
|
1373
|
+
_d = false;
|
|
1374
|
+
try {
|
|
1375
|
+
const page = _c;
|
|
1376
|
+
yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
|
|
1377
|
+
}
|
|
1378
|
+
finally {
|
|
1379
|
+
_d = true;
|
|
1380
|
+
}
|
|
1367
1381
|
}
|
|
1368
1382
|
}
|
|
1369
1383
|
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
1370
1384
|
finally {
|
|
1371
1385
|
try {
|
|
1372
|
-
if (
|
|
1386
|
+
if (!_d && !_a && (_b = _e.return)) yield tslib.__await(_b.call(_e));
|
|
1373
1387
|
}
|
|
1374
1388
|
finally { if (e_2) throw e_2.error; }
|
|
1375
1389
|
}
|