@alicloud/ecd20200930 4.5.0 → 4.5.2
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 +104 -60
- package/dist/client.js +81 -28
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +149 -60
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -5786,6 +5786,62 @@ export class DescribeDesktopsRequestTag extends $dara.Model {
|
|
|
5786
5786
|
}
|
|
5787
5787
|
}
|
|
5788
5788
|
|
|
5789
|
+
export class DescribeDesktopsResponseBodyDesktopsDesktopDurationList extends $dara.Model {
|
|
5790
|
+
orderInstanceId?: string;
|
|
5791
|
+
packageCreationTime?: string;
|
|
5792
|
+
packageExpiredTime?: string;
|
|
5793
|
+
packageId?: string;
|
|
5794
|
+
packageStatus?: string;
|
|
5795
|
+
packageType?: string;
|
|
5796
|
+
packageUsedUpStrategy?: string;
|
|
5797
|
+
periodEndTime?: string;
|
|
5798
|
+
periodStartTime?: string;
|
|
5799
|
+
postPaidLimitFee?: number;
|
|
5800
|
+
totalDuration?: number;
|
|
5801
|
+
usedDuration?: number;
|
|
5802
|
+
static names(): { [key: string]: string } {
|
|
5803
|
+
return {
|
|
5804
|
+
orderInstanceId: 'OrderInstanceId',
|
|
5805
|
+
packageCreationTime: 'PackageCreationTime',
|
|
5806
|
+
packageExpiredTime: 'PackageExpiredTime',
|
|
5807
|
+
packageId: 'PackageId',
|
|
5808
|
+
packageStatus: 'PackageStatus',
|
|
5809
|
+
packageType: 'PackageType',
|
|
5810
|
+
packageUsedUpStrategy: 'PackageUsedUpStrategy',
|
|
5811
|
+
periodEndTime: 'PeriodEndTime',
|
|
5812
|
+
periodStartTime: 'PeriodStartTime',
|
|
5813
|
+
postPaidLimitFee: 'PostPaidLimitFee',
|
|
5814
|
+
totalDuration: 'TotalDuration',
|
|
5815
|
+
usedDuration: 'UsedDuration',
|
|
5816
|
+
};
|
|
5817
|
+
}
|
|
5818
|
+
|
|
5819
|
+
static types(): { [key: string]: any } {
|
|
5820
|
+
return {
|
|
5821
|
+
orderInstanceId: 'string',
|
|
5822
|
+
packageCreationTime: 'string',
|
|
5823
|
+
packageExpiredTime: 'string',
|
|
5824
|
+
packageId: 'string',
|
|
5825
|
+
packageStatus: 'string',
|
|
5826
|
+
packageType: 'string',
|
|
5827
|
+
packageUsedUpStrategy: 'string',
|
|
5828
|
+
periodEndTime: 'string',
|
|
5829
|
+
periodStartTime: 'string',
|
|
5830
|
+
postPaidLimitFee: 'number',
|
|
5831
|
+
totalDuration: 'number',
|
|
5832
|
+
usedDuration: 'number',
|
|
5833
|
+
};
|
|
5834
|
+
}
|
|
5835
|
+
|
|
5836
|
+
validate() {
|
|
5837
|
+
super.validate();
|
|
5838
|
+
}
|
|
5839
|
+
|
|
5840
|
+
constructor(map?: { [key: string]: any }) {
|
|
5841
|
+
super(map);
|
|
5842
|
+
}
|
|
5843
|
+
}
|
|
5844
|
+
|
|
5789
5845
|
export class DescribeDesktopsResponseBodyDesktopsDisks extends $dara.Model {
|
|
5790
5846
|
/**
|
|
5791
5847
|
* @remarks
|
|
@@ -6201,6 +6257,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
|
|
|
6201
6257
|
* null
|
|
6202
6258
|
*/
|
|
6203
6259
|
dataDiskSize?: string;
|
|
6260
|
+
desktopDurationList?: DescribeDesktopsResponseBodyDesktopsDesktopDurationList[];
|
|
6204
6261
|
/**
|
|
6205
6262
|
* @remarks
|
|
6206
6263
|
* The ID of the cloud computer pool to which cloud computers belong. Default value: null.``
|
|
@@ -6650,6 +6707,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
|
|
|
6650
6707
|
creationTime: 'CreationTime',
|
|
6651
6708
|
dataDiskCategory: 'DataDiskCategory',
|
|
6652
6709
|
dataDiskSize: 'DataDiskSize',
|
|
6710
|
+
desktopDurationList: 'DesktopDurationList',
|
|
6653
6711
|
desktopGroupId: 'DesktopGroupId',
|
|
6654
6712
|
desktopId: 'DesktopId',
|
|
6655
6713
|
desktopName: 'DesktopName',
|
|
@@ -6716,6 +6774,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
|
|
|
6716
6774
|
creationTime: 'string',
|
|
6717
6775
|
dataDiskCategory: 'string',
|
|
6718
6776
|
dataDiskSize: 'string',
|
|
6777
|
+
desktopDurationList: { 'type': 'array', 'itemType': DescribeDesktopsResponseBodyDesktopsDesktopDurationList },
|
|
6719
6778
|
desktopGroupId: 'string',
|
|
6720
6779
|
desktopId: 'string',
|
|
6721
6780
|
desktopName: 'string',
|
|
@@ -6772,6 +6831,9 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
|
|
|
6772
6831
|
}
|
|
6773
6832
|
|
|
6774
6833
|
validate() {
|
|
6834
|
+
if(Array.isArray(this.desktopDurationList)) {
|
|
6835
|
+
$dara.Model.validateArray(this.desktopDurationList);
|
|
6836
|
+
}
|
|
6775
6837
|
if(Array.isArray(this.disks)) {
|
|
6776
6838
|
$dara.Model.validateArray(this.disks);
|
|
6777
6839
|
}
|
|
@@ -6960,7 +7022,7 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $dara.Model
|
|
|
6960
7022
|
diskType?: string;
|
|
6961
7023
|
/**
|
|
6962
7024
|
* @remarks
|
|
6963
|
-
* The ID of the authorized user
|
|
7025
|
+
* The ID of the authorized user.
|
|
6964
7026
|
*
|
|
6965
7027
|
* @example
|
|
6966
7028
|
* alice
|
|
@@ -6968,7 +7030,7 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $dara.Model
|
|
|
6968
7030
|
endUserId?: string;
|
|
6969
7031
|
/**
|
|
6970
7032
|
* @remarks
|
|
6971
|
-
* The IDs of the end users who are connected to the cloud computers in the cloud computer
|
|
7033
|
+
* The IDs of the end users who are connected to the cloud computers in the cloud computer share. If no end users are connected, no values are returned for this parameter.
|
|
6972
7034
|
*/
|
|
6973
7035
|
endUserIds?: string[];
|
|
6974
7036
|
/**
|
|
@@ -6981,7 +7043,7 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $dara.Model
|
|
|
6981
7043
|
endUserName?: string;
|
|
6982
7044
|
/**
|
|
6983
7045
|
* @remarks
|
|
6984
|
-
* The usernames of the end users who are connected to the cloud computers in the cloud computer
|
|
7046
|
+
* The usernames of the end users who are connected to the cloud computers in the cloud computer share. If no end users are connected, no values are returned for this parameter.
|
|
6985
7047
|
*/
|
|
6986
7048
|
endUserNames?: string[];
|
|
6987
7049
|
/**
|
|
@@ -7238,7 +7300,7 @@ export class DescribeDesktopsInGroupResponseBodyPostPaidDesktops extends $dara.M
|
|
|
7238
7300
|
connectionStatus?: string;
|
|
7239
7301
|
/**
|
|
7240
7302
|
* @remarks
|
|
7241
|
-
* The retention period
|
|
7303
|
+
* The retention period. Unit: milliseconds.
|
|
7242
7304
|
*
|
|
7243
7305
|
* @example
|
|
7244
7306
|
* 4153958447
|
|
@@ -26920,6 +26982,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
26920
26982
|
* 123456789
|
|
26921
26983
|
*/
|
|
26922
26984
|
endUserId?: string[];
|
|
26985
|
+
extendInfo?: string;
|
|
26923
26986
|
/**
|
|
26924
26987
|
* @remarks
|
|
26925
26988
|
* The ID of the cloud computer pool.
|
|
@@ -27138,6 +27201,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
27138
27201
|
desktopTimers: 'DesktopTimers',
|
|
27139
27202
|
directoryId: 'DirectoryId',
|
|
27140
27203
|
endUserId: 'EndUserId',
|
|
27204
|
+
extendInfo: 'ExtendInfo',
|
|
27141
27205
|
groupId: 'GroupId',
|
|
27142
27206
|
hostname: 'Hostname',
|
|
27143
27207
|
monthDesktopSetting: 'MonthDesktopSetting',
|
|
@@ -27176,6 +27240,7 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
27176
27240
|
desktopTimers: { 'type': 'array', 'itemType': CreateDesktopsRequestDesktopTimers },
|
|
27177
27241
|
directoryId: 'string',
|
|
27178
27242
|
endUserId: { 'type': 'array', 'itemType': 'string' },
|
|
27243
|
+
extendInfo: 'string',
|
|
27179
27244
|
groupId: 'string',
|
|
27180
27245
|
hostname: 'string',
|
|
27181
27246
|
monthDesktopSetting: CreateDesktopsRequestMonthDesktopSetting,
|
|
@@ -27371,6 +27436,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27371
27436
|
* 123456789
|
|
27372
27437
|
*/
|
|
27373
27438
|
endUserId?: string[];
|
|
27439
|
+
extendInfo?: string;
|
|
27374
27440
|
/**
|
|
27375
27441
|
* @remarks
|
|
27376
27442
|
* The ID of the cloud computer pool.
|
|
@@ -27589,6 +27655,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27589
27655
|
desktopTimers: 'DesktopTimers',
|
|
27590
27656
|
directoryId: 'DirectoryId',
|
|
27591
27657
|
endUserId: 'EndUserId',
|
|
27658
|
+
extendInfo: 'ExtendInfo',
|
|
27592
27659
|
groupId: 'GroupId',
|
|
27593
27660
|
hostname: 'Hostname',
|
|
27594
27661
|
monthDesktopSetting: 'MonthDesktopSetting',
|
|
@@ -27627,6 +27694,7 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
27627
27694
|
desktopTimers: { 'type': 'array', 'itemType': CreateDesktopsShrinkRequestDesktopTimers },
|
|
27628
27695
|
directoryId: 'string',
|
|
27629
27696
|
endUserId: { 'type': 'array', 'itemType': 'string' },
|
|
27697
|
+
extendInfo: 'string',
|
|
27630
27698
|
groupId: 'string',
|
|
27631
27699
|
hostname: 'string',
|
|
27632
27700
|
monthDesktopSetting: CreateDesktopsShrinkRequestMonthDesktopSetting,
|
|
@@ -31104,7 +31172,7 @@ export class DeleteConfigGroupResponse extends $dara.Model {
|
|
|
31104
31172
|
export class DeleteDesktopGroupRequest extends $dara.Model {
|
|
31105
31173
|
/**
|
|
31106
31174
|
* @remarks
|
|
31107
|
-
* The ID of the
|
|
31175
|
+
* The ID of the cloud computer share.
|
|
31108
31176
|
*
|
|
31109
31177
|
* This parameter is required.
|
|
31110
31178
|
*
|
|
@@ -34949,6 +35017,10 @@ export class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
34949
35017
|
* dg-2i8qxpv6t1a03****
|
|
34950
35018
|
*/
|
|
34951
35019
|
desktopGroupId?: string;
|
|
35020
|
+
/**
|
|
35021
|
+
* @remarks
|
|
35022
|
+
* The IDs of the cloud computer pool.
|
|
35023
|
+
*/
|
|
34952
35024
|
desktopGroupIds?: string[];
|
|
34953
35025
|
/**
|
|
34954
35026
|
* @remarks
|
|
@@ -34984,6 +35056,18 @@ export class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
34984
35056
|
* 10
|
|
34985
35057
|
*/
|
|
34986
35058
|
maxResults?: number;
|
|
35059
|
+
/**
|
|
35060
|
+
* @remarks
|
|
35061
|
+
* Specifies whether the shared group is a multi-cloud computer type.
|
|
35062
|
+
*
|
|
35063
|
+
* Valid values:
|
|
35064
|
+
*
|
|
35065
|
+
* - true: a multi-cloud computer type.
|
|
35066
|
+
* - false: a single-cloud computer type.
|
|
35067
|
+
*
|
|
35068
|
+
* @example
|
|
35069
|
+
* true
|
|
35070
|
+
*/
|
|
34987
35071
|
multiResource?: boolean;
|
|
34988
35072
|
/**
|
|
34989
35073
|
* @remarks
|
|
@@ -37031,7 +37115,7 @@ export class DescribeDesktopsInGroupRequest extends $dara.Model {
|
|
|
37031
37115
|
customStartTimePeriod?: number;
|
|
37032
37116
|
/**
|
|
37033
37117
|
* @remarks
|
|
37034
|
-
* The ID of the cloud computer
|
|
37118
|
+
* The ID of the cloud computer share.
|
|
37035
37119
|
*
|
|
37036
37120
|
* This parameter is required.
|
|
37037
37121
|
*
|
|
@@ -37054,7 +37138,10 @@ export class DescribeDesktopsInGroupRequest extends $dara.Model {
|
|
|
37054
37138
|
ignoreDeleted?: boolean;
|
|
37055
37139
|
/**
|
|
37056
37140
|
* @remarks
|
|
37057
|
-
* The number of entries
|
|
37141
|
+
* The maximum number of entries per page.
|
|
37142
|
+
*
|
|
37143
|
+
* * Default value: 10.
|
|
37144
|
+
* * Maximum value: 100.
|
|
37058
37145
|
*
|
|
37059
37146
|
* @example
|
|
37060
37147
|
* 10
|
|
@@ -37062,7 +37149,7 @@ export class DescribeDesktopsInGroupRequest extends $dara.Model {
|
|
|
37062
37149
|
maxResults?: number;
|
|
37063
37150
|
/**
|
|
37064
37151
|
* @remarks
|
|
37065
|
-
* The pagination token that is used in the next request to retrieve a new page of results.
|
|
37152
|
+
* The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken.
|
|
37066
37153
|
*
|
|
37067
37154
|
* @example
|
|
37068
37155
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -37070,7 +37157,7 @@ export class DescribeDesktopsInGroupRequest extends $dara.Model {
|
|
|
37070
37157
|
nextToken?: string;
|
|
37071
37158
|
/**
|
|
37072
37159
|
* @remarks
|
|
37073
|
-
* The billing method of the
|
|
37160
|
+
* The billing method of the cloud computer share.
|
|
37074
37161
|
*
|
|
37075
37162
|
* @example
|
|
37076
37163
|
* PrePaid
|
|
@@ -37124,7 +37211,8 @@ export class DescribeDesktopsInGroupRequest extends $dara.Model {
|
|
|
37124
37211
|
export class DescribeDesktopsInGroupResponseBody extends $dara.Model {
|
|
37125
37212
|
/**
|
|
37126
37213
|
* @remarks
|
|
37127
|
-
*
|
|
37214
|
+
* A pagination token. It can be used in the next request to retrieve a new page of results.
|
|
37215
|
+
* If NextToken is empty, no next page exists.
|
|
37128
37216
|
*
|
|
37129
37217
|
* @example
|
|
37130
37218
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
@@ -37140,12 +37228,12 @@ export class DescribeDesktopsInGroupResponseBody extends $dara.Model {
|
|
|
37140
37228
|
onlinePrePaidDesktopsCount?: number;
|
|
37141
37229
|
/**
|
|
37142
37230
|
* @remarks
|
|
37143
|
-
* The
|
|
37231
|
+
* The subscription cloud computers.
|
|
37144
37232
|
*/
|
|
37145
37233
|
paidDesktops?: DescribeDesktopsInGroupResponseBodyPaidDesktops[];
|
|
37146
37234
|
/**
|
|
37147
37235
|
* @remarks
|
|
37148
|
-
* The total number of
|
|
37236
|
+
* The total number of subscription cloud computers.
|
|
37149
37237
|
*
|
|
37150
37238
|
* @example
|
|
37151
37239
|
* 10
|
|
@@ -37153,12 +37241,12 @@ export class DescribeDesktopsInGroupResponseBody extends $dara.Model {
|
|
|
37153
37241
|
paidDesktopsCount?: number;
|
|
37154
37242
|
/**
|
|
37155
37243
|
* @remarks
|
|
37156
|
-
* The
|
|
37244
|
+
* The pay-as-you-go cloud computers.
|
|
37157
37245
|
*/
|
|
37158
37246
|
postPaidDesktops?: DescribeDesktopsInGroupResponseBodyPostPaidDesktops[];
|
|
37159
37247
|
/**
|
|
37160
37248
|
* @remarks
|
|
37161
|
-
* The total number of
|
|
37249
|
+
* The total number of pay-as-you-go cloud computers.
|
|
37162
37250
|
*
|
|
37163
37251
|
* @example
|
|
37164
37252
|
* 10
|
|
@@ -40600,7 +40688,7 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
40600
40688
|
duration?: number;
|
|
40601
40689
|
/**
|
|
40602
40690
|
* @remarks
|
|
40603
|
-
* The number of cloud
|
|
40691
|
+
* The number of cloud computer shares. Default value: 1.
|
|
40604
40692
|
*
|
|
40605
40693
|
* > This parameter takes effect only if you set `ResourceType` to `DesktopGroup`.
|
|
40606
40694
|
*
|
|
@@ -40610,31 +40698,10 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
40610
40698
|
groupDesktopCount?: number;
|
|
40611
40699
|
/**
|
|
40612
40700
|
* @remarks
|
|
40613
|
-
* The resource
|
|
40614
|
-
*
|
|
40615
|
-
* * If you set `ResourceType` to `Desktop`, you must specify this parameter.
|
|
40616
|
-
*
|
|
40617
|
-
* * ecd.basic.small
|
|
40618
|
-
* * ecd.basic.large
|
|
40619
|
-
* * ecd.advanced.large
|
|
40620
|
-
* * ecd.advanced.xlarge
|
|
40621
|
-
* * ecd.performance.2xlarge
|
|
40622
|
-
* * ecd.graphics.xlarge
|
|
40623
|
-
* * ecd.graphics.2xlarge
|
|
40624
|
-
* * ecd.advanced.xlarge_s8d2
|
|
40625
|
-
* * ecd.advanced.xlarge_s8d7
|
|
40626
|
-
* * ecd.graphics.1g72c
|
|
40627
|
-
* * eds.general.2c2g
|
|
40628
|
-
* * eds.general.2c4g
|
|
40629
|
-
* * eds.general.2c8g
|
|
40630
|
-
* * eds.general.4c8g
|
|
40631
|
-
* * eds.general.4c16g
|
|
40632
|
-
* * eds.general.8c16g
|
|
40633
|
-
* * eds.general.8c32g
|
|
40634
|
-
* * eds.general.16c32g
|
|
40701
|
+
* The specifications of the resource.
|
|
40635
40702
|
*
|
|
40703
|
+
* * This parameter is required if you set `ResourceType` to `Desktop`. You can call the [DescribeDesktopTypes](~~DescribeDesktopTypes~~) to query the available cloud computer types that correspond to the value of `DesktopTypeId`.
|
|
40636
40704
|
* * If you set `ResourceType` to `DesktopGroup`, set the value of this parameter to `large`.
|
|
40637
|
-
*
|
|
40638
40705
|
* * If you set `ResourceType` to `Bandwidth`, you can leave this parameter empty.
|
|
40639
40706
|
*
|
|
40640
40707
|
* @example
|
|
@@ -40715,20 +40782,29 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
40715
40782
|
regionId?: string;
|
|
40716
40783
|
/**
|
|
40717
40784
|
* @remarks
|
|
40718
|
-
* The resource
|
|
40785
|
+
* The type of the resource.
|
|
40719
40786
|
*
|
|
40720
40787
|
* Valid values:
|
|
40721
40788
|
*
|
|
40722
|
-
* * DesktopMonthPackage:
|
|
40723
|
-
* * Desktop (default):
|
|
40724
|
-
* * Bandwidth:
|
|
40725
|
-
* * DesktopGroup:
|
|
40789
|
+
* * DesktopMonthPackage: monthly subscription cloud computers that use hourly limit plans.
|
|
40790
|
+
* * Desktop (default): pay-as-you-go cloud computers/monthly subscription cloud computers that use unlimited plans.
|
|
40791
|
+
* * Bandwidth: premium bandwidth plans.
|
|
40792
|
+
* * DesktopGroup: cloud computer shares.
|
|
40726
40793
|
*
|
|
40727
40794
|
* @example
|
|
40728
40795
|
* Desktop
|
|
40729
40796
|
*/
|
|
40730
40797
|
resourceType?: string;
|
|
40731
40798
|
/**
|
|
40799
|
+
* @remarks
|
|
40800
|
+
* The category of the system disk.
|
|
40801
|
+
*
|
|
40802
|
+
* Valid values:
|
|
40803
|
+
*
|
|
40804
|
+
* * cloud_efficiency: the ultra disk
|
|
40805
|
+
* * cloud_auto: the standard SSD.
|
|
40806
|
+
* * cloud_essd: the Enterprise SSD (ESSD). Take note that only specific cloud computer types support ESSDs.
|
|
40807
|
+
*
|
|
40732
40808
|
* @example
|
|
40733
40809
|
* 40
|
|
40734
40810
|
*/
|
|
@@ -40742,6 +40818,15 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
40742
40818
|
*/
|
|
40743
40819
|
rootDiskSizeGib?: number;
|
|
40744
40820
|
/**
|
|
40821
|
+
* @remarks
|
|
40822
|
+
* The category of the data disk.
|
|
40823
|
+
*
|
|
40824
|
+
* Valid values:
|
|
40825
|
+
*
|
|
40826
|
+
* * cloud_efficiency: the ultra disk
|
|
40827
|
+
* * cloud_auto: the standard SSD.
|
|
40828
|
+
* * cloud_essd: the ESSD. Take note that only specific cloud computer types support ESSDs.
|
|
40829
|
+
*
|
|
40745
40830
|
* @example
|
|
40746
40831
|
* 80
|
|
40747
40832
|
*/
|
|
@@ -40808,7 +40893,7 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
40808
40893
|
export class DescribePriceResponseBody extends $dara.Model {
|
|
40809
40894
|
/**
|
|
40810
40895
|
* @remarks
|
|
40811
|
-
* The price
|
|
40896
|
+
* The price details.
|
|
40812
40897
|
*/
|
|
40813
40898
|
priceInfo?: DescribePriceResponseBodyPriceInfo;
|
|
40814
40899
|
/**
|
|
@@ -43718,7 +43803,7 @@ export class DetachEndUserResponse extends $dara.Model {
|
|
|
43718
43803
|
export class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
43719
43804
|
/**
|
|
43720
43805
|
* @remarks
|
|
43721
|
-
* The ID of the
|
|
43806
|
+
* The ID of the cloud computer share.
|
|
43722
43807
|
*
|
|
43723
43808
|
* This parameter is required.
|
|
43724
43809
|
*
|
|
@@ -43728,14 +43813,14 @@ export class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
|
43728
43813
|
desktopGroupId?: string;
|
|
43729
43814
|
/**
|
|
43730
43815
|
* @remarks
|
|
43731
|
-
* The IDs of cloud
|
|
43816
|
+
* The IDs of the cloud computers.
|
|
43732
43817
|
*
|
|
43733
43818
|
* This parameter is required.
|
|
43734
43819
|
*/
|
|
43735
43820
|
desktopIds?: string[];
|
|
43736
43821
|
/**
|
|
43737
43822
|
* @remarks
|
|
43738
|
-
* The region
|
|
43823
|
+
* The ID of the region. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
43739
43824
|
*
|
|
43740
43825
|
* This parameter is required.
|
|
43741
43826
|
*
|
|
@@ -43774,7 +43859,7 @@ export class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
|
43774
43859
|
export class DisableDesktopsInGroupResponseBody extends $dara.Model {
|
|
43775
43860
|
/**
|
|
43776
43861
|
* @remarks
|
|
43777
|
-
* The request
|
|
43862
|
+
* The ID of the request.
|
|
43778
43863
|
*
|
|
43779
43864
|
* @example
|
|
43780
43865
|
* 34FB4D97-C0D9-5534-ABC6-90C7EBD5****
|
|
@@ -63471,6 +63556,10 @@ export default class Client extends OpenApi {
|
|
|
63471
63556
|
query["EndUserId"] = request.endUserId;
|
|
63472
63557
|
}
|
|
63473
63558
|
|
|
63559
|
+
if (!$dara.isNull(request.extendInfo)) {
|
|
63560
|
+
query["ExtendInfo"] = request.extendInfo;
|
|
63561
|
+
}
|
|
63562
|
+
|
|
63474
63563
|
if (!$dara.isNull(request.groupId)) {
|
|
63475
63564
|
query["GroupId"] = request.groupId;
|
|
63476
63565
|
}
|
|
@@ -64742,12 +64831,12 @@ export default class Client extends OpenApi {
|
|
|
64742
64831
|
}
|
|
64743
64832
|
|
|
64744
64833
|
/**
|
|
64745
|
-
* Releases a
|
|
64834
|
+
* Releases a cloud computer share.
|
|
64746
64835
|
*
|
|
64747
64836
|
* @remarks
|
|
64748
|
-
* Before
|
|
64749
|
-
* * You cannot delete a subscription
|
|
64750
|
-
* *
|
|
64837
|
+
* Before releasing a cloud computer share, ensure that no cloud computers within it are in the Connected state and that no end users have access permissions to it.
|
|
64838
|
+
* * You cannot delete a cloud computer share with an active subscription if it contains cloud computers that have not yet expired.
|
|
64839
|
+
* * Deleting a pay-as-you-go cloud computer share will release all pay-as-you-go cloud computers within it.
|
|
64751
64840
|
*
|
|
64752
64841
|
* @param request - DeleteDesktopGroupRequest
|
|
64753
64842
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64787,12 +64876,12 @@ export default class Client extends OpenApi {
|
|
|
64787
64876
|
}
|
|
64788
64877
|
|
|
64789
64878
|
/**
|
|
64790
|
-
* Releases a
|
|
64879
|
+
* Releases a cloud computer share.
|
|
64791
64880
|
*
|
|
64792
64881
|
* @remarks
|
|
64793
|
-
* Before
|
|
64794
|
-
* * You cannot delete a subscription
|
|
64795
|
-
* *
|
|
64882
|
+
* Before releasing a cloud computer share, ensure that no cloud computers within it are in the Connected state and that no end users have access permissions to it.
|
|
64883
|
+
* * You cannot delete a cloud computer share with an active subscription if it contains cloud computers that have not yet expired.
|
|
64884
|
+
* * Deleting a pay-as-you-go cloud computer share will release all pay-as-you-go cloud computers within it.
|
|
64796
64885
|
*
|
|
64797
64886
|
* @param request - DeleteDesktopGroupRequest
|
|
64798
64887
|
* @returns DeleteDesktopGroupResponse
|
|
@@ -67100,7 +67189,7 @@ export default class Client extends OpenApi {
|
|
|
67100
67189
|
}
|
|
67101
67190
|
|
|
67102
67191
|
/**
|
|
67103
|
-
* Queries the cloud computers in a
|
|
67192
|
+
* Queries the cloud computers in a share by billing method.
|
|
67104
67193
|
*
|
|
67105
67194
|
* @param request - DescribeDesktopsInGroupRequest
|
|
67106
67195
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -67164,7 +67253,7 @@ export default class Client extends OpenApi {
|
|
|
67164
67253
|
}
|
|
67165
67254
|
|
|
67166
67255
|
/**
|
|
67167
|
-
* Queries the cloud computers in a
|
|
67256
|
+
* Queries the cloud computers in a share by billing method.
|
|
67168
67257
|
*
|
|
67169
67258
|
* @param request - DescribeDesktopsInGroupRequest
|
|
67170
67259
|
* @returns DescribeDesktopsInGroupResponse
|
|
@@ -69730,7 +69819,7 @@ export default class Client extends OpenApi {
|
|
|
69730
69819
|
}
|
|
69731
69820
|
|
|
69732
69821
|
/**
|
|
69733
|
-
* Disables cloud
|
|
69822
|
+
* Disables specific cloud computers in a cloud computer share. After you call this operation to disable specific cloud computers, they enter the unavailable state.
|
|
69734
69823
|
*
|
|
69735
69824
|
* @param request - DisableDesktopsInGroupRequest
|
|
69736
69825
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -69774,7 +69863,7 @@ export default class Client extends OpenApi {
|
|
|
69774
69863
|
}
|
|
69775
69864
|
|
|
69776
69865
|
/**
|
|
69777
|
-
* Disables cloud
|
|
69866
|
+
* Disables specific cloud computers in a cloud computer share. After you call this operation to disable specific cloud computers, they enter the unavailable state.
|
|
69778
69867
|
*
|
|
69779
69868
|
* @param request - DisableDesktopsInGroupRequest
|
|
69780
69869
|
* @returns DisableDesktopsInGroupResponse
|