@alicloud/ecd20200930 4.6.0 → 4.6.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 +811 -234
- package/dist/client.js +63 -10
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +848 -234
package/dist/client.d.ts
CHANGED
|
@@ -692,7 +692,21 @@ export declare class CreateCenterPolicyRequestUsbSupplyRedirectRule extends $dar
|
|
|
692
692
|
});
|
|
693
693
|
}
|
|
694
694
|
export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConflictCds extends $dara.Model {
|
|
695
|
+
/**
|
|
696
|
+
* @remarks
|
|
697
|
+
* The ID of the enterprise drive.
|
|
698
|
+
*
|
|
699
|
+
* @example
|
|
700
|
+
* cn-hangzhou+cds-778205****
|
|
701
|
+
*/
|
|
695
702
|
cdsId?: string;
|
|
703
|
+
/**
|
|
704
|
+
* @remarks
|
|
705
|
+
* 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.
|
|
706
|
+
*
|
|
707
|
+
* @example
|
|
708
|
+
* cn-hangzhou
|
|
709
|
+
*/
|
|
696
710
|
regionId?: string;
|
|
697
711
|
static names(): {
|
|
698
712
|
[key: string]: string;
|
|
@@ -706,8 +720,29 @@ export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConfl
|
|
|
706
720
|
});
|
|
707
721
|
}
|
|
708
722
|
export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConflictOrder extends $dara.Model {
|
|
723
|
+
/**
|
|
724
|
+
* @remarks
|
|
725
|
+
* The ID of the enterprise drive. The enterprise drive cannot be used if the order is unpaid.
|
|
726
|
+
*
|
|
727
|
+
* @example
|
|
728
|
+
* cn-hangzhou+cds-778205****
|
|
729
|
+
*/
|
|
709
730
|
cdsId?: string;
|
|
731
|
+
/**
|
|
732
|
+
* @remarks
|
|
733
|
+
* The ID of the order. You can obtain an order ID on the **Orders** page in the Expenses and Costs console.
|
|
734
|
+
*
|
|
735
|
+
* @example
|
|
736
|
+
* 22442411898****
|
|
737
|
+
*/
|
|
710
738
|
orderId?: string;
|
|
739
|
+
/**
|
|
740
|
+
* @remarks
|
|
741
|
+
* The ID of the region.
|
|
742
|
+
*
|
|
743
|
+
* @example
|
|
744
|
+
* cn-hangzhou
|
|
745
|
+
*/
|
|
711
746
|
regionId?: string;
|
|
712
747
|
static names(): {
|
|
713
748
|
[key: string]: string;
|
|
@@ -721,7 +756,15 @@ export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConfl
|
|
|
721
756
|
});
|
|
722
757
|
}
|
|
723
758
|
export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrder extends $dara.Model {
|
|
759
|
+
/**
|
|
760
|
+
* @remarks
|
|
761
|
+
* The conflicting enterprise drive.
|
|
762
|
+
*/
|
|
724
763
|
conflictCds?: CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConflictCds[];
|
|
764
|
+
/**
|
|
765
|
+
* @remarks
|
|
766
|
+
* The subscription orders of the conflicting enterprise drives that are unpaid.
|
|
767
|
+
*/
|
|
725
768
|
conflictOrder?: CreateCloudDriveServiceResponseBodyConflictCdsAndOrderConflictOrder[];
|
|
726
769
|
static names(): {
|
|
727
770
|
[key: string]: string;
|
|
@@ -737,7 +780,7 @@ export declare class CreateCloudDriveServiceResponseBodyConflictCdsAndOrder exte
|
|
|
737
780
|
export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
738
781
|
/**
|
|
739
782
|
* @remarks
|
|
740
|
-
* Specifies whether to allow end users to configure scheduled
|
|
783
|
+
* Specifies whether to allow end users to configure the scheduled task.
|
|
741
784
|
*
|
|
742
785
|
* @example
|
|
743
786
|
* true
|
|
@@ -745,7 +788,7 @@ export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
|
745
788
|
allowClientSetting?: boolean;
|
|
746
789
|
/**
|
|
747
790
|
* @remarks
|
|
748
|
-
* The
|
|
791
|
+
* The cron expression specified in the scheduled task.
|
|
749
792
|
*
|
|
750
793
|
* > The time must be in UTC. For example, for 24:00 (UTC+8), you must set the value to 0 0 16 ? \\* 1,2,3,4,5,6,7
|
|
751
794
|
*
|
|
@@ -755,7 +798,7 @@ export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
|
755
798
|
cronExpression?: string;
|
|
756
799
|
/**
|
|
757
800
|
* @remarks
|
|
758
|
-
* Specifies whether to
|
|
801
|
+
* Specifies whether to forcefully execute the scheduled task.
|
|
759
802
|
*
|
|
760
803
|
* @example
|
|
761
804
|
* true
|
|
@@ -769,6 +812,7 @@ export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
|
769
812
|
* 10
|
|
770
813
|
*/
|
|
771
814
|
interval?: number;
|
|
815
|
+
notificationTime?: number;
|
|
772
816
|
/**
|
|
773
817
|
* @remarks
|
|
774
818
|
* The type of the scheduled operation. If you set TimerType to NoConnect, you can specify this parameter.
|
|
@@ -784,18 +828,18 @@ export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
|
784
828
|
operationType?: string;
|
|
785
829
|
/**
|
|
786
830
|
* @remarks
|
|
787
|
-
* The process whitelist. If whitelisted processes are running, the scheduled task
|
|
831
|
+
* The process whitelist. If whitelisted processes are running, the scheduled task does not take effect.
|
|
788
832
|
*/
|
|
789
833
|
processWhitelist?: string[];
|
|
790
834
|
/**
|
|
791
835
|
* @remarks
|
|
792
|
-
* The reset
|
|
836
|
+
* The reset option.
|
|
793
837
|
*
|
|
794
838
|
* Valid values:
|
|
795
839
|
*
|
|
796
|
-
* * RESET_TYPE_SYSTEM: resets only the system
|
|
797
|
-
* * RESET_TYPE_USER_DISK: resets only the data
|
|
798
|
-
* * RESET_TYPE_BOTH: resets the system
|
|
840
|
+
* * RESET_TYPE_SYSTEM: resets only the system disk.
|
|
841
|
+
* * RESET_TYPE_USER_DISK: resets only the data disk.
|
|
842
|
+
* * RESET_TYPE_BOTH: resets the system and data disks.
|
|
799
843
|
*
|
|
800
844
|
* @example
|
|
801
845
|
* RESET_TYPE_SYSTEM
|
|
@@ -803,7 +847,7 @@ export declare class CreateConfigGroupRequestConfigTimers extends $dara.Model {
|
|
|
803
847
|
resetType?: string;
|
|
804
848
|
/**
|
|
805
849
|
* @remarks
|
|
806
|
-
* The
|
|
850
|
+
* The scheduled task type.
|
|
807
851
|
*
|
|
808
852
|
* Valid values:
|
|
809
853
|
*
|
|
@@ -4244,7 +4288,7 @@ export declare class DescribeDesktopGroupSessionsResponseBodySessions extends $d
|
|
|
4244
4288
|
export declare class DescribeDesktopGroupsRequestTag extends $dara.Model {
|
|
4245
4289
|
/**
|
|
4246
4290
|
* @remarks
|
|
4247
|
-
* The key
|
|
4291
|
+
* 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`. It cannot contain `http://` or `https://`.
|
|
4248
4292
|
*
|
|
4249
4293
|
* @example
|
|
4250
4294
|
* TestKey
|
|
@@ -4252,7 +4296,7 @@ export declare class DescribeDesktopGroupsRequestTag extends $dara.Model {
|
|
|
4252
4296
|
key?: string;
|
|
4253
4297
|
/**
|
|
4254
4298
|
* @remarks
|
|
4255
|
-
* The value
|
|
4299
|
+
* 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:`. It cannot contain `http://` or `https://`.
|
|
4256
4300
|
*
|
|
4257
4301
|
* @example
|
|
4258
4302
|
* TestValue
|
|
@@ -4366,7 +4410,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsCountPerStatu
|
|
|
4366
4410
|
export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsTags extends $dara.Model {
|
|
4367
4411
|
/**
|
|
4368
4412
|
* @remarks
|
|
4369
|
-
* The key
|
|
4413
|
+
* The tag key.
|
|
4370
4414
|
*
|
|
4371
4415
|
* @example
|
|
4372
4416
|
* desktop_group_name
|
|
@@ -4374,7 +4418,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsTags extends
|
|
|
4374
4418
|
key?: string;
|
|
4375
4419
|
/**
|
|
4376
4420
|
* @remarks
|
|
4377
|
-
* The value
|
|
4421
|
+
* The tag value.
|
|
4378
4422
|
*
|
|
4379
4423
|
* @example
|
|
4380
4424
|
* ds-dq2mybjr23yw*****
|
|
@@ -4394,7 +4438,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsTags extends
|
|
|
4394
4438
|
export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model {
|
|
4395
4439
|
/**
|
|
4396
4440
|
* @remarks
|
|
4397
|
-
* The number of concurrent sessions
|
|
4441
|
+
* The number of concurrent sessions per cloud computer within the multi-session many-to-many share.
|
|
4398
4442
|
*
|
|
4399
4443
|
* @example
|
|
4400
4444
|
* 1
|
|
@@ -4402,8 +4446,8 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4402
4446
|
bindAmount?: number;
|
|
4403
4447
|
/**
|
|
4404
4448
|
* @remarks
|
|
4405
|
-
* *
|
|
4406
|
-
* * For
|
|
4449
|
+
* * For subscription cloud computer shares, this parameter indicates the number of purchased cloud computers. Valid values: 0 to 200.
|
|
4450
|
+
* * For pay-as-you-go cloud computer shares, this parameter indicates the minimum number of cloud computers created in the initial batch. Default value: 1. Valid values: 0 to `MaxDesktopsCount`.
|
|
4407
4451
|
*
|
|
4408
4452
|
* @example
|
|
4409
4453
|
* 5
|
|
@@ -4486,7 +4530,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4486
4530
|
desktopCount?: number;
|
|
4487
4531
|
/**
|
|
4488
4532
|
* @remarks
|
|
4489
|
-
* The ID of the cloud computer
|
|
4533
|
+
* The ID of the cloud computer share.
|
|
4490
4534
|
*
|
|
4491
4535
|
* @example
|
|
4492
4536
|
* dg-2i8qxpv6t1a03****
|
|
@@ -4494,7 +4538,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4494
4538
|
desktopGroupId?: string;
|
|
4495
4539
|
/**
|
|
4496
4540
|
* @remarks
|
|
4497
|
-
* The name of the cloud computer
|
|
4541
|
+
* The name of the cloud computer share.
|
|
4498
4542
|
*
|
|
4499
4543
|
* @example
|
|
4500
4544
|
* test1
|
|
@@ -4510,7 +4554,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4510
4554
|
desktopType?: string;
|
|
4511
4555
|
/**
|
|
4512
4556
|
* @remarks
|
|
4513
|
-
* The number of users
|
|
4557
|
+
* The number of users who can access the cloud computer share.
|
|
4514
4558
|
*
|
|
4515
4559
|
* @example
|
|
4516
4560
|
* 1
|
|
@@ -4518,7 +4562,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4518
4562
|
endUserCount?: number;
|
|
4519
4563
|
/**
|
|
4520
4564
|
* @remarks
|
|
4521
|
-
* The
|
|
4565
|
+
* The expiration date of the subscription cloud computer share.
|
|
4522
4566
|
*
|
|
4523
4567
|
* @example
|
|
4524
4568
|
* 2022-03-17T16:00:00Z
|
|
@@ -4564,6 +4608,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4564
4608
|
* m-gq15cq5ydlvwn****
|
|
4565
4609
|
*/
|
|
4566
4610
|
imageId?: string;
|
|
4611
|
+
isLdap?: boolean;
|
|
4567
4612
|
/**
|
|
4568
4613
|
* @remarks
|
|
4569
4614
|
* The keep-alive duration of a session after the session is disconnected. Valid values: 180000 (3 minutes) to 345600000 (4 days). Unit: milliseconds. If you set this parameter to 0, the session is permanently retained after it is disconnected.
|
|
@@ -4576,7 +4621,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4576
4621
|
keepDuration?: number;
|
|
4577
4622
|
/**
|
|
4578
4623
|
* @remarks
|
|
4579
|
-
* The load balancing policy
|
|
4624
|
+
* The load balancing policy for the multi-session many-to-many share.
|
|
4580
4625
|
*
|
|
4581
4626
|
* Valid values:
|
|
4582
4627
|
*
|
|
@@ -4589,7 +4634,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4589
4634
|
loadPolicy?: number;
|
|
4590
4635
|
/**
|
|
4591
4636
|
* @remarks
|
|
4592
|
-
* The maximum number of cloud computers
|
|
4637
|
+
* The maximum number of cloud computers allowed in the pay-as-you-go cloud computer share.
|
|
4593
4638
|
*
|
|
4594
4639
|
* @example
|
|
4595
4640
|
* 10
|
|
@@ -4605,7 +4650,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4605
4650
|
memory?: number;
|
|
4606
4651
|
/**
|
|
4607
4652
|
* @remarks
|
|
4608
|
-
* The maximum number of cloud computers that can be automatically created in the subscription cloud computer
|
|
4653
|
+
* The maximum number of cloud computers that can be automatically created in the subscription cloud computer share.
|
|
4609
4654
|
*
|
|
4610
4655
|
* @example
|
|
4611
4656
|
* 1
|
|
@@ -4613,7 +4658,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4613
4658
|
minDesktopsCount?: number;
|
|
4614
4659
|
/**
|
|
4615
4660
|
* @remarks
|
|
4616
|
-
* The
|
|
4661
|
+
* The ID of the office network in which the cloud computer network resides.
|
|
4617
4662
|
*
|
|
4618
4663
|
* @example
|
|
4619
4664
|
* cn-hangzhou+dir-467671****
|
|
@@ -4621,7 +4666,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4621
4666
|
officeSiteId?: string;
|
|
4622
4667
|
/**
|
|
4623
4668
|
* @remarks
|
|
4624
|
-
* The ID of the office network
|
|
4669
|
+
* The ID of the office network in which the cloud computer share resides.
|
|
4625
4670
|
*
|
|
4626
4671
|
* @example
|
|
4627
4672
|
* testName
|
|
@@ -4686,12 +4731,12 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4686
4731
|
ownBundleName?: string;
|
|
4687
4732
|
/**
|
|
4688
4733
|
* @remarks
|
|
4689
|
-
* The type of the cloud computer
|
|
4734
|
+
* The type of the cloud computer share.
|
|
4690
4735
|
*
|
|
4691
4736
|
* Valid values:
|
|
4692
4737
|
*
|
|
4693
|
-
* * 0:
|
|
4694
|
-
* * 1:
|
|
4738
|
+
* * 0: a single-session many-to-many share.
|
|
4739
|
+
* * 1: a multi-session many-to-many share.
|
|
4695
4740
|
*
|
|
4696
4741
|
* @example
|
|
4697
4742
|
* 0
|
|
@@ -4712,7 +4757,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4712
4757
|
payType?: string;
|
|
4713
4758
|
/**
|
|
4714
4759
|
* @remarks
|
|
4715
|
-
* The ID of the policy
|
|
4760
|
+
* The ID of the applied policy.
|
|
4716
4761
|
*
|
|
4717
4762
|
* @example
|
|
4718
4763
|
* pg-53iyi2aar0nd6c8qj
|
|
@@ -4720,7 +4765,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4720
4765
|
policyGroupId?: string;
|
|
4721
4766
|
/**
|
|
4722
4767
|
* @remarks
|
|
4723
|
-
* The name of the policy
|
|
4768
|
+
* The name of the applied policy.
|
|
4724
4769
|
*
|
|
4725
4770
|
* @example
|
|
4726
4771
|
* test-policy
|
|
@@ -4754,11 +4799,11 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4754
4799
|
protocolType?: string;
|
|
4755
4800
|
/**
|
|
4756
4801
|
* @remarks
|
|
4757
|
-
* The threshold for the ratio of connected sessions
|
|
4802
|
+
* The threshold for the ratio of connected sessions, which triggers automatic scaling of cloud computers within the multi-session many-to-many share. To calculate the ratio of connected sessions, use the following formula:
|
|
4758
4803
|
*
|
|
4759
4804
|
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`.
|
|
4760
4805
|
*
|
|
4761
|
-
*
|
|
4806
|
+
* If the session ratio exceeds the threshold, new cloud computers are provisioned. If it falls below the threshold, additional cloud computers are removed.
|
|
4762
4807
|
*
|
|
4763
4808
|
* @example
|
|
4764
4809
|
* 0.85
|
|
@@ -4766,14 +4811,14 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4766
4811
|
ratioThreshold?: number;
|
|
4767
4812
|
/**
|
|
4768
4813
|
* @remarks
|
|
4769
|
-
* The
|
|
4814
|
+
* The reset option for the cloud computer share.
|
|
4770
4815
|
*
|
|
4771
4816
|
* Valid values:
|
|
4772
4817
|
*
|
|
4773
|
-
* * 0: does not reset
|
|
4774
|
-
* * 1: resets only the system
|
|
4775
|
-
* * 2: resets only the
|
|
4776
|
-
* * 3: resets the system
|
|
4818
|
+
* * 0: does not reset any disk.
|
|
4819
|
+
* * 1: resets only the system disk.
|
|
4820
|
+
* * 2: resets only the data disk.
|
|
4821
|
+
* * 3: resets the system disk and data disk.
|
|
4777
4822
|
*
|
|
4778
4823
|
* @example
|
|
4779
4824
|
* 0
|
|
@@ -4781,13 +4826,13 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4781
4826
|
resetType?: number;
|
|
4782
4827
|
/**
|
|
4783
4828
|
* @remarks
|
|
4784
|
-
* The
|
|
4829
|
+
* The status of the cloud computer share.
|
|
4785
4830
|
*
|
|
4786
4831
|
* Valid values:
|
|
4787
4832
|
*
|
|
4788
|
-
* * 0: unpaid
|
|
4789
|
-
* * 1:
|
|
4790
|
-
* * 2:
|
|
4833
|
+
* * 0: The cloud computer share is unpaid.
|
|
4834
|
+
* * 1: The cloud computer share is normal.
|
|
4835
|
+
* * 2: The cloud computer share expired, or your account has an overdue payment.
|
|
4791
4836
|
*
|
|
4792
4837
|
* @example
|
|
4793
4838
|
* 1
|
|
@@ -4833,13 +4878,20 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4833
4878
|
systemDiskSize?: number;
|
|
4834
4879
|
/**
|
|
4835
4880
|
* @remarks
|
|
4836
|
-
* The tags
|
|
4881
|
+
* The tags.
|
|
4837
4882
|
*/
|
|
4838
4883
|
tags?: DescribeDesktopGroupsResponseBodyDesktopGroupsTags[];
|
|
4884
|
+
/**
|
|
4885
|
+
* @remarks
|
|
4886
|
+
* 用户组织单元路径。
|
|
4887
|
+
*
|
|
4888
|
+
* @example
|
|
4889
|
+
* example.com\\wuying\\users
|
|
4890
|
+
*/
|
|
4839
4891
|
userOuPath?: string;
|
|
4840
4892
|
/**
|
|
4841
4893
|
* @remarks
|
|
4842
|
-
* The version number of the cloud computer
|
|
4894
|
+
* The version number of the cloud computer share.
|
|
4843
4895
|
*
|
|
4844
4896
|
* @example
|
|
4845
4897
|
* 2
|
|
@@ -5921,6 +5973,7 @@ export declare class DescribeDesktopsResponseBodyDesktops extends $dara.Model {
|
|
|
5921
5973
|
* m-4zfb6zj728hhr****
|
|
5922
5974
|
*/
|
|
5923
5975
|
imageId?: string;
|
|
5976
|
+
isLdap?: boolean;
|
|
5924
5977
|
/**
|
|
5925
5978
|
* @remarks
|
|
5926
5979
|
* The flag that is used to manage the cloud computer.
|
|
@@ -8508,18 +8561,35 @@ export declare class DescribeKmsKeysResponseBodyKeys extends $dara.Model {
|
|
|
8508
8561
|
}
|
|
8509
8562
|
export declare class DescribeModificationPriceResponseBodyPriceInfoPricePromotions extends $dara.Model {
|
|
8510
8563
|
/**
|
|
8564
|
+
* @remarks
|
|
8565
|
+
* The description of the promotion rule.
|
|
8566
|
+
*
|
|
8511
8567
|
* @example
|
|
8512
8568
|
* test
|
|
8513
8569
|
*/
|
|
8514
8570
|
optionCode?: string;
|
|
8571
|
+
/**
|
|
8572
|
+
* @remarks
|
|
8573
|
+
* The promotion description.
|
|
8574
|
+
*/
|
|
8515
8575
|
promotionDesc?: string;
|
|
8516
8576
|
/**
|
|
8577
|
+
* @remarks
|
|
8578
|
+
* The ID of the promotion activity.
|
|
8579
|
+
*
|
|
8517
8580
|
* @example
|
|
8518
8581
|
* promo_option
|
|
8519
8582
|
*/
|
|
8520
8583
|
promotionId?: string;
|
|
8584
|
+
/**
|
|
8585
|
+
* @remarks
|
|
8586
|
+
* The name of the promotion activity.
|
|
8587
|
+
*/
|
|
8521
8588
|
promotionName?: string;
|
|
8522
8589
|
/**
|
|
8590
|
+
* @remarks
|
|
8591
|
+
* Indicates whether an item is selected.
|
|
8592
|
+
*
|
|
8523
8593
|
* @example
|
|
8524
8594
|
* false
|
|
8525
8595
|
*/
|
|
@@ -8537,25 +8607,45 @@ export declare class DescribeModificationPriceResponseBodyPriceInfoPricePromotio
|
|
|
8537
8607
|
}
|
|
8538
8608
|
export declare class DescribeModificationPriceResponseBodyPriceInfoPrice extends $dara.Model {
|
|
8539
8609
|
/**
|
|
8610
|
+
* @remarks
|
|
8611
|
+
* The unit of currency (USD).
|
|
8612
|
+
*
|
|
8540
8613
|
* @example
|
|
8541
8614
|
* CNY
|
|
8542
8615
|
*/
|
|
8543
8616
|
currency?: string;
|
|
8544
8617
|
/**
|
|
8618
|
+
* @remarks
|
|
8619
|
+
* The discounted amount.
|
|
8620
|
+
*
|
|
8545
8621
|
* @example
|
|
8546
8622
|
* 15.8
|
|
8547
8623
|
*/
|
|
8548
8624
|
discountPrice?: number;
|
|
8625
|
+
/**
|
|
8626
|
+
* @remarks
|
|
8627
|
+
* The orders.
|
|
8628
|
+
*/
|
|
8549
8629
|
orderLines?: {
|
|
8550
8630
|
[key: string]: string;
|
|
8551
8631
|
};
|
|
8552
8632
|
/**
|
|
8633
|
+
* @remarks
|
|
8634
|
+
* The original price.
|
|
8635
|
+
*
|
|
8553
8636
|
* @example
|
|
8554
8637
|
* 79.0
|
|
8555
8638
|
*/
|
|
8556
8639
|
originalPrice?: number;
|
|
8640
|
+
/**
|
|
8641
|
+
* @remarks
|
|
8642
|
+
* The promotion activities.
|
|
8643
|
+
*/
|
|
8557
8644
|
promotions?: DescribeModificationPriceResponseBodyPriceInfoPricePromotions[];
|
|
8558
8645
|
/**
|
|
8646
|
+
* @remarks
|
|
8647
|
+
* The actual price. The actual price is the original price minus the discount.
|
|
8648
|
+
*
|
|
8559
8649
|
* @example
|
|
8560
8650
|
* 63.2
|
|
8561
8651
|
*/
|
|
@@ -8572,8 +8662,15 @@ export declare class DescribeModificationPriceResponseBodyPriceInfoPrice extends
|
|
|
8572
8662
|
});
|
|
8573
8663
|
}
|
|
8574
8664
|
export declare class DescribeModificationPriceResponseBodyPriceInfoRules extends $dara.Model {
|
|
8665
|
+
/**
|
|
8666
|
+
* @remarks
|
|
8667
|
+
* The rule description.
|
|
8668
|
+
*/
|
|
8575
8669
|
description?: string;
|
|
8576
8670
|
/**
|
|
8671
|
+
* @remarks
|
|
8672
|
+
* The rule ID.
|
|
8673
|
+
*
|
|
8577
8674
|
* @example
|
|
8578
8675
|
* 14806
|
|
8579
8676
|
*/
|
|
@@ -8590,7 +8687,15 @@ export declare class DescribeModificationPriceResponseBodyPriceInfoRules extends
|
|
|
8590
8687
|
});
|
|
8591
8688
|
}
|
|
8592
8689
|
export declare class DescribeModificationPriceResponseBodyPriceInfo extends $dara.Model {
|
|
8690
|
+
/**
|
|
8691
|
+
* @remarks
|
|
8692
|
+
* The price information.
|
|
8693
|
+
*/
|
|
8593
8694
|
price?: DescribeModificationPriceResponseBodyPriceInfoPrice;
|
|
8695
|
+
/**
|
|
8696
|
+
* @remarks
|
|
8697
|
+
* The promotion rules.
|
|
8698
|
+
*/
|
|
8594
8699
|
rules?: DescribeModificationPriceResponseBodyPriceInfoRules[];
|
|
8595
8700
|
static names(): {
|
|
8596
8701
|
[key: string]: string;
|
|
@@ -9229,7 +9334,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSitesLogs extends $dar
|
|
|
9229
9334
|
export declare class DescribeOfficeSitesResponseBodyOfficeSitesResourceAmounts extends $dara.Model {
|
|
9230
9335
|
/**
|
|
9231
9336
|
* @remarks
|
|
9232
|
-
* The
|
|
9337
|
+
* The number of resources.
|
|
9233
9338
|
*
|
|
9234
9339
|
* @example
|
|
9235
9340
|
* 1
|
|
@@ -9237,10 +9342,12 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSitesResourceAmounts e
|
|
|
9237
9342
|
amount?: number;
|
|
9238
9343
|
/**
|
|
9239
9344
|
* @remarks
|
|
9240
|
-
* The resource type.
|
|
9345
|
+
* The resource type.
|
|
9241
9346
|
*
|
|
9242
|
-
*
|
|
9243
|
-
*
|
|
9347
|
+
* Valid values:
|
|
9348
|
+
*
|
|
9349
|
+
* * desktop: the cloud computer.
|
|
9350
|
+
* * DesktopGroup: the cloud computer share.
|
|
9244
9351
|
*
|
|
9245
9352
|
* @example
|
|
9246
9353
|
* desktop
|
|
@@ -9351,7 +9458,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9351
9458
|
creationTime?: string;
|
|
9352
9459
|
/**
|
|
9353
9460
|
* @remarks
|
|
9354
|
-
* The custom gateway.
|
|
9461
|
+
* The custom endpoint of the access gateway.
|
|
9355
9462
|
*
|
|
9356
9463
|
* @example
|
|
9357
9464
|
* gw-****.com
|
|
@@ -9359,7 +9466,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9359
9466
|
customAccessPoint?: string;
|
|
9360
9467
|
/**
|
|
9361
9468
|
* @remarks
|
|
9362
|
-
* The
|
|
9469
|
+
* The custom DNS addresses.
|
|
9363
9470
|
*/
|
|
9364
9471
|
customDnsAddress?: string[];
|
|
9365
9472
|
/**
|
|
@@ -9404,7 +9511,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9404
9511
|
desktopVpcEndpoint?: string;
|
|
9405
9512
|
/**
|
|
9406
9513
|
* @remarks
|
|
9407
|
-
* The
|
|
9514
|
+
* The DNS addresses for the AD domains.
|
|
9408
9515
|
*/
|
|
9409
9516
|
dnsAddress?: string[];
|
|
9410
9517
|
/**
|
|
@@ -9533,10 +9640,12 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9533
9640
|
networkPackageId?: string;
|
|
9534
9641
|
/**
|
|
9535
9642
|
* @remarks
|
|
9536
|
-
* The network version.
|
|
9643
|
+
* The network version. The new version supports App Streaming.
|
|
9644
|
+
*
|
|
9645
|
+
* Valid values:
|
|
9537
9646
|
*
|
|
9538
|
-
*
|
|
9539
|
-
*
|
|
9647
|
+
* * DEFAULT: the old version.
|
|
9648
|
+
* * NM: the new version.
|
|
9540
9649
|
*
|
|
9541
9650
|
* @example
|
|
9542
9651
|
* NM
|
|
@@ -9610,7 +9719,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9610
9719
|
rdsLicenseStatus?: string;
|
|
9611
9720
|
/**
|
|
9612
9721
|
* @remarks
|
|
9613
|
-
* The
|
|
9722
|
+
* The number of resources.
|
|
9614
9723
|
*/
|
|
9615
9724
|
resourceAmounts?: DescribeOfficeSitesResponseBodyOfficeSitesResourceAmounts[];
|
|
9616
9725
|
/**
|
|
@@ -9668,7 +9777,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9668
9777
|
status?: string;
|
|
9669
9778
|
/**
|
|
9670
9779
|
* @remarks
|
|
9671
|
-
*
|
|
9780
|
+
* The DNS addresses for the AD subdomains.
|
|
9672
9781
|
*/
|
|
9673
9782
|
subDnsAddress?: string[];
|
|
9674
9783
|
/**
|
|
@@ -9702,7 +9811,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9702
9811
|
totalEdsCount?: number;
|
|
9703
9812
|
/**
|
|
9704
9813
|
* @remarks
|
|
9705
|
-
* The number of
|
|
9814
|
+
* The number of cloud computers in the cloud computer share.
|
|
9706
9815
|
*
|
|
9707
9816
|
* @example
|
|
9708
9817
|
* 0
|
|
@@ -9710,7 +9819,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9710
9819
|
totalEdsCountForGroup?: number;
|
|
9711
9820
|
/**
|
|
9712
9821
|
* @remarks
|
|
9713
|
-
* The
|
|
9822
|
+
* The number of network interface controllers (NICs).
|
|
9714
9823
|
*
|
|
9715
9824
|
* @example
|
|
9716
9825
|
* 1
|
|
@@ -11568,18 +11677,35 @@ export declare class DescribeRegionsResponseBodyRegions extends $dara.Model {
|
|
|
11568
11677
|
}
|
|
11569
11678
|
export declare class DescribeRenewalPriceResponseBodyPriceInfoPricePromotions extends $dara.Model {
|
|
11570
11679
|
/**
|
|
11680
|
+
* @remarks
|
|
11681
|
+
* The description of the promotion rule.
|
|
11682
|
+
*
|
|
11571
11683
|
* @example
|
|
11572
11684
|
* test
|
|
11573
11685
|
*/
|
|
11574
11686
|
optionCode?: string;
|
|
11687
|
+
/**
|
|
11688
|
+
* @remarks
|
|
11689
|
+
* The promotion description.
|
|
11690
|
+
*/
|
|
11575
11691
|
promotionDesc?: string;
|
|
11576
11692
|
/**
|
|
11693
|
+
* @remarks
|
|
11694
|
+
* The promotion ID.
|
|
11695
|
+
*
|
|
11577
11696
|
* @example
|
|
11578
11697
|
* promo_option
|
|
11579
11698
|
*/
|
|
11580
11699
|
promotionId?: string;
|
|
11700
|
+
/**
|
|
11701
|
+
* @remarks
|
|
11702
|
+
* The promotion name.
|
|
11703
|
+
*/
|
|
11581
11704
|
promotionName?: string;
|
|
11582
11705
|
/**
|
|
11706
|
+
* @remarks
|
|
11707
|
+
* Indicates whether an item is selected.
|
|
11708
|
+
*
|
|
11583
11709
|
* @example
|
|
11584
11710
|
* false
|
|
11585
11711
|
*/
|
|
@@ -11597,25 +11723,45 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPricePromotions ex
|
|
|
11597
11723
|
}
|
|
11598
11724
|
export declare class DescribeRenewalPriceResponseBodyPriceInfoPrice extends $dara.Model {
|
|
11599
11725
|
/**
|
|
11726
|
+
* @remarks
|
|
11727
|
+
* The unit of currency (USD).
|
|
11728
|
+
*
|
|
11600
11729
|
* @example
|
|
11601
11730
|
* CNY
|
|
11602
11731
|
*/
|
|
11603
11732
|
currency?: string;
|
|
11604
11733
|
/**
|
|
11734
|
+
* @remarks
|
|
11735
|
+
* The discounted amount.
|
|
11736
|
+
*
|
|
11605
11737
|
* @example
|
|
11606
11738
|
* 15.8
|
|
11607
11739
|
*/
|
|
11608
11740
|
discountPrice?: number;
|
|
11741
|
+
/**
|
|
11742
|
+
* @remarks
|
|
11743
|
+
* The orders.
|
|
11744
|
+
*/
|
|
11609
11745
|
orderLines?: {
|
|
11610
11746
|
[key: string]: string;
|
|
11611
11747
|
};
|
|
11612
11748
|
/**
|
|
11749
|
+
* @remarks
|
|
11750
|
+
* The original price.
|
|
11751
|
+
*
|
|
11613
11752
|
* @example
|
|
11614
11753
|
* 79.0
|
|
11615
11754
|
*/
|
|
11616
11755
|
originalPrice?: number;
|
|
11756
|
+
/**
|
|
11757
|
+
* @remarks
|
|
11758
|
+
* The promotions.
|
|
11759
|
+
*/
|
|
11617
11760
|
promotions?: DescribeRenewalPriceResponseBodyPriceInfoPricePromotions[];
|
|
11618
11761
|
/**
|
|
11762
|
+
* @remarks
|
|
11763
|
+
* The actual price. The actual price is the original price minus the discount.
|
|
11764
|
+
*
|
|
11619
11765
|
* @example
|
|
11620
11766
|
* 63.2
|
|
11621
11767
|
*/
|
|
@@ -11632,8 +11778,15 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPrice extends $dar
|
|
|
11632
11778
|
});
|
|
11633
11779
|
}
|
|
11634
11780
|
export declare class DescribeRenewalPriceResponseBodyPriceInfoRules extends $dara.Model {
|
|
11781
|
+
/**
|
|
11782
|
+
* @remarks
|
|
11783
|
+
* The rule description.
|
|
11784
|
+
*/
|
|
11635
11785
|
description?: string;
|
|
11636
11786
|
/**
|
|
11787
|
+
* @remarks
|
|
11788
|
+
* The rule ID.
|
|
11789
|
+
*
|
|
11637
11790
|
* @example
|
|
11638
11791
|
* 29644
|
|
11639
11792
|
*/
|
|
@@ -11650,7 +11803,15 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoRules extends $dar
|
|
|
11650
11803
|
});
|
|
11651
11804
|
}
|
|
11652
11805
|
export declare class DescribeRenewalPriceResponseBodyPriceInfo extends $dara.Model {
|
|
11806
|
+
/**
|
|
11807
|
+
* @remarks
|
|
11808
|
+
* The price.
|
|
11809
|
+
*/
|
|
11653
11810
|
price?: DescribeRenewalPriceResponseBodyPriceInfoPrice;
|
|
11811
|
+
/**
|
|
11812
|
+
* @remarks
|
|
11813
|
+
* The promotion rules.
|
|
11814
|
+
*/
|
|
11654
11815
|
rules?: DescribeRenewalPriceResponseBodyPriceInfoRules[];
|
|
11655
11816
|
static names(): {
|
|
11656
11817
|
[key: string]: string;
|
|
@@ -11665,11 +11826,17 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfo extends $dara.Mod
|
|
|
11665
11826
|
}
|
|
11666
11827
|
export declare class DescribeResourceByCenterPolicyIdResponseBodyResourceModelListAppModelList extends $dara.Model {
|
|
11667
11828
|
/**
|
|
11829
|
+
* @remarks
|
|
11830
|
+
* The application ID. This parameter is only applicable to cloud applications.
|
|
11831
|
+
*
|
|
11668
11832
|
* @example
|
|
11669
11833
|
* 18
|
|
11670
11834
|
*/
|
|
11671
11835
|
appId?: string;
|
|
11672
11836
|
/**
|
|
11837
|
+
* @remarks
|
|
11838
|
+
* The application name.
|
|
11839
|
+
*
|
|
11673
11840
|
* @example
|
|
11674
11841
|
* alipic-powergem
|
|
11675
11842
|
*/
|
|
@@ -11686,84 +11853,140 @@ export declare class DescribeResourceByCenterPolicyIdResponseBodyResourceModelLi
|
|
|
11686
11853
|
});
|
|
11687
11854
|
}
|
|
11688
11855
|
export declare class DescribeResourceByCenterPolicyIdResponseBodyResourceModelList extends $dara.Model {
|
|
11856
|
+
/**
|
|
11857
|
+
* @remarks
|
|
11858
|
+
* The cloud applications.
|
|
11859
|
+
*/
|
|
11689
11860
|
appModelList?: DescribeResourceByCenterPolicyIdResponseBodyResourceModelListAppModelList[];
|
|
11690
11861
|
/**
|
|
11862
|
+
* @remarks
|
|
11863
|
+
* The number of vCPUs.
|
|
11864
|
+
*
|
|
11691
11865
|
* @example
|
|
11692
11866
|
* 64
|
|
11693
11867
|
*/
|
|
11694
11868
|
cpu?: number;
|
|
11695
11869
|
/**
|
|
11870
|
+
* @remarks
|
|
11871
|
+
* The cloud computer type. You can call the [DescribeDesktopTypes](https://help.aliyun.com/document_detail/188882.html) operation to query the IDs of the cloud computer types supported by Alibaba Cloud Workspace.
|
|
11872
|
+
*
|
|
11696
11873
|
* @example
|
|
11697
11874
|
* eds.enterprise_office.8c32g
|
|
11698
11875
|
*/
|
|
11699
11876
|
desktopType?: string;
|
|
11700
11877
|
/**
|
|
11878
|
+
* @remarks
|
|
11879
|
+
* The number of GPUs.
|
|
11880
|
+
*
|
|
11701
11881
|
* @example
|
|
11702
11882
|
* 0.125
|
|
11703
11883
|
*/
|
|
11704
11884
|
gpuCount?: number;
|
|
11705
11885
|
/**
|
|
11886
|
+
* @remarks
|
|
11887
|
+
* The GPU type.
|
|
11888
|
+
*
|
|
11706
11889
|
* @example
|
|
11707
11890
|
* 2GiB
|
|
11708
11891
|
*/
|
|
11709
11892
|
gpuSpec?: string;
|
|
11710
11893
|
/**
|
|
11894
|
+
* @remarks
|
|
11895
|
+
* The memory size. Unit: MiB.
|
|
11896
|
+
*
|
|
11711
11897
|
* @example
|
|
11712
11898
|
* 10240
|
|
11713
11899
|
*/
|
|
11714
11900
|
memory?: number;
|
|
11715
11901
|
/**
|
|
11902
|
+
* @remarks
|
|
11903
|
+
* The OS type.
|
|
11904
|
+
*
|
|
11716
11905
|
* @example
|
|
11717
11906
|
* Linux
|
|
11718
11907
|
*/
|
|
11719
11908
|
osType?: string;
|
|
11720
11909
|
/**
|
|
11910
|
+
* @remarks
|
|
11911
|
+
* The billing method.
|
|
11912
|
+
*
|
|
11721
11913
|
* @example
|
|
11722
11914
|
* postPaid
|
|
11723
11915
|
*/
|
|
11724
11916
|
payType?: string;
|
|
11725
11917
|
/**
|
|
11918
|
+
* @remarks
|
|
11919
|
+
* The service type.
|
|
11920
|
+
*
|
|
11726
11921
|
* @example
|
|
11727
11922
|
* desktop
|
|
11728
11923
|
*/
|
|
11729
11924
|
productType?: string;
|
|
11730
11925
|
/**
|
|
11926
|
+
* @remarks
|
|
11927
|
+
* The protocol type.
|
|
11928
|
+
*
|
|
11731
11929
|
* @example
|
|
11732
11930
|
* ASP
|
|
11733
11931
|
*/
|
|
11734
11932
|
protocolType?: string;
|
|
11735
11933
|
/**
|
|
11934
|
+
* @remarks
|
|
11935
|
+
* The resource group ID.
|
|
11936
|
+
*
|
|
11736
11937
|
* @example
|
|
11737
11938
|
* rg-d7pasxsd3b9nhq**
|
|
11738
11939
|
*/
|
|
11739
11940
|
resourceGroupId?: string;
|
|
11740
11941
|
/**
|
|
11942
|
+
* @remarks
|
|
11943
|
+
* The resource group name.
|
|
11944
|
+
*
|
|
11741
11945
|
* @example
|
|
11742
11946
|
* test
|
|
11743
11947
|
*/
|
|
11744
11948
|
resourceGroupName?: string;
|
|
11745
11949
|
/**
|
|
11950
|
+
* @remarks
|
|
11951
|
+
* The number of associated resource groups
|
|
11952
|
+
*
|
|
11746
11953
|
* @example
|
|
11747
11954
|
* 10
|
|
11748
11955
|
*/
|
|
11749
11956
|
resourceGroupRelCount?: number;
|
|
11750
11957
|
/**
|
|
11958
|
+
* @remarks
|
|
11959
|
+
* The resource ID.
|
|
11960
|
+
*
|
|
11751
11961
|
* @example
|
|
11752
11962
|
* ecd-7o96aa08fr****
|
|
11753
11963
|
*/
|
|
11754
11964
|
resourceId?: string;
|
|
11965
|
+
/**
|
|
11966
|
+
* @remarks
|
|
11967
|
+
* The resource name.
|
|
11968
|
+
*/
|
|
11755
11969
|
resourceName?: string;
|
|
11756
11970
|
/**
|
|
11971
|
+
* @remarks
|
|
11972
|
+
* The region ID of the resource.
|
|
11973
|
+
*
|
|
11757
11974
|
* @example
|
|
11758
11975
|
* cn-shenzhen
|
|
11759
11976
|
*/
|
|
11760
11977
|
resourceRegionId?: string;
|
|
11761
11978
|
/**
|
|
11979
|
+
* @remarks
|
|
11980
|
+
* The resource type.
|
|
11981
|
+
*
|
|
11762
11982
|
* @example
|
|
11763
11983
|
* desktop
|
|
11764
11984
|
*/
|
|
11765
11985
|
resourceType?: string;
|
|
11766
11986
|
/**
|
|
11987
|
+
* @remarks
|
|
11988
|
+
* The resource status.
|
|
11989
|
+
*
|
|
11767
11990
|
* @example
|
|
11768
11991
|
* Stopped
|
|
11769
11992
|
*/
|
|
@@ -12105,6 +12328,7 @@ export declare class DescribeTimerGroupResponseBodyDataConfigTimers extends $dar
|
|
|
12105
12328
|
* 10
|
|
12106
12329
|
*/
|
|
12107
12330
|
interval?: number;
|
|
12331
|
+
notificationTime?: number;
|
|
12108
12332
|
/**
|
|
12109
12333
|
* @remarks
|
|
12110
12334
|
* The type of the scheduled disconnection task.
|
|
@@ -12199,7 +12423,7 @@ export declare class DescribeTimerGroupResponseBodyData extends $dara.Model {
|
|
|
12199
12423
|
};
|
|
12200
12424
|
/**
|
|
12201
12425
|
* @remarks
|
|
12202
|
-
* The scheduled task
|
|
12426
|
+
* The scheduled task configurations.
|
|
12203
12427
|
*/
|
|
12204
12428
|
configTimers?: DescribeTimerGroupResponseBodyDataConfigTimers[];
|
|
12205
12429
|
/**
|
|
@@ -12669,6 +12893,7 @@ export declare class DescribeUsersInGroupResponseBodyEndUsers extends $dara.Mode
|
|
|
12669
12893
|
* alice
|
|
12670
12894
|
*/
|
|
12671
12895
|
displayName?: string;
|
|
12896
|
+
displayNameNew?: string;
|
|
12672
12897
|
/**
|
|
12673
12898
|
* @remarks
|
|
12674
12899
|
* The email address of the authorized user.
|
|
@@ -12735,6 +12960,7 @@ export declare class DescribeUsersInGroupResponseBodyEndUsers extends $dara.Mode
|
|
|
12735
12960
|
* ud-i896ze8hazpvl****
|
|
12736
12961
|
*/
|
|
12737
12962
|
userDesktopId?: string;
|
|
12963
|
+
userPrincipalName?: string;
|
|
12738
12964
|
/**
|
|
12739
12965
|
* @remarks
|
|
12740
12966
|
* Details about the seats of users.
|
|
@@ -13187,12 +13413,12 @@ export declare class GetDesktopGroupDetailResponseBodyDesktopsScaleTimerInfos ex
|
|
|
13187
13413
|
keepDuration?: number;
|
|
13188
13414
|
/**
|
|
13189
13415
|
* @remarks
|
|
13190
|
-
* The load balancing policy
|
|
13416
|
+
* The load balancing policy for the multi-session many-to-many share.
|
|
13191
13417
|
*
|
|
13192
13418
|
* Valid values:
|
|
13193
13419
|
*
|
|
13194
|
-
* * 0: depth-first
|
|
13195
|
-
* * 1: breadth-first
|
|
13420
|
+
* * 0: depth-first.
|
|
13421
|
+
* * 1: breadth-first.
|
|
13196
13422
|
*
|
|
13197
13423
|
* @example
|
|
13198
13424
|
* 1
|
|
@@ -13216,11 +13442,11 @@ export declare class GetDesktopGroupDetailResponseBodyDesktopsScaleTimerInfos ex
|
|
|
13216
13442
|
minResAmount?: number;
|
|
13217
13443
|
/**
|
|
13218
13444
|
* @remarks
|
|
13219
|
-
* The threshold for the ratio of connected sessions
|
|
13445
|
+
* The threshold for the ratio of connected sessions, which triggers automatic scaling of cloud computers within the multi-session many-to-many share. To calculate the ratio of connected sessions, use the following formula:
|
|
13220
13446
|
*
|
|
13221
|
-
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100
|
|
13447
|
+
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`.
|
|
13222
13448
|
*
|
|
13223
|
-
* If the ratio
|
|
13449
|
+
* If the session ratio exceeds the threshold, new cloud computers are provisioned. If it falls below the threshold, additional cloud computers are removed.
|
|
13224
13450
|
*
|
|
13225
13451
|
* @example
|
|
13226
13452
|
* 0.5
|
|
@@ -13312,12 +13538,12 @@ export declare class GetDesktopGroupDetailResponseBodyDesktopsTimerInfos extends
|
|
|
13312
13538
|
export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Model {
|
|
13313
13539
|
/**
|
|
13314
13540
|
* @remarks
|
|
13315
|
-
*
|
|
13541
|
+
* Specifies whether to enable batch-based automatic creation of cloud computers in the subscription cloud computer share.
|
|
13316
13542
|
*
|
|
13317
13543
|
* Valid values:
|
|
13318
13544
|
*
|
|
13319
|
-
* * 0:
|
|
13320
|
-
* * 1:
|
|
13545
|
+
* * 0: enables batch-based automatic creation of cloud computers.
|
|
13546
|
+
* * 1: disables batch-based automatic creation of cloud computers.
|
|
13321
13547
|
*
|
|
13322
13548
|
* @example
|
|
13323
13549
|
* 1
|
|
@@ -13325,10 +13551,10 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13325
13551
|
allowAutoSetup?: number;
|
|
13326
13552
|
/**
|
|
13327
13553
|
* @remarks
|
|
13328
|
-
*
|
|
13554
|
+
* This parameter applies to pay-as-you-go cloud computer shares and specifies the number of standby cloud computers that can be reserved per cloud computer share. Valid values:
|
|
13329
13555
|
*
|
|
13330
|
-
* * 0: does not
|
|
13331
|
-
* * N:
|
|
13556
|
+
* * 0: does not reserve any cloud computers.
|
|
13557
|
+
* * N: reserves N cloud computers (1≤ N ≤ 100).
|
|
13332
13558
|
*
|
|
13333
13559
|
* @example
|
|
13334
13560
|
* 1
|
|
@@ -13336,7 +13562,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13336
13562
|
allowBufferCount?: number;
|
|
13337
13563
|
/**
|
|
13338
13564
|
* @remarks
|
|
13339
|
-
* The number of concurrent sessions
|
|
13565
|
+
* The maximum number of concurrent sessions allowed per cloud computer within the multi-session many-to-many share.
|
|
13340
13566
|
*
|
|
13341
13567
|
* @example
|
|
13342
13568
|
* 1
|
|
@@ -13344,8 +13570,8 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13344
13570
|
bindAmount?: number;
|
|
13345
13571
|
/**
|
|
13346
13572
|
* @remarks
|
|
13347
|
-
* *
|
|
13348
|
-
* *
|
|
13573
|
+
* * The number of purchased cloud computers in the subscription share. Valid values: 0 to 200.
|
|
13574
|
+
* * The minimum initial number of cloud computers created in the pay-as-you-go share. Default value: 1. Valid values: 0 to `MaxDesktopsCount`.
|
|
13349
13575
|
*
|
|
13350
13576
|
* @example
|
|
13351
13577
|
* 5
|
|
@@ -13409,7 +13635,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13409
13635
|
dataDiskSize?: string;
|
|
13410
13636
|
/**
|
|
13411
13637
|
* @remarks
|
|
13412
|
-
* The ID of the cloud computer
|
|
13638
|
+
* The ID of the cloud computer share.
|
|
13413
13639
|
*
|
|
13414
13640
|
* @example
|
|
13415
13641
|
* dg-3uiojcc0j4kh7****
|
|
@@ -13417,7 +13643,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13417
13643
|
desktopGroupId?: string;
|
|
13418
13644
|
/**
|
|
13419
13645
|
* @remarks
|
|
13420
|
-
* The name of the cloud computer
|
|
13646
|
+
* The name of the cloud computer share.
|
|
13421
13647
|
*
|
|
13422
13648
|
* @example
|
|
13423
13649
|
* DesktopGroupDemo
|
|
@@ -13441,7 +13667,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13441
13667
|
directoryType?: string;
|
|
13442
13668
|
/**
|
|
13443
13669
|
* @remarks
|
|
13444
|
-
* The
|
|
13670
|
+
* The expiration date of the subscription cloud computer share.
|
|
13445
13671
|
*
|
|
13446
13672
|
* @example
|
|
13447
13673
|
* 2021-12-31T15:59Z
|
|
@@ -13491,12 +13717,12 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13491
13717
|
keepDuration?: number;
|
|
13492
13718
|
/**
|
|
13493
13719
|
* @remarks
|
|
13494
|
-
* The load balancing policy
|
|
13720
|
+
* The load balancing policy for the multi-session many-to-many share.
|
|
13495
13721
|
*
|
|
13496
13722
|
* Valid values:
|
|
13497
13723
|
*
|
|
13498
|
-
* * 0: depth-first
|
|
13499
|
-
* * 1: breadth-first
|
|
13724
|
+
* * 0: depth-first.
|
|
13725
|
+
* * 1: breadth-first.
|
|
13500
13726
|
*
|
|
13501
13727
|
* @example
|
|
13502
13728
|
* 0
|
|
@@ -13504,7 +13730,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13504
13730
|
loadPolicy?: number;
|
|
13505
13731
|
/**
|
|
13506
13732
|
* @remarks
|
|
13507
|
-
* The maximum number of cloud computers
|
|
13733
|
+
* The maximum number of cloud computers allowed in the pay-as-you-go cloud computer share.
|
|
13508
13734
|
*
|
|
13509
13735
|
* @example
|
|
13510
13736
|
* 10
|
|
@@ -13520,7 +13746,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13520
13746
|
memory?: number;
|
|
13521
13747
|
/**
|
|
13522
13748
|
* @remarks
|
|
13523
|
-
* The
|
|
13749
|
+
* The number of cloud computers created in the initial batch within the subscription cloud computer share.
|
|
13524
13750
|
*
|
|
13525
13751
|
* @example
|
|
13526
13752
|
* 1
|
|
@@ -13552,7 +13778,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13552
13778
|
officeSiteId?: string;
|
|
13553
13779
|
/**
|
|
13554
13780
|
* @remarks
|
|
13555
|
-
* The name of the office network in which the cloud computer
|
|
13781
|
+
* The name of the office network in which the cloud computer resides.
|
|
13556
13782
|
*
|
|
13557
13783
|
* @example
|
|
13558
13784
|
* test
|
|
@@ -13591,12 +13817,12 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13591
13817
|
ownBundleName?: string;
|
|
13592
13818
|
/**
|
|
13593
13819
|
* @remarks
|
|
13594
|
-
* The type of the cloud computer
|
|
13820
|
+
* The type of the cloud computer share.
|
|
13595
13821
|
*
|
|
13596
13822
|
* Valid values:
|
|
13597
13823
|
*
|
|
13598
|
-
* * 0:
|
|
13599
|
-
* * 1:
|
|
13824
|
+
* * 0: a one-to-many share.
|
|
13825
|
+
* * 1: a many-to-many share.
|
|
13600
13826
|
*
|
|
13601
13827
|
* @example
|
|
13602
13828
|
* 0
|
|
@@ -13618,7 +13844,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13618
13844
|
payType?: string;
|
|
13619
13845
|
/**
|
|
13620
13846
|
* @remarks
|
|
13621
|
-
* The ID of the policy
|
|
13847
|
+
* The ID of the applied policy.
|
|
13622
13848
|
*
|
|
13623
13849
|
* @example
|
|
13624
13850
|
* pg-9cktlowtxfl6****
|
|
@@ -13626,12 +13852,12 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13626
13852
|
policyGroupId?: string;
|
|
13627
13853
|
/**
|
|
13628
13854
|
* @remarks
|
|
13629
|
-
* The IDs of
|
|
13855
|
+
* The IDs of the applied policies.
|
|
13630
13856
|
*/
|
|
13631
13857
|
policyGroupIds?: string[];
|
|
13632
13858
|
/**
|
|
13633
13859
|
* @remarks
|
|
13634
|
-
* The name of the policy
|
|
13860
|
+
* The name of the applied policy.
|
|
13635
13861
|
*
|
|
13636
13862
|
* @example
|
|
13637
13863
|
* test
|
|
@@ -13639,7 +13865,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13639
13865
|
policyGroupName?: string;
|
|
13640
13866
|
/**
|
|
13641
13867
|
* @remarks
|
|
13642
|
-
* The names of
|
|
13868
|
+
* The names of the applied policies.
|
|
13643
13869
|
*/
|
|
13644
13870
|
policyGroupNames?: string[];
|
|
13645
13871
|
/**
|
|
@@ -13652,11 +13878,11 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13652
13878
|
profileFollowSwitch?: boolean;
|
|
13653
13879
|
/**
|
|
13654
13880
|
* @remarks
|
|
13655
|
-
* The threshold for the ratio of connected sessions
|
|
13881
|
+
* The threshold for the ratio of connected sessions, which triggers automatic scaling of cloud computers within the multi-session many-to-many share. To calculate the ratio of connected sessions, use the following formula:
|
|
13656
13882
|
*
|
|
13657
|
-
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100
|
|
13883
|
+
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`.
|
|
13658
13884
|
*
|
|
13659
|
-
* If the ratio
|
|
13885
|
+
* If the session ratio exceeds the threshold, new cloud computers are provisioned. If it falls below the threshold, additional cloud computers are removed.
|
|
13660
13886
|
*
|
|
13661
13887
|
* @example
|
|
13662
13888
|
* 0.6
|
|
@@ -13691,18 +13917,18 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13691
13917
|
resetType?: number;
|
|
13692
13918
|
/**
|
|
13693
13919
|
* @remarks
|
|
13694
|
-
*
|
|
13920
|
+
* The scheduled tasks.
|
|
13695
13921
|
*/
|
|
13696
13922
|
scaleTimerInfos?: GetDesktopGroupDetailResponseBodyDesktopsScaleTimerInfos[];
|
|
13697
13923
|
/**
|
|
13698
13924
|
* @remarks
|
|
13699
|
-
* The
|
|
13925
|
+
* The status of the cloud computer share.
|
|
13700
13926
|
*
|
|
13701
13927
|
* Valid values:
|
|
13702
13928
|
*
|
|
13703
|
-
* * 0: unpaid
|
|
13704
|
-
* * 1:
|
|
13705
|
-
* * 2:
|
|
13929
|
+
* * 0: The cloud computer share is unpaid.
|
|
13930
|
+
* * 1: The cloud computer share is normal.
|
|
13931
|
+
* * 2: The cloud computer share expired, or your account has an overdue payment.
|
|
13706
13932
|
*
|
|
13707
13933
|
* @example
|
|
13708
13934
|
* 1
|
|
@@ -13747,7 +13973,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $dara.Mod
|
|
|
13747
13973
|
timingStrategyInfo?: string;
|
|
13748
13974
|
/**
|
|
13749
13975
|
* @remarks
|
|
13750
|
-
* The version number of the cloud computer
|
|
13976
|
+
* The version number of the cloud computer share.
|
|
13751
13977
|
*
|
|
13752
13978
|
* @example
|
|
13753
13979
|
* 1
|
|
@@ -13961,6 +14187,7 @@ export declare class ListDirectoryUsersResponseBodyUsers extends $dara.Model {
|
|
|
13961
14187
|
* Alice
|
|
13962
14188
|
*/
|
|
13963
14189
|
displayName?: string;
|
|
14190
|
+
displayNameNew?: string;
|
|
13964
14191
|
/**
|
|
13965
14192
|
* @remarks
|
|
13966
14193
|
* The email address.
|
|
@@ -13985,6 +14212,7 @@ export declare class ListDirectoryUsersResponseBodyUsers extends $dara.Model {
|
|
|
13985
14212
|
* 130********
|
|
13986
14213
|
*/
|
|
13987
14214
|
phone?: string;
|
|
14215
|
+
userPrincipalName?: string;
|
|
13988
14216
|
static names(): {
|
|
13989
14217
|
[key: string]: string;
|
|
13990
14218
|
};
|
|
@@ -14202,6 +14430,7 @@ export declare class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
14202
14430
|
* Alice
|
|
14203
14431
|
*/
|
|
14204
14432
|
displayName?: string;
|
|
14433
|
+
displayNameNew?: string;
|
|
14205
14434
|
email?: string;
|
|
14206
14435
|
/**
|
|
14207
14436
|
* @remarks
|
|
@@ -14212,6 +14441,7 @@ export declare class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
14212
14441
|
*/
|
|
14213
14442
|
endUser?: string;
|
|
14214
14443
|
phone?: string;
|
|
14444
|
+
userPrincipalName?: string;
|
|
14215
14445
|
static names(): {
|
|
14216
14446
|
[key: string]: string;
|
|
14217
14447
|
};
|
|
@@ -15644,11 +15874,17 @@ export declare class ModifyPolicyGroupRequestUsbSupplyRedirectRule extends $dara
|
|
|
15644
15874
|
}
|
|
15645
15875
|
export declare class ModifyResourceCenterPolicyResponseBodyModifyResults extends $dara.Model {
|
|
15646
15876
|
/**
|
|
15877
|
+
* @remarks
|
|
15878
|
+
* The verification result.
|
|
15879
|
+
*
|
|
15647
15880
|
* @example
|
|
15648
15881
|
* true
|
|
15649
15882
|
*/
|
|
15650
15883
|
checkResult?: boolean;
|
|
15651
15884
|
/**
|
|
15885
|
+
* @remarks
|
|
15886
|
+
* The resource ID.
|
|
15887
|
+
*
|
|
15652
15888
|
* @example
|
|
15653
15889
|
* ecd-e254cpyt9bb*****
|
|
15654
15890
|
*/
|
|
@@ -15675,7 +15911,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
15675
15911
|
allowClientSetting?: boolean;
|
|
15676
15912
|
/**
|
|
15677
15913
|
* @remarks
|
|
15678
|
-
* The
|
|
15914
|
+
* The cron expression specified in the scheduled task.
|
|
15679
15915
|
*
|
|
15680
15916
|
* > The time must be in UTC. For example, for 24:00 (UTC+8), you must set the value to 0 0 16 ? \\* 1,2,3,4,5,6,7.
|
|
15681
15917
|
*
|
|
@@ -15699,6 +15935,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
15699
15935
|
* 10
|
|
15700
15936
|
*/
|
|
15701
15937
|
interval?: number;
|
|
15938
|
+
notificationTime?: number;
|
|
15702
15939
|
/**
|
|
15703
15940
|
* @remarks
|
|
15704
15941
|
* The type of the scheduled operation. If you set TimerType to NoConnect, you can specify this parameter.
|
|
@@ -15714,12 +15951,12 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
15714
15951
|
operationType?: string;
|
|
15715
15952
|
/**
|
|
15716
15953
|
* @remarks
|
|
15717
|
-
* The process whitelist. If whitelisted processes are running, the scheduled task
|
|
15954
|
+
* The process whitelist. If whitelisted processes are running, the scheduled task triggered by inactivity does not take effect.
|
|
15718
15955
|
*/
|
|
15719
15956
|
processWhitelist?: string[];
|
|
15720
15957
|
/**
|
|
15721
15958
|
* @remarks
|
|
15722
|
-
* The reset
|
|
15959
|
+
* The reset option.
|
|
15723
15960
|
*
|
|
15724
15961
|
* Valid values:
|
|
15725
15962
|
*
|
|
@@ -15733,7 +15970,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
15733
15970
|
resetType?: string;
|
|
15734
15971
|
/**
|
|
15735
15972
|
* @remarks
|
|
15736
|
-
* The
|
|
15973
|
+
* The scheduled task type.
|
|
15737
15974
|
*
|
|
15738
15975
|
* Valid values:
|
|
15739
15976
|
*
|
|
@@ -16975,7 +17212,7 @@ export declare class AddUserToDesktopGroupRequest extends $dara.Model {
|
|
|
16975
17212
|
desktopGroupIds?: string[];
|
|
16976
17213
|
/**
|
|
16977
17214
|
* @remarks
|
|
16978
|
-
* The
|
|
17215
|
+
* The IDs of the users to whom you want to grant permissions.
|
|
16979
17216
|
*/
|
|
16980
17217
|
endUserIds?: string[];
|
|
16981
17218
|
/**
|
|
@@ -18192,6 +18429,11 @@ export declare class CancelCopyImageResponse extends $dara.Model {
|
|
|
18192
18429
|
export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
18193
18430
|
/**
|
|
18194
18431
|
* @remarks
|
|
18432
|
+
* The business type. Valid values:
|
|
18433
|
+
*
|
|
18434
|
+
* * 1: public cloud.
|
|
18435
|
+
* * 8: commercial edition.
|
|
18436
|
+
*
|
|
18195
18437
|
* This parameter is required.
|
|
18196
18438
|
*
|
|
18197
18439
|
* @example
|
|
@@ -18200,6 +18442,8 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18200
18442
|
businessType?: number;
|
|
18201
18443
|
/**
|
|
18202
18444
|
* @remarks
|
|
18445
|
+
* The name of the cloud computer policy that you want to clone.
|
|
18446
|
+
*
|
|
18203
18447
|
* This parameter is required.
|
|
18204
18448
|
*
|
|
18205
18449
|
* @example
|
|
@@ -18208,6 +18452,8 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18208
18452
|
name?: string;
|
|
18209
18453
|
/**
|
|
18210
18454
|
* @remarks
|
|
18455
|
+
* The ID of the cloud computer policy that you want to clone.
|
|
18456
|
+
*
|
|
18211
18457
|
* This parameter is required.
|
|
18212
18458
|
*
|
|
18213
18459
|
* @example
|
|
@@ -18216,6 +18462,8 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18216
18462
|
policyGroupId?: string;
|
|
18217
18463
|
/**
|
|
18218
18464
|
* @remarks
|
|
18465
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
18466
|
+
*
|
|
18219
18467
|
* This parameter is required.
|
|
18220
18468
|
*
|
|
18221
18469
|
* @example
|
|
@@ -18224,6 +18472,11 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18224
18472
|
regionId?: string;
|
|
18225
18473
|
/**
|
|
18226
18474
|
* @remarks
|
|
18475
|
+
* The resource type. Valid values:
|
|
18476
|
+
*
|
|
18477
|
+
* * desktop: cloud computers.
|
|
18478
|
+
* * app: cloud applications.
|
|
18479
|
+
*
|
|
18227
18480
|
* This parameter is required.
|
|
18228
18481
|
*
|
|
18229
18482
|
* @example
|
|
@@ -18243,11 +18496,17 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18243
18496
|
}
|
|
18244
18497
|
export declare class CloneCenterPolicyResponseBody extends $dara.Model {
|
|
18245
18498
|
/**
|
|
18499
|
+
* @remarks
|
|
18500
|
+
* The ID of the duplicated cloud computer policy.
|
|
18501
|
+
*
|
|
18246
18502
|
* @example
|
|
18247
18503
|
* pg-gx2x1dhsmthe9****
|
|
18248
18504
|
*/
|
|
18249
18505
|
policyGroupId?: string;
|
|
18250
18506
|
/**
|
|
18507
|
+
* @remarks
|
|
18508
|
+
* The request ID.
|
|
18509
|
+
*
|
|
18251
18510
|
* @example
|
|
18252
18511
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
18253
18512
|
*/
|
|
@@ -21095,30 +21354,81 @@ export declare class CreateCenterPolicyResponse extends $dara.Model {
|
|
|
21095
21354
|
});
|
|
21096
21355
|
}
|
|
21097
21356
|
export declare class CreateCloudDriveServiceRequest extends $dara.Model {
|
|
21357
|
+
/**
|
|
21358
|
+
* @remarks
|
|
21359
|
+
* Specifies whether to enable the auto-payment feature.
|
|
21360
|
+
*
|
|
21361
|
+
* Valid values:
|
|
21362
|
+
*
|
|
21363
|
+
* * true: enables the auto-payment feature. Ensure your Alibaba Cloud account has sufficient balance. Insufficient balance may result in abnormal orders.
|
|
21364
|
+
* * false (default): disables the auto-payment feature. The order is generated, but payment must be made manually. You can log on to the Alibaba Cloud Management Console and complete the payment based on the order ID on the Orders page.
|
|
21365
|
+
*
|
|
21366
|
+
* @example
|
|
21367
|
+
* false
|
|
21368
|
+
*/
|
|
21098
21369
|
autoPay?: boolean;
|
|
21370
|
+
/**
|
|
21371
|
+
* @remarks
|
|
21372
|
+
* Optional. Specifies whether to enable the auto-renewal feature. This parameter takes effect only if you set CdsChargeType to `Prepaid`.
|
|
21373
|
+
*
|
|
21374
|
+
* Valid values:
|
|
21375
|
+
*
|
|
21376
|
+
* * true
|
|
21377
|
+
* * false
|
|
21378
|
+
*
|
|
21379
|
+
* @example
|
|
21380
|
+
* false
|
|
21381
|
+
*/
|
|
21099
21382
|
autoRenew?: boolean;
|
|
21100
21383
|
/**
|
|
21101
21384
|
* @remarks
|
|
21102
|
-
*
|
|
21385
|
+
* > This parameter is not publicly available.
|
|
21103
21386
|
*
|
|
21104
21387
|
* @example
|
|
21105
21388
|
* 3
|
|
21106
21389
|
*/
|
|
21107
21390
|
bizType?: number;
|
|
21391
|
+
/**
|
|
21392
|
+
* @remarks
|
|
21393
|
+
* The billing method of the enterprise drive.
|
|
21394
|
+
*
|
|
21395
|
+
* Valid values:
|
|
21396
|
+
*
|
|
21397
|
+
* * PostPaid: pay-as-you-go.
|
|
21398
|
+
* * PrePaid: subscription.
|
|
21399
|
+
*
|
|
21400
|
+
* @example
|
|
21401
|
+
* PostPaid
|
|
21402
|
+
*/
|
|
21108
21403
|
cdsChargeType?: string;
|
|
21109
21404
|
/**
|
|
21405
|
+
* @remarks
|
|
21406
|
+
* The ID of the Cloud Enterprise Network (CEN) instance. This parameter takes effect only if you set `OfficeSiteType` to `AD_CONNECTOR`. If you have configured `OfficeSiteId`, you can leave this parameter empty.
|
|
21407
|
+
*
|
|
21110
21408
|
* @example
|
|
21111
21409
|
* cen-g4ba1mkji8nj6****
|
|
21112
21410
|
*/
|
|
21113
21411
|
cenId?: string;
|
|
21114
21412
|
/**
|
|
21413
|
+
* @remarks
|
|
21414
|
+
* The domain name of the enterprise AD office network. This parameter takes effect only if you set `OfficeSiteType` to `AD_CONNECTOR`. If you have configured `OfficeSiteId`, you can leave this parameter empty.
|
|
21415
|
+
*
|
|
21115
21416
|
* @example
|
|
21116
21417
|
* test.local
|
|
21117
21418
|
*/
|
|
21118
21419
|
domainName?: string;
|
|
21420
|
+
/**
|
|
21421
|
+
* @remarks
|
|
21422
|
+
* The user IDs.
|
|
21423
|
+
*/
|
|
21119
21424
|
endUserId?: string[];
|
|
21120
21425
|
/**
|
|
21121
21426
|
* @remarks
|
|
21427
|
+
* The maximum storage capacity of the enterprise drive.
|
|
21428
|
+
*
|
|
21429
|
+
* * For a pay-as-you-go enterprise drive, the unit is bytes.
|
|
21430
|
+
* * For a subscription enterprise drive, the unit is GiB. For example, to create a 500 GiB subscription drive, set the value to 500 GiB. To create a 2 TiB subscription drive, set the value to 2048 GiB.
|
|
21431
|
+
*
|
|
21122
21432
|
* This parameter is required.
|
|
21123
21433
|
*
|
|
21124
21434
|
* @example
|
|
@@ -21127,27 +21437,62 @@ export declare class CreateCloudDriveServiceRequest extends $dara.Model {
|
|
|
21127
21437
|
maxSize?: number;
|
|
21128
21438
|
/**
|
|
21129
21439
|
* @remarks
|
|
21130
|
-
* The name of the
|
|
21440
|
+
* The name of the enterprise drive
|
|
21131
21441
|
*
|
|
21132
21442
|
* @example
|
|
21133
21443
|
* wuying-pds
|
|
21134
21444
|
*/
|
|
21135
21445
|
name?: string;
|
|
21136
21446
|
/**
|
|
21447
|
+
* @remarks
|
|
21448
|
+
* The ID of the office network. This parameter takes effect only if you set OfficeSiteType to `AD_CONNECTOR`.
|
|
21449
|
+
*
|
|
21137
21450
|
* @example
|
|
21138
21451
|
* cn-hangzhou+dir-400695****
|
|
21139
21452
|
*/
|
|
21140
21453
|
officeSiteId?: string;
|
|
21141
21454
|
/**
|
|
21455
|
+
* @remarks
|
|
21456
|
+
* The type of the office network.
|
|
21457
|
+
*
|
|
21458
|
+
* Valid values:
|
|
21459
|
+
*
|
|
21460
|
+
* * SIMPLE: convenience office network.
|
|
21461
|
+
* * AD_CONNECTOR: enterprise Active Directory (AD) office network.
|
|
21462
|
+
*
|
|
21142
21463
|
* @example
|
|
21143
21464
|
* SIMPLE
|
|
21144
21465
|
*/
|
|
21145
21466
|
officeSiteType?: string;
|
|
21467
|
+
/**
|
|
21468
|
+
* @remarks
|
|
21469
|
+
* The subscription duration. The unit is specified by `PeriodUnit`. This parameter takes effect only if you set `CdsChargeType` to `PrePaid`.
|
|
21470
|
+
*
|
|
21471
|
+
* Valid values:
|
|
21472
|
+
*
|
|
21473
|
+
* * 1
|
|
21474
|
+
* * 2
|
|
21475
|
+
* * 3
|
|
21476
|
+
*
|
|
21477
|
+
* @example
|
|
21478
|
+
* 1
|
|
21479
|
+
*/
|
|
21146
21480
|
period?: number;
|
|
21481
|
+
/**
|
|
21482
|
+
* @remarks
|
|
21483
|
+
* Required. The unit of the subscription duration. This parameter takes effect only if you set `CdsChargeType` to `PrePaid`.
|
|
21484
|
+
*
|
|
21485
|
+
* Valid value:
|
|
21486
|
+
*
|
|
21487
|
+
* * Year
|
|
21488
|
+
*
|
|
21489
|
+
* @example
|
|
21490
|
+
* Year
|
|
21491
|
+
*/
|
|
21147
21492
|
periodUnit?: string;
|
|
21148
21493
|
/**
|
|
21149
21494
|
* @remarks
|
|
21150
|
-
* The region
|
|
21495
|
+
* 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 Enterprise Drive Service is available.
|
|
21151
21496
|
*
|
|
21152
21497
|
* This parameter is required.
|
|
21153
21498
|
*
|
|
@@ -21157,14 +21502,30 @@ export declare class CreateCloudDriveServiceRequest extends $dara.Model {
|
|
|
21157
21502
|
regionId?: string;
|
|
21158
21503
|
/**
|
|
21159
21504
|
* @remarks
|
|
21160
|
-
*
|
|
21505
|
+
* > This parameter is not publicly available.
|
|
21161
21506
|
*
|
|
21162
21507
|
* @example
|
|
21163
21508
|
* co-0esnf8kb8zpfbqmvt
|
|
21164
21509
|
*/
|
|
21165
21510
|
solutionId?: string;
|
|
21511
|
+
/**
|
|
21512
|
+
* @remarks
|
|
21513
|
+
* Required. The maximum number of users allowed on the enterprise drive. This parameter takes effect only if you set `CdsChargeType` to `PrePaid`.
|
|
21514
|
+
*
|
|
21515
|
+
* Valid values:
|
|
21516
|
+
*
|
|
21517
|
+
* * 5 when the value of MaxSize is 500 GiB.
|
|
21518
|
+
* * 20 when the value of MaxSize is 2048 GiB.
|
|
21519
|
+
* * 50 when the value of MaxSize is 5120 GiB.
|
|
21520
|
+
*
|
|
21521
|
+
* @example
|
|
21522
|
+
* 5
|
|
21523
|
+
*/
|
|
21166
21524
|
userCount?: number;
|
|
21167
21525
|
/**
|
|
21526
|
+
* @remarks
|
|
21527
|
+
* The maximum storage capacity of the user\\"s personal disk when allocated. Unit: bytes.
|
|
21528
|
+
*
|
|
21168
21529
|
* @example
|
|
21169
21530
|
* 1024000
|
|
21170
21531
|
*/
|
|
@@ -21183,7 +21544,7 @@ export declare class CreateCloudDriveServiceRequest extends $dara.Model {
|
|
|
21183
21544
|
export declare class CreateCloudDriveServiceResponseBody extends $dara.Model {
|
|
21184
21545
|
/**
|
|
21185
21546
|
* @remarks
|
|
21186
|
-
* The ID of the
|
|
21547
|
+
* The ID of the enterprise drive.
|
|
21187
21548
|
*
|
|
21188
21549
|
* @example
|
|
21189
21550
|
* cn-hangzhou+cds-7782057786
|
|
@@ -21198,30 +21559,64 @@ export declare class CreateCloudDriveServiceResponseBody extends $dara.Model {
|
|
|
21198
21559
|
*/
|
|
21199
21560
|
cdsName?: string;
|
|
21200
21561
|
/**
|
|
21562
|
+
* @remarks
|
|
21563
|
+
* The ID of the CEN instance.
|
|
21564
|
+
*
|
|
21565
|
+
* > To allow end users to connect to cloud computers via virtual private clouds (VPCs), attach your office network to a CEN instance. The CEN instance connects to your on-premises network through VPN Gateway or Express Connect.
|
|
21566
|
+
*
|
|
21201
21567
|
* @example
|
|
21202
21568
|
* cen-638u3wxds9snyc****
|
|
21203
21569
|
*/
|
|
21204
21570
|
cenId?: string;
|
|
21571
|
+
/**
|
|
21572
|
+
* @remarks
|
|
21573
|
+
* The existing enterprise drive or its order that conflicts with the enterprise drive being created.
|
|
21574
|
+
*/
|
|
21205
21575
|
conflictCdsAndOrder?: CreateCloudDriveServiceResponseBodyConflictCdsAndOrder;
|
|
21206
21576
|
/**
|
|
21577
|
+
* @remarks
|
|
21578
|
+
* The domain name of the enterprise AD office network.
|
|
21579
|
+
*
|
|
21207
21580
|
* @example
|
|
21208
21581
|
* test1.local
|
|
21209
21582
|
*/
|
|
21210
21583
|
domainName?: string;
|
|
21584
|
+
/**
|
|
21585
|
+
* @remarks
|
|
21586
|
+
* The error code.
|
|
21587
|
+
*
|
|
21588
|
+
* @example
|
|
21589
|
+
* ExistConflictCds
|
|
21590
|
+
*/
|
|
21211
21591
|
errorCode?: string;
|
|
21212
21592
|
/**
|
|
21213
21593
|
* @remarks
|
|
21214
|
-
* The maximum capacity of
|
|
21594
|
+
* The maximum storage capacity of the enterprise drive. Unit: bytes.
|
|
21215
21595
|
*
|
|
21216
21596
|
* @example
|
|
21217
21597
|
* 213674622976
|
|
21218
21598
|
*/
|
|
21219
21599
|
maxSize?: string;
|
|
21220
21600
|
/**
|
|
21601
|
+
* @remarks
|
|
21602
|
+
* The type of the office network.
|
|
21603
|
+
*
|
|
21604
|
+
* Valid values:
|
|
21605
|
+
*
|
|
21606
|
+
* * SIMPLE: convenience office network.
|
|
21607
|
+
* * AD_CONNECTOR: enterprise AD office network.
|
|
21608
|
+
*
|
|
21221
21609
|
* @example
|
|
21222
21610
|
* AD_CONNECTOR
|
|
21223
21611
|
*/
|
|
21224
21612
|
officeSiteType?: string;
|
|
21613
|
+
/**
|
|
21614
|
+
* @remarks
|
|
21615
|
+
* The ID of the order. You can obtain an order ID on the Orders page in the Expenses and Costs console.
|
|
21616
|
+
*
|
|
21617
|
+
* @example
|
|
21618
|
+
* 214552063030752
|
|
21619
|
+
*/
|
|
21225
21620
|
orderId?: string;
|
|
21226
21621
|
/**
|
|
21227
21622
|
* @remarks
|
|
@@ -21348,7 +21743,7 @@ export declare class CreateCloudDriveUsersResponse extends $dara.Model {
|
|
|
21348
21743
|
export declare class CreateConfigGroupRequest extends $dara.Model {
|
|
21349
21744
|
/**
|
|
21350
21745
|
* @remarks
|
|
21351
|
-
* The
|
|
21746
|
+
* The scheduled task groups.
|
|
21352
21747
|
*/
|
|
21353
21748
|
configTimers?: CreateConfigGroupRequestConfigTimers[];
|
|
21354
21749
|
/**
|
|
@@ -21393,11 +21788,11 @@ export declare class CreateConfigGroupRequest extends $dara.Model {
|
|
|
21393
21788
|
regionId?: string;
|
|
21394
21789
|
/**
|
|
21395
21790
|
* @remarks
|
|
21396
|
-
* The type
|
|
21791
|
+
* The group type.
|
|
21397
21792
|
*
|
|
21398
21793
|
* Valid value:
|
|
21399
21794
|
*
|
|
21400
|
-
* * Timer:
|
|
21795
|
+
* * Timer: a scheduled task group.
|
|
21401
21796
|
*
|
|
21402
21797
|
* This parameter is required.
|
|
21403
21798
|
*
|
|
@@ -23041,6 +23436,7 @@ export declare class CreateImageRequest extends $dara.Model {
|
|
|
23041
23436
|
* false
|
|
23042
23437
|
*/
|
|
23043
23438
|
autoCleanUserdata?: boolean;
|
|
23439
|
+
dataSnapshotIds?: string[];
|
|
23044
23440
|
/**
|
|
23045
23441
|
* @remarks
|
|
23046
23442
|
* The description of the custom image. The description must be 2 to 256 characters in length. It cannot start with `http://` or `https://`.
|
|
@@ -25223,6 +25619,13 @@ export declare class DeleteCdsFileResponse extends $dara.Model {
|
|
|
25223
25619
|
export declare class DeleteCenterPolicyRequest extends $dara.Model {
|
|
25224
25620
|
/**
|
|
25225
25621
|
* @remarks
|
|
25622
|
+
* The business type.
|
|
25623
|
+
*
|
|
25624
|
+
* Valid values:
|
|
25625
|
+
*
|
|
25626
|
+
* * 1: public cloud.
|
|
25627
|
+
* * 8: commercial edition.
|
|
25628
|
+
*
|
|
25226
25629
|
* This parameter is required.
|
|
25227
25630
|
*
|
|
25228
25631
|
* @example
|
|
@@ -25231,11 +25634,15 @@ export declare class DeleteCenterPolicyRequest extends $dara.Model {
|
|
|
25231
25634
|
businessType?: number;
|
|
25232
25635
|
/**
|
|
25233
25636
|
* @remarks
|
|
25637
|
+
* The policy IDs.
|
|
25638
|
+
*
|
|
25234
25639
|
* This parameter is required.
|
|
25235
25640
|
*/
|
|
25236
25641
|
policyGroupIds?: string[];
|
|
25237
25642
|
/**
|
|
25238
25643
|
* @remarks
|
|
25644
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
25645
|
+
*
|
|
25239
25646
|
* This parameter is required.
|
|
25240
25647
|
*
|
|
25241
25648
|
* @example
|
|
@@ -25244,6 +25651,13 @@ export declare class DeleteCenterPolicyRequest extends $dara.Model {
|
|
|
25244
25651
|
regionId?: string;
|
|
25245
25652
|
/**
|
|
25246
25653
|
* @remarks
|
|
25654
|
+
* The resource type.
|
|
25655
|
+
*
|
|
25656
|
+
* Valid values:
|
|
25657
|
+
*
|
|
25658
|
+
* * app: cloud applications.
|
|
25659
|
+
* * desktop: cloud computers.
|
|
25660
|
+
*
|
|
25247
25661
|
* This parameter is required.
|
|
25248
25662
|
*
|
|
25249
25663
|
* @example
|
|
@@ -25263,6 +25677,9 @@ export declare class DeleteCenterPolicyRequest extends $dara.Model {
|
|
|
25263
25677
|
}
|
|
25264
25678
|
export declare class DeleteCenterPolicyResponseBody extends $dara.Model {
|
|
25265
25679
|
/**
|
|
25680
|
+
* @remarks
|
|
25681
|
+
* The request ID.
|
|
25682
|
+
*
|
|
25266
25683
|
* @example
|
|
25267
25684
|
* 72E47B1E-6B11-5A11-A27C-7A80F866****
|
|
25268
25685
|
*/
|
|
@@ -28192,7 +28609,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28192
28609
|
bundleId?: string[];
|
|
28193
28610
|
/**
|
|
28194
28611
|
* @remarks
|
|
28195
|
-
* The ID of the cloud computer
|
|
28612
|
+
* The ID of the cloud computer share.
|
|
28196
28613
|
*
|
|
28197
28614
|
* @example
|
|
28198
28615
|
* dg-2i8qxpv6t1a03****
|
|
@@ -28205,7 +28622,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28205
28622
|
desktopGroupIds?: string[];
|
|
28206
28623
|
/**
|
|
28207
28624
|
* @remarks
|
|
28208
|
-
* The name of the cloud computer
|
|
28625
|
+
* The name of the cloud computer share that you want to query. Fuzzy search is supported.
|
|
28209
28626
|
*
|
|
28210
28627
|
* @example
|
|
28211
28628
|
* testName
|
|
@@ -28213,7 +28630,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28213
28630
|
desktopGroupName?: string;
|
|
28214
28631
|
/**
|
|
28215
28632
|
* @remarks
|
|
28216
|
-
* The
|
|
28633
|
+
* The IDs of the users who can access the cloud computer share.
|
|
28217
28634
|
*/
|
|
28218
28635
|
endUserIds?: string[];
|
|
28219
28636
|
/**
|
|
@@ -28260,7 +28677,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28260
28677
|
nextToken?: string;
|
|
28261
28678
|
/**
|
|
28262
28679
|
* @remarks
|
|
28263
|
-
* The ID of the office network
|
|
28680
|
+
* The ID of the office network in which the cloud computer share resides.
|
|
28264
28681
|
*
|
|
28265
28682
|
* @example
|
|
28266
28683
|
* cn-hangzhou+dir-467671****
|
|
@@ -28268,14 +28685,14 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28268
28685
|
officeSiteId?: string;
|
|
28269
28686
|
/**
|
|
28270
28687
|
* @remarks
|
|
28271
|
-
* The type of the cloud computer
|
|
28688
|
+
* The type of the cloud computer share.
|
|
28272
28689
|
*
|
|
28273
28690
|
* > This parameter is not publicly available.
|
|
28274
28691
|
*
|
|
28275
28692
|
* Valid values:
|
|
28276
28693
|
*
|
|
28277
|
-
* * 0:
|
|
28278
|
-
* * 1:
|
|
28694
|
+
* * 0: a single-session many-to-many share.
|
|
28695
|
+
* * 1: a multi-session many-to-many share.
|
|
28279
28696
|
*
|
|
28280
28697
|
* @example
|
|
28281
28698
|
* 0
|
|
@@ -28283,16 +28700,16 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28283
28700
|
ownType?: number;
|
|
28284
28701
|
/**
|
|
28285
28702
|
* @remarks
|
|
28286
|
-
* The subscription duration of the cloud computer
|
|
28703
|
+
* The subscription duration of the cloud computer share. The unit is specified by `PeriodUnit`.
|
|
28287
28704
|
*
|
|
28288
|
-
* * Valid values if
|
|
28705
|
+
* * Valid values if you set `PeriodUnit` to `Month`:
|
|
28289
28706
|
*
|
|
28290
28707
|
* * 1
|
|
28291
28708
|
* * 2
|
|
28292
28709
|
* * 3
|
|
28293
28710
|
* * 6
|
|
28294
28711
|
*
|
|
28295
|
-
* * Valid values if
|
|
28712
|
+
* * Valid values if you set `PeriodUnit` to `Year`:
|
|
28296
28713
|
*
|
|
28297
28714
|
* * 1
|
|
28298
28715
|
* * 2
|
|
@@ -28314,7 +28731,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28314
28731
|
periodUnit?: string;
|
|
28315
28732
|
/**
|
|
28316
28733
|
* @remarks
|
|
28317
|
-
* The ID of the policy
|
|
28734
|
+
* The ID of the applied policy.
|
|
28318
28735
|
*
|
|
28319
28736
|
* @example
|
|
28320
28737
|
* pg-53iyi2aar0nd6****
|
|
@@ -28358,13 +28775,13 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28358
28775
|
regionId?: string;
|
|
28359
28776
|
/**
|
|
28360
28777
|
* @remarks
|
|
28361
|
-
* The
|
|
28778
|
+
* The status of the cloud computer share.
|
|
28362
28779
|
*
|
|
28363
28780
|
* Valid values:
|
|
28364
28781
|
*
|
|
28365
|
-
* * 0: unpaid
|
|
28366
|
-
* * 1:
|
|
28367
|
-
* * 2:
|
|
28782
|
+
* * 0: The cloud computer share is unpaid.
|
|
28783
|
+
* * 1: The cloud computer share is normal.
|
|
28784
|
+
* * 2: The cloud computer share expired, or your account has an overdue payment.
|
|
28368
28785
|
*
|
|
28369
28786
|
* @example
|
|
28370
28787
|
* 1
|
|
@@ -28372,7 +28789,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28372
28789
|
status?: number;
|
|
28373
28790
|
/**
|
|
28374
28791
|
* @remarks
|
|
28375
|
-
* The tags
|
|
28792
|
+
* The tags that you want to add to the cloud computer share. You can specify 1 to 20 tags.
|
|
28376
28793
|
*/
|
|
28377
28794
|
tag?: DescribeDesktopGroupsRequestTag[];
|
|
28378
28795
|
static names(): {
|
|
@@ -28389,7 +28806,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28389
28806
|
export declare class DescribeDesktopGroupsResponseBody extends $dara.Model {
|
|
28390
28807
|
/**
|
|
28391
28808
|
* @remarks
|
|
28392
|
-
* The cloud computer
|
|
28809
|
+
* The cloud computer shares.
|
|
28393
28810
|
*/
|
|
28394
28811
|
desktopGroups?: DescribeDesktopGroupsResponseBodyDesktopGroups[];
|
|
28395
28812
|
/**
|
|
@@ -31487,22 +31904,58 @@ export declare class DescribeKmsKeysResponse extends $dara.Model {
|
|
|
31487
31904
|
}
|
|
31488
31905
|
export declare class DescribeModificationPriceRequest extends $dara.Model {
|
|
31489
31906
|
/**
|
|
31907
|
+
* @remarks
|
|
31908
|
+
* The maximum public bandwidth. Unit: Mbit/s.
|
|
31909
|
+
*
|
|
31910
|
+
* > Valid values when PayByTraffic is set to PayByBandwidth: 10 to 1000.
|
|
31911
|
+
*
|
|
31490
31912
|
* @example
|
|
31491
31913
|
* 20
|
|
31492
31914
|
*/
|
|
31493
31915
|
bandwidth?: number;
|
|
31494
31916
|
/**
|
|
31917
|
+
* @remarks
|
|
31918
|
+
* The ID of either the monthly subscription cloud computer with unlimited hours or the premium bandwidth plan.
|
|
31919
|
+
*
|
|
31495
31920
|
* @example
|
|
31496
31921
|
* ecd-0gfv2z3sf95zvt****
|
|
31497
31922
|
*/
|
|
31498
31923
|
instanceId?: string;
|
|
31499
31924
|
/**
|
|
31925
|
+
* @remarks
|
|
31926
|
+
* The specifications.
|
|
31927
|
+
*
|
|
31928
|
+
* * Valid values when you set `ResourceType` to `Desktop`:
|
|
31929
|
+
*
|
|
31930
|
+
* * ecd.basic.small
|
|
31931
|
+
* * ecd.basic.large
|
|
31932
|
+
* * ecd.advanced.large
|
|
31933
|
+
* * ecd.advanced.xlarge
|
|
31934
|
+
* * ecd.performance.2xlarge
|
|
31935
|
+
* * ecd.graphics.xlarge
|
|
31936
|
+
* * ecd.graphics.2xlarge
|
|
31937
|
+
* * ecd.advanced.xlarge_s8d2
|
|
31938
|
+
* * ecd.advanced.xlarge_s8d7
|
|
31939
|
+
* * ecd.graphics.1g72c
|
|
31940
|
+
* * eds.general.2c2g
|
|
31941
|
+
* * eds.general.2c4g
|
|
31942
|
+
* * eds.general.2c8g
|
|
31943
|
+
* * eds.general.4c8g
|
|
31944
|
+
* * eds.general.4c16g
|
|
31945
|
+
* * eds.general.8c16g
|
|
31946
|
+
* * eds.general.8c32g
|
|
31947
|
+
* * eds.general.16c32g
|
|
31948
|
+
*
|
|
31949
|
+
* * You can skip this parameter if `ResourceType` is set to `NetworkPackage`.
|
|
31950
|
+
*
|
|
31500
31951
|
* @example
|
|
31501
31952
|
* eds.enterprise_office.8c16g
|
|
31502
31953
|
*/
|
|
31503
31954
|
instanceType?: string;
|
|
31504
31955
|
/**
|
|
31505
31956
|
* @remarks
|
|
31957
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
31958
|
+
*
|
|
31506
31959
|
* This parameter is required.
|
|
31507
31960
|
*
|
|
31508
31961
|
* @example
|
|
@@ -31510,16 +31963,33 @@ export declare class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
31510
31963
|
*/
|
|
31511
31964
|
regionId?: string;
|
|
31512
31965
|
/**
|
|
31966
|
+
* @remarks
|
|
31967
|
+
* The resource type. The required parameters depend on the resource type.
|
|
31968
|
+
*
|
|
31969
|
+
* * When `ResourceType` is set to `Desktop`, the required parameters are `InstanceType`, `RootDiskSizeGib`, and `UserDiskSizeGib`.
|
|
31970
|
+
* * When `ResourceType` is set to `NetworkPackage`, the required parameter is `Bandwidth`.
|
|
31971
|
+
*
|
|
31972
|
+
* Valid values:
|
|
31973
|
+
*
|
|
31974
|
+
* * Desktop (default): cloud computers.
|
|
31975
|
+
* * NetworkPackage: premium bandwidth plans.
|
|
31976
|
+
*
|
|
31513
31977
|
* @example
|
|
31514
31978
|
* Desktop
|
|
31515
31979
|
*/
|
|
31516
31980
|
resourceType?: string;
|
|
31517
31981
|
/**
|
|
31982
|
+
* @remarks
|
|
31983
|
+
* The size of the system disk. Unit: GiB.
|
|
31984
|
+
*
|
|
31518
31985
|
* @example
|
|
31519
31986
|
* 80
|
|
31520
31987
|
*/
|
|
31521
31988
|
rootDiskSizeGib?: number;
|
|
31522
31989
|
/**
|
|
31990
|
+
* @remarks
|
|
31991
|
+
* The size of the data disk. Unit: GiB.
|
|
31992
|
+
*
|
|
31523
31993
|
* @example
|
|
31524
31994
|
* 50
|
|
31525
31995
|
*/
|
|
@@ -31536,8 +32006,15 @@ export declare class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
31536
32006
|
});
|
|
31537
32007
|
}
|
|
31538
32008
|
export declare class DescribeModificationPriceResponseBody extends $dara.Model {
|
|
32009
|
+
/**
|
|
32010
|
+
* @remarks
|
|
32011
|
+
* The price details.
|
|
32012
|
+
*/
|
|
31539
32013
|
priceInfo?: DescribeModificationPriceResponseBodyPriceInfo;
|
|
31540
32014
|
/**
|
|
32015
|
+
* @remarks
|
|
32016
|
+
* The request ID.
|
|
32017
|
+
*
|
|
31541
32018
|
* @example
|
|
31542
32019
|
* 48174475-5EB2-5F99-A9E9-6F892D645****
|
|
31543
32020
|
*/
|
|
@@ -31980,7 +32457,7 @@ export declare class DescribeOfficeSitesResponseBody extends $dara.Model {
|
|
|
31980
32457
|
nextToken?: string;
|
|
31981
32458
|
/**
|
|
31982
32459
|
* @remarks
|
|
31983
|
-
* The
|
|
32460
|
+
* The office networks.
|
|
31984
32461
|
*/
|
|
31985
32462
|
officeSites?: DescribeOfficeSitesResponseBodyOfficeSites[];
|
|
31986
32463
|
/**
|
|
@@ -32791,23 +33268,52 @@ export declare class DescribeRegionsResponse extends $dara.Model {
|
|
|
32791
33268
|
}
|
|
32792
33269
|
export declare class DescribeRenewalPriceRequest extends $dara.Model {
|
|
32793
33270
|
/**
|
|
33271
|
+
* @remarks
|
|
33272
|
+
* The instance ID. The value you specify depends on the resource type (ResourceType) you\\"re querying the renewal price for.
|
|
33273
|
+
*
|
|
33274
|
+
* * When `ResourceType` is set to `Desktop`, you must provide the cloud computer ID as the value of `InstanceId`.
|
|
33275
|
+
* * When `ResourceType` is set to `DesktopGroup`, you must provide the share ID as the value of `InstanceId`.
|
|
33276
|
+
* * When `ResourceType` is set to `Bandwidth`, you must provide the ID of the premium bandwidth plan as the value of `InstanceId`.
|
|
33277
|
+
*
|
|
32794
33278
|
* @example
|
|
32795
33279
|
* ecd-6ldllk9zxcpfhs****
|
|
32796
33280
|
*/
|
|
32797
33281
|
instanceId?: string;
|
|
33282
|
+
/**
|
|
33283
|
+
* @remarks
|
|
33284
|
+
* The instance IDs. The value you specify depends on the resource type (ResourceType) you\\"re querying the renewal price for.
|
|
33285
|
+
*/
|
|
32798
33286
|
instanceIds?: string[];
|
|
32799
33287
|
/**
|
|
33288
|
+
* @remarks
|
|
33289
|
+
* The renewal duration. The valid values for this parameter depend on the value of `PeriodUnit`.
|
|
33290
|
+
*
|
|
33291
|
+
* * If you set `PeriodUnit` to `Month`, set the value of this parameter to 1, 2, 3, or 6.
|
|
33292
|
+
* * If you set `PeriodUnit` to `Year`, set the value of this parameter to 1, 2, or 3.
|
|
33293
|
+
*
|
|
33294
|
+
* Default value: 1.
|
|
33295
|
+
*
|
|
32800
33296
|
* @example
|
|
32801
33297
|
* 1
|
|
32802
33298
|
*/
|
|
32803
33299
|
period?: number;
|
|
32804
33300
|
/**
|
|
33301
|
+
* @remarks
|
|
33302
|
+
* The unit of the renewal duration specified by `Period`.
|
|
33303
|
+
*
|
|
33304
|
+
* Valid values:
|
|
33305
|
+
*
|
|
33306
|
+
* * Month (default)
|
|
33307
|
+
* * Year
|
|
33308
|
+
*
|
|
32805
33309
|
* @example
|
|
32806
33310
|
* Month
|
|
32807
33311
|
*/
|
|
32808
33312
|
periodUnit?: string;
|
|
32809
33313
|
/**
|
|
32810
33314
|
* @remarks
|
|
33315
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
33316
|
+
*
|
|
32811
33317
|
* This parameter is required.
|
|
32812
33318
|
*
|
|
32813
33319
|
* @example
|
|
@@ -32815,6 +33321,15 @@ export declare class DescribeRenewalPriceRequest extends $dara.Model {
|
|
|
32815
33321
|
*/
|
|
32816
33322
|
regionId?: string;
|
|
32817
33323
|
/**
|
|
33324
|
+
* @remarks
|
|
33325
|
+
* The resource type.
|
|
33326
|
+
*
|
|
33327
|
+
* Valid values:
|
|
33328
|
+
*
|
|
33329
|
+
* * Desktop (default): cloud computers.
|
|
33330
|
+
* * Bandwidth: premium bandwidth plans.
|
|
33331
|
+
* * DesktopGroup: cloud computer shares.
|
|
33332
|
+
*
|
|
32818
33333
|
* @example
|
|
32819
33334
|
* Desktop
|
|
32820
33335
|
*/
|
|
@@ -32831,8 +33346,15 @@ export declare class DescribeRenewalPriceRequest extends $dara.Model {
|
|
|
32831
33346
|
});
|
|
32832
33347
|
}
|
|
32833
33348
|
export declare class DescribeRenewalPriceResponseBody extends $dara.Model {
|
|
33349
|
+
/**
|
|
33350
|
+
* @remarks
|
|
33351
|
+
* The price details.
|
|
33352
|
+
*/
|
|
32834
33353
|
priceInfo?: DescribeRenewalPriceResponseBodyPriceInfo;
|
|
32835
33354
|
/**
|
|
33355
|
+
* @remarks
|
|
33356
|
+
* The request ID.
|
|
33357
|
+
*
|
|
32836
33358
|
* @example
|
|
32837
33359
|
* 72E47B1E-6B11-5A11-A27C-7A80F866****
|
|
32838
33360
|
*/
|
|
@@ -32867,17 +33389,28 @@ export declare class DescribeRenewalPriceResponse extends $dara.Model {
|
|
|
32867
33389
|
}
|
|
32868
33390
|
export declare class DescribeResourceByCenterPolicyIdRequest extends $dara.Model {
|
|
32869
33391
|
/**
|
|
33392
|
+
* @remarks
|
|
33393
|
+
* The number of entries per page.
|
|
33394
|
+
*
|
|
33395
|
+
* * Maximum value: 100.
|
|
33396
|
+
* * Default value: 10.
|
|
33397
|
+
*
|
|
32870
33398
|
* @example
|
|
32871
33399
|
* 10
|
|
32872
33400
|
*/
|
|
32873
33401
|
maxResults?: number;
|
|
32874
33402
|
/**
|
|
33403
|
+
* @remarks
|
|
33404
|
+
* A pagination token.
|
|
33405
|
+
*
|
|
32875
33406
|
* @example
|
|
32876
33407
|
* AAAAAV3MpHK1AP0pfERHZN5pu6l69tQX7yFxx6/4dbooBAOc
|
|
32877
33408
|
*/
|
|
32878
33409
|
nextToken?: string;
|
|
32879
33410
|
/**
|
|
32880
33411
|
* @remarks
|
|
33412
|
+
* The policy ID.
|
|
33413
|
+
*
|
|
32881
33414
|
* This parameter is required.
|
|
32882
33415
|
*
|
|
32883
33416
|
* @example
|
|
@@ -32885,11 +33418,24 @@ export declare class DescribeResourceByCenterPolicyIdRequest extends $dara.Model
|
|
|
32885
33418
|
*/
|
|
32886
33419
|
policyGroupId?: string;
|
|
32887
33420
|
/**
|
|
33421
|
+
* @remarks
|
|
33422
|
+
* The service type.
|
|
33423
|
+
*
|
|
33424
|
+
* Valid values:
|
|
33425
|
+
*
|
|
33426
|
+
* * app: cloud applications.
|
|
33427
|
+
* * resourceGroup: resource groups.
|
|
33428
|
+
* * desktop: cloud computers.
|
|
33429
|
+
* * desktopGroup: cloud computer shares.
|
|
33430
|
+
*
|
|
32888
33431
|
* @example
|
|
32889
33432
|
* desktop
|
|
32890
33433
|
*/
|
|
32891
33434
|
productType?: string;
|
|
32892
33435
|
/**
|
|
33436
|
+
* @remarks
|
|
33437
|
+
* The resource ID.
|
|
33438
|
+
*
|
|
32893
33439
|
* @example
|
|
32894
33440
|
* ecd-ia2zw38bi6cm7****
|
|
32895
33441
|
*/
|
|
@@ -32907,20 +33453,33 @@ export declare class DescribeResourceByCenterPolicyIdRequest extends $dara.Model
|
|
|
32907
33453
|
}
|
|
32908
33454
|
export declare class DescribeResourceByCenterPolicyIdResponseBody extends $dara.Model {
|
|
32909
33455
|
/**
|
|
33456
|
+
* @remarks
|
|
33457
|
+
* The total number of resources.
|
|
33458
|
+
*
|
|
32910
33459
|
* @example
|
|
32911
33460
|
* 2
|
|
32912
33461
|
*/
|
|
32913
33462
|
count?: string;
|
|
32914
33463
|
/**
|
|
33464
|
+
* @remarks
|
|
33465
|
+
* A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
|
|
33466
|
+
*
|
|
32915
33467
|
* @example
|
|
32916
33468
|
* caeba0bbb2be03f84eb48b699f0a4883
|
|
32917
33469
|
*/
|
|
32918
33470
|
nextToken?: string;
|
|
32919
33471
|
/**
|
|
33472
|
+
* @remarks
|
|
33473
|
+
* The request ID.
|
|
33474
|
+
*
|
|
32920
33475
|
* @example
|
|
32921
33476
|
* 48174475-5EB2-5F99-A9E9-6F892D645****
|
|
32922
33477
|
*/
|
|
32923
33478
|
requestId?: string;
|
|
33479
|
+
/**
|
|
33480
|
+
* @remarks
|
|
33481
|
+
* The resources.
|
|
33482
|
+
*/
|
|
32924
33483
|
resourceModelList?: DescribeResourceByCenterPolicyIdResponseBodyResourceModelList[];
|
|
32925
33484
|
static names(): {
|
|
32926
33485
|
[key: string]: string;
|
|
@@ -33117,7 +33676,7 @@ export declare class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
33117
33676
|
nextToken?: string;
|
|
33118
33677
|
/**
|
|
33119
33678
|
* @remarks
|
|
33120
|
-
* The region ID. You can call the [DescribeRegions](
|
|
33679
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
33121
33680
|
*
|
|
33122
33681
|
* This parameter is required.
|
|
33123
33682
|
*
|
|
@@ -33177,27 +33736,14 @@ export declare class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
33177
33736
|
snapshotType?: string;
|
|
33178
33737
|
/**
|
|
33179
33738
|
* @remarks
|
|
33180
|
-
* The
|
|
33739
|
+
* The disk for which you want to create a snapshot.
|
|
33181
33740
|
*
|
|
33182
33741
|
* > The value of this parameter is not case-sensitive.
|
|
33183
33742
|
*
|
|
33184
33743
|
* Valid values:
|
|
33185
33744
|
*
|
|
33186
|
-
* * Data: data disk
|
|
33187
|
-
*
|
|
33188
|
-
* <!-- -->
|
|
33189
|
-
*
|
|
33190
|
-
* <!-- -->
|
|
33191
|
-
*
|
|
33192
|
-
* <!-- -->
|
|
33193
|
-
*
|
|
33194
|
-
* * System: system disk
|
|
33195
|
-
*
|
|
33196
|
-
* <!-- -->
|
|
33197
|
-
*
|
|
33198
|
-
* <!-- -->
|
|
33199
|
-
*
|
|
33200
|
-
* <!-- -->
|
|
33745
|
+
* * Data: the data disk.
|
|
33746
|
+
* * System: the system disk.
|
|
33201
33747
|
*
|
|
33202
33748
|
* @example
|
|
33203
33749
|
* system
|
|
@@ -33241,7 +33787,7 @@ export declare class DescribeSnapshotsResponseBody extends $dara.Model {
|
|
|
33241
33787
|
requestId?: string;
|
|
33242
33788
|
/**
|
|
33243
33789
|
* @remarks
|
|
33244
|
-
*
|
|
33790
|
+
* The snapshots.
|
|
33245
33791
|
*/
|
|
33246
33792
|
snapshots?: DescribeSnapshotsResponseBodySnapshots[];
|
|
33247
33793
|
static names(): {
|
|
@@ -33305,7 +33851,7 @@ export declare class DescribeTimerGroupRequest extends $dara.Model {
|
|
|
33305
33851
|
export declare class DescribeTimerGroupResponseBody extends $dara.Model {
|
|
33306
33852
|
/**
|
|
33307
33853
|
* @remarks
|
|
33308
|
-
* The information about the
|
|
33854
|
+
* The information about the scheduled task group.
|
|
33309
33855
|
*/
|
|
33310
33856
|
data?: DescribeTimerGroupResponseBodyData;
|
|
33311
33857
|
/**
|
|
@@ -33764,21 +34310,8 @@ export declare class DescribeUsersInGroupRequest extends $dara.Model {
|
|
|
33764
34310
|
* Valid values:
|
|
33765
34311
|
*
|
|
33766
34312
|
* * true (default)
|
|
33767
|
-
*
|
|
33768
|
-
* <!-- -->
|
|
33769
|
-
*
|
|
33770
|
-
* <!-- -->
|
|
33771
|
-
*
|
|
33772
|
-
* <!-- -->
|
|
33773
|
-
*
|
|
33774
34313
|
* * false
|
|
33775
34314
|
*
|
|
33776
|
-
* <!-- -->
|
|
33777
|
-
*
|
|
33778
|
-
* <!-- -->
|
|
33779
|
-
*
|
|
33780
|
-
* <!-- -->
|
|
33781
|
-
*
|
|
33782
34315
|
* @example
|
|
33783
34316
|
* false
|
|
33784
34317
|
*/
|
|
@@ -34609,7 +35142,7 @@ export declare class DownloadCdsFileResponse extends $dara.Model {
|
|
|
34609
35142
|
export declare class ExportClientEventsRequest extends $dara.Model {
|
|
34610
35143
|
/**
|
|
34611
35144
|
* @remarks
|
|
34612
|
-
* The
|
|
35145
|
+
* The cloud computer ID.
|
|
34613
35146
|
*
|
|
34614
35147
|
* @example
|
|
34615
35148
|
* ecd-gx2x1dhsmucyy****
|
|
@@ -34617,7 +35150,7 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34617
35150
|
desktopId?: string;
|
|
34618
35151
|
/**
|
|
34619
35152
|
* @remarks
|
|
34620
|
-
* The
|
|
35153
|
+
* The cloud computer name.
|
|
34621
35154
|
*
|
|
34622
35155
|
* @example
|
|
34623
35156
|
* testName
|
|
@@ -34643,17 +35176,18 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34643
35176
|
endUserId?: string;
|
|
34644
35177
|
/**
|
|
34645
35178
|
* @remarks
|
|
34646
|
-
* The type of event that you want to query.
|
|
35179
|
+
* The type of the event that you want to query. If you provide multiple values for EventTypes, the response will include events of all the specified types. If you provide no values for EventTypes and EventType, the response will include all events in the designated region.
|
|
34647
35180
|
*
|
|
34648
|
-
*
|
|
34649
|
-
* * DESKTOP_DISCONNECT: The desktop session is disconnected.
|
|
34650
|
-
* * DESKTOP_REBOOT: The cloud desktop is restarted.
|
|
34651
|
-
* * CLIENT_AD_LOGIN: The AD user logs on to the client.
|
|
34652
|
-
* * GET_CONNECTION_TICKET: The request to connect to the cloud desktop is sent.
|
|
34653
|
-
* * DESKTOP_START: The cloud desktop is started.
|
|
34654
|
-
* * DESKTOP_STOP: The cloud desktop is stopped.
|
|
35181
|
+
* Valid values:
|
|
34655
35182
|
*
|
|
34656
|
-
*
|
|
35183
|
+
* * DESKTOP_STOP: the shutdown event.
|
|
35184
|
+
* * GET_LITE_CONNECTION_TICKET: the event of retrieving the connection ticket.
|
|
35185
|
+
* * DESKTOP_DISCONNECT: the session disconnection event.
|
|
35186
|
+
* * CLIENT_LOGIN: the user logon event.
|
|
35187
|
+
* * GET_CONNECTION_TICKET: the connection credential retrieval event.
|
|
35188
|
+
* * DESKTOP_REBOOT: the restart event.
|
|
35189
|
+
* * DESKTOP_CONNECT: the session establishment event.
|
|
35190
|
+
* * DESKTOP_START: the start event.
|
|
34657
35191
|
*
|
|
34658
35192
|
* @example
|
|
34659
35193
|
* CLIENT_LOGIN
|
|
@@ -34661,17 +35195,17 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34661
35195
|
eventType?: string;
|
|
34662
35196
|
/**
|
|
34663
35197
|
* @remarks
|
|
34664
|
-
* The types of event.
|
|
35198
|
+
* The types of the events that you want to query. You can include multiple event types, and the response will return events matching the specified types or all events if none are specified.
|
|
34665
35199
|
*/
|
|
34666
35200
|
eventTypes?: string[];
|
|
34667
35201
|
/**
|
|
34668
35202
|
* @remarks
|
|
34669
|
-
* The language
|
|
35203
|
+
* The language displayed on the frontend page. The backend uses this setting to define the language of exported files.
|
|
34670
35204
|
*
|
|
34671
|
-
*
|
|
34672
|
-
* * `en-GB`: English (United Kingdom)
|
|
35205
|
+
* Valid values:
|
|
34673
35206
|
*
|
|
34674
|
-
*
|
|
35207
|
+
* * zh-CN: Simplified Chinese.
|
|
35208
|
+
* * en-GB: British English.
|
|
34675
35209
|
*
|
|
34676
35210
|
* @example
|
|
34677
35211
|
* zh-CN
|
|
@@ -34690,7 +35224,7 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34690
35224
|
maxResults?: number;
|
|
34691
35225
|
/**
|
|
34692
35226
|
* @remarks
|
|
34693
|
-
* The
|
|
35227
|
+
* The office network ID.
|
|
34694
35228
|
*
|
|
34695
35229
|
* @example
|
|
34696
35230
|
* cn-hangzhou+dir-363353****
|
|
@@ -34698,7 +35232,7 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34698
35232
|
officeSiteId?: string;
|
|
34699
35233
|
/**
|
|
34700
35234
|
* @remarks
|
|
34701
|
-
* The
|
|
35235
|
+
* The office network name.
|
|
34702
35236
|
*
|
|
34703
35237
|
* @example
|
|
34704
35238
|
* test
|
|
@@ -34706,7 +35240,7 @@ export declare class ExportClientEventsRequest extends $dara.Model {
|
|
|
34706
35240
|
officeSiteName?: string;
|
|
34707
35241
|
/**
|
|
34708
35242
|
* @remarks
|
|
34709
|
-
* The ID
|
|
35243
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
34710
35244
|
*
|
|
34711
35245
|
* This parameter is required.
|
|
34712
35246
|
*
|
|
@@ -34746,7 +35280,7 @@ export declare class ExportClientEventsResponseBody extends $dara.Model {
|
|
|
34746
35280
|
requestId?: string;
|
|
34747
35281
|
/**
|
|
34748
35282
|
* @remarks
|
|
34749
|
-
* The download
|
|
35283
|
+
* The download URL of the exported files.
|
|
34750
35284
|
*
|
|
34751
35285
|
* @example
|
|
34752
35286
|
* 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
|
|
@@ -35695,7 +36229,7 @@ export declare class GetCoordinateTicketResponse extends $dara.Model {
|
|
|
35695
36229
|
export declare class GetDesktopGroupDetailRequest extends $dara.Model {
|
|
35696
36230
|
/**
|
|
35697
36231
|
* @remarks
|
|
35698
|
-
* The ID of the cloud computer
|
|
36232
|
+
* The ID of the cloud computer share.
|
|
35699
36233
|
*
|
|
35700
36234
|
* This parameter is required.
|
|
35701
36235
|
*
|
|
@@ -35727,7 +36261,7 @@ export declare class GetDesktopGroupDetailRequest extends $dara.Model {
|
|
|
35727
36261
|
export declare class GetDesktopGroupDetailResponseBody extends $dara.Model {
|
|
35728
36262
|
/**
|
|
35729
36263
|
* @remarks
|
|
35730
|
-
* The
|
|
36264
|
+
* The cloud computers within the share.
|
|
35731
36265
|
*/
|
|
35732
36266
|
desktops?: GetDesktopGroupDetailResponseBodyDesktops;
|
|
35733
36267
|
/**
|
|
@@ -39778,12 +40312,12 @@ export declare class ModifyDesktopChargeTypeResponse extends $dara.Model {
|
|
|
39778
40312
|
export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
39779
40313
|
/**
|
|
39780
40314
|
* @remarks
|
|
39781
|
-
* Specifies whether
|
|
40315
|
+
* Specifies whether to enable auto-creation of cloud computers for the subscription cloud computer share. You must specify this parameter when `ChargeType` is set to `PrePaid`.
|
|
39782
40316
|
*
|
|
39783
40317
|
* Valid values:
|
|
39784
40318
|
*
|
|
39785
|
-
* * 0:
|
|
39786
|
-
* * 1:
|
|
40319
|
+
* * 0: disable auto-creation of cloud computers.
|
|
40320
|
+
* * 1: enables auto-creation of cloud computers.
|
|
39787
40321
|
*
|
|
39788
40322
|
* @example
|
|
39789
40323
|
* 1
|
|
@@ -39791,12 +40325,12 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39791
40325
|
allowAutoSetup?: number;
|
|
39792
40326
|
/**
|
|
39793
40327
|
* @remarks
|
|
39794
|
-
* The number of cloud computers that can be reserved
|
|
40328
|
+
* The maximum number of standby cloud computers that can be reserved within the pay-as-you-go cloud computer share. You must specify this property only when `ChargeType` is set to `PostPaid`. Valid values:
|
|
39795
40329
|
*
|
|
39796
|
-
* * 0: does not
|
|
39797
|
-
* * N:
|
|
40330
|
+
* * 0: does not reserve any cloud computer.
|
|
40331
|
+
* * N: reserves N cloud computers (1≤ N ≤ 100).
|
|
39798
40332
|
*
|
|
39799
|
-
* >
|
|
40333
|
+
* > Setting this parameter to 0 means no cloud computers will be reserved within the cloud computer share. In this case, the system must create, start, and assign cloud computers to end users upon request, which can be time-consuming. To improve user experience, we recommend that you reserve a specific number of cloud computers.
|
|
39800
40334
|
*
|
|
39801
40335
|
* @example
|
|
39802
40336
|
* 1
|
|
@@ -39804,9 +40338,9 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39804
40338
|
allowBufferCount?: number;
|
|
39805
40339
|
/**
|
|
39806
40340
|
* @remarks
|
|
39807
|
-
* The number of concurrent sessions
|
|
40341
|
+
* The number of concurrent sessions allowed for each cloud computer within the multi-session many-to-many share.
|
|
39808
40342
|
*
|
|
39809
|
-
* > This parameter is
|
|
40343
|
+
* > This parameter is not publicly available.
|
|
39810
40344
|
*
|
|
39811
40345
|
* @example
|
|
39812
40346
|
* 1
|
|
@@ -39814,8 +40348,8 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39814
40348
|
bindAmount?: number;
|
|
39815
40349
|
/**
|
|
39816
40350
|
* @remarks
|
|
39817
|
-
* *
|
|
39818
|
-
* * For
|
|
40351
|
+
* * For subscription cloud computer shares, this parameter specifies the number of purchased cloud computers. Valid values: 0 to 200.
|
|
40352
|
+
* * For pay-as-you-go cloud computer shares, this parameter specifies the minimum number of cloud computers created in the initial batch. Default value: 1. Valid values: 0 to `MaxDesktopsCount`.
|
|
39819
40353
|
*
|
|
39820
40354
|
* @example
|
|
39821
40355
|
* 5
|
|
@@ -39823,27 +40357,14 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39823
40357
|
buyDesktopsCount?: number;
|
|
39824
40358
|
/**
|
|
39825
40359
|
* @remarks
|
|
39826
|
-
* The
|
|
40360
|
+
* The type of the cloud computer share.
|
|
39827
40361
|
*
|
|
39828
|
-
* > This parameter is
|
|
40362
|
+
* > This parameter is not publicly available.
|
|
39829
40363
|
*
|
|
39830
40364
|
* Valid values:
|
|
39831
40365
|
*
|
|
39832
|
-
* * teacher
|
|
39833
|
-
*
|
|
39834
|
-
* <!-- -->
|
|
39835
|
-
*
|
|
39836
|
-
* <!-- -->
|
|
39837
|
-
*
|
|
39838
|
-
* <!-- -->
|
|
39839
|
-
*
|
|
39840
|
-
* * student
|
|
39841
|
-
*
|
|
39842
|
-
* <!-- -->
|
|
39843
|
-
*
|
|
39844
|
-
* <!-- -->
|
|
39845
|
-
*
|
|
39846
|
-
* <!-- -->
|
|
40366
|
+
* * teacher: teacher-oriented.
|
|
40367
|
+
* * student: student-oriented.
|
|
39847
40368
|
*
|
|
39848
40369
|
* @example
|
|
39849
40370
|
* teacher
|
|
@@ -39867,7 +40388,7 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39867
40388
|
connectDuration?: number;
|
|
39868
40389
|
/**
|
|
39869
40390
|
* @remarks
|
|
39870
|
-
* The ID of the cloud computer
|
|
40391
|
+
* The ID of the cloud computer share.
|
|
39871
40392
|
*
|
|
39872
40393
|
* This parameter is required.
|
|
39873
40394
|
*
|
|
@@ -39877,7 +40398,7 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39877
40398
|
desktopGroupId?: string;
|
|
39878
40399
|
/**
|
|
39879
40400
|
* @remarks
|
|
39880
|
-
* The name of the cloud computer
|
|
40401
|
+
* The name of the cloud computer share.
|
|
39881
40402
|
*
|
|
39882
40403
|
* @example
|
|
39883
40404
|
* desktopGroupName1
|
|
@@ -39933,14 +40454,14 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39933
40454
|
keepDuration?: number;
|
|
39934
40455
|
/**
|
|
39935
40456
|
* @remarks
|
|
39936
|
-
* The load balancing policy
|
|
40457
|
+
* The load balancing policy for the multi-session many-to-many share.
|
|
39937
40458
|
*
|
|
39938
|
-
* > This parameter is
|
|
40459
|
+
* > This parameter is not publicly available.
|
|
39939
40460
|
*
|
|
39940
40461
|
* Valid values:
|
|
39941
40462
|
*
|
|
39942
|
-
* * 0: depth
|
|
39943
|
-
* * 1: breadth
|
|
40463
|
+
* * 0: depth first.
|
|
40464
|
+
* * 1: breadth first.
|
|
39944
40465
|
*
|
|
39945
40466
|
* @example
|
|
39946
40467
|
* 0
|
|
@@ -39948,7 +40469,7 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39948
40469
|
loadPolicy?: number;
|
|
39949
40470
|
/**
|
|
39950
40471
|
* @remarks
|
|
39951
|
-
* The maximum number of cloud computers
|
|
40472
|
+
* The maximum number of cloud computers allowed in the pay-as-you-go cloud computer share. Valid values: 0 to 500.
|
|
39952
40473
|
*
|
|
39953
40474
|
* @example
|
|
39954
40475
|
* 10
|
|
@@ -39956,7 +40477,7 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39956
40477
|
maxDesktopsCount?: number;
|
|
39957
40478
|
/**
|
|
39958
40479
|
* @remarks
|
|
39959
|
-
* The maximum number of cloud computers
|
|
40480
|
+
* The maximum number of auto-created cloud computers allowed in the subscription cloud computer share. You must specify this parameter when `ChargeType` is set to `PrePaid`. Default value: 1. Valid values: 0 to `MaxDesktopsCount`.
|
|
39960
40481
|
*
|
|
39961
40482
|
* @example
|
|
39962
40483
|
* 1
|
|
@@ -39995,13 +40516,13 @@ export declare class ModifyDesktopGroupRequest extends $dara.Model {
|
|
|
39995
40516
|
profileFollowSwitch?: boolean;
|
|
39996
40517
|
/**
|
|
39997
40518
|
* @remarks
|
|
39998
|
-
* The threshold for the ratio of connected sessions
|
|
40519
|
+
* The threshold for the ratio of connected sessions, which triggers automatic scaling of cloud computers within the multi-session many-to-many share. To calculate the ratio of connected sessions, use the following formula:
|
|
39999
40520
|
*
|
|
40000
40521
|
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`
|
|
40001
40522
|
*
|
|
40002
|
-
* If the ratio
|
|
40523
|
+
* If the session ratio exceeds the threshold, new cloud computers are provisioned. If it falls below the threshold, additional cloud computers are removed.
|
|
40003
40524
|
*
|
|
40004
|
-
* > This parameter is
|
|
40525
|
+
* > This parameter is not publicly available.
|
|
40005
40526
|
*
|
|
40006
40527
|
* @example
|
|
40007
40528
|
* 0.5
|
|
@@ -42541,11 +43062,21 @@ export declare class ModifyPolicyGroupResponse extends $dara.Model {
|
|
|
42541
43062
|
export declare class ModifyResourceCenterPolicyRequest extends $dara.Model {
|
|
42542
43063
|
/**
|
|
42543
43064
|
* @remarks
|
|
43065
|
+
* The IDs of the cloud computer policies that you want to associate with cloud computers.
|
|
43066
|
+
*
|
|
43067
|
+
* > You can specify up to one cloud computer policy that takes effect globally, and up to four cloud computer policies that apply to specific IP addresses. If multiple cloud computer policies are configured for global enforcement, only the earliest-associated policy will take effect
|
|
43068
|
+
*
|
|
42544
43069
|
* This parameter is required.
|
|
42545
43070
|
*/
|
|
42546
43071
|
policyGroupIds?: string[];
|
|
42547
43072
|
/**
|
|
42548
43073
|
* @remarks
|
|
43074
|
+
* The policy type.
|
|
43075
|
+
*
|
|
43076
|
+
* Valid values:
|
|
43077
|
+
*
|
|
43078
|
+
* * general: a general policy.
|
|
43079
|
+
*
|
|
42549
43080
|
* This parameter is required.
|
|
42550
43081
|
*
|
|
42551
43082
|
* @example
|
|
@@ -42554,6 +43085,15 @@ export declare class ModifyResourceCenterPolicyRequest extends $dara.Model {
|
|
|
42554
43085
|
policyGroupType?: string;
|
|
42555
43086
|
/**
|
|
42556
43087
|
* @remarks
|
|
43088
|
+
* The service type.
|
|
43089
|
+
*
|
|
43090
|
+
* Valid values:
|
|
43091
|
+
*
|
|
43092
|
+
* * app: cloud applications.
|
|
43093
|
+
* * resourceGroup: resource groups.
|
|
43094
|
+
* * desktop: cloud computers.
|
|
43095
|
+
* * desktopGroup: cloud computer shares.
|
|
43096
|
+
*
|
|
42557
43097
|
* This parameter is required.
|
|
42558
43098
|
*
|
|
42559
43099
|
* @example
|
|
@@ -42562,11 +43102,15 @@ export declare class ModifyResourceCenterPolicyRequest extends $dara.Model {
|
|
|
42562
43102
|
productType?: string;
|
|
42563
43103
|
/**
|
|
42564
43104
|
* @remarks
|
|
43105
|
+
* The resource IDs. You can specify up to 100 resource IDs.
|
|
43106
|
+
*
|
|
42565
43107
|
* This parameter is required.
|
|
42566
43108
|
*/
|
|
42567
43109
|
resourceIds?: string[];
|
|
42568
43110
|
/**
|
|
42569
43111
|
* @remarks
|
|
43112
|
+
* The region ID of the resource.
|
|
43113
|
+
*
|
|
42570
43114
|
* This parameter is required.
|
|
42571
43115
|
*
|
|
42572
43116
|
* @example
|
|
@@ -42575,6 +43119,13 @@ export declare class ModifyResourceCenterPolicyRequest extends $dara.Model {
|
|
|
42575
43119
|
resourceRegionId?: string;
|
|
42576
43120
|
/**
|
|
42577
43121
|
* @remarks
|
|
43122
|
+
* The resource type.
|
|
43123
|
+
*
|
|
43124
|
+
* Valid values:
|
|
43125
|
+
*
|
|
43126
|
+
* * app: cloud applications.
|
|
43127
|
+
* * desktop: cloud computers.
|
|
43128
|
+
*
|
|
42578
43129
|
* This parameter is required.
|
|
42579
43130
|
*
|
|
42580
43131
|
* @example
|
|
@@ -42593,8 +43144,15 @@ export declare class ModifyResourceCenterPolicyRequest extends $dara.Model {
|
|
|
42593
43144
|
});
|
|
42594
43145
|
}
|
|
42595
43146
|
export declare class ModifyResourceCenterPolicyResponseBody extends $dara.Model {
|
|
43147
|
+
/**
|
|
43148
|
+
* @remarks
|
|
43149
|
+
* The modification results.
|
|
43150
|
+
*/
|
|
42596
43151
|
modifyResults?: ModifyResourceCenterPolicyResponseBodyModifyResults[];
|
|
42597
43152
|
/**
|
|
43153
|
+
* @remarks
|
|
43154
|
+
* The request ID.
|
|
43155
|
+
*
|
|
42598
43156
|
* @example
|
|
42599
43157
|
* 51592A88-0F2C-55E6-AD2C-2AD9C10D****
|
|
42600
43158
|
*/
|
|
@@ -42630,7 +43188,7 @@ export declare class ModifyResourceCenterPolicyResponse extends $dara.Model {
|
|
|
42630
43188
|
export declare class ModifyTimerGroupRequest extends $dara.Model {
|
|
42631
43189
|
/**
|
|
42632
43190
|
* @remarks
|
|
42633
|
-
* The
|
|
43191
|
+
* The scheduled task groups.
|
|
42634
43192
|
*/
|
|
42635
43193
|
configTimers?: ModifyTimerGroupRequestConfigTimers[];
|
|
42636
43194
|
/**
|
|
@@ -43138,6 +43696,7 @@ export declare class RebootDesktopsResponse extends $dara.Model {
|
|
|
43138
43696
|
});
|
|
43139
43697
|
}
|
|
43140
43698
|
export declare class RebuildDesktopsRequest extends $dara.Model {
|
|
43699
|
+
afterStatus?: string;
|
|
43141
43700
|
/**
|
|
43142
43701
|
* @remarks
|
|
43143
43702
|
* The cloud computer IDs. You can specify the IDs of 1 to 20 cloud computers.
|
|
@@ -47091,7 +47650,10 @@ export default class Client extends OpenApi {
|
|
|
47091
47650
|
*/
|
|
47092
47651
|
createCenterPolicy(request: CreateCenterPolicyRequest): Promise<CreateCenterPolicyResponse>;
|
|
47093
47652
|
/**
|
|
47094
|
-
* Creates
|
|
47653
|
+
* Creates an enterprise drive.
|
|
47654
|
+
*
|
|
47655
|
+
* @remarks
|
|
47656
|
+
* Before you call this operation, make sure that you understand the billing methods and pricing of Enterprise Drive Service (formerly Cloud Drive Service). For more information, see [Overview](https://help.aliyun.com/document_detail/386301.html).
|
|
47095
47657
|
*
|
|
47096
47658
|
* @param request - CreateCloudDriveServiceRequest
|
|
47097
47659
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -47099,7 +47661,10 @@ export default class Client extends OpenApi {
|
|
|
47099
47661
|
*/
|
|
47100
47662
|
createCloudDriveServiceWithOptions(request: CreateCloudDriveServiceRequest, runtime: $dara.RuntimeOptions): Promise<CreateCloudDriveServiceResponse>;
|
|
47101
47663
|
/**
|
|
47102
|
-
* Creates
|
|
47664
|
+
* Creates an enterprise drive.
|
|
47665
|
+
*
|
|
47666
|
+
* @remarks
|
|
47667
|
+
* Before you call this operation, make sure that you understand the billing methods and pricing of Enterprise Drive Service (formerly Cloud Drive Service). For more information, see [Overview](https://help.aliyun.com/document_detail/386301.html).
|
|
47103
47668
|
*
|
|
47104
47669
|
* @param request - CreateCloudDriveServiceRequest
|
|
47105
47670
|
* @returns CreateCloudDriveServiceResponse
|
|
@@ -47418,12 +47983,16 @@ export default class Client extends OpenApi {
|
|
|
47418
47983
|
*/
|
|
47419
47984
|
deleteCdsFile(request: DeleteCdsFileRequest): Promise<DeleteCdsFileResponse>;
|
|
47420
47985
|
/**
|
|
47986
|
+
* Deletes a center policy
|
|
47987
|
+
*
|
|
47421
47988
|
* @param request - DeleteCenterPolicyRequest
|
|
47422
47989
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47423
47990
|
* @returns DeleteCenterPolicyResponse
|
|
47424
47991
|
*/
|
|
47425
47992
|
deleteCenterPolicyWithOptions(request: DeleteCenterPolicyRequest, runtime: $dara.RuntimeOptions): Promise<DeleteCenterPolicyResponse>;
|
|
47426
47993
|
/**
|
|
47994
|
+
* Deletes a center policy
|
|
47995
|
+
*
|
|
47427
47996
|
* @param request - DeleteCenterPolicyRequest
|
|
47428
47997
|
* @returns DeleteCenterPolicyResponse
|
|
47429
47998
|
*/
|
|
@@ -47923,7 +48492,7 @@ export default class Client extends OpenApi {
|
|
|
47923
48492
|
*/
|
|
47924
48493
|
describeDesktopGroupSessions(request: DescribeDesktopGroupSessionsRequest): Promise<DescribeDesktopGroupSessionsResponse>;
|
|
47925
48494
|
/**
|
|
47926
|
-
* Queries
|
|
48495
|
+
* Queries cloud computer shares.
|
|
47927
48496
|
*
|
|
47928
48497
|
* @param request - DescribeDesktopGroupsRequest
|
|
47929
48498
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -47931,7 +48500,7 @@ export default class Client extends OpenApi {
|
|
|
47931
48500
|
*/
|
|
47932
48501
|
describeDesktopGroupsWithOptions(request: DescribeDesktopGroupsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDesktopGroupsResponse>;
|
|
47933
48502
|
/**
|
|
47934
|
-
* Queries
|
|
48503
|
+
* Queries cloud computer shares.
|
|
47935
48504
|
*
|
|
47936
48505
|
* @param request - DescribeDesktopGroupsRequest
|
|
47937
48506
|
* @returns DescribeDesktopGroupsResponse
|
|
@@ -48262,12 +48831,16 @@ export default class Client extends OpenApi {
|
|
|
48262
48831
|
*/
|
|
48263
48832
|
describeKmsKeys(request: DescribeKmsKeysRequest): Promise<DescribeKmsKeysResponse>;
|
|
48264
48833
|
/**
|
|
48834
|
+
* Queries the price for changing the specifications of a monthly subscription cloud computer with unlimited hours or a premium bandwidth plan.
|
|
48835
|
+
*
|
|
48265
48836
|
* @param request - DescribeModificationPriceRequest
|
|
48266
48837
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
48267
48838
|
* @returns DescribeModificationPriceResponse
|
|
48268
48839
|
*/
|
|
48269
48840
|
describeModificationPriceWithOptions(request: DescribeModificationPriceRequest, runtime: $dara.RuntimeOptions): Promise<DescribeModificationPriceResponse>;
|
|
48270
48841
|
/**
|
|
48842
|
+
* Queries the price for changing the specifications of a monthly subscription cloud computer with unlimited hours or a premium bandwidth plan.
|
|
48843
|
+
*
|
|
48271
48844
|
* @param request - DescribeModificationPriceRequest
|
|
48272
48845
|
* @returns DescribeModificationPriceResponse
|
|
48273
48846
|
*/
|
|
@@ -48450,12 +49023,16 @@ export default class Client extends OpenApi {
|
|
|
48450
49023
|
*/
|
|
48451
49024
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
48452
49025
|
/**
|
|
49026
|
+
* Queries the renewal price of an Alibaba Cloud Workspace service.
|
|
49027
|
+
*
|
|
48453
49028
|
* @param request - DescribeRenewalPriceRequest
|
|
48454
49029
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
48455
49030
|
* @returns DescribeRenewalPriceResponse
|
|
48456
49031
|
*/
|
|
48457
49032
|
describeRenewalPriceWithOptions(request: DescribeRenewalPriceRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRenewalPriceResponse>;
|
|
48458
49033
|
/**
|
|
49034
|
+
* Queries the renewal price of an Alibaba Cloud Workspace service.
|
|
49035
|
+
*
|
|
48459
49036
|
* @param request - DescribeRenewalPriceRequest
|
|
48460
49037
|
* @returns DescribeRenewalPriceResponse
|
|
48461
49038
|
*/
|
|
@@ -48852,7 +49429,7 @@ export default class Client extends OpenApi {
|
|
|
48852
49429
|
*/
|
|
48853
49430
|
getCoordinateTicket(request: GetCoordinateTicketRequest): Promise<GetCoordinateTicketResponse>;
|
|
48854
49431
|
/**
|
|
48855
|
-
* Queries the information about a cloud computer
|
|
49432
|
+
* Queries the information about a cloud computer share.
|
|
48856
49433
|
*
|
|
48857
49434
|
* @param request - GetDesktopGroupDetailRequest
|
|
48858
49435
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -48860,7 +49437,7 @@ export default class Client extends OpenApi {
|
|
|
48860
49437
|
*/
|
|
48861
49438
|
getDesktopGroupDetailWithOptions(request: GetDesktopGroupDetailRequest, runtime: $dara.RuntimeOptions): Promise<GetDesktopGroupDetailResponse>;
|
|
48862
49439
|
/**
|
|
48863
|
-
* Queries the information about a cloud computer
|
|
49440
|
+
* Queries the information about a cloud computer share.
|
|
48864
49441
|
*
|
|
48865
49442
|
* @param request - GetDesktopGroupDetailRequest
|
|
48866
49443
|
* @returns GetDesktopGroupDetailResponse
|
|
@@ -49332,10 +49909,10 @@ export default class Client extends OpenApi {
|
|
|
49332
49909
|
*/
|
|
49333
49910
|
modifyDesktopChargeType(request: ModifyDesktopChargeTypeRequest): Promise<ModifyDesktopChargeTypeResponse>;
|
|
49334
49911
|
/**
|
|
49335
|
-
* Modifies
|
|
49912
|
+
* Modifies a cloud computer share.
|
|
49336
49913
|
*
|
|
49337
49914
|
* @remarks
|
|
49338
|
-
*
|
|
49915
|
+
* Once a cloud computer share is created, the system automatically provisions cloud computers according to the auto-scaling policy and user connections, all based on the same template and security policy. You can adjust the cloud computer share\\"s configurations, including the share name, template, and policy, for different business scenarios.
|
|
49339
49916
|
*
|
|
49340
49917
|
* @param request - ModifyDesktopGroupRequest
|
|
49341
49918
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -49343,10 +49920,10 @@ export default class Client extends OpenApi {
|
|
|
49343
49920
|
*/
|
|
49344
49921
|
modifyDesktopGroupWithOptions(request: ModifyDesktopGroupRequest, runtime: $dara.RuntimeOptions): Promise<ModifyDesktopGroupResponse>;
|
|
49345
49922
|
/**
|
|
49346
|
-
* Modifies
|
|
49923
|
+
* Modifies a cloud computer share.
|
|
49347
49924
|
*
|
|
49348
49925
|
* @remarks
|
|
49349
|
-
*
|
|
49926
|
+
* Once a cloud computer share is created, the system automatically provisions cloud computers according to the auto-scaling policy and user connections, all based on the same template and security policy. You can adjust the cloud computer share\\"s configurations, including the share name, template, and policy, for different business scenarios.
|
|
49350
49927
|
*
|
|
49351
49928
|
* @param request - ModifyDesktopGroupRequest
|
|
49352
49929
|
* @returns ModifyDesktopGroupResponse
|