@alicloud/ecd20200930 4.5.2 → 4.5.4

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/src/client.ts CHANGED
@@ -4939,6 +4939,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
4939
4939
  * The tags attached to the cloud computer pool.
4940
4940
  */
4941
4941
  tags?: DescribeDesktopGroupsResponseBodyDesktopGroupsTags[];
4942
+ userOuPath?: string;
4942
4943
  /**
4943
4944
  * @remarks
4944
4945
  * The version number of the cloud computer pool.
@@ -5010,6 +5011,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
5010
5011
  systemDiskCategory: 'SystemDiskCategory',
5011
5012
  systemDiskSize: 'SystemDiskSize',
5012
5013
  tags: 'Tags',
5014
+ userOuPath: 'UserOuPath',
5013
5015
  version: 'Version',
5014
5016
  volumeEncryptionEnabled: 'VolumeEncryptionEnabled',
5015
5017
  volumeEncryptionKey: 'VolumeEncryptionKey',
@@ -5063,6 +5065,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
5063
5065
  systemDiskCategory: 'string',
5064
5066
  systemDiskSize: 'number',
5065
5067
  tags: { 'type': 'array', 'itemType': DescribeDesktopGroupsResponseBodyDesktopGroupsTags },
5068
+ userOuPath: 'string',
5066
5069
  version: 'number',
5067
5070
  volumeEncryptionEnabled: 'boolean',
5068
5071
  volumeEncryptionKey: 'string',
@@ -6023,6 +6026,67 @@ export class DescribeDesktopsResponseBodyDesktopsFotaUpdate extends $dara.Model
6023
6026
  }
6024
6027
  }
6025
6028
 
6029
+ export class DescribeDesktopsResponseBodyDesktopsOsUpdatePackages extends $dara.Model {
6030
+ description?: string;
6031
+ kb?: string;
6032
+ title?: string;
6033
+ static names(): { [key: string]: string } {
6034
+ return {
6035
+ description: 'Description',
6036
+ kb: 'Kb',
6037
+ title: 'Title',
6038
+ };
6039
+ }
6040
+
6041
+ static types(): { [key: string]: any } {
6042
+ return {
6043
+ description: 'string',
6044
+ kb: 'string',
6045
+ title: 'string',
6046
+ };
6047
+ }
6048
+
6049
+ validate() {
6050
+ super.validate();
6051
+ }
6052
+
6053
+ constructor(map?: { [key: string]: any }) {
6054
+ super(map);
6055
+ }
6056
+ }
6057
+
6058
+ export class DescribeDesktopsResponseBodyDesktopsOsUpdate extends $dara.Model {
6059
+ checkId?: string;
6060
+ packageCount?: number;
6061
+ packages?: DescribeDesktopsResponseBodyDesktopsOsUpdatePackages[];
6062
+ static names(): { [key: string]: string } {
6063
+ return {
6064
+ checkId: 'CheckId',
6065
+ packageCount: 'PackageCount',
6066
+ packages: 'Packages',
6067
+ };
6068
+ }
6069
+
6070
+ static types(): { [key: string]: any } {
6071
+ return {
6072
+ checkId: 'string',
6073
+ packageCount: 'number',
6074
+ packages: { 'type': 'array', 'itemType': DescribeDesktopsResponseBodyDesktopsOsUpdatePackages },
6075
+ };
6076
+ }
6077
+
6078
+ validate() {
6079
+ if(Array.isArray(this.packages)) {
6080
+ $dara.Model.validateArray(this.packages);
6081
+ }
6082
+ super.validate();
6083
+ }
6084
+
6085
+ constructor(map?: { [key: string]: any }) {
6086
+ super(map);
6087
+ }
6088
+ }
6089
+
6026
6090
  export class DescribeDesktopsResponseBodyDesktopsResourceGroups extends $dara.Model {
6027
6091
  /**
6028
6092
  * @remarks
@@ -6511,6 +6575,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
6511
6575
  * Windows
6512
6576
  */
6513
6577
  osType?: string;
6578
+ osUpdate?: DescribeDesktopsResponseBodyDesktopsOsUpdate;
6514
6579
  /**
6515
6580
  * @remarks
6516
6581
  * The information about the OS platform.
@@ -6739,6 +6804,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
6739
6804
  officeSiteType: 'OfficeSiteType',
6740
6805
  officeSiteVpcType: 'OfficeSiteVpcType',
6741
6806
  osType: 'OsType',
6807
+ osUpdate: 'OsUpdate',
6742
6808
  platform: 'Platform',
6743
6809
  policyGroupId: 'PolicyGroupId',
6744
6810
  policyGroupIdList: 'PolicyGroupIdList',
@@ -6806,6 +6872,7 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
6806
6872
  officeSiteType: 'string',
6807
6873
  officeSiteVpcType: 'string',
6808
6874
  osType: 'string',
6875
+ osUpdate: DescribeDesktopsResponseBodyDesktopsOsUpdate,
6809
6876
  platform: 'string',
6810
6877
  policyGroupId: 'string',
6811
6878
  policyGroupIdList: { 'type': 'array', 'itemType': 'string' },
@@ -6846,6 +6913,9 @@ export class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
6846
6913
  if(Array.isArray(this.managementFlags)) {
6847
6914
  $dara.Model.validateArray(this.managementFlags);
6848
6915
  }
6916
+ if(this.osUpdate && typeof (this.osUpdate as any).validate === 'function') {
6917
+ (this.osUpdate as any).validate();
6918
+ }
6849
6919
  if(Array.isArray(this.policyGroupIdList)) {
6850
6920
  $dara.Model.validateArray(this.policyGroupIdList);
6851
6921
  }
@@ -12193,6 +12263,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
12193
12263
  * on
12194
12264
  */
12195
12265
  endUserGroupCoordinate?: string;
12266
+ fileMigrate?: string;
12196
12267
  /**
12197
12268
  * @remarks
12198
12269
  * Transfers files.
@@ -12955,6 +13026,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
12955
13026
  * EndUserId
12956
13027
  */
12957
13028
  watermarkType?: string;
13029
+ wuyingKeeper?: string;
12958
13030
  /**
12959
13031
  * @remarks
12960
13032
  * Specifies whether to provide the AI Assistant function in the DesktopAssistant when the cloud computer is accessed from the Alibaba Cloud Workspace desktop clients (including the Windows client and the macOS client).
@@ -12998,6 +13070,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
12998
13070
  edsCount: 'EdsCount',
12999
13071
  endUserApplyAdminCoordinate: 'EndUserApplyAdminCoordinate',
13000
13072
  endUserGroupCoordinate: 'EndUserGroupCoordinate',
13073
+ fileMigrate: 'FileMigrate',
13001
13074
  fileTransfer: 'FileTransfer',
13002
13075
  gpuAcceleration: 'GpuAcceleration',
13003
13076
  html5Access: 'Html5Access',
@@ -13072,6 +13145,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
13072
13145
  watermarkTransparency: 'WatermarkTransparency',
13073
13146
  watermarkTransparencyValue: 'WatermarkTransparencyValue',
13074
13147
  watermarkType: 'WatermarkType',
13148
+ wuyingKeeper: 'WuyingKeeper',
13075
13149
  wyAssistant: 'WyAssistant',
13076
13150
  };
13077
13151
  }
@@ -13104,6 +13178,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
13104
13178
  edsCount: 'number',
13105
13179
  endUserApplyAdminCoordinate: 'string',
13106
13180
  endUserGroupCoordinate: 'string',
13181
+ fileMigrate: 'string',
13107
13182
  fileTransfer: 'string',
13108
13183
  gpuAcceleration: 'string',
13109
13184
  html5Access: 'string',
@@ -13178,6 +13253,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
13178
13253
  watermarkTransparency: 'string',
13179
13254
  watermarkTransparencyValue: 'number',
13180
13255
  watermarkType: 'string',
13256
+ wuyingKeeper: 'string',
13181
13257
  wyAssistant: 'string',
13182
13258
  };
13183
13259
  }
@@ -14557,7 +14633,7 @@ export class DescribeUserConnectTimeResponseBodyData extends $dara.Model {
14557
14633
  export class DescribeUserConnectionRecordsResponseBodyConnectionRecords extends $dara.Model {
14558
14634
  /**
14559
14635
  * @remarks
14560
- * The duration for which the end user is connected to the cloud computer. Unit: seconds.
14636
+ * The connection duration. Unit: milliseconds.
14561
14637
  *
14562
14638
  * @example
14563
14639
  * 3405035000
@@ -15529,7 +15605,7 @@ export class DownloadCdsFileResponseBodyDownloadFileModel extends $dara.Model {
15529
15605
  export class ExportDesktopGroupInfoRequestTag extends $dara.Model {
15530
15606
  /**
15531
15607
  * @remarks
15532
- * The key of the tag. If you specify the `Tag` parameter, you must also specify the `Key` parameter. The tag key can be up to 128 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `aliyun` or `acs:`. You cannot specify an empty string as a tag key.
15608
+ * The tag key. You cannot specify an empty string as a tag key. A tag key can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag key cannot contain `http://` or `https://`.
15533
15609
  *
15534
15610
  * @example
15535
15611
  * TestKey
@@ -15537,7 +15613,7 @@ export class ExportDesktopGroupInfoRequestTag extends $dara.Model {
15537
15613
  key?: string;
15538
15614
  /**
15539
15615
  * @remarks
15540
- * The value of the tag. The tag value can be an empty string. The tag value can be up to 128 characters in length. It cannot start with `acs:` and cannot contain `http://` or `https://`.
15616
+ * The tag value. You can specify an empty string as a tag key. A tag value can be up to 128 characters in length and cannot start with `acs:`. The tag value cannot contain `http://` or `https://`.
15541
15617
  *
15542
15618
  * @example
15543
15619
  * TestValue
@@ -20294,7 +20370,7 @@ export class AddUserToDesktopGroupRequest extends $dara.Model {
20294
20370
  clientToken?: string;
20295
20371
  /**
20296
20372
  * @remarks
20297
- * The ID of the desktop group that you want to assign to more regular users.
20373
+ * The ID of the cloud computer share.
20298
20374
  *
20299
20375
  * @example
20300
20376
  * dg-2i8qxpv6t1a03****
@@ -20302,14 +20378,12 @@ export class AddUserToDesktopGroupRequest extends $dara.Model {
20302
20378
  desktopGroupId?: string;
20303
20379
  /**
20304
20380
  * @remarks
20305
- * The IDs of the desktop groups.
20381
+ * The IDs of the cloud computer shares.
20306
20382
  */
20307
20383
  desktopGroupIds?: string[];
20308
20384
  /**
20309
20385
  * @remarks
20310
20386
  * The regular users to whom you want to assign the desktop group.
20311
- *
20312
- * This parameter is required.
20313
20387
  */
20314
20388
  endUserIds?: string[];
20315
20389
  /**
@@ -20322,6 +20396,7 @@ export class AddUserToDesktopGroupRequest extends $dara.Model {
20322
20396
  * cn-hangzhou
20323
20397
  */
20324
20398
  regionId?: string;
20399
+ userOuPath?: string;
20325
20400
  static names(): { [key: string]: string } {
20326
20401
  return {
20327
20402
  clientToken: 'ClientToken',
@@ -20329,6 +20404,7 @@ export class AddUserToDesktopGroupRequest extends $dara.Model {
20329
20404
  desktopGroupIds: 'DesktopGroupIds',
20330
20405
  endUserIds: 'EndUserIds',
20331
20406
  regionId: 'RegionId',
20407
+ userOuPath: 'UserOuPath',
20332
20408
  };
20333
20409
  }
20334
20410
 
@@ -20339,6 +20415,7 @@ export class AddUserToDesktopGroupRequest extends $dara.Model {
20339
20415
  desktopGroupIds: { 'type': 'array', 'itemType': 'string' },
20340
20416
  endUserIds: { 'type': 'array', 'itemType': 'string' },
20341
20417
  regionId: 'string',
20418
+ userOuPath: 'string',
20342
20419
  };
20343
20420
  }
20344
20421
 
@@ -26450,6 +26527,7 @@ export class CreateDesktopGroupRequest extends $dara.Model {
26450
26527
  * ccg-0caoeogrk9m5****
26451
26528
  */
26452
26529
  timerGroupId?: string;
26530
+ userOuPath?: string;
26453
26531
  /**
26454
26532
  * @remarks
26455
26533
  * Specifies whether to enable disk encryption.
@@ -26531,6 +26609,7 @@ export class CreateDesktopGroupRequest extends $dara.Model {
26531
26609
  systemDiskSize: 'SystemDiskSize',
26532
26610
  tag: 'Tag',
26533
26611
  timerGroupId: 'TimerGroupId',
26612
+ userOuPath: 'UserOuPath',
26534
26613
  volumeEncryptionEnabled: 'VolumeEncryptionEnabled',
26535
26614
  volumeEncryptionKey: 'VolumeEncryptionKey',
26536
26615
  vpcId: 'VpcId',
@@ -26592,6 +26671,7 @@ export class CreateDesktopGroupRequest extends $dara.Model {
26592
26671
  systemDiskSize: 'number',
26593
26672
  tag: { 'type': 'array', 'itemType': CreateDesktopGroupRequestTag },
26594
26673
  timerGroupId: 'string',
26674
+ userOuPath: 'string',
26595
26675
  volumeEncryptionEnabled: 'boolean',
26596
26676
  volumeEncryptionKey: 'string',
26597
26677
  vpcId: 'string',
@@ -42658,7 +42738,7 @@ export class DescribeUserConnectionRecordsRequest extends $dara.Model {
42658
42738
  export class DescribeUserConnectionRecordsResponseBody extends $dara.Model {
42659
42739
  /**
42660
42740
  * @remarks
42661
- * Details about connection records of the end user.
42741
+ * The connection records.
42662
42742
  */
42663
42743
  connectionRecords?: DescribeUserConnectionRecordsResponseBodyConnectionRecords[];
42664
42744
  /**
@@ -42901,7 +42981,7 @@ export class DescribeUsersInGroupRequest extends $dara.Model {
42901
42981
  connectState?: number;
42902
42982
  /**
42903
42983
  * @remarks
42904
- * The ID of the cloud computer pool.
42984
+ * The ID of the cloud computer share.
42905
42985
  *
42906
42986
  * This parameter is required.
42907
42987
  *
@@ -43051,7 +43131,7 @@ export class DescribeUsersInGroupResponseBody extends $dara.Model {
43051
43131
  nextToken?: string;
43052
43132
  /**
43053
43133
  * @remarks
43054
- * The total number of authorized users that is connected to cloud computers in the cloud computer pool.
43134
+ * The total number of authorized users that are connected to cloud computers of the cloud computer share.
43055
43135
  *
43056
43136
  * @example
43057
43137
  * 0
@@ -43065,9 +43145,10 @@ export class DescribeUsersInGroupResponseBody extends $dara.Model {
43065
43145
  * 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
43066
43146
  */
43067
43147
  requestId?: string;
43148
+ userOuPath?: string;
43068
43149
  /**
43069
43150
  * @remarks
43070
- * The total number of authorized users of the cloud computer pool.
43151
+ * The total number of authorized users of the cloud computer share.
43071
43152
  *
43072
43153
  * @example
43073
43154
  * 1
@@ -43079,6 +43160,7 @@ export class DescribeUsersInGroupResponseBody extends $dara.Model {
43079
43160
  nextToken: 'NextToken',
43080
43161
  onlineUsersCount: 'OnlineUsersCount',
43081
43162
  requestId: 'RequestId',
43163
+ userOuPath: 'UserOuPath',
43082
43164
  usersCount: 'UsersCount',
43083
43165
  };
43084
43166
  }
@@ -43089,6 +43171,7 @@ export class DescribeUsersInGroupResponseBody extends $dara.Model {
43089
43171
  nextToken: 'string',
43090
43172
  onlineUsersCount: 'number',
43091
43173
  requestId: 'string',
43174
+ userOuPath: 'string',
43092
43175
  usersCount: 'number',
43093
43176
  };
43094
43177
  }
@@ -44477,7 +44560,7 @@ export class ExportClientEventsResponseBody extends $dara.Model {
44477
44560
  * The download address from which you can export desktop groups.
44478
44561
  *
44479
44562
  * @example
44480
- * https://cn-shanghai-servicemanager.oss-cn-shanghai.aliyuncs.com/A0_CLIENT_EVENT/EDS_Events%20List_20220519234611_w5HuD83KGs.csv?Expires=1652975773&OSSAccessKeyId=LTYL****8tso&Signature=4erMG*********k%3D
44563
+ * https://cn-shanghai-servicemanager.oss-cn-shanghai.aliyuncs.com/A0_CLIENT_EVENT/EDS_Events%20List_20220519234611_w5HuD83KGs.csv?Expires=1652975773&OSSAccessKeyId=****&Signature=4erMG*********k%3D
44481
44564
  */
44482
44565
  url?: string;
44483
44566
  static names(): { [key: string]: string } {
@@ -44541,12 +44624,11 @@ export class ExportClientEventsResponse extends $dara.Model {
44541
44624
  export class ExportDesktopGroupInfoRequest extends $dara.Model {
44542
44625
  /**
44543
44626
  * @remarks
44544
- * The billing method of the cloud computer pool.
44627
+ * The billing method of the cloud computer share.
44545
44628
  *
44546
44629
  * Valid values:
44547
44630
  *
44548
44631
  * * PostPaid: pay-as-you-go.
44549
- *
44550
44632
  * * PrePaid: subscription.
44551
44633
  *
44552
44634
  * @example
@@ -44555,12 +44637,12 @@ export class ExportDesktopGroupInfoRequest extends $dara.Model {
44555
44637
  chargeType?: string;
44556
44638
  /**
44557
44639
  * @remarks
44558
- * The IDs of the cloud computer pools.
44640
+ * The IDs of the cloud computer shares.
44559
44641
  */
44560
44642
  desktopGroupId?: string[];
44561
44643
  /**
44562
44644
  * @remarks
44563
- * The name of the cloud computer pool.
44645
+ * The name of the cloud computer share.
44564
44646
  *
44565
44647
  * @example
44566
44648
  * test
@@ -44568,12 +44650,12 @@ export class ExportDesktopGroupInfoRequest extends $dara.Model {
44568
44650
  desktopGroupName?: string;
44569
44651
  /**
44570
44652
  * @remarks
44571
- * The authorized user IDs of cloud computer pools.
44653
+ * The IDs of the users to be authorized.
44572
44654
  */
44573
44655
  endUserId?: string[];
44574
44656
  /**
44575
44657
  * @remarks
44576
- * The time when the subscription cloud computer pool expires.
44658
+ * The expiration date of the subscription cloud computer share.
44577
44659
  *
44578
44660
  * @example
44579
44661
  * 2022-12-31T15:59Z
@@ -44609,7 +44691,7 @@ export class ExportDesktopGroupInfoRequest extends $dara.Model {
44609
44691
  nextToken?: string;
44610
44692
  /**
44611
44693
  * @remarks
44612
- * The ID of the office network to which the cloud computer pool belongs.
44694
+ * The ID of the office network.
44613
44695
  *
44614
44696
  * @example
44615
44697
  * cn-hangzhou+dir-467671****
@@ -44617,7 +44699,7 @@ export class ExportDesktopGroupInfoRequest extends $dara.Model {
44617
44699
  officeSiteId?: string;
44618
44700
  /**
44619
44701
  * @remarks
44620
- * The ID of the policy that is associated with the cloud computer pool.
44702
+ * The ID of the security policy.
44621
44703
  *
44622
44704
  * @example
44623
44705
  * pg-53iyi2aar0nd6****
@@ -44635,7 +44717,7 @@ export class ExportDesktopGroupInfoRequest extends $dara.Model {
44635
44717
  regionId?: string;
44636
44718
  /**
44637
44719
  * @remarks
44638
- * The tags attached to the cloud computer pool. You can specify 1 to 20 tags.
44720
+ * The tags. You can specify up to 20 tags.
44639
44721
  */
44640
44722
  tag?: ExportDesktopGroupInfoRequestTag[];
44641
44723
  static names(): { [key: string]: string } {
@@ -44701,18 +44783,18 @@ export class ExportDesktopGroupInfoResponseBody extends $dara.Model {
44701
44783
  requestId?: string;
44702
44784
  /**
44703
44785
  * @remarks
44704
- * The URL from which you can download the exported cloud computer pools. The details of the cloud computer pools include:
44786
+ * The download URL of the XLSX file that contains cloud computer shares. The XLSX file provides the following information:
44705
44787
  *
44706
- * * IDs and names of the cloud computer pools
44707
- * * IDs and names of the office networks
44708
- * * Cloud computer pool templates
44709
- * * Number of CPU cores and memory size
44710
- * * System disks and data disks
44711
- * * Names of security policies
44712
- * * Number of current authorized users
44713
- * * Billing methods
44714
- * * The time when the cloud computer pools were created
44715
- * * The time when the cloud computer pools expire
44788
+ * * Cloud computer share ID/name
44789
+ * * Office network ID/name
44790
+ * * Cloud computer share template
44791
+ * * vCPUs/Memory size
44792
+ * * System disk/Data disk
44793
+ * * Security policy name
44794
+ * * Number of authorized users
44795
+ * * Billing method
44796
+ * * Creation time
44797
+ * * Expiration time
44716
44798
  *
44717
44799
  * @example
44718
44800
  * https://cn-hangzhou-servicemanager.oss-cn-hangzhou.aliyuncs.com/A0_DESKTOP/EDS_CloudDesktopGroups_202203********_xBjqdCT***.xlsx?*********
@@ -55078,7 +55160,7 @@ export class ModifyUserEntitlementResponse extends $dara.Model {
55078
55160
  export class ModifyUserToDesktopGroupRequest extends $dara.Model {
55079
55161
  /**
55080
55162
  * @remarks
55081
- * The ID of the cloud computer pool whose end users you want to change.
55163
+ * The ID of the cloud computer share.
55082
55164
  *
55083
55165
  * This parameter is required.
55084
55166
  *
@@ -55473,6 +55555,7 @@ export class RebootDesktopsRequest extends $dara.Model {
55473
55555
  * ecd-gx2x1dhsmucyy****
55474
55556
  */
55475
55557
  desktopId?: string[];
55558
+ osUpdate?: boolean;
55476
55559
  /**
55477
55560
  * @remarks
55478
55561
  * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the most recent region list.
@@ -55486,6 +55569,7 @@ export class RebootDesktopsRequest extends $dara.Model {
55486
55569
  static names(): { [key: string]: string } {
55487
55570
  return {
55488
55571
  desktopId: 'DesktopId',
55572
+ osUpdate: 'OsUpdate',
55489
55573
  regionId: 'RegionId',
55490
55574
  };
55491
55575
  }
@@ -55493,6 +55577,7 @@ export class RebootDesktopsRequest extends $dara.Model {
55493
55577
  static types(): { [key: string]: any } {
55494
55578
  return {
55495
55579
  desktopId: { 'type': 'array', 'itemType': 'string' },
55580
+ osUpdate: 'boolean',
55496
55581
  regionId: 'string',
55497
55582
  };
55498
55583
  }
@@ -55985,7 +56070,7 @@ export class RemoveFilePermissionResponse extends $dara.Model {
55985
56070
  export class RemoveUserFromDesktopGroupRequest extends $dara.Model {
55986
56071
  /**
55987
56072
  * @remarks
55988
- * The ID of the cloud computer pool for which you want to remove the authorized users.
56073
+ * The ID of the cloud computer share.
55989
56074
  *
55990
56075
  * @example
55991
56076
  * dg-2i8qxpv6t1a03****
@@ -55993,14 +56078,12 @@ export class RemoveUserFromDesktopGroupRequest extends $dara.Model {
55993
56078
  desktopGroupId?: string;
55994
56079
  /**
55995
56080
  * @remarks
55996
- * The IDs of cloud computer pools.
56081
+ * The IDs of the cloud computer shares.
55997
56082
  */
55998
56083
  desktopGroupIds?: string[];
55999
56084
  /**
56000
56085
  * @remarks
56001
56086
  * The IDs of the authorized users that you want to remove.
56002
- *
56003
- * This parameter is required.
56004
56087
  */
56005
56088
  endUserIds?: string[];
56006
56089
  /**
@@ -56013,12 +56096,14 @@ export class RemoveUserFromDesktopGroupRequest extends $dara.Model {
56013
56096
  * cn-hangzhou
56014
56097
  */
56015
56098
  regionId?: string;
56099
+ userOuPath?: string;
56016
56100
  static names(): { [key: string]: string } {
56017
56101
  return {
56018
56102
  desktopGroupId: 'DesktopGroupId',
56019
56103
  desktopGroupIds: 'DesktopGroupIds',
56020
56104
  endUserIds: 'EndUserIds',
56021
56105
  regionId: 'RegionId',
56106
+ userOuPath: 'UserOuPath',
56022
56107
  };
56023
56108
  }
56024
56109
 
@@ -56028,6 +56113,7 @@ export class RemoveUserFromDesktopGroupRequest extends $dara.Model {
56028
56113
  desktopGroupIds: { 'type': 'array', 'itemType': 'string' },
56029
56114
  endUserIds: { 'type': 'array', 'itemType': 'string' },
56030
56115
  regionId: 'string',
56116
+ userOuPath: 'string',
56031
56117
  };
56032
56118
  }
56033
56119
 
@@ -56230,7 +56316,7 @@ export class RenewDesktopGroupRequest extends $dara.Model {
56230
56316
  autoRenew?: boolean;
56231
56317
  /**
56232
56318
  * @remarks
56233
- * The ID of the cloud computer pool.
56319
+ * The ID of the shared group.
56234
56320
  *
56235
56321
  * This parameter is required.
56236
56322
  *
@@ -56879,7 +56965,10 @@ export class RenewNetworkPackagesResponse extends $dara.Model {
56879
56965
  export class ResetDesktopsRequest extends $dara.Model {
56880
56966
  /**
56881
56967
  * @remarks
56882
- * The ID of the cloud computer pool. If you specify the `DesktopId` parameter, ignore the `DesktopGroupId` parameter. If you do not specify the `DesktopId` parameter, specify the `DesktopGroupId` parameter in the call to request all IDs of the cloud computers in the specified pool.
56968
+ * The ID of the cloud computer share.
56969
+ *
56970
+ * * If you specify `DesktopId`, ignore `DesktopGroupId`.
56971
+ * * If you leave `DesktopId` empty, the system obtains the IDs of all cloud computers within the share specified by `DesktopGroupId`.``
56883
56972
  *
56884
56973
  * @example
56885
56974
  * dg-07if7qsxoxkb6****
@@ -56887,7 +56976,7 @@ export class ResetDesktopsRequest extends $dara.Model {
56887
56976
  desktopGroupId?: string;
56888
56977
  /**
56889
56978
  * @remarks
56890
- * The IDs of the cloud computer pools.
56979
+ * The IDs of the cloud computer shares.
56891
56980
  */
56892
56981
  desktopGroupIds?: string[];
56893
56982
  /**
@@ -56905,9 +56994,14 @@ export class ResetDesktopsRequest extends $dara.Model {
56905
56994
  imageId?: string;
56906
56995
  /**
56907
56996
  * @remarks
56908
- * The billing method.
56997
+ * The billing method of the cloud computer share.
56998
+ *
56999
+ * > This parameter takes effect when you reset a cloud computer share. If you leave this parameter empty, all cloud computers in that share are reset.
57000
+ *
57001
+ * Valid values:
56909
57002
  *
56910
- * > This parameter is available only when you reset cloud computer pools. If you leave this parameter empty, all cloud computers in the specified cloud computer pool are reset, regardless of how the cloud computers are billed.
57003
+ * * PostPaid: pay-as-you-go.
57004
+ * * PrePaid: subscription.
56911
57005
  *
56912
57006
  * @example
56913
57007
  * PrePaid
@@ -57864,7 +57958,7 @@ export class SetDesktopGroupTimerRequest extends $dara.Model {
57864
57958
  cronExpression?: string;
57865
57959
  /**
57866
57960
  * @remarks
57867
- * The ID of the cloud computer pool.
57961
+ * The ID of the cloud computer share.
57868
57962
  *
57869
57963
  * This parameter is required.
57870
57964
  *
@@ -58021,7 +58115,7 @@ export class SetDesktopGroupTimerResponse extends $dara.Model {
58021
58115
  export class SetDesktopGroupTimerStatusRequest extends $dara.Model {
58022
58116
  /**
58023
58117
  * @remarks
58024
- * The ID of the cloud computer pool.
58118
+ * The ID of the cloud computer share.
58025
58119
  *
58026
58120
  * This parameter is required.
58027
58121
  *
@@ -59038,6 +59132,7 @@ export class StopDesktopsRequest extends $dara.Model {
59038
59132
  * ecd-7w78ozhjcwa3u****
59039
59133
  */
59040
59134
  desktopId?: string[];
59135
+ osUpdate?: boolean;
59041
59136
  /**
59042
59137
  * @remarks
59043
59138
  * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the most recent region list.
@@ -59077,6 +59172,7 @@ export class StopDesktopsRequest extends $dara.Model {
59077
59172
  static names(): { [key: string]: string } {
59078
59173
  return {
59079
59174
  desktopId: 'DesktopId',
59175
+ osUpdate: 'OsUpdate',
59080
59176
  regionId: 'RegionId',
59081
59177
  stoppedMode: 'StoppedMode',
59082
59178
  };
@@ -59085,6 +59181,7 @@ export class StopDesktopsRequest extends $dara.Model {
59085
59181
  static types(): { [key: string]: any } {
59086
59182
  return {
59087
59183
  desktopId: { 'type': 'array', 'itemType': 'string' },
59184
+ osUpdate: 'boolean',
59088
59185
  regionId: 'string',
59089
59186
  stoppedMode: 'string',
59090
59187
  };
@@ -60889,7 +60986,7 @@ export default class Client extends OpenApi {
60889
60986
  }
60890
60987
 
60891
60988
  /**
60892
- * Adds authorized end users of a desktop group.
60989
+ * Adds authorized users for a cloud computer share. The system automatically assigns cloud computers from a share to authorized users based on administrator-configured rules.
60893
60990
  *
60894
60991
  * @param request - AddUserToDesktopGroupRequest
60895
60992
  * @param runtime - runtime options for this request RuntimeOptions
@@ -60918,6 +61015,10 @@ export default class Client extends OpenApi {
60918
61015
  query["RegionId"] = request.regionId;
60919
61016
  }
60920
61017
 
61018
+ if (!$dara.isNull(request.userOuPath)) {
61019
+ query["UserOuPath"] = request.userOuPath;
61020
+ }
61021
+
60921
61022
  let req = new $OpenApiUtil.OpenApiRequest({
60922
61023
  query: OpenApiUtil.query(query),
60923
61024
  });
@@ -60941,7 +61042,7 @@ export default class Client extends OpenApi {
60941
61042
  }
60942
61043
 
60943
61044
  /**
60944
- * Adds authorized end users of a desktop group.
61045
+ * Adds authorized users for a cloud computer share. The system automatically assigns cloud computers from a share to authorized users based on administrator-configured rules.
60945
61046
  *
60946
61047
  * @param request - AddUserToDesktopGroupRequest
60947
61048
  * @returns AddUserToDesktopGroupResponse
@@ -63323,6 +63424,10 @@ export default class Client extends OpenApi {
63323
63424
  query["TimerGroupId"] = request.timerGroupId;
63324
63425
  }
63325
63426
 
63427
+ if (!$dara.isNull(request.userOuPath)) {
63428
+ query["UserOuPath"] = request.userOuPath;
63429
+ }
63430
+
63326
63431
  if (!$dara.isNull(request.volumeEncryptionEnabled)) {
63327
63432
  query["VolumeEncryptionEnabled"] = request.volumeEncryptionEnabled;
63328
63433
  }
@@ -69453,7 +69558,7 @@ export default class Client extends OpenApi {
69453
69558
  }
69454
69559
 
69455
69560
  /**
69456
- * Queries the information about authorized users in a cloud computer pool, including the usernames, email addresses, mobile numbers, and cloud computer IDs.
69561
+ * Queries the information about authorized users of a cloud computer share, including the usernames, email addresses, mobile numbers, and cloud computer IDs.
69457
69562
  *
69458
69563
  * @param request - DescribeUsersInGroupRequest
69459
69564
  * @param runtime - runtime options for this request RuntimeOptions
@@ -69525,7 +69630,7 @@ export default class Client extends OpenApi {
69525
69630
  }
69526
69631
 
69527
69632
  /**
69528
- * Queries the information about authorized users in a cloud computer pool, including the usernames, email addresses, mobile numbers, and cloud computer IDs.
69633
+ * Queries the information about authorized users of a cloud computer share, including the usernames, email addresses, mobile numbers, and cloud computer IDs.
69529
69634
  *
69530
69635
  * @param request - DescribeUsersInGroupRequest
69531
69636
  * @returns DescribeUsersInGroupResponse
@@ -70134,7 +70239,7 @@ export default class Client extends OpenApi {
70134
70239
  }
70135
70240
 
70136
70241
  /**
70137
- * Exports cloud computer pools. The list of cloud computer pools is saved as an XLSX file. Each entry of cloud computer pool data includes the ID and name of the cloud computer pool, the ID and name of the office network, the cloud computer pool template, and the name of the security policy.
70242
+ * Exports cloud computer shares and saves the list as an XLSX file. Each entry includes the ID and name of the cloud computer share, the ID and name of the office network, the cloud computer share template, and the name of the security policy.
70138
70243
  *
70139
70244
  * @param request - ExportDesktopGroupInfoRequest
70140
70245
  * @param runtime - runtime options for this request RuntimeOptions
@@ -70214,7 +70319,7 @@ export default class Client extends OpenApi {
70214
70319
  }
70215
70320
 
70216
70321
  /**
70217
- * Exports cloud computer pools. The list of cloud computer pools is saved as an XLSX file. Each entry of cloud computer pool data includes the ID and name of the cloud computer pool, the ID and name of the office network, the cloud computer pool template, and the name of the security policy.
70322
+ * Exports cloud computer shares and saves the list as an XLSX file. Each entry includes the ID and name of the cloud computer share, the ID and name of the office network, the cloud computer share template, and the name of the security policy.
70218
70323
  *
70219
70324
  * @param request - ExportDesktopGroupInfoRequest
70220
70325
  * @returns ExportDesktopGroupInfoResponse
@@ -74285,7 +74390,7 @@ export default class Client extends OpenApi {
74285
74390
  }
74286
74391
 
74287
74392
  /**
74288
- * Changes the end users of a cloud computer pool into new end users.
74393
+ * Replaces the existing authorized users of a cloud computer share with different users
74289
74394
  *
74290
74395
  * @param request - ModifyUserToDesktopGroupRequest
74291
74396
  * @param runtime - runtime options for this request RuntimeOptions
@@ -74333,7 +74438,7 @@ export default class Client extends OpenApi {
74333
74438
  }
74334
74439
 
74335
74440
  /**
74336
- * Changes the end users of a cloud computer pool into new end users.
74441
+ * Replaces the existing authorized users of a cloud computer share with different users
74337
74442
  *
74338
74443
  * @param request - ModifyUserToDesktopGroupRequest
74339
74444
  * @returns ModifyUserToDesktopGroupResponse
@@ -74431,6 +74536,10 @@ export default class Client extends OpenApi {
74431
74536
  query["DesktopId"] = request.desktopId;
74432
74537
  }
74433
74538
 
74539
+ if (!$dara.isNull(request.osUpdate)) {
74540
+ query["OsUpdate"] = request.osUpdate;
74541
+ }
74542
+
74434
74543
  if (!$dara.isNull(request.regionId)) {
74435
74544
  query["RegionId"] = request.regionId;
74436
74545
  }
@@ -74624,7 +74733,7 @@ export default class Client extends OpenApi {
74624
74733
  }
74625
74734
 
74626
74735
  /**
74627
- * Removes authorized users of cloud computer pools. The removed users can no longer connect to cloud computers in the cloud computer pool.
74736
+ * Revokes user access permissions for a cloud computer share. Once access permissions for a cloud computer share are revoked from a user, the user can no longer access any cloud computers within that share.
74628
74737
  *
74629
74738
  * @param request - RemoveUserFromDesktopGroupRequest
74630
74739
  * @param runtime - runtime options for this request RuntimeOptions
@@ -74649,6 +74758,10 @@ export default class Client extends OpenApi {
74649
74758
  query["RegionId"] = request.regionId;
74650
74759
  }
74651
74760
 
74761
+ if (!$dara.isNull(request.userOuPath)) {
74762
+ query["UserOuPath"] = request.userOuPath;
74763
+ }
74764
+
74652
74765
  let req = new $OpenApiUtil.OpenApiRequest({
74653
74766
  query: OpenApiUtil.query(query),
74654
74767
  });
@@ -74672,7 +74785,7 @@ export default class Client extends OpenApi {
74672
74785
  }
74673
74786
 
74674
74787
  /**
74675
- * Removes authorized users of cloud computer pools. The removed users can no longer connect to cloud computers in the cloud computer pool.
74788
+ * Revokes user access permissions for a cloud computer share. Once access permissions for a cloud computer share are revoked from a user, the user can no longer access any cloud computers within that share.
74676
74789
  *
74677
74790
  * @param request - RemoveUserFromDesktopGroupRequest
74678
74791
  * @returns RemoveUserFromDesktopGroupResponse
@@ -74742,7 +74855,7 @@ export default class Client extends OpenApi {
74742
74855
  }
74743
74856
 
74744
74857
  /**
74745
- * Renew a subscription cloud computer pool.
74858
+ * Renews a shared cloud computer.
74746
74859
  *
74747
74860
  * @param request - RenewDesktopGroupRequest
74748
74861
  * @param runtime - runtime options for this request RuntimeOptions
@@ -74798,7 +74911,7 @@ export default class Client extends OpenApi {
74798
74911
  }
74799
74912
 
74800
74913
  /**
74801
- * Renew a subscription cloud computer pool.
74914
+ * Renews a shared cloud computer.
74802
74915
  *
74803
74916
  * @param request - RenewDesktopGroupRequest
74804
74917
  * @returns RenewDesktopGroupResponse
@@ -75010,10 +75123,10 @@ export default class Client extends OpenApi {
75010
75123
  }
75011
75124
 
75012
75125
  /**
75013
- * Resets cloud computers.
75126
+ * Resets cloud computers of a cloud computer share.
75014
75127
  *
75015
75128
  * @remarks
75016
- * > You can call this operation to reset only cloud computers in a cloud computer pool.
75129
+ * > You can call this operation to reset only cloud computers from a cloud computer share.
75017
75130
  *
75018
75131
  * @param request - ResetDesktopsRequest
75019
75132
  * @param runtime - runtime options for this request RuntimeOptions
@@ -75077,10 +75190,10 @@ export default class Client extends OpenApi {
75077
75190
  }
75078
75191
 
75079
75192
  /**
75080
- * Resets cloud computers.
75193
+ * Resets cloud computers of a cloud computer share.
75081
75194
  *
75082
75195
  * @remarks
75083
- * > You can call this operation to reset only cloud computers in a cloud computer pool.
75196
+ * > You can call this operation to reset only cloud computers from a cloud computer share.
75084
75197
  *
75085
75198
  * @param request - ResetDesktopsRequest
75086
75199
  * @returns ResetDesktopsResponse
@@ -75467,7 +75580,7 @@ export default class Client extends OpenApi {
75467
75580
  }
75468
75581
 
75469
75582
  /**
75470
- * Configures a scheduled task for a cloud computer pool, such as starting, stopping, restarting or resting cloud computers in the pool.
75583
+ * Configures a scheduled start, stop, restart, or reset task for a cloud computer share.
75471
75584
  *
75472
75585
  * @param request - SetDesktopGroupTimerRequest
75473
75586
  * @param runtime - runtime options for this request RuntimeOptions
@@ -75523,7 +75636,7 @@ export default class Client extends OpenApi {
75523
75636
  }
75524
75637
 
75525
75638
  /**
75526
- * Configures a scheduled task for a cloud computer pool, such as starting, stopping, restarting or resting cloud computers in the pool.
75639
+ * Configures a scheduled start, stop, restart, or reset task for a cloud computer share.
75527
75640
  *
75528
75641
  * @param request - SetDesktopGroupTimerRequest
75529
75642
  * @returns SetDesktopGroupTimerResponse
@@ -75534,7 +75647,7 @@ export default class Client extends OpenApi {
75534
75647
  }
75535
75648
 
75536
75649
  /**
75537
- * Sets the status of a scheduled task for a cloud computer pool. For example, you enable or disable the scheduled task.
75650
+ * Sets the status of a scheduled task for a cloud computer share, such as enabling or disabling it.
75538
75651
  *
75539
75652
  * @param request - SetDesktopGroupTimerStatusRequest
75540
75653
  * @param runtime - runtime options for this request RuntimeOptions
@@ -75582,7 +75695,7 @@ export default class Client extends OpenApi {
75582
75695
  }
75583
75696
 
75584
75697
  /**
75585
- * Sets the status of a scheduled task for a cloud computer pool. For example, you enable or disable the scheduled task.
75698
+ * Sets the status of a scheduled task for a cloud computer share, such as enabling or disabling it.
75586
75699
  *
75587
75700
  * @param request - SetDesktopGroupTimerStatusRequest
75588
75701
  * @returns SetDesktopGroupTimerStatusResponse
@@ -75967,6 +76080,10 @@ export default class Client extends OpenApi {
75967
76080
  query["DesktopId"] = request.desktopId;
75968
76081
  }
75969
76082
 
76083
+ if (!$dara.isNull(request.osUpdate)) {
76084
+ query["OsUpdate"] = request.osUpdate;
76085
+ }
76086
+
75970
76087
  if (!$dara.isNull(request.regionId)) {
75971
76088
  query["RegionId"] = request.regionId;
75972
76089
  }