@alicloud/appstream-center20210901 3.1.0 → 3.2.0
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/client.d.ts +579 -8
- package/dist/client.js +205 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +732 -8
package/dist/client.d.ts
CHANGED
|
@@ -238,6 +238,14 @@ export declare class CreateAppInstanceGroupRequestNodePool extends $dara.Model {
|
|
|
238
238
|
export declare class CreateAppInstanceGroupRequestRuntimePolicy extends $dara.Model {
|
|
239
239
|
debugMode?: string;
|
|
240
240
|
perSessionPerApp?: boolean;
|
|
241
|
+
/**
|
|
242
|
+
* @example
|
|
243
|
+
* DYNAMIC
|
|
244
|
+
*
|
|
245
|
+
* **if can be null:**
|
|
246
|
+
* true
|
|
247
|
+
*/
|
|
248
|
+
persistentAppInstanceScheduleMode?: string;
|
|
241
249
|
sessionPreOpen?: string;
|
|
242
250
|
/**
|
|
243
251
|
* @remarks
|
|
@@ -1322,21 +1330,38 @@ export declare class ListAccessPagesResponseBodyData extends $dara.Model {
|
|
|
1322
1330
|
}
|
|
1323
1331
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps extends $dara.Model {
|
|
1324
1332
|
/**
|
|
1333
|
+
* @remarks
|
|
1334
|
+
* The app icon.
|
|
1335
|
+
*
|
|
1325
1336
|
* @example
|
|
1326
1337
|
* https://app-center-icon-****.png
|
|
1327
1338
|
*/
|
|
1328
1339
|
appIcon?: string;
|
|
1329
1340
|
/**
|
|
1341
|
+
* @remarks
|
|
1342
|
+
* The app ID.
|
|
1343
|
+
*
|
|
1330
1344
|
* @example
|
|
1331
1345
|
* ca-i87mycyn419nu****
|
|
1332
1346
|
*/
|
|
1333
1347
|
appId?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
* @remarks
|
|
1350
|
+
* The app name.
|
|
1351
|
+
*/
|
|
1334
1352
|
appName?: string;
|
|
1335
1353
|
/**
|
|
1354
|
+
* @remarks
|
|
1355
|
+
* The app version.
|
|
1356
|
+
*
|
|
1336
1357
|
* @example
|
|
1337
1358
|
* 1.0.0
|
|
1338
1359
|
*/
|
|
1339
1360
|
appVersion?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* @remarks
|
|
1363
|
+
* The name of the app version.
|
|
1364
|
+
*/
|
|
1340
1365
|
appVersionName?: string;
|
|
1341
1366
|
static names(): {
|
|
1342
1367
|
[key: string]: string;
|
|
@@ -1351,16 +1376,25 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps
|
|
|
1351
1376
|
}
|
|
1352
1377
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePoolRecurrenceSchedulesTimerPeriods extends $dara.Model {
|
|
1353
1378
|
/**
|
|
1379
|
+
* @remarks
|
|
1380
|
+
* The number of destination resources.
|
|
1381
|
+
*
|
|
1354
1382
|
* @example
|
|
1355
1383
|
* 5
|
|
1356
1384
|
*/
|
|
1357
1385
|
amount?: number;
|
|
1358
1386
|
/**
|
|
1387
|
+
* @remarks
|
|
1388
|
+
* The time when the scaling policy ends. Format: HH:mm.
|
|
1389
|
+
*
|
|
1359
1390
|
* @example
|
|
1360
1391
|
* 11:00
|
|
1361
1392
|
*/
|
|
1362
1393
|
endTime?: string;
|
|
1363
1394
|
/**
|
|
1395
|
+
* @remarks
|
|
1396
|
+
* The time when the scaling policy starts. Format: HH:mm.
|
|
1397
|
+
*
|
|
1364
1398
|
* @example
|
|
1365
1399
|
* 09:30
|
|
1366
1400
|
*/
|
|
@@ -1378,11 +1412,26 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodeP
|
|
|
1378
1412
|
}
|
|
1379
1413
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePoolRecurrenceSchedules extends $dara.Model {
|
|
1380
1414
|
/**
|
|
1415
|
+
* @remarks
|
|
1416
|
+
* The schedule type of the scaling policy. This parameter must be configured together with `RecurrenceValues`.``
|
|
1417
|
+
*
|
|
1418
|
+
* Valid value:
|
|
1419
|
+
*
|
|
1420
|
+
* * weekly: The scaling policy is executed on specific days each week.
|
|
1421
|
+
*
|
|
1381
1422
|
* @example
|
|
1382
1423
|
* Weekly
|
|
1383
1424
|
*/
|
|
1384
1425
|
recurrenceType?: string;
|
|
1426
|
+
/**
|
|
1427
|
+
* @remarks
|
|
1428
|
+
* The days of each week on which the scaling policy is executed.
|
|
1429
|
+
*/
|
|
1385
1430
|
recurrenceValues?: number[];
|
|
1431
|
+
/**
|
|
1432
|
+
* @remarks
|
|
1433
|
+
* The time periods during which the scaling policy can be executed.
|
|
1434
|
+
*/
|
|
1386
1435
|
timerPeriods?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePoolRecurrenceSchedulesTimerPeriods[];
|
|
1387
1436
|
static names(): {
|
|
1388
1437
|
[key: string]: string;
|
|
@@ -1397,91 +1446,161 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodeP
|
|
|
1397
1446
|
}
|
|
1398
1447
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePool extends $dara.Model {
|
|
1399
1448
|
/**
|
|
1449
|
+
* @remarks
|
|
1450
|
+
* The number of resources purchased when the delivery group was created.
|
|
1451
|
+
*
|
|
1400
1452
|
* @example
|
|
1401
1453
|
* 2
|
|
1402
1454
|
*/
|
|
1403
1455
|
amount?: number;
|
|
1404
1456
|
/**
|
|
1405
1457
|
* @remarks
|
|
1406
|
-
* The maximum number of idle sessions. After you specify a value for this parameter, auto
|
|
1458
|
+
* The maximum number of idle sessions. After you specify a value for this parameter, auto scale-out is triggered only if the number of idle sessions in the delivery group is smaller than the specified value and the session usage exceeds the value specified for `ScalingUsageThreshold`. Otherwise, the system determines that idle sessions in the delivery group are sufficient and does not perform auto scale-out.`` You can use this parameter to flexibly manage auto scaling and reduce costs.
|
|
1407
1459
|
*
|
|
1408
1460
|
* @example
|
|
1409
1461
|
* 3
|
|
1410
1462
|
*/
|
|
1411
1463
|
maxIdleAppInstanceAmount?: number;
|
|
1412
1464
|
/**
|
|
1465
|
+
* @remarks
|
|
1466
|
+
* The maximum number of resources that can be created for scale-out.
|
|
1467
|
+
*
|
|
1413
1468
|
* @example
|
|
1414
1469
|
* 8
|
|
1415
1470
|
*/
|
|
1416
1471
|
maxScalingAmount?: number;
|
|
1417
1472
|
/**
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* The total number of subscription resources.
|
|
1475
|
+
*
|
|
1418
1476
|
* @example
|
|
1419
1477
|
* 1
|
|
1420
1478
|
*/
|
|
1421
1479
|
nodeAmount?: number;
|
|
1422
1480
|
/**
|
|
1481
|
+
* @remarks
|
|
1482
|
+
* The maximum number of sessions that can be connected to a resource at the same time. If a resource connects to a large number of sessions at the same time, user experience can be compromised. The value range varies based on the resource specification. The following items describe the value ranges of different resource types:
|
|
1483
|
+
*
|
|
1484
|
+
* * appstreaming.general.4c8g: 1 to 2
|
|
1485
|
+
* * appstreaming.general.8c16g: 1 to 4
|
|
1486
|
+
* * appstreaming.vgpu.8c16g.4g: 1 to 4
|
|
1487
|
+
* * appstreaming.vgpu.8c31g.16g: 1 to 4
|
|
1488
|
+
* * appstreaming.vgpu.14c93g.12g: 1 to 6
|
|
1489
|
+
*
|
|
1423
1490
|
* @example
|
|
1424
1491
|
* 2
|
|
1425
1492
|
*/
|
|
1426
1493
|
nodeCapacity?: number;
|
|
1427
1494
|
/**
|
|
1495
|
+
* @remarks
|
|
1496
|
+
* The ID of the resource specification that you purchase.
|
|
1497
|
+
*
|
|
1428
1498
|
* @example
|
|
1429
1499
|
* appstreaming.vgpu.4c8g.2g
|
|
1430
1500
|
*/
|
|
1431
1501
|
nodeInstanceType?: string;
|
|
1432
1502
|
/**
|
|
1503
|
+
* @remarks
|
|
1504
|
+
* The ID of the resource group.
|
|
1505
|
+
*
|
|
1433
1506
|
* @example
|
|
1434
1507
|
* rg-g6922kced36hx****
|
|
1435
1508
|
*/
|
|
1436
1509
|
nodePoolId?: string;
|
|
1510
|
+
/**
|
|
1511
|
+
* @remarks
|
|
1512
|
+
* The name of the resource specification.
|
|
1513
|
+
*/
|
|
1437
1514
|
nodeTypeName?: string;
|
|
1438
1515
|
/**
|
|
1516
|
+
* @remarks
|
|
1517
|
+
* The number of subscription resources that are in use.
|
|
1518
|
+
*
|
|
1439
1519
|
* @example
|
|
1440
1520
|
* 1
|
|
1441
1521
|
*/
|
|
1442
1522
|
nodeUsed?: number;
|
|
1523
|
+
/**
|
|
1524
|
+
* @remarks
|
|
1525
|
+
* The intervals at which the scaling policy is executed.
|
|
1526
|
+
*/
|
|
1443
1527
|
recurrenceSchedules?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePoolRecurrenceSchedules[];
|
|
1444
1528
|
/**
|
|
1529
|
+
* @remarks
|
|
1530
|
+
* The duration for which no session is connected. Unit: minutes. If no session is connected in the resources after the specified duration elapses, auto scale-in is triggered. Default value: 5.
|
|
1531
|
+
*
|
|
1445
1532
|
* @example
|
|
1446
1533
|
* 5
|
|
1447
1534
|
*/
|
|
1448
1535
|
scalingDownAfterIdleMinutes?: number;
|
|
1449
1536
|
/**
|
|
1537
|
+
* @remarks
|
|
1538
|
+
* The total number of scalable resources.
|
|
1539
|
+
*
|
|
1450
1540
|
* @example
|
|
1451
1541
|
* 8
|
|
1452
1542
|
*/
|
|
1453
1543
|
scalingNodeAmount?: number;
|
|
1454
1544
|
/**
|
|
1545
|
+
* @remarks
|
|
1546
|
+
* The number of scalable resources that are in use.
|
|
1547
|
+
*
|
|
1455
1548
|
* @example
|
|
1456
1549
|
* 4
|
|
1457
1550
|
*/
|
|
1458
1551
|
scalingNodeUsed?: number;
|
|
1459
1552
|
/**
|
|
1553
|
+
* @remarks
|
|
1554
|
+
* The number of resources that are created each time resources are scaled out. Valid values: 1 to 10.
|
|
1555
|
+
*
|
|
1460
1556
|
* @example
|
|
1461
1557
|
* 2
|
|
1462
1558
|
*/
|
|
1463
1559
|
scalingStep?: number;
|
|
1464
1560
|
/**
|
|
1561
|
+
* @remarks
|
|
1562
|
+
* The upper limit of session usage. If the session usage exceeds the specified upper limit, auto scale-out is triggered. The session usage is calculated by using the following formula: `Session usage = Number of current sessions/(Total number of resources × Number of concurrent sessions) × 100%`.
|
|
1563
|
+
*
|
|
1465
1564
|
* @example
|
|
1466
1565
|
* 85
|
|
1467
1566
|
*/
|
|
1468
1567
|
scalingUsageThreshold?: string;
|
|
1469
1568
|
/**
|
|
1569
|
+
* @remarks
|
|
1570
|
+
* The expiration date of the scaling policy. Format: yyyy-MM-dd.
|
|
1571
|
+
*
|
|
1470
1572
|
* @example
|
|
1471
1573
|
* 2022-09-08
|
|
1472
1574
|
*/
|
|
1473
1575
|
strategyDisableDate?: string;
|
|
1474
1576
|
/**
|
|
1577
|
+
* @remarks
|
|
1578
|
+
* The effective date of the scaling policy. Format: yyyy-MM-dd.
|
|
1579
|
+
*
|
|
1475
1580
|
* @example
|
|
1476
1581
|
* 2022-08-01
|
|
1477
1582
|
*/
|
|
1478
1583
|
strategyEnableDate?: string;
|
|
1479
1584
|
/**
|
|
1585
|
+
* @remarks
|
|
1586
|
+
* The type of the scaling policy.
|
|
1587
|
+
*
|
|
1588
|
+
* > `NODE_SCALING_BY_USAGE` is returned for this parameter only if ChargeType is set to `PrePaid`. `NODE_SCALING_BY_SCHEDULE` is returned for this parameter only if ChargeType is set to `PostPaid`.
|
|
1589
|
+
*
|
|
1590
|
+
* Valid values:
|
|
1591
|
+
*
|
|
1592
|
+
* * NODE_FIXED: No scalable resources are used.
|
|
1593
|
+
* * NODE_SCALING_BY_SCHEDULE: Scheduled scaling is used.
|
|
1594
|
+
* * NODE_SCALING_BY_USAGE: Resources are scaled based on usage.
|
|
1595
|
+
*
|
|
1480
1596
|
* @example
|
|
1481
1597
|
* NODE_FIXED
|
|
1482
1598
|
*/
|
|
1483
1599
|
strategyType?: string;
|
|
1484
1600
|
/**
|
|
1601
|
+
* @remarks
|
|
1602
|
+
* Indicates whether resource prefetch is enabled.
|
|
1603
|
+
*
|
|
1485
1604
|
* @example
|
|
1486
1605
|
* false
|
|
1487
1606
|
*/
|
|
@@ -1499,16 +1618,25 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodeP
|
|
|
1499
1618
|
}
|
|
1500
1619
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsOtaInfo extends $dara.Model {
|
|
1501
1620
|
/**
|
|
1621
|
+
* @remarks
|
|
1622
|
+
* The new OTA version. A null value indicates that no new version is available.
|
|
1623
|
+
*
|
|
1502
1624
|
* @example
|
|
1503
1625
|
* 0.0.1-D-20220630.11****
|
|
1504
1626
|
*/
|
|
1505
1627
|
newOtaVersion?: string;
|
|
1506
1628
|
/**
|
|
1629
|
+
* @remarks
|
|
1630
|
+
* The current OTA version.
|
|
1631
|
+
*
|
|
1507
1632
|
* @example
|
|
1508
1633
|
* 0.0.1-D-20220615.11****
|
|
1509
1634
|
*/
|
|
1510
1635
|
otaVersion?: string;
|
|
1511
1636
|
/**
|
|
1637
|
+
* @remarks
|
|
1638
|
+
* The ID of the OTA update task.
|
|
1639
|
+
*
|
|
1512
1640
|
* @example
|
|
1513
1641
|
* ota-e49929gv8acz5****
|
|
1514
1642
|
*/
|
|
@@ -1528,16 +1656,25 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsResou
|
|
|
1528
1656
|
/**
|
|
1529
1657
|
* @remarks
|
|
1530
1658
|
* The tag key.
|
|
1659
|
+
*
|
|
1660
|
+
* @example
|
|
1661
|
+
* department
|
|
1531
1662
|
*/
|
|
1532
1663
|
key?: string;
|
|
1533
1664
|
/**
|
|
1534
1665
|
* @remarks
|
|
1535
|
-
* The tag type. Valid values: Custom
|
|
1666
|
+
* The tag type. Valid values: Custom System
|
|
1667
|
+
*
|
|
1668
|
+
* @example
|
|
1669
|
+
* Custom
|
|
1536
1670
|
*/
|
|
1537
1671
|
scope?: string;
|
|
1538
1672
|
/**
|
|
1539
1673
|
* @remarks
|
|
1540
1674
|
* The tag value.
|
|
1675
|
+
*
|
|
1676
|
+
* @example
|
|
1677
|
+
* design
|
|
1541
1678
|
*/
|
|
1542
1679
|
value?: string;
|
|
1543
1680
|
static names(): {
|
|
@@ -1553,60 +1690,119 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModelsResou
|
|
|
1553
1690
|
}
|
|
1554
1691
|
export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels extends $dara.Model {
|
|
1555
1692
|
/**
|
|
1693
|
+
* @remarks
|
|
1694
|
+
* The number of subscription resources. Minimum value: 1.
|
|
1695
|
+
*
|
|
1556
1696
|
* @example
|
|
1557
1697
|
* 1
|
|
1558
1698
|
*/
|
|
1559
1699
|
amount?: number;
|
|
1560
1700
|
/**
|
|
1701
|
+
* @remarks
|
|
1702
|
+
* The image ID of the app.
|
|
1703
|
+
*
|
|
1561
1704
|
* @example
|
|
1562
1705
|
* img-8z4nztpaqvay4****
|
|
1563
1706
|
*/
|
|
1564
1707
|
appCenterImageId?: string;
|
|
1565
1708
|
/**
|
|
1709
|
+
* @remarks
|
|
1710
|
+
* The ID of the delivery group.
|
|
1711
|
+
*
|
|
1566
1712
|
* @example
|
|
1567
1713
|
* aig-9ciijz60n4xsv****
|
|
1568
1714
|
*/
|
|
1569
1715
|
appInstanceGroupId?: string;
|
|
1716
|
+
/**
|
|
1717
|
+
* @remarks
|
|
1718
|
+
* The name of the delivery group.
|
|
1719
|
+
*/
|
|
1570
1720
|
appInstanceGroupName?: string;
|
|
1571
1721
|
/**
|
|
1722
|
+
* @remarks
|
|
1723
|
+
* The resource type of the delivery group.
|
|
1724
|
+
*
|
|
1572
1725
|
* @example
|
|
1573
1726
|
* __dynamic__
|
|
1574
1727
|
*/
|
|
1575
1728
|
appInstanceType?: string;
|
|
1576
1729
|
/**
|
|
1730
|
+
* @remarks
|
|
1731
|
+
* The policy ID.
|
|
1732
|
+
*
|
|
1577
1733
|
* @example
|
|
1578
1734
|
* pg-g3k5wa2ms2****
|
|
1579
1735
|
*/
|
|
1580
1736
|
appPolicyId?: string;
|
|
1737
|
+
/**
|
|
1738
|
+
* @example
|
|
1739
|
+
* false
|
|
1740
|
+
*/
|
|
1581
1741
|
appPolicyImageCheck?: boolean;
|
|
1742
|
+
/**
|
|
1743
|
+
* @example
|
|
1744
|
+
* CENTER
|
|
1745
|
+
*/
|
|
1582
1746
|
appPolicyVersion?: string;
|
|
1747
|
+
/**
|
|
1748
|
+
* @remarks
|
|
1749
|
+
* The apps.
|
|
1750
|
+
*/
|
|
1583
1751
|
apps?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsApps[];
|
|
1584
1752
|
/**
|
|
1753
|
+
* @remarks
|
|
1754
|
+
* The sales mode.
|
|
1755
|
+
*
|
|
1756
|
+
* Valid values:
|
|
1757
|
+
*
|
|
1758
|
+
* * AppInstance: by session
|
|
1759
|
+
* * Node: by resource
|
|
1760
|
+
*
|
|
1585
1761
|
* @example
|
|
1586
1762
|
* Node
|
|
1587
1763
|
*/
|
|
1588
1764
|
chargeResourceMode?: string;
|
|
1589
1765
|
/**
|
|
1766
|
+
* @remarks
|
|
1767
|
+
* The billing method.
|
|
1768
|
+
*
|
|
1769
|
+
* Valid values:
|
|
1770
|
+
*
|
|
1771
|
+
* * PostPaid: pay-as-you-go
|
|
1772
|
+
* * PrePaid: subscription
|
|
1773
|
+
*
|
|
1590
1774
|
* @example
|
|
1591
1775
|
* PrePaid
|
|
1592
1776
|
*/
|
|
1593
1777
|
chargeType?: string;
|
|
1594
1778
|
/**
|
|
1779
|
+
* @remarks
|
|
1780
|
+
* The time when the delivery group expires.
|
|
1781
|
+
*
|
|
1595
1782
|
* @example
|
|
1596
1783
|
* 2022-04-27T16:00:00.000+00:00
|
|
1597
1784
|
*/
|
|
1598
1785
|
expiredTime?: string;
|
|
1599
1786
|
/**
|
|
1787
|
+
* @remarks
|
|
1788
|
+
* The time when the delivery group was created.
|
|
1789
|
+
*
|
|
1600
1790
|
* @example
|
|
1601
1791
|
* 2022-04-26T15:06:16.000+00:00
|
|
1602
1792
|
*/
|
|
1603
1793
|
gmtCreate?: string;
|
|
1604
1794
|
/**
|
|
1795
|
+
* @remarks
|
|
1796
|
+
* The maximum number of instances. Minimum value: 1.
|
|
1797
|
+
*
|
|
1605
1798
|
* @example
|
|
1606
1799
|
* 10
|
|
1607
1800
|
*/
|
|
1608
1801
|
maxAmount?: number;
|
|
1609
1802
|
/**
|
|
1803
|
+
* @remarks
|
|
1804
|
+
* The minimum number of instances. Minimum value: 1.
|
|
1805
|
+
*
|
|
1610
1806
|
* @example
|
|
1611
1807
|
* 1
|
|
1612
1808
|
*/
|
|
@@ -1616,6 +1812,10 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1616
1812
|
* The resource groups.
|
|
1617
1813
|
*/
|
|
1618
1814
|
nodePool?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsNodePool[];
|
|
1815
|
+
/**
|
|
1816
|
+
* @example
|
|
1817
|
+
* cn-beijing+dir-172301****
|
|
1818
|
+
*/
|
|
1619
1819
|
officeSiteId?: string;
|
|
1620
1820
|
/**
|
|
1621
1821
|
* @remarks
|
|
@@ -1629,73 +1829,145 @@ export declare class ListAppInstanceGroupResponseBodyAppInstanceGroupModels exte
|
|
|
1629
1829
|
* Windows
|
|
1630
1830
|
*/
|
|
1631
1831
|
osType?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* @remarks
|
|
1834
|
+
* The information about the over-the-air (OTA) update task.
|
|
1835
|
+
*/
|
|
1632
1836
|
otaInfo?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsOtaInfo;
|
|
1633
1837
|
/**
|
|
1838
|
+
* @remarks
|
|
1839
|
+
* The product type.
|
|
1840
|
+
*
|
|
1841
|
+
* Valid value:
|
|
1842
|
+
*
|
|
1843
|
+
* * CloudApp: App Streaming
|
|
1844
|
+
*
|
|
1634
1845
|
* @example
|
|
1635
1846
|
* CloudApp
|
|
1636
1847
|
*/
|
|
1637
1848
|
productType?: string;
|
|
1638
1849
|
/**
|
|
1850
|
+
* @remarks
|
|
1851
|
+
* The ID of the region where the delivery group resides. For information about the supported regions, see [Limits](https://help.aliyun.com/document_detail/426036.html).
|
|
1852
|
+
*
|
|
1639
1853
|
* @example
|
|
1640
1854
|
* cn-hangzhou
|
|
1641
1855
|
*/
|
|
1642
1856
|
regionId?: string;
|
|
1643
1857
|
/**
|
|
1858
|
+
* @remarks
|
|
1859
|
+
* The percentage of reserved instances. The value indicates the percentage of unused sessions in the delivery group. Valid values: 0 to 99.
|
|
1860
|
+
*
|
|
1644
1861
|
* @example
|
|
1645
1862
|
* 20
|
|
1646
1863
|
*/
|
|
1647
1864
|
reserveAmountRatio?: string;
|
|
1648
1865
|
/**
|
|
1866
|
+
* @remarks
|
|
1867
|
+
* The maximum number of reserved instances. The value indicates the maximum number of unused sessions in the delivery group. Minimum value: 1.
|
|
1868
|
+
*
|
|
1649
1869
|
* @example
|
|
1650
1870
|
* 5
|
|
1651
1871
|
*/
|
|
1652
1872
|
reserveMaxAmount?: number;
|
|
1653
1873
|
/**
|
|
1874
|
+
* @remarks
|
|
1875
|
+
* The minimum number of reserved instances. The value indicates the minimum number of unused sessions in the delivery group. Minimum value: 1.
|
|
1876
|
+
*
|
|
1654
1877
|
* @example
|
|
1655
1878
|
* 1
|
|
1656
1879
|
*/
|
|
1657
1880
|
reserveMinAmount?: number;
|
|
1658
1881
|
/**
|
|
1882
|
+
* @remarks
|
|
1883
|
+
* The resource status.
|
|
1884
|
+
*
|
|
1885
|
+
* Valid values:
|
|
1886
|
+
*
|
|
1887
|
+
* * AVAILABLE
|
|
1888
|
+
* * RELEASED
|
|
1889
|
+
* * EXPIRED_IN_7_DAYS
|
|
1890
|
+
* * UNAVAILABLE
|
|
1891
|
+
* * UPGRADING
|
|
1892
|
+
* * CREATING
|
|
1893
|
+
*
|
|
1659
1894
|
* @example
|
|
1660
1895
|
* AVAILABLE
|
|
1661
1896
|
*/
|
|
1662
1897
|
resourceStatus?: string;
|
|
1663
1898
|
/**
|
|
1664
1899
|
* @remarks
|
|
1665
|
-
* The tags
|
|
1900
|
+
* The resource tags.
|
|
1666
1901
|
*/
|
|
1667
1902
|
resourceTags?: ListAppInstanceGroupResponseBodyAppInstanceGroupModelsResourceTags[];
|
|
1668
1903
|
/**
|
|
1904
|
+
* @remarks
|
|
1905
|
+
* The duration for which no session is connected. Unit: minutes. If no session is connected in the resources after the specified duration elapses, auto scale-in is triggered. Minimum value: 0.
|
|
1906
|
+
*
|
|
1669
1907
|
* @example
|
|
1670
1908
|
* 5
|
|
1671
1909
|
*/
|
|
1672
1910
|
scalingDownAfterIdleMinutes?: number;
|
|
1673
1911
|
/**
|
|
1912
|
+
* @remarks
|
|
1913
|
+
* The number of sessions that are created each time the delivery group is scaled out. Minimum value: 1.
|
|
1914
|
+
*
|
|
1674
1915
|
* @example
|
|
1675
1916
|
* 10
|
|
1676
1917
|
*/
|
|
1677
1918
|
scalingStep?: number;
|
|
1678
1919
|
/**
|
|
1920
|
+
* @remarks
|
|
1921
|
+
* The upper limit of session usage. If the session usage exceeds the specified upper limit, auto scale-out is triggered. The session usage rate is calculated by using the following formula: Session usage rate = Number of sessions in use/Total number of sessions × 100%. Valid values: 0 to 99.
|
|
1922
|
+
*
|
|
1679
1923
|
* @example
|
|
1680
1924
|
* 85
|
|
1681
1925
|
*/
|
|
1682
1926
|
scalingUsageThreshold?: string;
|
|
1683
1927
|
/**
|
|
1928
|
+
* @remarks
|
|
1929
|
+
* The duration for which sessions are retained after disconnection. Unit: minutes. After an end user disconnects from a session, the session is closed only after the specified duration elapses. If you want to permanently retain sessions, set this parameter to `-1`. Valid values:-1 and 3 to 300. Default value: `15`.
|
|
1930
|
+
*
|
|
1684
1931
|
* @example
|
|
1685
1932
|
* 15
|
|
1686
1933
|
*/
|
|
1687
1934
|
sessionTimeout?: string;
|
|
1688
1935
|
/**
|
|
1936
|
+
* @remarks
|
|
1937
|
+
* Indicates whether user permission verification is skipped.
|
|
1938
|
+
*
|
|
1939
|
+
* Valid values:
|
|
1940
|
+
*
|
|
1941
|
+
* * true
|
|
1942
|
+
* * false: This is the default value.
|
|
1943
|
+
*
|
|
1689
1944
|
* @example
|
|
1690
1945
|
* false
|
|
1691
1946
|
*/
|
|
1692
1947
|
skipUserAuthCheck?: boolean;
|
|
1693
1948
|
/**
|
|
1949
|
+
* @remarks
|
|
1950
|
+
* The specification ID that uniquely corresponds to the ID of the delivery group.
|
|
1951
|
+
*
|
|
1694
1952
|
* @example
|
|
1695
1953
|
* spec-8o18t8uc31qib0****
|
|
1696
1954
|
*/
|
|
1697
1955
|
specId?: string;
|
|
1698
1956
|
/**
|
|
1957
|
+
* @remarks
|
|
1958
|
+
* The status of the delivery group.
|
|
1959
|
+
*
|
|
1960
|
+
* Valid values:
|
|
1961
|
+
*
|
|
1962
|
+
* * PUBLISHED: The delivery group is published.
|
|
1963
|
+
* * FAILED: The delivery group failed to be published.
|
|
1964
|
+
* * MAINTAIN_FAILED: The delivery group failed to be updated.
|
|
1965
|
+
* * EXPIRED: The delivery group is expired.
|
|
1966
|
+
* * MAINTAINING: The delivery group is being updated.
|
|
1967
|
+
* * CEASED: The delivery group has overdue payments.
|
|
1968
|
+
* * EXPIRED_RECYCLING: The delivery group is expired and being recycled.
|
|
1969
|
+
* * DEPLOYING: The delivery group is being published.
|
|
1970
|
+
*
|
|
1699
1971
|
* @example
|
|
1700
1972
|
* PUBLISHED
|
|
1701
1973
|
*/
|
|
@@ -1987,11 +2259,26 @@ export declare class ListNodeInstanceTypeResponseBodyNodeInstanceTypeModels exte
|
|
|
1987
2259
|
}
|
|
1988
2260
|
export declare class ListNodesResponseBodyNodeModels extends $dara.Model {
|
|
1989
2261
|
/**
|
|
2262
|
+
* @remarks
|
|
2263
|
+
* The billing method of the resource node.
|
|
2264
|
+
*
|
|
2265
|
+
* > This parameter is returned only if the ChargeResourceMode parameter of the delivery group to which the resource node belongs is set to Node.
|
|
2266
|
+
*
|
|
2267
|
+
* Valid values:
|
|
2268
|
+
*
|
|
2269
|
+
* * PostPaid: pay-as-you-go
|
|
2270
|
+
* * Prepaid: subscription
|
|
2271
|
+
*
|
|
1990
2272
|
* @example
|
|
1991
2273
|
* PostPaid
|
|
1992
2274
|
*/
|
|
1993
2275
|
chargeType?: string;
|
|
1994
2276
|
/**
|
|
2277
|
+
* @remarks
|
|
2278
|
+
* The ID of the resource node.
|
|
2279
|
+
*
|
|
2280
|
+
* > This parameter is returned only if the ChargeResourceMode parameter of the delivery group to which the resource node belongs is set to Node.
|
|
2281
|
+
*
|
|
1995
2282
|
* @example
|
|
1996
2283
|
* i-bp13********
|
|
1997
2284
|
*/
|
|
@@ -2062,6 +2349,54 @@ export declare class ListOtaTaskResponseBodyTaskList extends $dara.Model {
|
|
|
2062
2349
|
[key: string]: any;
|
|
2063
2350
|
});
|
|
2064
2351
|
}
|
|
2352
|
+
export declare class ListPersistentAppInstancesResponseBodyPersistentAppInstanceModels extends $dara.Model {
|
|
2353
|
+
/**
|
|
2354
|
+
* @example
|
|
2355
|
+
* aig-0bxls9m9arax6****
|
|
2356
|
+
*/
|
|
2357
|
+
appInstanceGroupId?: string;
|
|
2358
|
+
/**
|
|
2359
|
+
* @example
|
|
2360
|
+
* ai-azn3kmwruh1vl****
|
|
2361
|
+
*/
|
|
2362
|
+
appInstanceId?: string;
|
|
2363
|
+
/**
|
|
2364
|
+
* @example
|
|
2365
|
+
* p-0cc7s3mw2fg4j****
|
|
2366
|
+
*/
|
|
2367
|
+
appInstancePersistentId?: string;
|
|
2368
|
+
/**
|
|
2369
|
+
* @example
|
|
2370
|
+
* test-persistent-name
|
|
2371
|
+
*/
|
|
2372
|
+
appInstancePersistentName?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* @example
|
|
2375
|
+
* RUNNING
|
|
2376
|
+
*/
|
|
2377
|
+
appInstancePersistentStatus?: string;
|
|
2378
|
+
/**
|
|
2379
|
+
* @example
|
|
2380
|
+
* RUNNING
|
|
2381
|
+
*/
|
|
2382
|
+
appInstanceStatus?: string;
|
|
2383
|
+
authorizedUsers?: string[];
|
|
2384
|
+
/**
|
|
2385
|
+
* @example
|
|
2386
|
+
* 2025-03-13T03:22:18.000+00:00
|
|
2387
|
+
*/
|
|
2388
|
+
gmtCreate?: string;
|
|
2389
|
+
static names(): {
|
|
2390
|
+
[key: string]: string;
|
|
2391
|
+
};
|
|
2392
|
+
static types(): {
|
|
2393
|
+
[key: string]: any;
|
|
2394
|
+
};
|
|
2395
|
+
validate(): void;
|
|
2396
|
+
constructor(map?: {
|
|
2397
|
+
[key: string]: any;
|
|
2398
|
+
});
|
|
2399
|
+
}
|
|
2065
2400
|
export declare class ListRegionsResponseBodyRegionModels extends $dara.Model {
|
|
2066
2401
|
/**
|
|
2067
2402
|
* @remarks
|
|
@@ -2564,6 +2899,8 @@ export declare class ModifyAppPolicyRequestVideoPolicy extends $dara.Model {
|
|
|
2564
2899
|
export declare class ModifyNodePoolAmountRequestNodePool extends $dara.Model {
|
|
2565
2900
|
/**
|
|
2566
2901
|
* @remarks
|
|
2902
|
+
* The total number of subscription nodes after the change.
|
|
2903
|
+
*
|
|
2567
2904
|
* This parameter is required.
|
|
2568
2905
|
*
|
|
2569
2906
|
* @example
|
|
@@ -2571,10 +2908,21 @@ export declare class ModifyNodePoolAmountRequestNodePool extends $dara.Model {
|
|
|
2571
2908
|
*/
|
|
2572
2909
|
nodeAmount?: number;
|
|
2573
2910
|
/**
|
|
2911
|
+
* @remarks
|
|
2912
|
+
* The change mode of subscription nodes.
|
|
2913
|
+
*
|
|
2914
|
+
* Valid value:
|
|
2915
|
+
*
|
|
2916
|
+
* * EXPAND_FROM_POST_PAID_EXPLICIT: changes from specified pay-as-you-go nodes
|
|
2917
|
+
*
|
|
2574
2918
|
* @example
|
|
2575
2919
|
* EXPAND_FROM_POST_PAID_EXPLICIT
|
|
2576
2920
|
*/
|
|
2577
2921
|
prePaidNodeAmountModifyMode?: string;
|
|
2922
|
+
/**
|
|
2923
|
+
* @remarks
|
|
2924
|
+
* The nodes for which you want to change the billing method.
|
|
2925
|
+
*/
|
|
2578
2926
|
prePaidNodeAmountModifyNodeIds?: string[];
|
|
2579
2927
|
static names(): {
|
|
2580
2928
|
[key: string]: string;
|
|
@@ -2589,6 +2937,9 @@ export declare class ModifyNodePoolAmountRequestNodePool extends $dara.Model {
|
|
|
2589
2937
|
}
|
|
2590
2938
|
export declare class ModifyNodePoolAmountResponseBodyData extends $dara.Model {
|
|
2591
2939
|
/**
|
|
2940
|
+
* @remarks
|
|
2941
|
+
* The order ID.
|
|
2942
|
+
*
|
|
2592
2943
|
* @example
|
|
2593
2944
|
* 23429322113****
|
|
2594
2945
|
*/
|
|
@@ -3237,6 +3588,7 @@ export declare class AuthorizeInstanceGroupRequest extends $dara.Model {
|
|
|
3237
3588
|
* aig-9ciijz60n4xsv****
|
|
3238
3589
|
*/
|
|
3239
3590
|
appInstanceGroupId?: string;
|
|
3591
|
+
appInstancePersistentId?: string;
|
|
3240
3592
|
authorizeUserIds?: string[];
|
|
3241
3593
|
/**
|
|
3242
3594
|
* @remarks
|
|
@@ -3268,6 +3620,7 @@ export declare class AuthorizeInstanceGroupShrinkRequest extends $dara.Model {
|
|
|
3268
3620
|
* aig-9ciijz60n4xsv****
|
|
3269
3621
|
*/
|
|
3270
3622
|
appInstanceGroupId?: string;
|
|
3623
|
+
appInstancePersistentId?: string;
|
|
3271
3624
|
authorizeUserIds?: string[];
|
|
3272
3625
|
/**
|
|
3273
3626
|
* @remarks
|
|
@@ -3533,6 +3886,14 @@ export declare class CreateAppInstanceGroupRequest extends $dara.Model {
|
|
|
3533
3886
|
appInstanceGroupName?: string;
|
|
3534
3887
|
appPackageType?: string;
|
|
3535
3888
|
appPolicyId?: string;
|
|
3889
|
+
/**
|
|
3890
|
+
* @example
|
|
3891
|
+
* App
|
|
3892
|
+
*
|
|
3893
|
+
* **if can be null:**
|
|
3894
|
+
* true
|
|
3895
|
+
*/
|
|
3896
|
+
authMode?: string;
|
|
3536
3897
|
/**
|
|
3537
3898
|
* @example
|
|
3538
3899
|
* false
|
|
@@ -3640,6 +4001,14 @@ export declare class CreateAppInstanceGroupShrinkRequest extends $dara.Model {
|
|
|
3640
4001
|
appInstanceGroupName?: string;
|
|
3641
4002
|
appPackageType?: string;
|
|
3642
4003
|
appPolicyId?: string;
|
|
4004
|
+
/**
|
|
4005
|
+
* @example
|
|
4006
|
+
* App
|
|
4007
|
+
*
|
|
4008
|
+
* **if can be null:**
|
|
4009
|
+
* true
|
|
4010
|
+
*/
|
|
4011
|
+
authMode?: string;
|
|
3643
4012
|
/**
|
|
3644
4013
|
* @example
|
|
3645
4014
|
* false
|
|
@@ -5088,15 +5457,25 @@ export declare class ListAccessPagesResponse extends $dara.Model {
|
|
|
5088
5457
|
}
|
|
5089
5458
|
export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
5090
5459
|
/**
|
|
5460
|
+
* @remarks
|
|
5461
|
+
* The image ID of the app. You can obtain the ID from the Images page in the App Streaming console.
|
|
5462
|
+
*
|
|
5091
5463
|
* @example
|
|
5092
5464
|
* img-8z4nztpaqvay4****
|
|
5093
5465
|
*/
|
|
5094
5466
|
appCenterImageId?: string;
|
|
5095
5467
|
/**
|
|
5468
|
+
* @remarks
|
|
5469
|
+
* The ID of the delivery group.
|
|
5470
|
+
*
|
|
5096
5471
|
* @example
|
|
5097
5472
|
* aig-9ciijz60n4xsv****
|
|
5098
5473
|
*/
|
|
5099
5474
|
appInstanceGroupId?: string;
|
|
5475
|
+
/**
|
|
5476
|
+
* @remarks
|
|
5477
|
+
* The name of the delivery groups to query. Fuzzy match is used for queries. For example, if you set this parameter to `Office App`, all delivery groups whose names contain `Office App` are queried, such as `My Office Apps` and `Office App A`.
|
|
5478
|
+
*/
|
|
5100
5479
|
appInstanceGroupName?: string;
|
|
5101
5480
|
/**
|
|
5102
5481
|
* @remarks
|
|
@@ -5119,8 +5498,15 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
5119
5498
|
* appstreaming.vgpu.4c8g.2g
|
|
5120
5499
|
*/
|
|
5121
5500
|
nodeInstanceType?: string;
|
|
5501
|
+
/**
|
|
5502
|
+
* @example
|
|
5503
|
+
* cn-hongkong+dir-643067****
|
|
5504
|
+
*/
|
|
5122
5505
|
officeSiteId?: string;
|
|
5123
5506
|
/**
|
|
5507
|
+
* @remarks
|
|
5508
|
+
* The page number.
|
|
5509
|
+
*
|
|
5124
5510
|
* @example
|
|
5125
5511
|
* 1
|
|
5126
5512
|
*/
|
|
@@ -5135,6 +5521,12 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
5135
5521
|
pageSize?: number;
|
|
5136
5522
|
/**
|
|
5137
5523
|
* @remarks
|
|
5524
|
+
* The product type.
|
|
5525
|
+
*
|
|
5526
|
+
* Valid value:
|
|
5527
|
+
*
|
|
5528
|
+
* * CloudApp: App Streaming
|
|
5529
|
+
*
|
|
5138
5530
|
* This parameter is required.
|
|
5139
5531
|
*
|
|
5140
5532
|
* @example
|
|
@@ -5143,7 +5535,7 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
5143
5535
|
productType?: string;
|
|
5144
5536
|
/**
|
|
5145
5537
|
* @remarks
|
|
5146
|
-
* The region ID
|
|
5538
|
+
* The region ID
|
|
5147
5539
|
*
|
|
5148
5540
|
* @example
|
|
5149
5541
|
* cn-hangzhou
|
|
@@ -5151,6 +5543,10 @@ export declare class ListAppInstanceGroupRequest extends $dara.Model {
|
|
|
5151
5543
|
* @deprecated
|
|
5152
5544
|
*/
|
|
5153
5545
|
regionId?: string;
|
|
5546
|
+
/**
|
|
5547
|
+
* @remarks
|
|
5548
|
+
* The status of the delivery groups.
|
|
5549
|
+
*/
|
|
5154
5550
|
status?: string[];
|
|
5155
5551
|
static names(): {
|
|
5156
5552
|
[key: string]: string;
|
|
@@ -5170,21 +5566,33 @@ export declare class ListAppInstanceGroupResponseBody extends $dara.Model {
|
|
|
5170
5566
|
*/
|
|
5171
5567
|
appInstanceGroupModels?: ListAppInstanceGroupResponseBodyAppInstanceGroupModels[];
|
|
5172
5568
|
/**
|
|
5569
|
+
* @remarks
|
|
5570
|
+
* The page number.
|
|
5571
|
+
*
|
|
5173
5572
|
* @example
|
|
5174
5573
|
* 1
|
|
5175
5574
|
*/
|
|
5176
5575
|
pageNumber?: number;
|
|
5177
5576
|
/**
|
|
5577
|
+
* @remarks
|
|
5578
|
+
* The number of entries per page.
|
|
5579
|
+
*
|
|
5178
5580
|
* @example
|
|
5179
5581
|
* 10
|
|
5180
5582
|
*/
|
|
5181
5583
|
pageSize?: number;
|
|
5182
5584
|
/**
|
|
5585
|
+
* @remarks
|
|
5586
|
+
* The request ID.
|
|
5587
|
+
*
|
|
5183
5588
|
* @example
|
|
5184
5589
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5185
5590
|
*/
|
|
5186
5591
|
requestId?: string;
|
|
5187
5592
|
/**
|
|
5593
|
+
* @remarks
|
|
5594
|
+
* The total number of entries returned.
|
|
5595
|
+
*
|
|
5188
5596
|
* @example
|
|
5189
5597
|
* 15
|
|
5190
5598
|
*/
|
|
@@ -5608,6 +6016,8 @@ export declare class ListNodeInstanceTypeResponse extends $dara.Model {
|
|
|
5608
6016
|
export declare class ListNodesRequest extends $dara.Model {
|
|
5609
6017
|
/**
|
|
5610
6018
|
* @remarks
|
|
6019
|
+
* The ID of the delivery group.
|
|
6020
|
+
*
|
|
5611
6021
|
* This parameter is required.
|
|
5612
6022
|
*
|
|
5613
6023
|
* @example
|
|
@@ -5616,6 +6026,8 @@ export declare class ListNodesRequest extends $dara.Model {
|
|
|
5616
6026
|
appInstanceGroupId?: string;
|
|
5617
6027
|
/**
|
|
5618
6028
|
* @remarks
|
|
6029
|
+
* The page number. Pages start from page 1.
|
|
6030
|
+
*
|
|
5619
6031
|
* This parameter is required.
|
|
5620
6032
|
*
|
|
5621
6033
|
* @example
|
|
@@ -5624,6 +6036,8 @@ export declare class ListNodesRequest extends $dara.Model {
|
|
|
5624
6036
|
pageNumber?: number;
|
|
5625
6037
|
/**
|
|
5626
6038
|
* @remarks
|
|
6039
|
+
* The number of entries per page. Valid values: 1 to 200.
|
|
6040
|
+
*
|
|
5627
6041
|
* This parameter is required.
|
|
5628
6042
|
*
|
|
5629
6043
|
* @example
|
|
@@ -5632,6 +6046,12 @@ export declare class ListNodesRequest extends $dara.Model {
|
|
|
5632
6046
|
pageSize?: number;
|
|
5633
6047
|
/**
|
|
5634
6048
|
* @remarks
|
|
6049
|
+
* The product type.
|
|
6050
|
+
*
|
|
6051
|
+
* Valid value:
|
|
6052
|
+
*
|
|
6053
|
+
* * CloudApp: App Streaming
|
|
6054
|
+
*
|
|
5635
6055
|
* This parameter is required.
|
|
5636
6056
|
*
|
|
5637
6057
|
* @example
|
|
@@ -5651,22 +6071,38 @@ export declare class ListNodesRequest extends $dara.Model {
|
|
|
5651
6071
|
}
|
|
5652
6072
|
export declare class ListNodesResponseBody extends $dara.Model {
|
|
5653
6073
|
/**
|
|
6074
|
+
* @remarks
|
|
6075
|
+
* The total number of entries returned.
|
|
6076
|
+
*
|
|
5654
6077
|
* @example
|
|
5655
6078
|
* 100
|
|
5656
6079
|
*/
|
|
5657
6080
|
count?: number;
|
|
6081
|
+
/**
|
|
6082
|
+
* @remarks
|
|
6083
|
+
* The resource nodes.
|
|
6084
|
+
*/
|
|
5658
6085
|
nodeModels?: ListNodesResponseBodyNodeModels[];
|
|
5659
6086
|
/**
|
|
6087
|
+
* @remarks
|
|
6088
|
+
* The number of entries per page.
|
|
6089
|
+
*
|
|
5660
6090
|
* @example
|
|
5661
6091
|
* 10
|
|
5662
6092
|
*/
|
|
5663
6093
|
perPageSize?: number;
|
|
5664
6094
|
/**
|
|
6095
|
+
* @remarks
|
|
6096
|
+
* The request ID.
|
|
6097
|
+
*
|
|
5665
6098
|
* @example
|
|
5666
6099
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
5667
6100
|
*/
|
|
5668
6101
|
requestId?: string;
|
|
5669
6102
|
/**
|
|
6103
|
+
* @remarks
|
|
6104
|
+
* The page number.
|
|
6105
|
+
*
|
|
5670
6106
|
* @example
|
|
5671
6107
|
* 1
|
|
5672
6108
|
*/
|
|
@@ -5821,6 +6257,99 @@ export declare class ListOtaTaskResponse extends $dara.Model {
|
|
|
5821
6257
|
[key: string]: any;
|
|
5822
6258
|
});
|
|
5823
6259
|
}
|
|
6260
|
+
export declare class ListPersistentAppInstancesRequest extends $dara.Model {
|
|
6261
|
+
/**
|
|
6262
|
+
* @remarks
|
|
6263
|
+
* This parameter is required.
|
|
6264
|
+
*
|
|
6265
|
+
* @example
|
|
6266
|
+
* aig-0bxls9m9arax6****
|
|
6267
|
+
*/
|
|
6268
|
+
appInstanceGroupId?: string;
|
|
6269
|
+
/**
|
|
6270
|
+
* **if can be null:**
|
|
6271
|
+
* false
|
|
6272
|
+
*/
|
|
6273
|
+
appInstancePersistentIds?: string[];
|
|
6274
|
+
/**
|
|
6275
|
+
* @example
|
|
6276
|
+
* 1
|
|
6277
|
+
*/
|
|
6278
|
+
pageNumber?: number;
|
|
6279
|
+
/**
|
|
6280
|
+
* @example
|
|
6281
|
+
* 20
|
|
6282
|
+
*/
|
|
6283
|
+
pageSize?: number;
|
|
6284
|
+
/**
|
|
6285
|
+
* @remarks
|
|
6286
|
+
* This parameter is required.
|
|
6287
|
+
*
|
|
6288
|
+
* @example
|
|
6289
|
+
* CloudApp
|
|
6290
|
+
*/
|
|
6291
|
+
productType?: string;
|
|
6292
|
+
static names(): {
|
|
6293
|
+
[key: string]: string;
|
|
6294
|
+
};
|
|
6295
|
+
static types(): {
|
|
6296
|
+
[key: string]: any;
|
|
6297
|
+
};
|
|
6298
|
+
validate(): void;
|
|
6299
|
+
constructor(map?: {
|
|
6300
|
+
[key: string]: any;
|
|
6301
|
+
});
|
|
6302
|
+
}
|
|
6303
|
+
export declare class ListPersistentAppInstancesResponseBody extends $dara.Model {
|
|
6304
|
+
/**
|
|
6305
|
+
* @example
|
|
6306
|
+
* 1
|
|
6307
|
+
*/
|
|
6308
|
+
pageNumber?: number;
|
|
6309
|
+
/**
|
|
6310
|
+
* @example
|
|
6311
|
+
* 20
|
|
6312
|
+
*/
|
|
6313
|
+
pageSize?: number;
|
|
6314
|
+
persistentAppInstanceModels?: ListPersistentAppInstancesResponseBodyPersistentAppInstanceModels[];
|
|
6315
|
+
/**
|
|
6316
|
+
* @example
|
|
6317
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
6318
|
+
*/
|
|
6319
|
+
requestId?: string;
|
|
6320
|
+
/**
|
|
6321
|
+
* @example
|
|
6322
|
+
* 15
|
|
6323
|
+
*/
|
|
6324
|
+
totalCount?: number;
|
|
6325
|
+
static names(): {
|
|
6326
|
+
[key: string]: string;
|
|
6327
|
+
};
|
|
6328
|
+
static types(): {
|
|
6329
|
+
[key: string]: any;
|
|
6330
|
+
};
|
|
6331
|
+
validate(): void;
|
|
6332
|
+
constructor(map?: {
|
|
6333
|
+
[key: string]: any;
|
|
6334
|
+
});
|
|
6335
|
+
}
|
|
6336
|
+
export declare class ListPersistentAppInstancesResponse extends $dara.Model {
|
|
6337
|
+
headers?: {
|
|
6338
|
+
[key: string]: string;
|
|
6339
|
+
};
|
|
6340
|
+
statusCode?: number;
|
|
6341
|
+
body?: ListPersistentAppInstancesResponseBody;
|
|
6342
|
+
static names(): {
|
|
6343
|
+
[key: string]: string;
|
|
6344
|
+
};
|
|
6345
|
+
static types(): {
|
|
6346
|
+
[key: string]: any;
|
|
6347
|
+
};
|
|
6348
|
+
validate(): void;
|
|
6349
|
+
constructor(map?: {
|
|
6350
|
+
[key: string]: any;
|
|
6351
|
+
});
|
|
6352
|
+
}
|
|
5824
6353
|
export declare class ListRegionsRequest extends $dara.Model {
|
|
5825
6354
|
/**
|
|
5826
6355
|
* @remarks
|
|
@@ -6605,6 +7134,8 @@ export declare class ModifyAppPolicyResponse extends $dara.Model {
|
|
|
6605
7134
|
export declare class ModifyNodePoolAmountRequest extends $dara.Model {
|
|
6606
7135
|
/**
|
|
6607
7136
|
* @remarks
|
|
7137
|
+
* The ID of the delivery group.
|
|
7138
|
+
*
|
|
6608
7139
|
* This parameter is required.
|
|
6609
7140
|
*
|
|
6610
7141
|
* @example
|
|
@@ -6613,11 +7144,19 @@ export declare class ModifyNodePoolAmountRequest extends $dara.Model {
|
|
|
6613
7144
|
appInstanceGroupId?: string;
|
|
6614
7145
|
/**
|
|
6615
7146
|
* @remarks
|
|
7147
|
+
* The parameters related to the configuration change of the node pool.
|
|
7148
|
+
*
|
|
6616
7149
|
* This parameter is required.
|
|
6617
7150
|
*/
|
|
6618
7151
|
nodePool?: ModifyNodePoolAmountRequestNodePool;
|
|
6619
7152
|
/**
|
|
6620
7153
|
* @remarks
|
|
7154
|
+
* The product type.
|
|
7155
|
+
*
|
|
7156
|
+
* Valid value:
|
|
7157
|
+
*
|
|
7158
|
+
* * CloudApp: App Streaming
|
|
7159
|
+
*
|
|
6621
7160
|
* This parameter is required.
|
|
6622
7161
|
*
|
|
6623
7162
|
* @example
|
|
@@ -6638,6 +7177,8 @@ export declare class ModifyNodePoolAmountRequest extends $dara.Model {
|
|
|
6638
7177
|
export declare class ModifyNodePoolAmountShrinkRequest extends $dara.Model {
|
|
6639
7178
|
/**
|
|
6640
7179
|
* @remarks
|
|
7180
|
+
* The ID of the delivery group.
|
|
7181
|
+
*
|
|
6641
7182
|
* This parameter is required.
|
|
6642
7183
|
*
|
|
6643
7184
|
* @example
|
|
@@ -6646,11 +7187,19 @@ export declare class ModifyNodePoolAmountShrinkRequest extends $dara.Model {
|
|
|
6646
7187
|
appInstanceGroupId?: string;
|
|
6647
7188
|
/**
|
|
6648
7189
|
* @remarks
|
|
7190
|
+
* The parameters related to the configuration change of the node pool.
|
|
7191
|
+
*
|
|
6649
7192
|
* This parameter is required.
|
|
6650
7193
|
*/
|
|
6651
7194
|
nodePoolShrink?: string;
|
|
6652
7195
|
/**
|
|
6653
7196
|
* @remarks
|
|
7197
|
+
* The product type.
|
|
7198
|
+
*
|
|
7199
|
+
* Valid value:
|
|
7200
|
+
*
|
|
7201
|
+
* * CloudApp: App Streaming
|
|
7202
|
+
*
|
|
6654
7203
|
* This parameter is required.
|
|
6655
7204
|
*
|
|
6656
7205
|
* @example
|
|
@@ -6669,8 +7218,15 @@ export declare class ModifyNodePoolAmountShrinkRequest extends $dara.Model {
|
|
|
6669
7218
|
});
|
|
6670
7219
|
}
|
|
6671
7220
|
export declare class ModifyNodePoolAmountResponseBody extends $dara.Model {
|
|
7221
|
+
/**
|
|
7222
|
+
* @remarks
|
|
7223
|
+
* The returned data.
|
|
7224
|
+
*/
|
|
6672
7225
|
data?: ModifyNodePoolAmountResponseBodyData;
|
|
6673
7226
|
/**
|
|
7227
|
+
* @remarks
|
|
7228
|
+
* The request ID.
|
|
7229
|
+
*
|
|
6674
7230
|
* @example
|
|
6675
7231
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
6676
7232
|
*/
|
|
@@ -7859,7 +8415,7 @@ export default class Client extends OpenApi {
|
|
|
7859
8415
|
*/
|
|
7860
8416
|
listNodeInstanceType(request: ListNodeInstanceTypeRequest): Promise<ListNodeInstanceTypeResponse>;
|
|
7861
8417
|
/**
|
|
7862
|
-
*
|
|
8418
|
+
* Queries resource nodes.
|
|
7863
8419
|
*
|
|
7864
8420
|
* @param request - ListNodesRequest
|
|
7865
8421
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -7867,7 +8423,7 @@ export default class Client extends OpenApi {
|
|
|
7867
8423
|
*/
|
|
7868
8424
|
listNodesWithOptions(request: ListNodesRequest, runtime: $dara.RuntimeOptions): Promise<ListNodesResponse>;
|
|
7869
8425
|
/**
|
|
7870
|
-
*
|
|
8426
|
+
* Queries resource nodes.
|
|
7871
8427
|
*
|
|
7872
8428
|
* @param request - ListNodesRequest
|
|
7873
8429
|
* @returns ListNodesResponse
|
|
@@ -7888,6 +8444,21 @@ export default class Client extends OpenApi {
|
|
|
7888
8444
|
* @returns ListOtaTaskResponse
|
|
7889
8445
|
*/
|
|
7890
8446
|
listOtaTask(request: ListOtaTaskRequest): Promise<ListOtaTaskResponse>;
|
|
8447
|
+
/**
|
|
8448
|
+
* 查询交付组内持久会话列表
|
|
8449
|
+
*
|
|
8450
|
+
* @param request - ListPersistentAppInstancesRequest
|
|
8451
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
8452
|
+
* @returns ListPersistentAppInstancesResponse
|
|
8453
|
+
*/
|
|
8454
|
+
listPersistentAppInstancesWithOptions(request: ListPersistentAppInstancesRequest, runtime: $dara.RuntimeOptions): Promise<ListPersistentAppInstancesResponse>;
|
|
8455
|
+
/**
|
|
8456
|
+
* 查询交付组内持久会话列表
|
|
8457
|
+
*
|
|
8458
|
+
* @param request - ListPersistentAppInstancesRequest
|
|
8459
|
+
* @returns ListPersistentAppInstancesResponse
|
|
8460
|
+
*/
|
|
8461
|
+
listPersistentAppInstances(request: ListPersistentAppInstancesRequest): Promise<ListPersistentAppInstancesResponse>;
|
|
7891
8462
|
/**
|
|
7892
8463
|
* Queries the regions that are supported by App Streaming.
|
|
7893
8464
|
*
|
|
@@ -8004,7 +8575,7 @@ export default class Client extends OpenApi {
|
|
|
8004
8575
|
*/
|
|
8005
8576
|
modifyAppPolicy(request: ModifyAppPolicyRequest): Promise<ModifyAppPolicyResponse>;
|
|
8006
8577
|
/**
|
|
8007
|
-
*
|
|
8578
|
+
* Changes the number of nodes in a subscription delivery group.
|
|
8008
8579
|
*
|
|
8009
8580
|
* @param tmpReq - ModifyNodePoolAmountRequest
|
|
8010
8581
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -8012,7 +8583,7 @@ export default class Client extends OpenApi {
|
|
|
8012
8583
|
*/
|
|
8013
8584
|
modifyNodePoolAmountWithOptions(tmpReq: ModifyNodePoolAmountRequest, runtime: $dara.RuntimeOptions): Promise<ModifyNodePoolAmountResponse>;
|
|
8014
8585
|
/**
|
|
8015
|
-
*
|
|
8586
|
+
* Changes the number of nodes in a subscription delivery group.
|
|
8016
8587
|
*
|
|
8017
8588
|
* @param request - ModifyNodePoolAmountRequest
|
|
8018
8589
|
* @returns ModifyNodePoolAmountResponse
|