@alicloud/ecd20200930 4.6.3 → 4.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +885 -12
- package/dist/client.js +282 -1374
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1142 -1368
package/src/client.ts
CHANGED
|
@@ -4849,6 +4849,35 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $d
|
|
|
4849
4849
|
}
|
|
4850
4850
|
}
|
|
4851
4851
|
|
|
4852
|
+
export class DescribeClientEventsResponseBodyEventsTerminalInfo extends $dara.Model {
|
|
4853
|
+
model?: string;
|
|
4854
|
+
productName?: string;
|
|
4855
|
+
serialNumber?: string;
|
|
4856
|
+
static names(): { [key: string]: string } {
|
|
4857
|
+
return {
|
|
4858
|
+
model: 'Model',
|
|
4859
|
+
productName: 'ProductName',
|
|
4860
|
+
serialNumber: 'SerialNumber',
|
|
4861
|
+
};
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4864
|
+
static types(): { [key: string]: any } {
|
|
4865
|
+
return {
|
|
4866
|
+
model: 'string',
|
|
4867
|
+
productName: 'string',
|
|
4868
|
+
serialNumber: 'string',
|
|
4869
|
+
};
|
|
4870
|
+
}
|
|
4871
|
+
|
|
4872
|
+
validate() {
|
|
4873
|
+
super.validate();
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
constructor(map?: { [key: string]: any }) {
|
|
4877
|
+
super(map);
|
|
4878
|
+
}
|
|
4879
|
+
}
|
|
4880
|
+
|
|
4852
4881
|
export class DescribeClientEventsResponseBodyEvents extends $dara.Model {
|
|
4853
4882
|
/**
|
|
4854
4883
|
* @remarks
|
|
@@ -5055,6 +5084,7 @@ export class DescribeClientEventsResponseBodyEvents extends $dara.Model {
|
|
|
5055
5084
|
* 200
|
|
5056
5085
|
*/
|
|
5057
5086
|
status?: string;
|
|
5087
|
+
terminalInfo?: DescribeClientEventsResponseBodyEventsTerminalInfo;
|
|
5058
5088
|
static names(): { [key: string]: string } {
|
|
5059
5089
|
return {
|
|
5060
5090
|
aliUid: 'AliUid',
|
|
@@ -5080,6 +5110,7 @@ export class DescribeClientEventsResponseBodyEvents extends $dara.Model {
|
|
|
5080
5110
|
officeSiteType: 'OfficeSiteType',
|
|
5081
5111
|
regionId: 'RegionId',
|
|
5082
5112
|
status: 'Status',
|
|
5113
|
+
terminalInfo: 'TerminalInfo',
|
|
5083
5114
|
};
|
|
5084
5115
|
}
|
|
5085
5116
|
|
|
@@ -5108,10 +5139,14 @@ export class DescribeClientEventsResponseBodyEvents extends $dara.Model {
|
|
|
5108
5139
|
officeSiteType: 'string',
|
|
5109
5140
|
regionId: 'string',
|
|
5110
5141
|
status: 'string',
|
|
5142
|
+
terminalInfo: DescribeClientEventsResponseBodyEventsTerminalInfo,
|
|
5111
5143
|
};
|
|
5112
5144
|
}
|
|
5113
5145
|
|
|
5114
5146
|
validate() {
|
|
5147
|
+
if(this.terminalInfo && typeof (this.terminalInfo as any).validate === 'function') {
|
|
5148
|
+
(this.terminalInfo as any).validate();
|
|
5149
|
+
}
|
|
5115
5150
|
super.validate();
|
|
5116
5151
|
}
|
|
5117
5152
|
|
|
@@ -5956,7 +5991,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroupsTags extends $dara.Mo
|
|
|
5956
5991
|
export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model {
|
|
5957
5992
|
/**
|
|
5958
5993
|
* @remarks
|
|
5959
|
-
* The number of concurrent sessions
|
|
5994
|
+
* The number of concurrent sessions allowed for each cloud computer within the multi-session many-to-many share.
|
|
5960
5995
|
*
|
|
5961
5996
|
* @example
|
|
5962
5997
|
* 1
|
|
@@ -5964,8 +5999,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
|
|
|
5964
5999
|
bindAmount?: number;
|
|
5965
6000
|
/**
|
|
5966
6001
|
* @remarks
|
|
5967
|
-
*
|
|
5968
|
-
* * 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`.
|
|
6002
|
+
* This parameter is applicable only to subscription cloud computer shares. It defines the initial number of cloud computers that are purchased. Valid values: 0 to 200.
|
|
5969
6003
|
*
|
|
5970
6004
|
* @example
|
|
5971
6005
|
* 5
|
|
@@ -6152,7 +6186,8 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
|
|
|
6152
6186
|
loadPolicy?: number;
|
|
6153
6187
|
/**
|
|
6154
6188
|
* @remarks
|
|
6155
|
-
*
|
|
6189
|
+
* * For pay-as-you-go cloud computer shares, this parameter defines the maximum number of cloud computers allowed.
|
|
6190
|
+
* * For subscription cloud computer shares, this parameter defines the total number of cloud computers, including both the initially purchased cloud computers (`BuyDesktopsCount`) and those that can be auto-created.
|
|
6156
6191
|
*
|
|
6157
6192
|
* @example
|
|
6158
6193
|
* 10
|
|
@@ -6168,7 +6203,8 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
|
|
|
6168
6203
|
memory?: number;
|
|
6169
6204
|
/**
|
|
6170
6205
|
* @remarks
|
|
6171
|
-
*
|
|
6206
|
+
* * For pay-as-you-go cloud computer shares, this parameter defines the minimum number of cloud computers allowed.
|
|
6207
|
+
* * For subscription cloud computer shares, this parameter defines the number of cloud computers that are initially purchased (`BuyDesktopsCount`).
|
|
6172
6208
|
*
|
|
6173
6209
|
* @example
|
|
6174
6210
|
* 1
|
|
@@ -6319,9 +6355,9 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
|
|
|
6319
6355
|
* @remarks
|
|
6320
6356
|
* 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:
|
|
6321
6357
|
*
|
|
6322
|
-
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100
|
|
6358
|
+
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`
|
|
6323
6359
|
*
|
|
6324
|
-
*
|
|
6360
|
+
* When the specified threshold is reached, new cloud computers are automatically created. When the specified threshold is not reached, idle cloud computers are released.
|
|
6325
6361
|
*
|
|
6326
6362
|
* @example
|
|
6327
6363
|
* 0.85
|
|
@@ -6401,7 +6437,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model
|
|
|
6401
6437
|
tags?: DescribeDesktopGroupsResponseBodyDesktopGroupsTags[];
|
|
6402
6438
|
/**
|
|
6403
6439
|
* @remarks
|
|
6404
|
-
*
|
|
6440
|
+
* The user\\"s organizational unit path.
|
|
6405
6441
|
*
|
|
6406
6442
|
* @example
|
|
6407
6443
|
* example.com\\wuying\\users
|
|
@@ -19157,11 +19193,17 @@ export class ListUserAdOrganizationUnitsResponseBodyOUNames extends $dara.Model
|
|
|
19157
19193
|
|
|
19158
19194
|
export class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Model {
|
|
19159
19195
|
/**
|
|
19196
|
+
* @remarks
|
|
19197
|
+
* The client CIDR block from which end users can connect to cloud computers. Specify an IPv4 CIDR block.
|
|
19198
|
+
*
|
|
19160
19199
|
* @example
|
|
19161
19200
|
* 47.100.XX.XX/16
|
|
19162
19201
|
*/
|
|
19163
19202
|
cidrIp?: string;
|
|
19164
19203
|
/**
|
|
19204
|
+
* @remarks
|
|
19205
|
+
* The description of the client IP address whitelist.
|
|
19206
|
+
*
|
|
19165
19207
|
* @example
|
|
19166
19208
|
* test
|
|
19167
19209
|
*/
|
|
@@ -19191,36 +19233,82 @@ export class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Mo
|
|
|
19191
19233
|
|
|
19192
19234
|
export class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.Model {
|
|
19193
19235
|
/**
|
|
19236
|
+
* @remarks
|
|
19237
|
+
* The object of the security group rule. Specify an IPv4 CIDR block.
|
|
19238
|
+
*
|
|
19194
19239
|
* @example
|
|
19195
19240
|
* 47.100.XX.XX/16
|
|
19196
19241
|
*/
|
|
19197
19242
|
cidrIp?: string;
|
|
19198
19243
|
/**
|
|
19244
|
+
* @remarks
|
|
19245
|
+
* The description of the security group rule.
|
|
19246
|
+
*
|
|
19199
19247
|
* @example
|
|
19200
19248
|
* test
|
|
19201
19249
|
*/
|
|
19202
19250
|
description?: string;
|
|
19203
19251
|
/**
|
|
19252
|
+
* @remarks
|
|
19253
|
+
* The protocol type of the security group rule.
|
|
19254
|
+
*
|
|
19255
|
+
* Valid values:
|
|
19256
|
+
*
|
|
19257
|
+
* * TCP: the Transmission Control Protocol (TCP) protocol.
|
|
19258
|
+
* * UDP: the User Datagram Protocol (UDP) protocol.
|
|
19259
|
+
* * ALL: any type of protocol.
|
|
19260
|
+
* * GRE: the Generic Routing Encapsulation (GRE) protocol.
|
|
19261
|
+
* * ICMP: the Internet Control Message Protocol (ICMP) for (IPv4).
|
|
19262
|
+
*
|
|
19204
19263
|
* @example
|
|
19205
19264
|
* TCP
|
|
19206
19265
|
*/
|
|
19207
19266
|
ipProtocol?: string;
|
|
19208
19267
|
/**
|
|
19268
|
+
* @remarks
|
|
19269
|
+
* The authorization policy of the security group rule.
|
|
19270
|
+
*
|
|
19271
|
+
* Valid values:
|
|
19272
|
+
*
|
|
19273
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
19274
|
+
* * accept (default): accepts all requests.
|
|
19275
|
+
*
|
|
19209
19276
|
* @example
|
|
19210
19277
|
* accept
|
|
19211
19278
|
*/
|
|
19212
19279
|
policy?: string;
|
|
19213
19280
|
/**
|
|
19281
|
+
* @remarks
|
|
19282
|
+
* The port range of the security group rule. The value range of this parameter varies based on the value of IpProtocol.
|
|
19283
|
+
*
|
|
19284
|
+
* * If IpProtocol is set to TCP or UDP, the port range is 1 to 65535. Separate the start port number and the end port number with a forward slash (/). Example: 1/200.
|
|
19285
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
19286
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
19287
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
19288
|
+
*
|
|
19289
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
19290
|
+
*
|
|
19214
19291
|
* @example
|
|
19215
19292
|
* 22/22
|
|
19216
19293
|
*/
|
|
19217
19294
|
portRange?: string;
|
|
19218
19295
|
/**
|
|
19296
|
+
* @remarks
|
|
19297
|
+
* The priority of the security group rule. A smaller value specifies a higher priority. Valid values: 1 to 60. Default value: 1.
|
|
19298
|
+
*
|
|
19219
19299
|
* @example
|
|
19220
19300
|
* 1
|
|
19221
19301
|
*/
|
|
19222
19302
|
priority?: string;
|
|
19223
19303
|
/**
|
|
19304
|
+
* @remarks
|
|
19305
|
+
* The direction of the security group rule.
|
|
19306
|
+
*
|
|
19307
|
+
* Valid values:
|
|
19308
|
+
*
|
|
19309
|
+
* * outflow: outbound.
|
|
19310
|
+
* * inflow: inbound.
|
|
19311
|
+
*
|
|
19224
19312
|
* @example
|
|
19225
19313
|
* inflow
|
|
19226
19314
|
*/
|
|
@@ -19260,11 +19348,32 @@ export class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.
|
|
|
19260
19348
|
|
|
19261
19349
|
export class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
19262
19350
|
/**
|
|
19351
|
+
* @remarks
|
|
19352
|
+
* The type of the Alibaba Cloud Workspace client that end users can use to connect to cloud computers.
|
|
19353
|
+
*
|
|
19354
|
+
* Valid values:
|
|
19355
|
+
*
|
|
19356
|
+
* * html5: the web client.
|
|
19357
|
+
* * android: the Android client.
|
|
19358
|
+
* * ios: the iOS client.
|
|
19359
|
+
* * windows: the Windows client.
|
|
19360
|
+
* * macos: the macOS client.
|
|
19361
|
+
*
|
|
19263
19362
|
* @example
|
|
19264
19363
|
* android
|
|
19265
19364
|
*/
|
|
19266
19365
|
clientType?: string;
|
|
19267
19366
|
/**
|
|
19367
|
+
* @remarks
|
|
19368
|
+
* Specifies whether end users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
19369
|
+
*
|
|
19370
|
+
* > If you don\\"t specify `ClientType`, any client can be used to connect to cloud computers.
|
|
19371
|
+
*
|
|
19372
|
+
* Valid values:
|
|
19373
|
+
*
|
|
19374
|
+
* * off: End users cannot use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
19375
|
+
* * on: End users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
19376
|
+
*
|
|
19268
19377
|
* @example
|
|
19269
19378
|
* off
|
|
19270
19379
|
*/
|
|
@@ -19294,11 +19403,31 @@ export class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
|
19294
19403
|
|
|
19295
19404
|
export class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
19296
19405
|
/**
|
|
19406
|
+
* @remarks
|
|
19407
|
+
* The peripheral type.
|
|
19408
|
+
*
|
|
19409
|
+
* Valid values:
|
|
19410
|
+
*
|
|
19411
|
+
* * printer
|
|
19412
|
+
* * scanner
|
|
19413
|
+
* * serialport
|
|
19414
|
+
* * camera
|
|
19415
|
+
* * adb
|
|
19416
|
+
*
|
|
19297
19417
|
* @example
|
|
19298
19418
|
* camera
|
|
19299
19419
|
*/
|
|
19300
19420
|
deviceType?: string;
|
|
19301
19421
|
/**
|
|
19422
|
+
* @remarks
|
|
19423
|
+
* The redirection type.
|
|
19424
|
+
*
|
|
19425
|
+
* Valid values:
|
|
19426
|
+
*
|
|
19427
|
+
* * deviceRedirect: enables device redirection.
|
|
19428
|
+
* * usbRedirect: enables USB redirection.
|
|
19429
|
+
* * off: disables any type of redirection.
|
|
19430
|
+
*
|
|
19302
19431
|
* @example
|
|
19303
19432
|
* deviceRedirect
|
|
19304
19433
|
*/
|
|
@@ -19328,31 +19457,67 @@ export class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
|
19328
19457
|
|
|
19329
19458
|
export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
19330
19459
|
/**
|
|
19460
|
+
* @remarks
|
|
19461
|
+
* The device name.
|
|
19462
|
+
*
|
|
19331
19463
|
* @example
|
|
19332
19464
|
* sandisk
|
|
19333
19465
|
*/
|
|
19334
19466
|
deviceName?: string;
|
|
19335
19467
|
/**
|
|
19468
|
+
* @remarks
|
|
19469
|
+
* The product ID (PID).
|
|
19470
|
+
*
|
|
19336
19471
|
* @example
|
|
19337
19472
|
* 0x55b1
|
|
19338
19473
|
*/
|
|
19339
19474
|
devicePid?: string;
|
|
19340
19475
|
/**
|
|
19476
|
+
* @remarks
|
|
19477
|
+
* The peripheral type.
|
|
19478
|
+
*
|
|
19479
|
+
* Valid values:
|
|
19480
|
+
*
|
|
19481
|
+
* * usbKey: U keys.
|
|
19482
|
+
* * other: other peripheral devices.
|
|
19483
|
+
* * graphicsTablet: graphics tablets.
|
|
19484
|
+
* * cardReader: card readers.
|
|
19485
|
+
* * printer: printers.
|
|
19486
|
+
* * scanner: scanners.
|
|
19487
|
+
* * storage: storage devices.
|
|
19488
|
+
* * camera: cameras.
|
|
19489
|
+
* * networkInterfaceCard: NIC devices.
|
|
19490
|
+
*
|
|
19341
19491
|
* @example
|
|
19342
19492
|
* storage
|
|
19343
19493
|
*/
|
|
19344
19494
|
deviceType?: string;
|
|
19345
19495
|
/**
|
|
19496
|
+
* @remarks
|
|
19497
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
19498
|
+
*
|
|
19346
19499
|
* @example
|
|
19347
19500
|
* 0x0781
|
|
19348
19501
|
*/
|
|
19349
19502
|
deviceVid?: string;
|
|
19350
19503
|
/**
|
|
19504
|
+
* @remarks
|
|
19505
|
+
* The link optimization command.
|
|
19506
|
+
*
|
|
19351
19507
|
* @example
|
|
19352
19508
|
* 2:0
|
|
19353
19509
|
*/
|
|
19354
19510
|
optCommand?: string;
|
|
19355
19511
|
/**
|
|
19512
|
+
* @remarks
|
|
19513
|
+
* The redirection type.
|
|
19514
|
+
*
|
|
19515
|
+
* Valid values:
|
|
19516
|
+
*
|
|
19517
|
+
* * deviceRedirect: enables device redirection.
|
|
19518
|
+
* * usbRedirect: enables USB redirection.
|
|
19519
|
+
* * off: disables any type of redirection.
|
|
19520
|
+
*
|
|
19356
19521
|
* @example
|
|
19357
19522
|
* usbRedirect
|
|
19358
19523
|
*/
|
|
@@ -19389,13 +19554,28 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19389
19554
|
}
|
|
19390
19555
|
|
|
19391
19556
|
export class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
19557
|
+
/**
|
|
19558
|
+
* @remarks
|
|
19559
|
+
* The policy description.
|
|
19560
|
+
*/
|
|
19392
19561
|
description?: string;
|
|
19393
19562
|
/**
|
|
19563
|
+
* @remarks
|
|
19564
|
+
* The domain name.
|
|
19565
|
+
*
|
|
19394
19566
|
* @example
|
|
19395
19567
|
* *.example.com
|
|
19396
19568
|
*/
|
|
19397
19569
|
domain?: string;
|
|
19398
19570
|
/**
|
|
19571
|
+
* @remarks
|
|
19572
|
+
* Specifies whether to allow the domain name resolution rule.
|
|
19573
|
+
*
|
|
19574
|
+
* Valid values:
|
|
19575
|
+
*
|
|
19576
|
+
* * allow
|
|
19577
|
+
* * block
|
|
19578
|
+
*
|
|
19399
19579
|
* @example
|
|
19400
19580
|
* allow
|
|
19401
19581
|
*/
|
|
@@ -19427,16 +19607,30 @@ export class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
|
19427
19607
|
|
|
19428
19608
|
export class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
19429
19609
|
/**
|
|
19610
|
+
* @remarks
|
|
19611
|
+
* The domain name.
|
|
19612
|
+
*
|
|
19430
19613
|
* @example
|
|
19431
19614
|
* *.taobao.com
|
|
19432
19615
|
*/
|
|
19433
19616
|
domain?: string;
|
|
19434
19617
|
/**
|
|
19618
|
+
* @remarks
|
|
19619
|
+
* The redirection policy.
|
|
19620
|
+
*
|
|
19435
19621
|
* @example
|
|
19436
19622
|
* Allow
|
|
19437
19623
|
*/
|
|
19438
19624
|
policy?: string;
|
|
19439
19625
|
/**
|
|
19626
|
+
* @remarks
|
|
19627
|
+
* The rule type.
|
|
19628
|
+
*
|
|
19629
|
+
* Valid values:
|
|
19630
|
+
*
|
|
19631
|
+
* * prc: process.
|
|
19632
|
+
* * domain: domain name.
|
|
19633
|
+
*
|
|
19440
19634
|
* @example
|
|
19441
19635
|
* domain
|
|
19442
19636
|
*/
|
|
@@ -19468,11 +19662,17 @@ export class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
|
19468
19662
|
|
|
19469
19663
|
export class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $dara.Model {
|
|
19470
19664
|
/**
|
|
19665
|
+
* @remarks
|
|
19666
|
+
* The client CIDR block that you want to delete. Specify an IPv4 CIDR block.
|
|
19667
|
+
*
|
|
19471
19668
|
* @example
|
|
19472
19669
|
* 47.100.XX.XX/16
|
|
19473
19670
|
*/
|
|
19474
19671
|
cidrIp?: string;
|
|
19475
19672
|
/**
|
|
19673
|
+
* @remarks
|
|
19674
|
+
* The description of the client IP address whitelist that you want to delete.
|
|
19675
|
+
*
|
|
19476
19676
|
* @example
|
|
19477
19677
|
* test
|
|
19478
19678
|
*/
|
|
@@ -19502,36 +19702,82 @@ export class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $dara.Model
|
|
|
19502
19702
|
|
|
19503
19703
|
export class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $dara.Model {
|
|
19504
19704
|
/**
|
|
19705
|
+
* @remarks
|
|
19706
|
+
* The object of the security group rule that you want to delete. Specify an IPv4 CIDR block.
|
|
19707
|
+
*
|
|
19505
19708
|
* @example
|
|
19506
19709
|
* 47.100.XX.XX/16
|
|
19507
19710
|
*/
|
|
19508
19711
|
cidrIp?: string;
|
|
19509
19712
|
/**
|
|
19713
|
+
* @remarks
|
|
19714
|
+
* The description of the security group rule that you want to delete.
|
|
19715
|
+
*
|
|
19510
19716
|
* @example
|
|
19511
19717
|
* test
|
|
19512
19718
|
*/
|
|
19513
19719
|
description?: string;
|
|
19514
19720
|
/**
|
|
19721
|
+
* @remarks
|
|
19722
|
+
* The protocol type of the security group rule that you want to delete.
|
|
19723
|
+
*
|
|
19724
|
+
* Valid values:
|
|
19725
|
+
*
|
|
19726
|
+
* * TCP: the TCP protocol.
|
|
19727
|
+
* * UDP: the UDP protocol.
|
|
19728
|
+
* * ALL: any type of protocol.
|
|
19729
|
+
* * GRE: the GRE protocol.
|
|
19730
|
+
* * ICMP: the ICMP for IPv4.
|
|
19731
|
+
*
|
|
19515
19732
|
* @example
|
|
19516
19733
|
* TCP
|
|
19517
19734
|
*/
|
|
19518
19735
|
ipProtocol?: string;
|
|
19519
19736
|
/**
|
|
19737
|
+
* @remarks
|
|
19738
|
+
* The authorization of the security group rule that you want to delete.
|
|
19739
|
+
*
|
|
19740
|
+
* Valid values:
|
|
19741
|
+
*
|
|
19742
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
19743
|
+
* * accept (default): accepts all requests.
|
|
19744
|
+
*
|
|
19520
19745
|
* @example
|
|
19521
19746
|
* accept
|
|
19522
19747
|
*/
|
|
19523
19748
|
policy?: string;
|
|
19524
19749
|
/**
|
|
19750
|
+
* @remarks
|
|
19751
|
+
* The port range of the security group rule that you want to delete. The value range of this parameter varies based on the value of IpProtocol.
|
|
19752
|
+
*
|
|
19753
|
+
* * If IpProtocol is set to TCP or UDP, the port range is 1 to 65535. Separate the start port number and the end port number with a forward slash (/). Example: 1/200.
|
|
19754
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
19755
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
19756
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
19757
|
+
*
|
|
19758
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
19759
|
+
*
|
|
19525
19760
|
* @example
|
|
19526
19761
|
* 22/22
|
|
19527
19762
|
*/
|
|
19528
19763
|
portRange?: string;
|
|
19529
19764
|
/**
|
|
19765
|
+
* @remarks
|
|
19766
|
+
* The priority of the security group rule that you want to delete. A smaller value specifies a higher priority. Valid values: 1 to 60. Default value: 1.
|
|
19767
|
+
*
|
|
19530
19768
|
* @example
|
|
19531
19769
|
* 1
|
|
19532
19770
|
*/
|
|
19533
19771
|
priority?: string;
|
|
19534
19772
|
/**
|
|
19773
|
+
* @remarks
|
|
19774
|
+
* The direction of the security group rule that you want to delete.
|
|
19775
|
+
*
|
|
19776
|
+
* Valid values:
|
|
19777
|
+
*
|
|
19778
|
+
* * outflow: outbound.
|
|
19779
|
+
* * inflow: inbound.
|
|
19780
|
+
*
|
|
19535
19781
|
* @example
|
|
19536
19782
|
* outflow
|
|
19537
19783
|
*/
|
|
@@ -19570,23 +19816,48 @@ export class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $dara.Mod
|
|
|
19570
19816
|
}
|
|
19571
19817
|
|
|
19572
19818
|
export class ModifyCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
19819
|
+
/**
|
|
19820
|
+
* @remarks
|
|
19821
|
+
* The rule description.
|
|
19822
|
+
*/
|
|
19573
19823
|
description?: string;
|
|
19574
19824
|
/**
|
|
19825
|
+
* @remarks
|
|
19826
|
+
* The product ID (PID).
|
|
19827
|
+
*
|
|
19575
19828
|
* @example
|
|
19576
19829
|
* 08**
|
|
19577
19830
|
*/
|
|
19578
19831
|
productId?: string;
|
|
19579
19832
|
/**
|
|
19833
|
+
* @remarks
|
|
19834
|
+
* Specifies whether to allow USB redirection.
|
|
19835
|
+
*
|
|
19836
|
+
* Valid values:
|
|
19837
|
+
*
|
|
19838
|
+
* * 1: allows USB redirection.
|
|
19839
|
+
* * 2: forbids USB redirection.
|
|
19840
|
+
*
|
|
19580
19841
|
* @example
|
|
19581
19842
|
* 1
|
|
19582
19843
|
*/
|
|
19583
19844
|
usbRedirectType?: string;
|
|
19584
19845
|
/**
|
|
19846
|
+
* @remarks
|
|
19847
|
+
* The type of the USB redirection rule.
|
|
19848
|
+
*
|
|
19849
|
+
* Valid values:
|
|
19850
|
+
*
|
|
19851
|
+
* * 1: enables USB redirection based on device manufacturers.
|
|
19852
|
+
*
|
|
19585
19853
|
* @example
|
|
19586
19854
|
* 1
|
|
19587
19855
|
*/
|
|
19588
19856
|
usbRuleType?: string;
|
|
19589
19857
|
/**
|
|
19858
|
+
* @remarks
|
|
19859
|
+
* The vendor ID (VID). For more information, see [Valid USB Vendor IDs (VIDs)](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
19860
|
+
*
|
|
19590
19861
|
* @example
|
|
19591
19862
|
* 04**
|
|
19592
19863
|
*/
|
|
@@ -37549,6 +37820,8 @@ export class DescribeClientEventsRequest extends $dara.Model {
|
|
|
37549
37820
|
* The array of event types that you want to query. You can specify multiple event types. The response contains all or specified types of events.
|
|
37550
37821
|
*/
|
|
37551
37822
|
eventTypes?: string[];
|
|
37823
|
+
fillHardwareInfo?: boolean;
|
|
37824
|
+
language?: string;
|
|
37552
37825
|
/**
|
|
37553
37826
|
* @remarks
|
|
37554
37827
|
* The number of entries per page.\\
|
|
@@ -37611,6 +37884,8 @@ export class DescribeClientEventsRequest extends $dara.Model {
|
|
|
37611
37884
|
endUserId: 'EndUserId',
|
|
37612
37885
|
eventType: 'EventType',
|
|
37613
37886
|
eventTypes: 'EventTypes',
|
|
37887
|
+
fillHardwareInfo: 'FillHardwareInfo',
|
|
37888
|
+
language: 'Language',
|
|
37614
37889
|
maxResults: 'MaxResults',
|
|
37615
37890
|
nextToken: 'NextToken',
|
|
37616
37891
|
officeSiteId: 'OfficeSiteId',
|
|
@@ -37630,6 +37905,8 @@ export class DescribeClientEventsRequest extends $dara.Model {
|
|
|
37630
37905
|
endUserId: 'string',
|
|
37631
37906
|
eventType: 'string',
|
|
37632
37907
|
eventTypes: { 'type': 'array', 'itemType': 'string' },
|
|
37908
|
+
fillHardwareInfo: 'boolean',
|
|
37909
|
+
language: 'string',
|
|
37633
37910
|
maxResults: 'number',
|
|
37634
37911
|
nextToken: 'string',
|
|
37635
37912
|
officeSiteId: 'string',
|
|
@@ -38821,7 +39098,7 @@ export class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
38821
39098
|
desktopGroupId?: string;
|
|
38822
39099
|
/**
|
|
38823
39100
|
* @remarks
|
|
38824
|
-
* The IDs of the cloud computer
|
|
39101
|
+
* The IDs of the cloud computer shares.
|
|
38825
39102
|
*/
|
|
38826
39103
|
desktopGroupIds?: string[];
|
|
38827
39104
|
/**
|
|
@@ -38860,12 +39137,12 @@ export class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
38860
39137
|
maxResults?: number;
|
|
38861
39138
|
/**
|
|
38862
39139
|
* @remarks
|
|
38863
|
-
* Specifies whether the
|
|
39140
|
+
* Specifies whether the cloud computer share is a many-to-many share.
|
|
38864
39141
|
*
|
|
38865
39142
|
* Valid values:
|
|
38866
39143
|
*
|
|
38867
|
-
*
|
|
38868
|
-
*
|
|
39144
|
+
* * true: The cloud computer share is a many-to-many share.
|
|
39145
|
+
* * false: The cloud computer share is a one-to-many share.
|
|
38869
39146
|
*
|
|
38870
39147
|
* @example
|
|
38871
39148
|
* true
|
|
@@ -53952,19 +54229,53 @@ export class ModifyCdsFileShareLinkResponse extends $dara.Model {
|
|
|
53952
54229
|
|
|
53953
54230
|
export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
53954
54231
|
/**
|
|
54232
|
+
* @remarks
|
|
54233
|
+
* Specifies whether to grant the admin permissions to end users.
|
|
54234
|
+
*
|
|
54235
|
+
* > This parameter is in private preview and only available to specific users.
|
|
54236
|
+
*
|
|
54237
|
+
* Valid values:
|
|
54238
|
+
*
|
|
54239
|
+
* * allow: forcibly grants admin permissions.
|
|
54240
|
+
* * deny: forcibly rejects granting admin permissions.
|
|
54241
|
+
* * inherited: inherits the admin permissions from the user dimension.
|
|
54242
|
+
*
|
|
53955
54243
|
* @example
|
|
53956
54244
|
* deny
|
|
53957
54245
|
*/
|
|
53958
54246
|
adminAccess?: string;
|
|
53959
54247
|
/**
|
|
54248
|
+
* @remarks
|
|
54249
|
+
* The anti-screenshot policy.
|
|
54250
|
+
*
|
|
54251
|
+
* Valid values:
|
|
54252
|
+
*
|
|
54253
|
+
* * off (default): disables anti-screenshot.
|
|
54254
|
+
* * on: enables anti-screenshot.
|
|
54255
|
+
*
|
|
53960
54256
|
* @example
|
|
53961
54257
|
* on
|
|
53962
54258
|
*/
|
|
53963
54259
|
appContentProtection?: string;
|
|
54260
|
+
/**
|
|
54261
|
+
* @remarks
|
|
54262
|
+
* The client IP address whitelists that you want to add.
|
|
54263
|
+
*/
|
|
53964
54264
|
authorizeAccessPolicyRule?: ModifyCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
54265
|
+
/**
|
|
54266
|
+
* @remarks
|
|
54267
|
+
* The security group rules.
|
|
54268
|
+
*/
|
|
53965
54269
|
authorizeSecurityPolicyRule?: ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
53966
54270
|
/**
|
|
53967
54271
|
* @remarks
|
|
54272
|
+
* The business type.
|
|
54273
|
+
*
|
|
54274
|
+
* Valid values:
|
|
54275
|
+
*
|
|
54276
|
+
* * 1: public cloud.
|
|
54277
|
+
* * 8: commercial edition.
|
|
54278
|
+
*
|
|
53968
54279
|
* This parameter is required.
|
|
53969
54280
|
*
|
|
53970
54281
|
* @example
|
|
@@ -53972,179 +54283,439 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
53972
54283
|
*/
|
|
53973
54284
|
businessType?: number;
|
|
53974
54285
|
/**
|
|
54286
|
+
* @remarks
|
|
54287
|
+
* The on-premises camera redirection policy. This parameter only applies if DeviceRedirects does not include an on-premises camera redirection policy.
|
|
54288
|
+
*
|
|
54289
|
+
* Valid values:
|
|
54290
|
+
*
|
|
54291
|
+
* * deviceRedirect: enables device redirection.
|
|
54292
|
+
* * off: disables device redirection.
|
|
54293
|
+
*
|
|
53975
54294
|
* @example
|
|
53976
54295
|
* on
|
|
53977
54296
|
*/
|
|
53978
54297
|
cameraRedirect?: string;
|
|
54298
|
+
/**
|
|
54299
|
+
* @remarks
|
|
54300
|
+
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
54301
|
+
*/
|
|
53979
54302
|
clientType?: ModifyCenterPolicyRequestClientType[];
|
|
53980
54303
|
/**
|
|
54304
|
+
* @remarks
|
|
54305
|
+
* The read/write permissions on the clipboard.
|
|
54306
|
+
*
|
|
54307
|
+
* Valid values:
|
|
54308
|
+
*
|
|
54309
|
+
* * read: specifies one-way transfer. You can copy files only from on-premises devices to cloud computers.
|
|
54310
|
+
* * readwrite: specifies two-way transfer. You can copy files between on-premises devices and cloud computers.
|
|
54311
|
+
* * write: specifies one-way transfer. You can only copy files from cloud computers to on-premises devices.
|
|
54312
|
+
* * off (default): disables all transfers, both one-way and two-way. Files cannot be copied directly between on-premises devices and cloud computers.
|
|
54313
|
+
*
|
|
53981
54314
|
* @example
|
|
53982
54315
|
* off
|
|
53983
54316
|
*/
|
|
53984
54317
|
clipboard?: string;
|
|
53985
54318
|
/**
|
|
54319
|
+
* @remarks
|
|
54320
|
+
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
54321
|
+
*
|
|
54322
|
+
* Valid values:
|
|
54323
|
+
*
|
|
54324
|
+
* * off: doesn\\"t enable color enhancement for design and 3D applications.
|
|
54325
|
+
* * on: enables color enhancement for design and 3D applications.
|
|
54326
|
+
*
|
|
53986
54327
|
* @example
|
|
53987
54328
|
* off
|
|
53988
54329
|
*/
|
|
53989
54330
|
colorEnhancement?: string;
|
|
53990
54331
|
/**
|
|
54332
|
+
* @remarks
|
|
54333
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
54334
|
+
*
|
|
53991
54335
|
* @example
|
|
53992
54336
|
* 50
|
|
53993
54337
|
*/
|
|
53994
54338
|
cpuDownGradeDuration?: number;
|
|
54339
|
+
/**
|
|
54340
|
+
* @remarks
|
|
54341
|
+
* The CPU processors.
|
|
54342
|
+
*/
|
|
53995
54343
|
cpuProcessors?: string[];
|
|
53996
54344
|
/**
|
|
54345
|
+
* @remarks
|
|
54346
|
+
* The CPU spike protection policy.
|
|
54347
|
+
*
|
|
54348
|
+
* Valid values:
|
|
54349
|
+
*
|
|
54350
|
+
* * off: disables CPU spike protection.
|
|
54351
|
+
* * on: enables CPU spike protection.
|
|
54352
|
+
*
|
|
53997
54353
|
* @example
|
|
53998
54354
|
* off
|
|
53999
54355
|
*/
|
|
54000
54356
|
cpuProtectedMode?: string;
|
|
54001
54357
|
/**
|
|
54358
|
+
* @remarks
|
|
54359
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
54360
|
+
*
|
|
54002
54361
|
* @example
|
|
54003
54362
|
* 70
|
|
54004
54363
|
*/
|
|
54005
54364
|
cpuRateLimit?: number;
|
|
54006
54365
|
/**
|
|
54366
|
+
* @remarks
|
|
54367
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
54368
|
+
*
|
|
54007
54369
|
* @example
|
|
54008
54370
|
* 30
|
|
54009
54371
|
*/
|
|
54010
54372
|
cpuSampleDuration?: number;
|
|
54011
54373
|
/**
|
|
54374
|
+
* @remarks
|
|
54375
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
54376
|
+
*
|
|
54012
54377
|
* @example
|
|
54013
54378
|
* 80
|
|
54014
54379
|
*/
|
|
54015
54380
|
cpuSingleRateLimit?: number;
|
|
54016
54381
|
/**
|
|
54382
|
+
* @remarks
|
|
54383
|
+
* Specifies whether to display the peripheral connection prompt.
|
|
54384
|
+
*
|
|
54385
|
+
* Valid values:
|
|
54386
|
+
*
|
|
54387
|
+
* * off: doesn\\"t display the peripheral connection prompt.
|
|
54388
|
+
* * on: displays the peripheral connection prompt.
|
|
54389
|
+
*
|
|
54017
54390
|
* @example
|
|
54018
54391
|
* off
|
|
54019
54392
|
*/
|
|
54020
54393
|
deviceConnectHint?: string;
|
|
54394
|
+
/**
|
|
54395
|
+
* @remarks
|
|
54396
|
+
* The device redirection rules.
|
|
54397
|
+
*/
|
|
54021
54398
|
deviceRedirects?: ModifyCenterPolicyRequestDeviceRedirects[];
|
|
54399
|
+
/**
|
|
54400
|
+
* @remarks
|
|
54401
|
+
* The custom peripheral rules.
|
|
54402
|
+
*/
|
|
54022
54403
|
deviceRules?: ModifyCenterPolicyRequestDeviceRules[];
|
|
54023
54404
|
/**
|
|
54405
|
+
* @remarks
|
|
54406
|
+
* Specifies whether to retain the session upon disconnection.
|
|
54407
|
+
*
|
|
54408
|
+
* > This parameter applies only to cloud application policies.
|
|
54409
|
+
*
|
|
54410
|
+
* Valid values:
|
|
54411
|
+
*
|
|
54412
|
+
* * customTime: retains the session for a specified time period.
|
|
54413
|
+
* * persistent: retains the session permanently.
|
|
54414
|
+
*
|
|
54024
54415
|
* @example
|
|
54025
54416
|
* customTime
|
|
54026
54417
|
*/
|
|
54027
54418
|
disconnectKeepSession?: string;
|
|
54028
54419
|
/**
|
|
54420
|
+
* @remarks
|
|
54421
|
+
* The retention period of the session after disconnection. Valid values: 30 to 7200. Unit: seconds.
|
|
54422
|
+
*
|
|
54423
|
+
* > This parameter applies only to cloud application policies.
|
|
54424
|
+
*
|
|
54029
54425
|
* @example
|
|
54030
54426
|
* 120
|
|
54031
54427
|
*/
|
|
54032
54428
|
disconnectKeepSessionTime?: number;
|
|
54033
54429
|
/**
|
|
54430
|
+
* @remarks
|
|
54431
|
+
* The display mode.
|
|
54432
|
+
*
|
|
54433
|
+
* Valid values:
|
|
54434
|
+
*
|
|
54435
|
+
* * clientCustom: suitable for user-defined scenarios.
|
|
54436
|
+
* * adminOffice: suitable for daily office scenarios.
|
|
54437
|
+
* * adminDesign: suitable for design and 3D application scenarios.
|
|
54438
|
+
* * adminCustom: suitable for admin-customized scenarios.
|
|
54439
|
+
*
|
|
54034
54440
|
* @example
|
|
54035
54441
|
* clientCustom
|
|
54036
54442
|
*/
|
|
54037
54443
|
displayMode?: string;
|
|
54444
|
+
/**
|
|
54445
|
+
* @remarks
|
|
54446
|
+
* The domain resolution policies.
|
|
54447
|
+
*/
|
|
54038
54448
|
domainResolveRule?: ModifyCenterPolicyRequestDomainResolveRule[];
|
|
54039
54449
|
/**
|
|
54450
|
+
* @remarks
|
|
54451
|
+
* Specifies whether to enforce the domain resolution policy.
|
|
54452
|
+
*
|
|
54453
|
+
* Valid values:
|
|
54454
|
+
*
|
|
54455
|
+
* * off: disables the domain resolution policy.
|
|
54456
|
+
* * on: enables the domain resolution policy.
|
|
54457
|
+
*
|
|
54040
54458
|
* @example
|
|
54041
54459
|
* off
|
|
54042
54460
|
*/
|
|
54043
54461
|
domainResolveRuleType?: string;
|
|
54044
54462
|
/**
|
|
54463
|
+
* @remarks
|
|
54464
|
+
* Specifies whether to enforce session bandwidth limit.
|
|
54465
|
+
*
|
|
54466
|
+
* Valid values:
|
|
54467
|
+
*
|
|
54468
|
+
* * off: doesn\\"t enforce session bandwidth limit.
|
|
54469
|
+
* * on: enforces session bandwidth limit.
|
|
54470
|
+
*
|
|
54045
54471
|
* @example
|
|
54046
54472
|
* off
|
|
54047
54473
|
*/
|
|
54048
54474
|
enableSessionRateLimiting?: string;
|
|
54049
54475
|
/**
|
|
54476
|
+
* @remarks
|
|
54477
|
+
* Specifies whether to enable end users to request administrator help.
|
|
54478
|
+
*
|
|
54479
|
+
* Valid values:
|
|
54480
|
+
*
|
|
54481
|
+
* * off: disables end users to request administrator help.
|
|
54482
|
+
* * on: enables end users to request administrator help.
|
|
54483
|
+
*
|
|
54050
54484
|
* @example
|
|
54051
54485
|
* off
|
|
54052
54486
|
*/
|
|
54053
54487
|
endUserApplyAdminCoordinate?: string;
|
|
54054
54488
|
/**
|
|
54489
|
+
* @remarks
|
|
54490
|
+
* Specifies whether end users in the same workspace can share cloud computers.
|
|
54491
|
+
*
|
|
54492
|
+
* Valid values:
|
|
54493
|
+
*
|
|
54494
|
+
* * off: End users in the same workspace cannot share cloud computers.
|
|
54495
|
+
* * on: End users in the same workspace can share cloud computers.
|
|
54496
|
+
*
|
|
54055
54497
|
* @example
|
|
54056
54498
|
* off
|
|
54057
54499
|
*/
|
|
54058
54500
|
endUserGroupCoordinate?: string;
|
|
54059
54501
|
/**
|
|
54502
|
+
* @remarks
|
|
54503
|
+
* Specifies whether to enable file transfer.
|
|
54504
|
+
*
|
|
54505
|
+
* Valid values:
|
|
54506
|
+
*
|
|
54507
|
+
* * off: enables file transfer.
|
|
54508
|
+
* * on: disables file transfer.
|
|
54509
|
+
*
|
|
54060
54510
|
* @example
|
|
54061
54511
|
* off
|
|
54062
54512
|
*/
|
|
54063
54513
|
fileMigrate?: string;
|
|
54064
54514
|
/**
|
|
54515
|
+
* @remarks
|
|
54516
|
+
* Specifies whether to enable Image Quality Control. This feature is highly recommended for professional design scenarios where performance and user experience are critical.
|
|
54517
|
+
*
|
|
54518
|
+
* Valid values:
|
|
54519
|
+
*
|
|
54520
|
+
* * off
|
|
54521
|
+
* * on
|
|
54522
|
+
*
|
|
54065
54523
|
* @example
|
|
54066
54524
|
* off
|
|
54067
54525
|
*/
|
|
54068
54526
|
gpuAcceleration?: string;
|
|
54069
54527
|
/**
|
|
54528
|
+
* @remarks
|
|
54529
|
+
* The file transfer policy on the web client.
|
|
54530
|
+
*
|
|
54531
|
+
* Valid values:
|
|
54532
|
+
*
|
|
54533
|
+
* * all: File upload and download are supported.
|
|
54534
|
+
* * download: Only file download is supported.
|
|
54535
|
+
* * upload: Only file upload is supported.
|
|
54536
|
+
* * off (default): File upload and download are not supported.
|
|
54537
|
+
*
|
|
54070
54538
|
* @example
|
|
54071
54539
|
* off
|
|
54072
54540
|
*/
|
|
54073
54541
|
html5FileTransfer?: string;
|
|
54074
54542
|
/**
|
|
54543
|
+
* @remarks
|
|
54544
|
+
* The network communication protocol.
|
|
54545
|
+
*
|
|
54546
|
+
* Valid values:
|
|
54547
|
+
*
|
|
54548
|
+
* * tcp: TCP is used when UDP/AST is restricted.
|
|
54549
|
+
* * rtc: AST is used for high-frequency audio and video streaming.
|
|
54550
|
+
* * auto: UTO enables automatic switch between AST and UDP modes based on desktop content.
|
|
54551
|
+
* * both: UDP is ideal for office and HD graphic design use.
|
|
54552
|
+
*
|
|
54075
54553
|
* @example
|
|
54076
54554
|
* both
|
|
54077
54555
|
*/
|
|
54078
54556
|
internetCommunicationProtocol?: string;
|
|
54079
54557
|
/**
|
|
54558
|
+
* @remarks
|
|
54559
|
+
* The read/write permissions on the on-premises drive.
|
|
54560
|
+
*
|
|
54561
|
+
* Valid values:
|
|
54562
|
+
*
|
|
54563
|
+
* * read: read-only. Cloud computers support on-premises disk mapping, but only for reading (copying) files—not modifying them.
|
|
54564
|
+
* * readwrite: read and write. Cloud computers support on-premises disk mapping, allowing you to read (copy) and write (modify) on-premises files.
|
|
54565
|
+
* * off (default): none. Cloud computers don\\"t support on-premises disk mapping.
|
|
54566
|
+
*
|
|
54080
54567
|
* @example
|
|
54081
54568
|
* off
|
|
54082
54569
|
*/
|
|
54083
54570
|
localDrive?: string;
|
|
54084
54571
|
/**
|
|
54572
|
+
* @remarks
|
|
54573
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
54574
|
+
*
|
|
54085
54575
|
* @example
|
|
54086
54576
|
* 120
|
|
54087
54577
|
*/
|
|
54088
54578
|
maxReconnectTime?: number;
|
|
54089
54579
|
/**
|
|
54580
|
+
* @remarks
|
|
54581
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
54582
|
+
*
|
|
54090
54583
|
* @example
|
|
54091
54584
|
* 40
|
|
54092
54585
|
*/
|
|
54093
54586
|
memoryDownGradeDuration?: number;
|
|
54587
|
+
/**
|
|
54588
|
+
* @remarks
|
|
54589
|
+
* The memory processors.
|
|
54590
|
+
*/
|
|
54094
54591
|
memoryProcessors?: string[];
|
|
54095
54592
|
/**
|
|
54593
|
+
* @remarks
|
|
54594
|
+
* The memory spike protection policy.
|
|
54595
|
+
*
|
|
54596
|
+
* Valid values:
|
|
54597
|
+
*
|
|
54598
|
+
* * off: disables memory spike protection.
|
|
54599
|
+
* * on: enables memory spike protection.
|
|
54600
|
+
*
|
|
54096
54601
|
* @example
|
|
54097
54602
|
* off
|
|
54098
54603
|
*/
|
|
54099
54604
|
memoryProtectedMode?: string;
|
|
54100
54605
|
/**
|
|
54606
|
+
* @remarks
|
|
54607
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
54608
|
+
*
|
|
54101
54609
|
* @example
|
|
54102
54610
|
* 70
|
|
54103
54611
|
*/
|
|
54104
54612
|
memoryRateLimit?: number;
|
|
54105
54613
|
/**
|
|
54614
|
+
* @remarks
|
|
54615
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
54616
|
+
*
|
|
54106
54617
|
* @example
|
|
54107
54618
|
* 40
|
|
54108
54619
|
*/
|
|
54109
54620
|
memorySampleDuration?: number;
|
|
54110
54621
|
/**
|
|
54622
|
+
* @remarks
|
|
54623
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
54624
|
+
*
|
|
54111
54625
|
* @example
|
|
54112
54626
|
* 40
|
|
54113
54627
|
*/
|
|
54114
54628
|
memorySingleRateLimit?: number;
|
|
54115
54629
|
/**
|
|
54630
|
+
* @remarks
|
|
54631
|
+
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
54632
|
+
*
|
|
54633
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54634
|
+
*
|
|
54635
|
+
* Valid values:
|
|
54636
|
+
*
|
|
54637
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
54638
|
+
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
54639
|
+
*
|
|
54116
54640
|
* @example
|
|
54117
54641
|
* off
|
|
54118
54642
|
*/
|
|
54119
54643
|
mobileRestart?: string;
|
|
54120
54644
|
/**
|
|
54645
|
+
* @remarks
|
|
54646
|
+
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
54647
|
+
*
|
|
54648
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54649
|
+
*
|
|
54650
|
+
* Valid values:
|
|
54651
|
+
*
|
|
54652
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
54653
|
+
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
54654
|
+
*
|
|
54121
54655
|
* @example
|
|
54122
54656
|
* off
|
|
54123
54657
|
*/
|
|
54124
54658
|
mobileShutdown?: string;
|
|
54125
54659
|
/**
|
|
54660
|
+
* @remarks
|
|
54661
|
+
* The policy name.
|
|
54662
|
+
*
|
|
54126
54663
|
* @example
|
|
54127
54664
|
* testPolicyGroupName
|
|
54128
54665
|
*/
|
|
54129
54666
|
name?: string;
|
|
54130
54667
|
/**
|
|
54668
|
+
* @remarks
|
|
54669
|
+
* The network redirection policy.
|
|
54670
|
+
*
|
|
54671
|
+
* > This parameter is in private preview and only available to specific users.
|
|
54672
|
+
*
|
|
54673
|
+
* Valid values:
|
|
54674
|
+
*
|
|
54675
|
+
* * all: enables network redirection globally.
|
|
54676
|
+
* * off (default): disables network redirection.
|
|
54677
|
+
* * on: enables the whitelist mode.
|
|
54678
|
+
*
|
|
54131
54679
|
* @example
|
|
54132
54680
|
* on
|
|
54133
54681
|
*/
|
|
54134
54682
|
netRedirect?: string;
|
|
54683
|
+
/**
|
|
54684
|
+
* @remarks
|
|
54685
|
+
* The network redirection policies.
|
|
54686
|
+
*
|
|
54687
|
+
* > This parameter is in private preview and only available to specific users.
|
|
54688
|
+
*/
|
|
54135
54689
|
netRedirectRule?: ModifyCenterPolicyRequestNetRedirectRule[];
|
|
54136
54690
|
/**
|
|
54691
|
+
* @remarks
|
|
54692
|
+
* Specifies whether to enforce a disconnection upon inactivity.
|
|
54693
|
+
*
|
|
54694
|
+
* > This parameter applies only to cloud application policies.
|
|
54695
|
+
*
|
|
54696
|
+
* Valid values:
|
|
54697
|
+
*
|
|
54698
|
+
* * off: doesn\\"t enforce a disconnection upon inactivity.
|
|
54699
|
+
* * on: enforces a disconnection upon inactivity.
|
|
54700
|
+
*
|
|
54137
54701
|
* @example
|
|
54138
54702
|
* off
|
|
54139
54703
|
*/
|
|
54140
54704
|
noOperationDisconnect?: string;
|
|
54141
54705
|
/**
|
|
54706
|
+
* @remarks
|
|
54707
|
+
* The duration of disconnection after inactivity. Valid values: 120 to 7200. Unit: seconds.
|
|
54708
|
+
*
|
|
54709
|
+
* > This parameter applies only to cloud application policies.
|
|
54710
|
+
*
|
|
54142
54711
|
* @example
|
|
54143
54712
|
* 120
|
|
54144
54713
|
*/
|
|
54145
54714
|
noOperationDisconnectTime?: number;
|
|
54146
54715
|
/**
|
|
54147
54716
|
* @remarks
|
|
54717
|
+
* The cloud computer policy ID.
|
|
54718
|
+
*
|
|
54148
54719
|
* This parameter is required.
|
|
54149
54720
|
*
|
|
54150
54721
|
* @example
|
|
@@ -54152,66 +54723,145 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54152
54723
|
*/
|
|
54153
54724
|
policyGroupId?: string;
|
|
54154
54725
|
/**
|
|
54726
|
+
* @remarks
|
|
54727
|
+
* The printer redirection policy. This parameter only applies if DeviceRedirects does not include a printer redirection policy.
|
|
54728
|
+
*
|
|
54729
|
+
* Valid values:
|
|
54730
|
+
*
|
|
54731
|
+
* * deviceRedirect (default):enables device redirection.
|
|
54732
|
+
* * usbRedirect: enables USB redirection.
|
|
54733
|
+
* * off: disables any type of redirection.
|
|
54734
|
+
*
|
|
54155
54735
|
* @example
|
|
54156
54736
|
* off
|
|
54157
54737
|
*/
|
|
54158
54738
|
printerRedirect?: string;
|
|
54159
54739
|
/**
|
|
54740
|
+
* @remarks
|
|
54741
|
+
* Specifies whether to enable image quality enhancement for design and 3D applications.
|
|
54742
|
+
*
|
|
54743
|
+
* Valid values:
|
|
54744
|
+
*
|
|
54745
|
+
* * off: doesn\\"t enable image quality enhancement for design and 3D applications.
|
|
54746
|
+
* * on: enables image quality enhancement for design and 3D applications.
|
|
54747
|
+
*
|
|
54160
54748
|
* @example
|
|
54161
54749
|
* off
|
|
54162
54750
|
*/
|
|
54163
54751
|
qualityEnhancement?: string;
|
|
54164
54752
|
/**
|
|
54753
|
+
* @remarks
|
|
54754
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
54755
|
+
*
|
|
54165
54756
|
* @example
|
|
54166
54757
|
* 10
|
|
54167
54758
|
*/
|
|
54168
54759
|
recordEventDuration?: number;
|
|
54760
|
+
/**
|
|
54761
|
+
* @remarks
|
|
54762
|
+
* The absolute paths to screen recording files.
|
|
54763
|
+
*/
|
|
54169
54764
|
recordEventFilePaths?: string[];
|
|
54765
|
+
/**
|
|
54766
|
+
* @remarks
|
|
54767
|
+
* The absolute paths to screen recording registries.
|
|
54768
|
+
*/
|
|
54170
54769
|
recordEventRegisters?: string[];
|
|
54770
|
+
/**
|
|
54771
|
+
* @remarks
|
|
54772
|
+
* The events that trigger screen recording.
|
|
54773
|
+
*/
|
|
54171
54774
|
recordEvents?: string[];
|
|
54172
54775
|
/**
|
|
54776
|
+
* @remarks
|
|
54777
|
+
* The screen recording policy.
|
|
54778
|
+
*
|
|
54779
|
+
* Valid values:
|
|
54780
|
+
*
|
|
54781
|
+
* * period: Screen recording occurs at set intervals.
|
|
54782
|
+
* * session: Screen recording is limited to sessions only.
|
|
54783
|
+
* * off: Screen recording is disabled.
|
|
54784
|
+
* * alltime: Screen recording is always enabled.
|
|
54785
|
+
*
|
|
54173
54786
|
* @example
|
|
54174
54787
|
* off
|
|
54175
54788
|
*/
|
|
54176
54789
|
recording?: string;
|
|
54177
54790
|
/**
|
|
54791
|
+
* @remarks
|
|
54792
|
+
* Specifies whether to record audio files generated by cloud computers.
|
|
54793
|
+
*
|
|
54794
|
+
* Valid values:
|
|
54795
|
+
*
|
|
54796
|
+
* * off: doesn\\"t record audio files generated by cloud computers.
|
|
54797
|
+
* * on: records audio files generated by cloud computers.
|
|
54798
|
+
*
|
|
54178
54799
|
* @example
|
|
54179
54800
|
* on
|
|
54180
54801
|
*/
|
|
54181
54802
|
recordingAudio?: string;
|
|
54182
54803
|
/**
|
|
54804
|
+
* @remarks
|
|
54805
|
+
* The length of the screen recording file (in minutes). Screen recordings are split based on the specified duration and uploaded to Object Storage Service (OSS) buckets. If a file reaches 300 MB, the system prioritizes rolling updates for that file. Valid values: 10 to 60.
|
|
54806
|
+
*
|
|
54183
54807
|
* @example
|
|
54184
54808
|
* 10
|
|
54185
54809
|
*/
|
|
54186
54810
|
recordingDuration?: number;
|
|
54187
54811
|
/**
|
|
54812
|
+
* @remarks
|
|
54813
|
+
* The screen recording\\"s end time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
54814
|
+
*
|
|
54188
54815
|
* @example
|
|
54189
54816
|
* 08:59:00
|
|
54190
54817
|
*/
|
|
54191
54818
|
recordingEndTime?: string;
|
|
54192
54819
|
/**
|
|
54820
|
+
* @remarks
|
|
54821
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
54822
|
+
*
|
|
54193
54823
|
* @example
|
|
54194
54824
|
* 15
|
|
54195
54825
|
*/
|
|
54196
54826
|
recordingExpires?: number;
|
|
54197
54827
|
/**
|
|
54828
|
+
* @remarks
|
|
54829
|
+
* The frame rate of screen recording. Unit: fps.
|
|
54830
|
+
*
|
|
54198
54831
|
* @example
|
|
54199
54832
|
* 5
|
|
54200
54833
|
*/
|
|
54201
54834
|
recordingFps?: string;
|
|
54202
54835
|
/**
|
|
54836
|
+
* @remarks
|
|
54837
|
+
* The screen recording\\"s start time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
54838
|
+
*
|
|
54203
54839
|
* @example
|
|
54204
54840
|
* 08:00:00
|
|
54205
54841
|
*/
|
|
54206
54842
|
recordingStartTime?: string;
|
|
54207
54843
|
/**
|
|
54844
|
+
* @remarks
|
|
54845
|
+
* Specifies whether to notify end users when screen recording is enabled.
|
|
54846
|
+
*
|
|
54847
|
+
* Valid values:
|
|
54848
|
+
*
|
|
54849
|
+
* * off: doesn\\"t notify end users when screen recording is enabled.
|
|
54850
|
+
* * on: notifies end users when screen recording is enabled.
|
|
54851
|
+
*
|
|
54208
54852
|
* @example
|
|
54209
54853
|
* off
|
|
54210
54854
|
*/
|
|
54211
54855
|
recordingUserNotify?: string;
|
|
54856
|
+
/**
|
|
54857
|
+
* @remarks
|
|
54858
|
+
* The notification sent to end users when screen recording is enabled.
|
|
54859
|
+
*/
|
|
54212
54860
|
recordingUserNotifyMessage?: string;
|
|
54213
54861
|
/**
|
|
54214
54862
|
* @remarks
|
|
54863
|
+
* The region ID. Set the value to `cn-shanghai`.
|
|
54864
|
+
*
|
|
54215
54865
|
* This parameter is required.
|
|
54216
54866
|
*
|
|
54217
54867
|
* @example
|
|
@@ -54219,188 +54869,431 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54219
54869
|
*/
|
|
54220
54870
|
regionId?: string;
|
|
54221
54871
|
/**
|
|
54872
|
+
* @remarks
|
|
54873
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
54874
|
+
*
|
|
54875
|
+
* Valid values:
|
|
54876
|
+
*
|
|
54877
|
+
* * optionalControl: By default, keyboard and mouse control is disabled during remote assistance. You can request permissions as needed.
|
|
54878
|
+
* * fullControl: Keyboard and mouse control is enabled during remote assistance.
|
|
54879
|
+
* * disableControl: Keyboard and mouse control is disabled during remote assistance.
|
|
54880
|
+
*
|
|
54222
54881
|
* @example
|
|
54223
54882
|
* fullControl
|
|
54224
54883
|
*/
|
|
54225
54884
|
remoteCoordinate?: string;
|
|
54226
54885
|
/**
|
|
54886
|
+
* @remarks
|
|
54887
|
+
* The computer reset setting.
|
|
54888
|
+
*
|
|
54889
|
+
* Valid values:
|
|
54890
|
+
*
|
|
54891
|
+
* * off: disables the reset setting.
|
|
54892
|
+
* * on: enables the reset setting.
|
|
54893
|
+
*
|
|
54227
54894
|
* @example
|
|
54228
54895
|
* off
|
|
54229
54896
|
*/
|
|
54230
54897
|
resetDesktop?: string;
|
|
54231
54898
|
/**
|
|
54899
|
+
* @remarks
|
|
54900
|
+
* The height of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
54901
|
+
*
|
|
54232
54902
|
* @example
|
|
54233
54903
|
* 1280
|
|
54234
54904
|
*/
|
|
54235
54905
|
resolutionHeight?: number;
|
|
54236
54906
|
/**
|
|
54907
|
+
* @remarks
|
|
54908
|
+
* The resolution type.
|
|
54909
|
+
*
|
|
54910
|
+
* Valid values:
|
|
54911
|
+
*
|
|
54912
|
+
* * adaptive: adaptive resolution.
|
|
54913
|
+
* * customer: fixed resolution.
|
|
54914
|
+
*
|
|
54237
54915
|
* @example
|
|
54238
54916
|
* adaptive
|
|
54239
54917
|
*/
|
|
54240
54918
|
resolutionModel?: string;
|
|
54241
54919
|
/**
|
|
54920
|
+
* @remarks
|
|
54921
|
+
* The width of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
54922
|
+
*
|
|
54242
54923
|
* @example
|
|
54243
54924
|
* 720
|
|
54244
54925
|
*/
|
|
54245
54926
|
resolutionWidth?: number;
|
|
54246
54927
|
/**
|
|
54247
54928
|
* @remarks
|
|
54929
|
+
* The resource type.
|
|
54930
|
+
*
|
|
54931
|
+
* Valid values:
|
|
54932
|
+
*
|
|
54933
|
+
* * app: cloud applications.
|
|
54934
|
+
* * desktop: cloud computers.
|
|
54935
|
+
*
|
|
54248
54936
|
* This parameter is required.
|
|
54249
54937
|
*
|
|
54250
54938
|
* @example
|
|
54251
54939
|
* desktop
|
|
54252
54940
|
*/
|
|
54253
54941
|
resourceType?: string;
|
|
54942
|
+
/**
|
|
54943
|
+
* @remarks
|
|
54944
|
+
* The client IP address whitelists that you want to delete.
|
|
54945
|
+
*/
|
|
54254
54946
|
revokeAccessPolicyRule?: ModifyCenterPolicyRequestRevokeAccessPolicyRule[];
|
|
54947
|
+
/**
|
|
54948
|
+
* @remarks
|
|
54949
|
+
* The security group rules that you want to delete.
|
|
54950
|
+
*/
|
|
54255
54951
|
revokeSecurityPolicyRule?: ModifyCenterPolicyRequestRevokeSecurityPolicyRule[];
|
|
54256
54952
|
/**
|
|
54953
|
+
* @remarks
|
|
54954
|
+
* The effective scope of the policy.
|
|
54955
|
+
*
|
|
54956
|
+
* Valid values:
|
|
54957
|
+
*
|
|
54958
|
+
* * IP: The policy applies to specific IP addresses.
|
|
54959
|
+
* * GLOBAL: The policy applies globally.
|
|
54960
|
+
*
|
|
54257
54961
|
* @example
|
|
54258
54962
|
* GLOBAL
|
|
54259
54963
|
*/
|
|
54260
54964
|
scope?: string;
|
|
54965
|
+
/**
|
|
54966
|
+
* @remarks
|
|
54967
|
+
* The effective scopes. This parameter is required when `Scope` is set to `IP`. If `Scope` is set to `IP`, this parameter doesn\\"t take effect.
|
|
54968
|
+
*/
|
|
54261
54969
|
scopeValue?: string[];
|
|
54262
54970
|
/**
|
|
54971
|
+
* @remarks
|
|
54972
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
54973
|
+
*
|
|
54263
54974
|
* @example
|
|
54264
54975
|
* 2000
|
|
54265
54976
|
*/
|
|
54266
54977
|
sessionMaxRateKbps?: number;
|
|
54267
54978
|
/**
|
|
54979
|
+
* @remarks
|
|
54980
|
+
* Specifies whether to enable smoothness enhancement for daily office use.
|
|
54981
|
+
*
|
|
54982
|
+
* Valid values:
|
|
54983
|
+
*
|
|
54984
|
+
* * off: doesn\\"t enable smoothness enhancement for daily office use.
|
|
54985
|
+
* * on: enables smoothness enhancement for daily office use.
|
|
54986
|
+
*
|
|
54268
54987
|
* @example
|
|
54269
54988
|
* off
|
|
54270
54989
|
*/
|
|
54271
54990
|
smoothEnhancement?: string;
|
|
54272
54991
|
/**
|
|
54992
|
+
* @remarks
|
|
54993
|
+
* Specifies whether to display the metric status entry in the DesktopAssistant menu.
|
|
54994
|
+
*
|
|
54995
|
+
* Valid values:
|
|
54996
|
+
*
|
|
54997
|
+
* * off: doesn\\"t display the metric status entry in the DesktopAssistant menu.
|
|
54998
|
+
* * on: displays the metric status entry in the DesktopAssistant menu.
|
|
54999
|
+
*
|
|
54273
55000
|
* @example
|
|
54274
55001
|
* off
|
|
54275
55002
|
*/
|
|
54276
55003
|
statusMonitor?: string;
|
|
54277
55004
|
/**
|
|
55005
|
+
* @remarks
|
|
55006
|
+
* The streaming mode.
|
|
55007
|
+
*
|
|
55008
|
+
* Valid values:
|
|
55009
|
+
*
|
|
55010
|
+
* * intelligent
|
|
55011
|
+
* * smooth
|
|
55012
|
+
*
|
|
54278
55013
|
* @example
|
|
54279
55014
|
* smooth
|
|
54280
55015
|
*/
|
|
54281
55016
|
streamingMode?: string;
|
|
54282
55017
|
/**
|
|
55018
|
+
* @remarks
|
|
55019
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
55020
|
+
*
|
|
54283
55021
|
* @example
|
|
54284
55022
|
* 30
|
|
54285
55023
|
*/
|
|
54286
55024
|
targetFps?: number;
|
|
54287
55025
|
/**
|
|
55026
|
+
* @remarks
|
|
55027
|
+
* Specifies whether to display the application taskbar.
|
|
55028
|
+
*
|
|
55029
|
+
* > This parameter applies only to cloud application policies.
|
|
55030
|
+
*
|
|
55031
|
+
* Valid values:
|
|
55032
|
+
*
|
|
55033
|
+
* * off: doesn\\"t display the application taskbar.
|
|
55034
|
+
* * on: displays the application taskbar.
|
|
55035
|
+
*
|
|
54288
55036
|
* @example
|
|
54289
55037
|
* off
|
|
54290
55038
|
*/
|
|
54291
55039
|
taskbar?: string;
|
|
54292
55040
|
/**
|
|
55041
|
+
* @remarks
|
|
55042
|
+
* Specifies whether to enable the USB redirection feature.
|
|
55043
|
+
*
|
|
55044
|
+
* Valid values:
|
|
55045
|
+
*
|
|
55046
|
+
* * off (default)
|
|
55047
|
+
* * on
|
|
55048
|
+
*
|
|
54293
55049
|
* @example
|
|
54294
55050
|
* off
|
|
54295
55051
|
*/
|
|
54296
55052
|
usbRedirect?: string;
|
|
55053
|
+
/**
|
|
55054
|
+
* @remarks
|
|
55055
|
+
* The USB redirection rules.
|
|
55056
|
+
*/
|
|
54297
55057
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
54298
55058
|
/**
|
|
55059
|
+
* @remarks
|
|
55060
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
55061
|
+
*
|
|
54299
55062
|
* @example
|
|
54300
55063
|
* 2000
|
|
54301
55064
|
*/
|
|
54302
55065
|
videoEncAvgKbps?: number;
|
|
54303
55066
|
/**
|
|
55067
|
+
* @remarks
|
|
55068
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
55069
|
+
*
|
|
54304
55070
|
* @example
|
|
54305
55071
|
* 30
|
|
54306
55072
|
*/
|
|
54307
55073
|
videoEncMaxQP?: number;
|
|
54308
55074
|
/**
|
|
55075
|
+
* @remarks
|
|
55076
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
55077
|
+
*
|
|
54309
55078
|
* @example
|
|
54310
55079
|
* 30
|
|
54311
55080
|
*/
|
|
54312
55081
|
videoEncMinQP?: number;
|
|
54313
55082
|
/**
|
|
55083
|
+
* @remarks
|
|
55084
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
55085
|
+
*
|
|
54314
55086
|
* @example
|
|
54315
55087
|
* 2000
|
|
54316
55088
|
*/
|
|
54317
55089
|
videoEncPeakKbps?: number;
|
|
54318
55090
|
/**
|
|
55091
|
+
* @remarks
|
|
55092
|
+
* The video encoding policy.
|
|
55093
|
+
*
|
|
55094
|
+
* Valid values:
|
|
55095
|
+
*
|
|
55096
|
+
* * qualityFirst: prioritizes image quality.
|
|
55097
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
55098
|
+
*
|
|
54319
55099
|
* @example
|
|
54320
55100
|
* qualityFirst
|
|
54321
55101
|
*/
|
|
54322
55102
|
videoEncPolicy?: string;
|
|
54323
55103
|
/**
|
|
55104
|
+
* @remarks
|
|
55105
|
+
* The multimedia redirection policy.
|
|
55106
|
+
*
|
|
55107
|
+
* Valid values:
|
|
55108
|
+
*
|
|
55109
|
+
* * off: disables multimedia redirection.
|
|
55110
|
+
* * on: enables multimedia redirection.
|
|
55111
|
+
*
|
|
54324
55112
|
* @example
|
|
54325
55113
|
* on
|
|
54326
55114
|
*/
|
|
54327
55115
|
videoRedirect?: string;
|
|
54328
55116
|
/**
|
|
55117
|
+
* @remarks
|
|
55118
|
+
* The image display quality.
|
|
55119
|
+
*
|
|
55120
|
+
* Valid values:
|
|
55121
|
+
*
|
|
55122
|
+
* * high: high-definition (HD).
|
|
55123
|
+
* * low: smoothness.
|
|
55124
|
+
* * lossless: no quality loss.
|
|
55125
|
+
* * medium (default): scenario-specific adaptation.
|
|
55126
|
+
*
|
|
54329
55127
|
* @example
|
|
54330
55128
|
* low
|
|
54331
55129
|
*/
|
|
54332
55130
|
visualQuality?: string;
|
|
54333
55131
|
/**
|
|
55132
|
+
* @remarks
|
|
55133
|
+
* The watermark policy.
|
|
55134
|
+
*
|
|
55135
|
+
* Valid values:
|
|
55136
|
+
*
|
|
55137
|
+
* * blind: displays invisible watermarks.
|
|
55138
|
+
* * off (default): displays no watermark.
|
|
55139
|
+
* * on: displays visible watermarks.
|
|
55140
|
+
*
|
|
54334
55141
|
* @example
|
|
54335
55142
|
* off
|
|
54336
55143
|
*/
|
|
54337
55144
|
watermark?: string;
|
|
54338
55145
|
/**
|
|
55146
|
+
* @remarks
|
|
55147
|
+
* Specifies whether to enable anti-screen capture for invisible watermarks.
|
|
55148
|
+
*
|
|
55149
|
+
* Valid values:
|
|
55150
|
+
*
|
|
55151
|
+
* * off: doesn\\"t enable anti-screen capture for invisible watermarks.
|
|
55152
|
+
* * on: enables anti-screen capture for invisible watermarks.
|
|
55153
|
+
*
|
|
54339
55154
|
* @example
|
|
54340
55155
|
* off
|
|
54341
55156
|
*/
|
|
54342
55157
|
watermarkAntiCam?: string;
|
|
54343
55158
|
/**
|
|
55159
|
+
* @remarks
|
|
55160
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
55161
|
+
*
|
|
54344
55162
|
* @example
|
|
54345
55163
|
* 0
|
|
54346
55164
|
*/
|
|
54347
55165
|
watermarkColor?: number;
|
|
54348
55166
|
/**
|
|
55167
|
+
* @remarks
|
|
55168
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
55169
|
+
*
|
|
54349
55170
|
* @example
|
|
54350
55171
|
* 3
|
|
54351
55172
|
*/
|
|
54352
55173
|
watermarkColumnAmount?: number;
|
|
54353
55174
|
/**
|
|
55175
|
+
* @remarks
|
|
55176
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
55177
|
+
*
|
|
54354
55178
|
* @example
|
|
54355
55179
|
* test
|
|
54356
55180
|
*/
|
|
54357
55181
|
watermarkCustomText?: string;
|
|
54358
55182
|
/**
|
|
55183
|
+
* @remarks
|
|
55184
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
55185
|
+
*
|
|
54359
55186
|
* @example
|
|
54360
55187
|
* -10
|
|
54361
55188
|
*/
|
|
54362
55189
|
watermarkDegree?: number;
|
|
54363
55190
|
/**
|
|
55191
|
+
* @remarks
|
|
55192
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
55193
|
+
*
|
|
54364
55194
|
* @example
|
|
54365
55195
|
* 10
|
|
54366
55196
|
*/
|
|
54367
55197
|
watermarkFontSize?: number;
|
|
54368
55198
|
/**
|
|
55199
|
+
* @remarks
|
|
55200
|
+
* The font style of the watermark.
|
|
55201
|
+
*
|
|
55202
|
+
* Valid values:
|
|
55203
|
+
*
|
|
55204
|
+
* * plain
|
|
55205
|
+
* * bold
|
|
55206
|
+
*
|
|
54369
55207
|
* @example
|
|
54370
55208
|
* plain
|
|
54371
55209
|
*/
|
|
54372
55210
|
watermarkFontStyle?: string;
|
|
54373
55211
|
/**
|
|
55212
|
+
* @remarks
|
|
55213
|
+
* The enhancement level for invisible watermarks.
|
|
55214
|
+
*
|
|
55215
|
+
* Valid values:
|
|
55216
|
+
*
|
|
55217
|
+
* * high
|
|
55218
|
+
* * low
|
|
55219
|
+
* * medium
|
|
55220
|
+
*
|
|
54374
55221
|
* @example
|
|
54375
55222
|
* medium
|
|
54376
55223
|
*/
|
|
54377
55224
|
watermarkPower?: string;
|
|
54378
55225
|
/**
|
|
55226
|
+
* @remarks
|
|
55227
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
55228
|
+
*
|
|
54379
55229
|
* @example
|
|
54380
55230
|
* 5
|
|
54381
55231
|
*/
|
|
54382
55232
|
watermarkRowAmount?: number;
|
|
54383
55233
|
/**
|
|
55234
|
+
* @remarks
|
|
55235
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
55236
|
+
*
|
|
55237
|
+
* Valid values:
|
|
55238
|
+
*
|
|
55239
|
+
* * off
|
|
55240
|
+
* * on
|
|
55241
|
+
*
|
|
54384
55242
|
* @example
|
|
54385
55243
|
* off
|
|
54386
55244
|
*/
|
|
54387
55245
|
watermarkSecurity?: string;
|
|
54388
55246
|
/**
|
|
55247
|
+
* @remarks
|
|
55248
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
55249
|
+
*
|
|
54389
55250
|
* @example
|
|
54390
55251
|
* 10
|
|
54391
55252
|
*/
|
|
54392
55253
|
watermarkTransparencyValue?: number;
|
|
54393
55254
|
/**
|
|
55255
|
+
* @remarks
|
|
55256
|
+
* The watermark type. You can specify up to three types. Separate multiple values with commas (,).
|
|
55257
|
+
*
|
|
55258
|
+
* > If you provide `custom` as the value for this parameter, you must configure `WatermarkCustomText` to specify custom text.
|
|
55259
|
+
*
|
|
55260
|
+
* Valid values:
|
|
55261
|
+
*
|
|
55262
|
+
* * EndUserId: the username.
|
|
55263
|
+
* * Custom: the custom text.
|
|
55264
|
+
* * DesktopIp: the IP address of the cloud computer.
|
|
55265
|
+
* * ClientIp: the IP address of the client.
|
|
55266
|
+
* * HostName: the rightmost 15 digits of the cloud computer ID.
|
|
55267
|
+
* * ClientTime: the current time displayed on the cloud computer.
|
|
55268
|
+
*
|
|
54394
55269
|
* @example
|
|
54395
55270
|
* EndUserId
|
|
54396
55271
|
*/
|
|
54397
55272
|
watermarkType?: string;
|
|
54398
55273
|
/**
|
|
55274
|
+
* @remarks
|
|
55275
|
+
* Specifies whether to enable Cloud Computer Manager.
|
|
55276
|
+
*
|
|
55277
|
+
* Valid values:
|
|
55278
|
+
*
|
|
55279
|
+
* * off: disables Cloud Computer Manager.
|
|
55280
|
+
* * on: enables Cloud Computer Manager.
|
|
55281
|
+
*
|
|
54399
55282
|
* @example
|
|
54400
55283
|
* off
|
|
54401
55284
|
*/
|
|
54402
55285
|
wuyingKeeper?: string;
|
|
54403
55286
|
/**
|
|
55287
|
+
* @remarks
|
|
55288
|
+
* Specifies whether to display the Xiaoying AI Assistant option in the DesktopAssistant menu when end users connect to cloud computers via desktop clients (Windows and macOS).
|
|
55289
|
+
*
|
|
55290
|
+
* > This feature applies to only desktop clients of version 7.7.0 or later.
|
|
55291
|
+
*
|
|
55292
|
+
* Valid values:
|
|
55293
|
+
*
|
|
55294
|
+
* * off: doesn\\"t display the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
55295
|
+
* * on: displays the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
55296
|
+
*
|
|
54404
55297
|
* @example
|
|
54405
55298
|
* on
|
|
54406
55299
|
*/
|
|
@@ -54678,6 +55571,9 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54678
55571
|
|
|
54679
55572
|
export class ModifyCenterPolicyResponseBody extends $dara.Model {
|
|
54680
55573
|
/**
|
|
55574
|
+
* @remarks
|
|
55575
|
+
* The request ID.
|
|
55576
|
+
*
|
|
54681
55577
|
* @example
|
|
54682
55578
|
* 5CED7F18-43B1-5035-BBB6-2538B***
|
|
54683
55579
|
*/
|
|
@@ -65705,12 +66601,7 @@ export default class Client extends OpenApi {
|
|
|
65705
66601
|
reqBodyType: "formData",
|
|
65706
66602
|
bodyType: "json",
|
|
65707
66603
|
});
|
|
65708
|
-
|
|
65709
|
-
return $dara.cast<ActivateOfficeSiteResponse>(await this.callApi(params, req, runtime), new ActivateOfficeSiteResponse({}));
|
|
65710
|
-
} else {
|
|
65711
|
-
return $dara.cast<ActivateOfficeSiteResponse>(await this.execute(params, req, runtime), new ActivateOfficeSiteResponse({}));
|
|
65712
|
-
}
|
|
65713
|
-
|
|
66604
|
+
return $dara.cast<ActivateOfficeSiteResponse>(await this.callApi(params, req, runtime), new ActivateOfficeSiteResponse({}));
|
|
65714
66605
|
}
|
|
65715
66606
|
|
|
65716
66607
|
/**
|
|
@@ -65771,12 +66662,7 @@ export default class Client extends OpenApi {
|
|
|
65771
66662
|
reqBodyType: "formData",
|
|
65772
66663
|
bodyType: "json",
|
|
65773
66664
|
});
|
|
65774
|
-
|
|
65775
|
-
return $dara.cast<AddDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new AddDesktopOversoldUserGroupResponse({}));
|
|
65776
|
-
} else {
|
|
65777
|
-
return $dara.cast<AddDesktopOversoldUserGroupResponse>(await this.execute(params, req, runtime), new AddDesktopOversoldUserGroupResponse({}));
|
|
65778
|
-
}
|
|
65779
|
-
|
|
66665
|
+
return $dara.cast<AddDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new AddDesktopOversoldUserGroupResponse({}));
|
|
65780
66666
|
}
|
|
65781
66667
|
|
|
65782
66668
|
/**
|
|
@@ -65829,12 +66715,7 @@ export default class Client extends OpenApi {
|
|
|
65829
66715
|
reqBodyType: "formData",
|
|
65830
66716
|
bodyType: "json",
|
|
65831
66717
|
});
|
|
65832
|
-
|
|
65833
|
-
return $dara.cast<AddDevicesResponse>(await this.callApi(params, req, runtime), new AddDevicesResponse({}));
|
|
65834
|
-
} else {
|
|
65835
|
-
return $dara.cast<AddDevicesResponse>(await this.execute(params, req, runtime), new AddDevicesResponse({}));
|
|
65836
|
-
}
|
|
65837
|
-
|
|
66718
|
+
return $dara.cast<AddDevicesResponse>(await this.callApi(params, req, runtime), new AddDevicesResponse({}));
|
|
65838
66719
|
}
|
|
65839
66720
|
|
|
65840
66721
|
/**
|
|
@@ -65908,12 +66789,7 @@ export default class Client extends OpenApi {
|
|
|
65908
66789
|
reqBodyType: "formData",
|
|
65909
66790
|
bodyType: "json",
|
|
65910
66791
|
});
|
|
65911
|
-
|
|
65912
|
-
return $dara.cast<AddFilePermissionResponse>(await this.callApi(params, req, runtime), new AddFilePermissionResponse({}));
|
|
65913
|
-
} else {
|
|
65914
|
-
return $dara.cast<AddFilePermissionResponse>(await this.execute(params, req, runtime), new AddFilePermissionResponse({}));
|
|
65915
|
-
}
|
|
65916
|
-
|
|
66792
|
+
return $dara.cast<AddFilePermissionResponse>(await this.callApi(params, req, runtime), new AddFilePermissionResponse({}));
|
|
65917
66793
|
}
|
|
65918
66794
|
|
|
65919
66795
|
/**
|
|
@@ -65978,12 +66854,7 @@ export default class Client extends OpenApi {
|
|
|
65978
66854
|
reqBodyType: "formData",
|
|
65979
66855
|
bodyType: "json",
|
|
65980
66856
|
});
|
|
65981
|
-
|
|
65982
|
-
return $dara.cast<AddUserToDesktopGroupResponse>(await this.callApi(params, req, runtime), new AddUserToDesktopGroupResponse({}));
|
|
65983
|
-
} else {
|
|
65984
|
-
return $dara.cast<AddUserToDesktopGroupResponse>(await this.execute(params, req, runtime), new AddUserToDesktopGroupResponse({}));
|
|
65985
|
-
}
|
|
65986
|
-
|
|
66857
|
+
return $dara.cast<AddUserToDesktopGroupResponse>(await this.callApi(params, req, runtime), new AddUserToDesktopGroupResponse({}));
|
|
65987
66858
|
}
|
|
65988
66859
|
|
|
65989
66860
|
/**
|
|
@@ -66037,12 +66908,7 @@ export default class Client extends OpenApi {
|
|
|
66037
66908
|
reqBodyType: "formData",
|
|
66038
66909
|
bodyType: "json",
|
|
66039
66910
|
});
|
|
66040
|
-
|
|
66041
|
-
return $dara.cast<AddUserToDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new AddUserToDesktopOversoldUserGroupResponse({}));
|
|
66042
|
-
} else {
|
|
66043
|
-
return $dara.cast<AddUserToDesktopOversoldUserGroupResponse>(await this.execute(params, req, runtime), new AddUserToDesktopOversoldUserGroupResponse({}));
|
|
66044
|
-
}
|
|
66045
|
-
|
|
66911
|
+
return $dara.cast<AddUserToDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new AddUserToDesktopOversoldUserGroupResponse({}));
|
|
66046
66912
|
}
|
|
66047
66913
|
|
|
66048
66914
|
/**
|
|
@@ -66096,12 +66962,7 @@ export default class Client extends OpenApi {
|
|
|
66096
66962
|
reqBodyType: "formData",
|
|
66097
66963
|
bodyType: "json",
|
|
66098
66964
|
});
|
|
66099
|
-
|
|
66100
|
-
return $dara.cast<ApplyAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new ApplyAutoSnapshotPolicyResponse({}));
|
|
66101
|
-
} else {
|
|
66102
|
-
return $dara.cast<ApplyAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new ApplyAutoSnapshotPolicyResponse({}));
|
|
66103
|
-
}
|
|
66104
|
-
|
|
66965
|
+
return $dara.cast<ApplyAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new ApplyAutoSnapshotPolicyResponse({}));
|
|
66105
66966
|
}
|
|
66106
66967
|
|
|
66107
66968
|
/**
|
|
@@ -66163,12 +67024,7 @@ export default class Client extends OpenApi {
|
|
|
66163
67024
|
reqBodyType: "formData",
|
|
66164
67025
|
bodyType: "json",
|
|
66165
67026
|
});
|
|
66166
|
-
|
|
66167
|
-
return $dara.cast<ApplyCoordinatePrivilegeResponse>(await this.callApi(params, req, runtime), new ApplyCoordinatePrivilegeResponse({}));
|
|
66168
|
-
} else {
|
|
66169
|
-
return $dara.cast<ApplyCoordinatePrivilegeResponse>(await this.execute(params, req, runtime), new ApplyCoordinatePrivilegeResponse({}));
|
|
66170
|
-
}
|
|
66171
|
-
|
|
67027
|
+
return $dara.cast<ApplyCoordinatePrivilegeResponse>(await this.callApi(params, req, runtime), new ApplyCoordinatePrivilegeResponse({}));
|
|
66172
67028
|
}
|
|
66173
67029
|
|
|
66174
67030
|
/**
|
|
@@ -66230,12 +67086,7 @@ export default class Client extends OpenApi {
|
|
|
66230
67086
|
reqBodyType: "formData",
|
|
66231
67087
|
bodyType: "json",
|
|
66232
67088
|
});
|
|
66233
|
-
|
|
66234
|
-
return $dara.cast<ApplyCoordinationForMonitoringResponse>(await this.callApi(params, req, runtime), new ApplyCoordinationForMonitoringResponse({}));
|
|
66235
|
-
} else {
|
|
66236
|
-
return $dara.cast<ApplyCoordinationForMonitoringResponse>(await this.execute(params, req, runtime), new ApplyCoordinationForMonitoringResponse({}));
|
|
66237
|
-
}
|
|
66238
|
-
|
|
67089
|
+
return $dara.cast<ApplyCoordinationForMonitoringResponse>(await this.callApi(params, req, runtime), new ApplyCoordinationForMonitoringResponse({}));
|
|
66239
67090
|
}
|
|
66240
67091
|
|
|
66241
67092
|
/**
|
|
@@ -66288,12 +67139,7 @@ export default class Client extends OpenApi {
|
|
|
66288
67139
|
reqBodyType: "formData",
|
|
66289
67140
|
bodyType: "json",
|
|
66290
67141
|
});
|
|
66291
|
-
|
|
66292
|
-
return $dara.cast<ApproveFotaUpdateResponse>(await this.callApi(params, req, runtime), new ApproveFotaUpdateResponse({}));
|
|
66293
|
-
} else {
|
|
66294
|
-
return $dara.cast<ApproveFotaUpdateResponse>(await this.execute(params, req, runtime), new ApproveFotaUpdateResponse({}));
|
|
66295
|
-
}
|
|
66296
|
-
|
|
67142
|
+
return $dara.cast<ApproveFotaUpdateResponse>(await this.callApi(params, req, runtime), new ApproveFotaUpdateResponse({}));
|
|
66297
67143
|
}
|
|
66298
67144
|
|
|
66299
67145
|
/**
|
|
@@ -66346,12 +67192,7 @@ export default class Client extends OpenApi {
|
|
|
66346
67192
|
reqBodyType: "formData",
|
|
66347
67193
|
bodyType: "json",
|
|
66348
67194
|
});
|
|
66349
|
-
|
|
66350
|
-
return $dara.cast<AssociateNetworkPackageResponse>(await this.callApi(params, req, runtime), new AssociateNetworkPackageResponse({}));
|
|
66351
|
-
} else {
|
|
66352
|
-
return $dara.cast<AssociateNetworkPackageResponse>(await this.execute(params, req, runtime), new AssociateNetworkPackageResponse({}));
|
|
66353
|
-
}
|
|
66354
|
-
|
|
67195
|
+
return $dara.cast<AssociateNetworkPackageResponse>(await this.callApi(params, req, runtime), new AssociateNetworkPackageResponse({}));
|
|
66355
67196
|
}
|
|
66356
67197
|
|
|
66357
67198
|
/**
|
|
@@ -66415,12 +67256,7 @@ export default class Client extends OpenApi {
|
|
|
66415
67256
|
reqBodyType: "formData",
|
|
66416
67257
|
bodyType: "json",
|
|
66417
67258
|
});
|
|
66418
|
-
|
|
66419
|
-
return $dara.cast<AttachCenResponse>(await this.callApi(params, req, runtime), new AttachCenResponse({}));
|
|
66420
|
-
} else {
|
|
66421
|
-
return $dara.cast<AttachCenResponse>(await this.execute(params, req, runtime), new AttachCenResponse({}));
|
|
66422
|
-
}
|
|
66423
|
-
|
|
67259
|
+
return $dara.cast<AttachCenResponse>(await this.callApi(params, req, runtime), new AttachCenResponse({}));
|
|
66424
67260
|
}
|
|
66425
67261
|
|
|
66426
67262
|
/**
|
|
@@ -66492,12 +67328,7 @@ export default class Client extends OpenApi {
|
|
|
66492
67328
|
reqBodyType: "formData",
|
|
66493
67329
|
bodyType: "json",
|
|
66494
67330
|
});
|
|
66495
|
-
|
|
66496
|
-
return $dara.cast<AttachEndUserResponse>(await this.callApi(params, req, runtime), new AttachEndUserResponse({}));
|
|
66497
|
-
} else {
|
|
66498
|
-
return $dara.cast<AttachEndUserResponse>(await this.execute(params, req, runtime), new AttachEndUserResponse({}));
|
|
66499
|
-
}
|
|
66500
|
-
|
|
67331
|
+
return $dara.cast<AttachEndUserResponse>(await this.callApi(params, req, runtime), new AttachEndUserResponse({}));
|
|
66501
67332
|
}
|
|
66502
67333
|
|
|
66503
67334
|
/**
|
|
@@ -66547,12 +67378,7 @@ export default class Client extends OpenApi {
|
|
|
66547
67378
|
reqBodyType: "formData",
|
|
66548
67379
|
bodyType: "json",
|
|
66549
67380
|
});
|
|
66550
|
-
|
|
66551
|
-
return $dara.cast<BindConfigGroupResponse>(await this.callApi(params, req, runtime), new BindConfigGroupResponse({}));
|
|
66552
|
-
} else {
|
|
66553
|
-
return $dara.cast<BindConfigGroupResponse>(await this.execute(params, req, runtime), new BindConfigGroupResponse({}));
|
|
66554
|
-
}
|
|
66555
|
-
|
|
67381
|
+
return $dara.cast<BindConfigGroupResponse>(await this.callApi(params, req, runtime), new BindConfigGroupResponse({}));
|
|
66556
67382
|
}
|
|
66557
67383
|
|
|
66558
67384
|
/**
|
|
@@ -66602,12 +67428,7 @@ export default class Client extends OpenApi {
|
|
|
66602
67428
|
reqBodyType: "formData",
|
|
66603
67429
|
bodyType: "json",
|
|
66604
67430
|
});
|
|
66605
|
-
|
|
66606
|
-
return $dara.cast<CancelAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new CancelAutoSnapshotPolicyResponse({}));
|
|
66607
|
-
} else {
|
|
66608
|
-
return $dara.cast<CancelAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new CancelAutoSnapshotPolicyResponse({}));
|
|
66609
|
-
}
|
|
66610
|
-
|
|
67431
|
+
return $dara.cast<CancelAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new CancelAutoSnapshotPolicyResponse({}));
|
|
66611
67432
|
}
|
|
66612
67433
|
|
|
66613
67434
|
/**
|
|
@@ -66653,12 +67474,7 @@ export default class Client extends OpenApi {
|
|
|
66653
67474
|
reqBodyType: "formData",
|
|
66654
67475
|
bodyType: "json",
|
|
66655
67476
|
});
|
|
66656
|
-
|
|
66657
|
-
return $dara.cast<CancelCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new CancelCdsFileShareLinkResponse({}));
|
|
66658
|
-
} else {
|
|
66659
|
-
return $dara.cast<CancelCdsFileShareLinkResponse>(await this.execute(params, req, runtime), new CancelCdsFileShareLinkResponse({}));
|
|
66660
|
-
}
|
|
66661
|
-
|
|
67477
|
+
return $dara.cast<CancelCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new CancelCdsFileShareLinkResponse({}));
|
|
66662
67478
|
}
|
|
66663
67479
|
|
|
66664
67480
|
/**
|
|
@@ -66712,12 +67528,7 @@ export default class Client extends OpenApi {
|
|
|
66712
67528
|
reqBodyType: "formData",
|
|
66713
67529
|
bodyType: "json",
|
|
66714
67530
|
});
|
|
66715
|
-
|
|
66716
|
-
return $dara.cast<CancelCoordinationForMonitoringResponse>(await this.callApi(params, req, runtime), new CancelCoordinationForMonitoringResponse({}));
|
|
66717
|
-
} else {
|
|
66718
|
-
return $dara.cast<CancelCoordinationForMonitoringResponse>(await this.execute(params, req, runtime), new CancelCoordinationForMonitoringResponse({}));
|
|
66719
|
-
}
|
|
66720
|
-
|
|
67531
|
+
return $dara.cast<CancelCoordinationForMonitoringResponse>(await this.callApi(params, req, runtime), new CancelCoordinationForMonitoringResponse({}));
|
|
66721
67532
|
}
|
|
66722
67533
|
|
|
66723
67534
|
/**
|
|
@@ -66763,12 +67574,7 @@ export default class Client extends OpenApi {
|
|
|
66763
67574
|
reqBodyType: "formData",
|
|
66764
67575
|
bodyType: "json",
|
|
66765
67576
|
});
|
|
66766
|
-
|
|
66767
|
-
return $dara.cast<CancelCopyImageResponse>(await this.callApi(params, req, runtime), new CancelCopyImageResponse({}));
|
|
66768
|
-
} else {
|
|
66769
|
-
return $dara.cast<CancelCopyImageResponse>(await this.execute(params, req, runtime), new CancelCopyImageResponse({}));
|
|
66770
|
-
}
|
|
66771
|
-
|
|
67577
|
+
return $dara.cast<CancelCopyImageResponse>(await this.callApi(params, req, runtime), new CancelCopyImageResponse({}));
|
|
66772
67578
|
}
|
|
66773
67579
|
|
|
66774
67580
|
/**
|
|
@@ -66824,12 +67630,7 @@ export default class Client extends OpenApi {
|
|
|
66824
67630
|
reqBodyType: "formData",
|
|
66825
67631
|
bodyType: "json",
|
|
66826
67632
|
});
|
|
66827
|
-
|
|
66828
|
-
return $dara.cast<CloneCenterPolicyResponse>(await this.callApi(params, req, runtime), new CloneCenterPolicyResponse({}));
|
|
66829
|
-
} else {
|
|
66830
|
-
return $dara.cast<CloneCenterPolicyResponse>(await this.execute(params, req, runtime), new CloneCenterPolicyResponse({}));
|
|
66831
|
-
}
|
|
66832
|
-
|
|
67633
|
+
return $dara.cast<CloneCenterPolicyResponse>(await this.callApi(params, req, runtime), new CloneCenterPolicyResponse({}));
|
|
66833
67634
|
}
|
|
66834
67635
|
|
|
66835
67636
|
/**
|
|
@@ -66877,12 +67678,7 @@ export default class Client extends OpenApi {
|
|
|
66877
67678
|
reqBodyType: "formData",
|
|
66878
67679
|
bodyType: "json",
|
|
66879
67680
|
});
|
|
66880
|
-
|
|
66881
|
-
return $dara.cast<ClonePolicyGroupResponse>(await this.callApi(params, req, runtime), new ClonePolicyGroupResponse({}));
|
|
66882
|
-
} else {
|
|
66883
|
-
return $dara.cast<ClonePolicyGroupResponse>(await this.execute(params, req, runtime), new ClonePolicyGroupResponse({}));
|
|
66884
|
-
}
|
|
66885
|
-
|
|
67681
|
+
return $dara.cast<ClonePolicyGroupResponse>(await this.callApi(params, req, runtime), new ClonePolicyGroupResponse({}));
|
|
66886
67682
|
}
|
|
66887
67683
|
|
|
66888
67684
|
/**
|
|
@@ -66944,12 +67740,7 @@ export default class Client extends OpenApi {
|
|
|
66944
67740
|
reqBodyType: "formData",
|
|
66945
67741
|
bodyType: "json",
|
|
66946
67742
|
});
|
|
66947
|
-
|
|
66948
|
-
return $dara.cast<CompleteCdsFileResponse>(await this.callApi(params, req, runtime), new CompleteCdsFileResponse({}));
|
|
66949
|
-
} else {
|
|
66950
|
-
return $dara.cast<CompleteCdsFileResponse>(await this.execute(params, req, runtime), new CompleteCdsFileResponse({}));
|
|
66951
|
-
}
|
|
66952
|
-
|
|
67743
|
+
return $dara.cast<CompleteCdsFileResponse>(await this.callApi(params, req, runtime), new CompleteCdsFileResponse({}));
|
|
66953
67744
|
}
|
|
66954
67745
|
|
|
66955
67746
|
/**
|
|
@@ -67003,12 +67794,7 @@ export default class Client extends OpenApi {
|
|
|
67003
67794
|
reqBodyType: "formData",
|
|
67004
67795
|
bodyType: "json",
|
|
67005
67796
|
});
|
|
67006
|
-
|
|
67007
|
-
return $dara.cast<ConfigADConnectorTrustResponse>(await this.callApi(params, req, runtime), new ConfigADConnectorTrustResponse({}));
|
|
67008
|
-
} else {
|
|
67009
|
-
return $dara.cast<ConfigADConnectorTrustResponse>(await this.execute(params, req, runtime), new ConfigADConnectorTrustResponse({}));
|
|
67010
|
-
}
|
|
67011
|
-
|
|
67797
|
+
return $dara.cast<ConfigADConnectorTrustResponse>(await this.callApi(params, req, runtime), new ConfigADConnectorTrustResponse({}));
|
|
67012
67798
|
}
|
|
67013
67799
|
|
|
67014
67800
|
/**
|
|
@@ -67064,12 +67850,7 @@ export default class Client extends OpenApi {
|
|
|
67064
67850
|
reqBodyType: "formData",
|
|
67065
67851
|
bodyType: "json",
|
|
67066
67852
|
});
|
|
67067
|
-
|
|
67068
|
-
return $dara.cast<ConfigADConnectorUserResponse>(await this.callApi(params, req, runtime), new ConfigADConnectorUserResponse({}));
|
|
67069
|
-
} else {
|
|
67070
|
-
return $dara.cast<ConfigADConnectorUserResponse>(await this.execute(params, req, runtime), new ConfigADConnectorUserResponse({}));
|
|
67071
|
-
}
|
|
67072
|
-
|
|
67853
|
+
return $dara.cast<ConfigADConnectorUserResponse>(await this.callApi(params, req, runtime), new ConfigADConnectorUserResponse({}));
|
|
67073
67854
|
}
|
|
67074
67855
|
|
|
67075
67856
|
/**
|
|
@@ -67141,12 +67922,7 @@ export default class Client extends OpenApi {
|
|
|
67141
67922
|
reqBodyType: "formData",
|
|
67142
67923
|
bodyType: "json",
|
|
67143
67924
|
});
|
|
67144
|
-
|
|
67145
|
-
return $dara.cast<CopyCdsFileResponse>(await this.callApi(params, req, runtime), new CopyCdsFileResponse({}));
|
|
67146
|
-
} else {
|
|
67147
|
-
return $dara.cast<CopyCdsFileResponse>(await this.execute(params, req, runtime), new CopyCdsFileResponse({}));
|
|
67148
|
-
}
|
|
67149
|
-
|
|
67925
|
+
return $dara.cast<CopyCdsFileResponse>(await this.callApi(params, req, runtime), new CopyCdsFileResponse({}));
|
|
67150
67926
|
}
|
|
67151
67927
|
|
|
67152
67928
|
/**
|
|
@@ -67204,12 +67980,7 @@ export default class Client extends OpenApi {
|
|
|
67204
67980
|
reqBodyType: "formData",
|
|
67205
67981
|
bodyType: "json",
|
|
67206
67982
|
});
|
|
67207
|
-
|
|
67208
|
-
return $dara.cast<CopyImageResponse>(await this.callApi(params, req, runtime), new CopyImageResponse({}));
|
|
67209
|
-
} else {
|
|
67210
|
-
return $dara.cast<CopyImageResponse>(await this.execute(params, req, runtime), new CopyImageResponse({}));
|
|
67211
|
-
}
|
|
67212
|
-
|
|
67983
|
+
return $dara.cast<CopyImageResponse>(await this.callApi(params, req, runtime), new CopyImageResponse({}));
|
|
67213
67984
|
}
|
|
67214
67985
|
|
|
67215
67986
|
/**
|
|
@@ -67302,12 +68073,7 @@ export default class Client extends OpenApi {
|
|
|
67302
68073
|
reqBodyType: "formData",
|
|
67303
68074
|
bodyType: "json",
|
|
67304
68075
|
});
|
|
67305
|
-
|
|
67306
|
-
return $dara.cast<CreateADConnectorDirectoryResponse>(await this.callApi(params, req, runtime), new CreateADConnectorDirectoryResponse({}));
|
|
67307
|
-
} else {
|
|
67308
|
-
return $dara.cast<CreateADConnectorDirectoryResponse>(await this.execute(params, req, runtime), new CreateADConnectorDirectoryResponse({}));
|
|
67309
|
-
}
|
|
67310
|
-
|
|
68076
|
+
return $dara.cast<CreateADConnectorDirectoryResponse>(await this.callApi(params, req, runtime), new CreateADConnectorDirectoryResponse({}));
|
|
67311
68077
|
}
|
|
67312
68078
|
|
|
67313
68079
|
/**
|
|
@@ -67449,12 +68215,7 @@ export default class Client extends OpenApi {
|
|
|
67449
68215
|
reqBodyType: "formData",
|
|
67450
68216
|
bodyType: "json",
|
|
67451
68217
|
});
|
|
67452
|
-
|
|
67453
|
-
return $dara.cast<CreateADConnectorOfficeSiteResponse>(await this.callApi(params, req, runtime), new CreateADConnectorOfficeSiteResponse({}));
|
|
67454
|
-
} else {
|
|
67455
|
-
return $dara.cast<CreateADConnectorOfficeSiteResponse>(await this.execute(params, req, runtime), new CreateADConnectorOfficeSiteResponse({}));
|
|
67456
|
-
}
|
|
67457
|
-
|
|
68218
|
+
return $dara.cast<CreateADConnectorOfficeSiteResponse>(await this.callApi(params, req, runtime), new CreateADConnectorOfficeSiteResponse({}));
|
|
67458
68219
|
}
|
|
67459
68220
|
|
|
67460
68221
|
/**
|
|
@@ -67533,12 +68294,7 @@ export default class Client extends OpenApi {
|
|
|
67533
68294
|
reqBodyType: "formData",
|
|
67534
68295
|
bodyType: "json",
|
|
67535
68296
|
});
|
|
67536
|
-
|
|
67537
|
-
return $dara.cast<CreateAndBindNasFileSystemResponse>(await this.callApi(params, req, runtime), new CreateAndBindNasFileSystemResponse({}));
|
|
67538
|
-
} else {
|
|
67539
|
-
return $dara.cast<CreateAndBindNasFileSystemResponse>(await this.execute(params, req, runtime), new CreateAndBindNasFileSystemResponse({}));
|
|
67540
|
-
}
|
|
67541
|
-
|
|
68297
|
+
return $dara.cast<CreateAndBindNasFileSystemResponse>(await this.callApi(params, req, runtime), new CreateAndBindNasFileSystemResponse({}));
|
|
67542
68298
|
}
|
|
67543
68299
|
|
|
67544
68300
|
/**
|
|
@@ -67595,12 +68351,7 @@ export default class Client extends OpenApi {
|
|
|
67595
68351
|
reqBodyType: "formData",
|
|
67596
68352
|
bodyType: "json",
|
|
67597
68353
|
});
|
|
67598
|
-
|
|
67599
|
-
return $dara.cast<CreateAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new CreateAutoSnapshotPolicyResponse({}));
|
|
67600
|
-
} else {
|
|
67601
|
-
return $dara.cast<CreateAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new CreateAutoSnapshotPolicyResponse({}));
|
|
67602
|
-
}
|
|
67603
|
-
|
|
68354
|
+
return $dara.cast<CreateAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new CreateAutoSnapshotPolicyResponse({}));
|
|
67604
68355
|
}
|
|
67605
68356
|
|
|
67606
68357
|
/**
|
|
@@ -67669,12 +68420,7 @@ export default class Client extends OpenApi {
|
|
|
67669
68420
|
reqBodyType: "formData",
|
|
67670
68421
|
bodyType: "json",
|
|
67671
68422
|
});
|
|
67672
|
-
|
|
67673
|
-
return $dara.cast<CreateBandwidthResourcePackagesResponse>(await this.callApi(params, req, runtime), new CreateBandwidthResourcePackagesResponse({}));
|
|
67674
|
-
} else {
|
|
67675
|
-
return $dara.cast<CreateBandwidthResourcePackagesResponse>(await this.execute(params, req, runtime), new CreateBandwidthResourcePackagesResponse({}));
|
|
67676
|
-
}
|
|
67677
|
-
|
|
68423
|
+
return $dara.cast<CreateBandwidthResourcePackagesResponse>(await this.callApi(params, req, runtime), new CreateBandwidthResourcePackagesResponse({}));
|
|
67678
68424
|
}
|
|
67679
68425
|
|
|
67680
68426
|
/**
|
|
@@ -67755,12 +68501,7 @@ export default class Client extends OpenApi {
|
|
|
67755
68501
|
reqBodyType: "formData",
|
|
67756
68502
|
bodyType: "json",
|
|
67757
68503
|
});
|
|
67758
|
-
|
|
67759
|
-
return $dara.cast<CreateBundleResponse>(await this.callApi(params, req, runtime), new CreateBundleResponse({}));
|
|
67760
|
-
} else {
|
|
67761
|
-
return $dara.cast<CreateBundleResponse>(await this.execute(params, req, runtime), new CreateBundleResponse({}));
|
|
67762
|
-
}
|
|
67763
|
-
|
|
68504
|
+
return $dara.cast<CreateBundleResponse>(await this.callApi(params, req, runtime), new CreateBundleResponse({}));
|
|
67764
68505
|
}
|
|
67765
68506
|
|
|
67766
68507
|
/**
|
|
@@ -67844,12 +68585,7 @@ export default class Client extends OpenApi {
|
|
|
67844
68585
|
reqBodyType: "formData",
|
|
67845
68586
|
bodyType: "json",
|
|
67846
68587
|
});
|
|
67847
|
-
|
|
67848
|
-
return $dara.cast<CreateCdsFileResponse>(await this.callApi(params, req, runtime), new CreateCdsFileResponse({}));
|
|
67849
|
-
} else {
|
|
67850
|
-
return $dara.cast<CreateCdsFileResponse>(await this.execute(params, req, runtime), new CreateCdsFileResponse({}));
|
|
67851
|
-
}
|
|
67852
|
-
|
|
68588
|
+
return $dara.cast<CreateCdsFileResponse>(await this.callApi(params, req, runtime), new CreateCdsFileResponse({}));
|
|
67853
68589
|
}
|
|
67854
68590
|
|
|
67855
68591
|
/**
|
|
@@ -67946,12 +68682,7 @@ export default class Client extends OpenApi {
|
|
|
67946
68682
|
reqBodyType: "formData",
|
|
67947
68683
|
bodyType: "json",
|
|
67948
68684
|
});
|
|
67949
|
-
|
|
67950
|
-
return $dara.cast<CreateCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new CreateCdsFileShareLinkResponse({}));
|
|
67951
|
-
} else {
|
|
67952
|
-
return $dara.cast<CreateCdsFileShareLinkResponse>(await this.execute(params, req, runtime), new CreateCdsFileShareLinkResponse({}));
|
|
67953
|
-
}
|
|
67954
|
-
|
|
68685
|
+
return $dara.cast<CreateCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new CreateCdsFileShareLinkResponse({}));
|
|
67955
68686
|
}
|
|
67956
68687
|
|
|
67957
68688
|
/**
|
|
@@ -68383,12 +69114,7 @@ export default class Client extends OpenApi {
|
|
|
68383
69114
|
reqBodyType: "formData",
|
|
68384
69115
|
bodyType: "json",
|
|
68385
69116
|
});
|
|
68386
|
-
|
|
68387
|
-
return $dara.cast<CreateCenterPolicyResponse>(await this.callApi(params, req, runtime), new CreateCenterPolicyResponse({}));
|
|
68388
|
-
} else {
|
|
68389
|
-
return $dara.cast<CreateCenterPolicyResponse>(await this.execute(params, req, runtime), new CreateCenterPolicyResponse({}));
|
|
68390
|
-
}
|
|
68391
|
-
|
|
69117
|
+
return $dara.cast<CreateCenterPolicyResponse>(await this.callApi(params, req, runtime), new CreateCenterPolicyResponse({}));
|
|
68392
69118
|
}
|
|
68393
69119
|
|
|
68394
69120
|
/**
|
|
@@ -68495,12 +69221,7 @@ export default class Client extends OpenApi {
|
|
|
68495
69221
|
reqBodyType: "formData",
|
|
68496
69222
|
bodyType: "json",
|
|
68497
69223
|
});
|
|
68498
|
-
|
|
68499
|
-
return $dara.cast<CreateCloudDriveServiceResponse>(await this.callApi(params, req, runtime), new CreateCloudDriveServiceResponse({}));
|
|
68500
|
-
} else {
|
|
68501
|
-
return $dara.cast<CreateCloudDriveServiceResponse>(await this.execute(params, req, runtime), new CreateCloudDriveServiceResponse({}));
|
|
68502
|
-
}
|
|
68503
|
-
|
|
69224
|
+
return $dara.cast<CreateCloudDriveServiceResponse>(await this.callApi(params, req, runtime), new CreateCloudDriveServiceResponse({}));
|
|
68504
69225
|
}
|
|
68505
69226
|
|
|
68506
69227
|
/**
|
|
@@ -68557,12 +69278,7 @@ export default class Client extends OpenApi {
|
|
|
68557
69278
|
reqBodyType: "formData",
|
|
68558
69279
|
bodyType: "json",
|
|
68559
69280
|
});
|
|
68560
|
-
|
|
68561
|
-
return $dara.cast<CreateCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new CreateCloudDriveUsersResponse({}));
|
|
68562
|
-
} else {
|
|
68563
|
-
return $dara.cast<CreateCloudDriveUsersResponse>(await this.execute(params, req, runtime), new CreateCloudDriveUsersResponse({}));
|
|
68564
|
-
}
|
|
68565
|
-
|
|
69281
|
+
return $dara.cast<CreateCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new CreateCloudDriveUsersResponse({}));
|
|
68566
69282
|
}
|
|
68567
69283
|
|
|
68568
69284
|
/**
|
|
@@ -68624,12 +69340,7 @@ export default class Client extends OpenApi {
|
|
|
68624
69340
|
reqBodyType: "formData",
|
|
68625
69341
|
bodyType: "json",
|
|
68626
69342
|
});
|
|
68627
|
-
|
|
68628
|
-
return $dara.cast<CreateConfigGroupResponse>(await this.callApi(params, req, runtime), new CreateConfigGroupResponse({}));
|
|
68629
|
-
} else {
|
|
68630
|
-
return $dara.cast<CreateConfigGroupResponse>(await this.execute(params, req, runtime), new CreateConfigGroupResponse({}));
|
|
68631
|
-
}
|
|
68632
|
-
|
|
69343
|
+
return $dara.cast<CreateConfigGroupResponse>(await this.callApi(params, req, runtime), new CreateConfigGroupResponse({}));
|
|
68633
69344
|
}
|
|
68634
69345
|
|
|
68635
69346
|
/**
|
|
@@ -68899,12 +69610,7 @@ export default class Client extends OpenApi {
|
|
|
68899
69610
|
reqBodyType: "formData",
|
|
68900
69611
|
bodyType: "json",
|
|
68901
69612
|
});
|
|
68902
|
-
|
|
68903
|
-
return $dara.cast<CreateDesktopGroupResponse>(await this.callApi(params, req, runtime), new CreateDesktopGroupResponse({}));
|
|
68904
|
-
} else {
|
|
68905
|
-
return $dara.cast<CreateDesktopGroupResponse>(await this.execute(params, req, runtime), new CreateDesktopGroupResponse({}));
|
|
68906
|
-
}
|
|
68907
|
-
|
|
69613
|
+
return $dara.cast<CreateDesktopGroupResponse>(await this.callApi(params, req, runtime), new CreateDesktopGroupResponse({}));
|
|
68908
69614
|
}
|
|
68909
69615
|
|
|
68910
69616
|
/**
|
|
@@ -69010,12 +69716,7 @@ export default class Client extends OpenApi {
|
|
|
69010
69716
|
reqBodyType: "formData",
|
|
69011
69717
|
bodyType: "json",
|
|
69012
69718
|
});
|
|
69013
|
-
|
|
69014
|
-
return $dara.cast<CreateDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new CreateDesktopOversoldGroupResponse({}));
|
|
69015
|
-
} else {
|
|
69016
|
-
return $dara.cast<CreateDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new CreateDesktopOversoldGroupResponse({}));
|
|
69017
|
-
}
|
|
69018
|
-
|
|
69719
|
+
return $dara.cast<CreateDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new CreateDesktopOversoldGroupResponse({}));
|
|
69019
69720
|
}
|
|
69020
69721
|
|
|
69021
69722
|
/**
|
|
@@ -69204,12 +69905,7 @@ export default class Client extends OpenApi {
|
|
|
69204
69905
|
reqBodyType: "formData",
|
|
69205
69906
|
bodyType: "json",
|
|
69206
69907
|
});
|
|
69207
|
-
|
|
69208
|
-
return $dara.cast<CreateDesktopsResponse>(await this.callApi(params, req, runtime), new CreateDesktopsResponse({}));
|
|
69209
|
-
} else {
|
|
69210
|
-
return $dara.cast<CreateDesktopsResponse>(await this.execute(params, req, runtime), new CreateDesktopsResponse({}));
|
|
69211
|
-
}
|
|
69212
|
-
|
|
69908
|
+
return $dara.cast<CreateDesktopsResponse>(await this.callApi(params, req, runtime), new CreateDesktopsResponse({}));
|
|
69213
69909
|
}
|
|
69214
69910
|
|
|
69215
69911
|
/**
|
|
@@ -69260,12 +69956,7 @@ export default class Client extends OpenApi {
|
|
|
69260
69956
|
reqBodyType: "formData",
|
|
69261
69957
|
bodyType: "json",
|
|
69262
69958
|
});
|
|
69263
|
-
|
|
69264
|
-
return $dara.cast<CreateDiskEncryptionServiceResponse>(await this.callApi(params, req, runtime), new CreateDiskEncryptionServiceResponse({}));
|
|
69265
|
-
} else {
|
|
69266
|
-
return $dara.cast<CreateDiskEncryptionServiceResponse>(await this.execute(params, req, runtime), new CreateDiskEncryptionServiceResponse({}));
|
|
69267
|
-
}
|
|
69268
|
-
|
|
69959
|
+
return $dara.cast<CreateDiskEncryptionServiceResponse>(await this.callApi(params, req, runtime), new CreateDiskEncryptionServiceResponse({}));
|
|
69269
69960
|
}
|
|
69270
69961
|
|
|
69271
69962
|
/**
|
|
@@ -69343,12 +70034,7 @@ export default class Client extends OpenApi {
|
|
|
69343
70034
|
reqBodyType: "formData",
|
|
69344
70035
|
bodyType: "json",
|
|
69345
70036
|
});
|
|
69346
|
-
|
|
69347
|
-
return $dara.cast<CreateImageResponse>(await this.callApi(params, req, runtime), new CreateImageResponse({}));
|
|
69348
|
-
} else {
|
|
69349
|
-
return $dara.cast<CreateImageResponse>(await this.execute(params, req, runtime), new CreateImageResponse({}));
|
|
69350
|
-
}
|
|
69351
|
-
|
|
70037
|
+
return $dara.cast<CreateImageResponse>(await this.callApi(params, req, runtime), new CreateImageResponse({}));
|
|
69352
70038
|
}
|
|
69353
70039
|
|
|
69354
70040
|
/**
|
|
@@ -69422,12 +70108,7 @@ export default class Client extends OpenApi {
|
|
|
69422
70108
|
reqBodyType: "formData",
|
|
69423
70109
|
bodyType: "json",
|
|
69424
70110
|
});
|
|
69425
|
-
|
|
69426
|
-
return $dara.cast<CreateNASFileSystemResponse>(await this.callApi(params, req, runtime), new CreateNASFileSystemResponse({}));
|
|
69427
|
-
} else {
|
|
69428
|
-
return $dara.cast<CreateNASFileSystemResponse>(await this.execute(params, req, runtime), new CreateNASFileSystemResponse({}));
|
|
69429
|
-
}
|
|
69430
|
-
|
|
70111
|
+
return $dara.cast<CreateNASFileSystemResponse>(await this.callApi(params, req, runtime), new CreateNASFileSystemResponse({}));
|
|
69431
70112
|
}
|
|
69432
70113
|
|
|
69433
70114
|
/**
|
|
@@ -69517,12 +70198,7 @@ export default class Client extends OpenApi {
|
|
|
69517
70198
|
reqBodyType: "formData",
|
|
69518
70199
|
bodyType: "json",
|
|
69519
70200
|
});
|
|
69520
|
-
|
|
69521
|
-
return $dara.cast<CreateNetworkPackageResponse>(await this.callApi(params, req, runtime), new CreateNetworkPackageResponse({}));
|
|
69522
|
-
} else {
|
|
69523
|
-
return $dara.cast<CreateNetworkPackageResponse>(await this.execute(params, req, runtime), new CreateNetworkPackageResponse({}));
|
|
69524
|
-
}
|
|
69525
|
-
|
|
70201
|
+
return $dara.cast<CreateNetworkPackageResponse>(await this.callApi(params, req, runtime), new CreateNetworkPackageResponse({}));
|
|
69526
70202
|
}
|
|
69527
70203
|
|
|
69528
70204
|
/**
|
|
@@ -69791,12 +70467,7 @@ export default class Client extends OpenApi {
|
|
|
69791
70467
|
reqBodyType: "formData",
|
|
69792
70468
|
bodyType: "json",
|
|
69793
70469
|
});
|
|
69794
|
-
|
|
69795
|
-
return $dara.cast<CreatePolicyGroupResponse>(await this.callApi(params, req, runtime), new CreatePolicyGroupResponse({}));
|
|
69796
|
-
} else {
|
|
69797
|
-
return $dara.cast<CreatePolicyGroupResponse>(await this.execute(params, req, runtime), new CreatePolicyGroupResponse({}));
|
|
69798
|
-
}
|
|
69799
|
-
|
|
70470
|
+
return $dara.cast<CreatePolicyGroupResponse>(await this.callApi(params, req, runtime), new CreatePolicyGroupResponse({}));
|
|
69800
70471
|
}
|
|
69801
70472
|
|
|
69802
70473
|
/**
|
|
@@ -69866,12 +70537,7 @@ export default class Client extends OpenApi {
|
|
|
69866
70537
|
reqBodyType: "formData",
|
|
69867
70538
|
bodyType: "json",
|
|
69868
70539
|
});
|
|
69869
|
-
|
|
69870
|
-
return $dara.cast<CreateRAMDirectoryResponse>(await this.callApi(params, req, runtime), new CreateRAMDirectoryResponse({}));
|
|
69871
|
-
} else {
|
|
69872
|
-
return $dara.cast<CreateRAMDirectoryResponse>(await this.execute(params, req, runtime), new CreateRAMDirectoryResponse({}));
|
|
69873
|
-
}
|
|
69874
|
-
|
|
70540
|
+
return $dara.cast<CreateRAMDirectoryResponse>(await this.callApi(params, req, runtime), new CreateRAMDirectoryResponse({}));
|
|
69875
70541
|
}
|
|
69876
70542
|
|
|
69877
70543
|
/**
|
|
@@ -69970,12 +70636,7 @@ export default class Client extends OpenApi {
|
|
|
69970
70636
|
reqBodyType: "formData",
|
|
69971
70637
|
bodyType: "json",
|
|
69972
70638
|
});
|
|
69973
|
-
|
|
69974
|
-
return $dara.cast<CreateSimpleOfficeSiteResponse>(await this.callApi(params, req, runtime), new CreateSimpleOfficeSiteResponse({}));
|
|
69975
|
-
} else {
|
|
69976
|
-
return $dara.cast<CreateSimpleOfficeSiteResponse>(await this.execute(params, req, runtime), new CreateSimpleOfficeSiteResponse({}));
|
|
69977
|
-
}
|
|
69978
|
-
|
|
70639
|
+
return $dara.cast<CreateSimpleOfficeSiteResponse>(await this.callApi(params, req, runtime), new CreateSimpleOfficeSiteResponse({}));
|
|
69979
70640
|
}
|
|
69980
70641
|
|
|
69981
70642
|
/**
|
|
@@ -70036,12 +70697,7 @@ export default class Client extends OpenApi {
|
|
|
70036
70697
|
reqBodyType: "formData",
|
|
70037
70698
|
bodyType: "json",
|
|
70038
70699
|
});
|
|
70039
|
-
|
|
70040
|
-
return $dara.cast<CreateSnapshotResponse>(await this.callApi(params, req, runtime), new CreateSnapshotResponse({}));
|
|
70041
|
-
} else {
|
|
70042
|
-
return $dara.cast<CreateSnapshotResponse>(await this.execute(params, req, runtime), new CreateSnapshotResponse({}));
|
|
70043
|
-
}
|
|
70044
|
-
|
|
70700
|
+
return $dara.cast<CreateSnapshotResponse>(await this.callApi(params, req, runtime), new CreateSnapshotResponse({}));
|
|
70045
70701
|
}
|
|
70046
70702
|
|
|
70047
70703
|
/**
|
|
@@ -70090,12 +70746,7 @@ export default class Client extends OpenApi {
|
|
|
70090
70746
|
reqBodyType: "formData",
|
|
70091
70747
|
bodyType: "json",
|
|
70092
70748
|
});
|
|
70093
|
-
|
|
70094
|
-
return $dara.cast<DeleteAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAutoSnapshotPolicyResponse({}));
|
|
70095
|
-
} else {
|
|
70096
|
-
return $dara.cast<DeleteAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new DeleteAutoSnapshotPolicyResponse({}));
|
|
70097
|
-
}
|
|
70098
|
-
|
|
70749
|
+
return $dara.cast<DeleteAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new DeleteAutoSnapshotPolicyResponse({}));
|
|
70099
70750
|
}
|
|
70100
70751
|
|
|
70101
70752
|
/**
|
|
@@ -70141,12 +70792,7 @@ export default class Client extends OpenApi {
|
|
|
70141
70792
|
reqBodyType: "formData",
|
|
70142
70793
|
bodyType: "json",
|
|
70143
70794
|
});
|
|
70144
|
-
|
|
70145
|
-
return $dara.cast<DeleteBundlesResponse>(await this.callApi(params, req, runtime), new DeleteBundlesResponse({}));
|
|
70146
|
-
} else {
|
|
70147
|
-
return $dara.cast<DeleteBundlesResponse>(await this.execute(params, req, runtime), new DeleteBundlesResponse({}));
|
|
70148
|
-
}
|
|
70149
|
-
|
|
70795
|
+
return $dara.cast<DeleteBundlesResponse>(await this.callApi(params, req, runtime), new DeleteBundlesResponse({}));
|
|
70150
70796
|
}
|
|
70151
70797
|
|
|
70152
70798
|
/**
|
|
@@ -70204,12 +70850,7 @@ export default class Client extends OpenApi {
|
|
|
70204
70850
|
reqBodyType: "formData",
|
|
70205
70851
|
bodyType: "json",
|
|
70206
70852
|
});
|
|
70207
|
-
|
|
70208
|
-
return $dara.cast<DeleteCdsFileResponse>(await this.callApi(params, req, runtime), new DeleteCdsFileResponse({}));
|
|
70209
|
-
} else {
|
|
70210
|
-
return $dara.cast<DeleteCdsFileResponse>(await this.execute(params, req, runtime), new DeleteCdsFileResponse({}));
|
|
70211
|
-
}
|
|
70212
|
-
|
|
70853
|
+
return $dara.cast<DeleteCdsFileResponse>(await this.callApi(params, req, runtime), new DeleteCdsFileResponse({}));
|
|
70213
70854
|
}
|
|
70214
70855
|
|
|
70215
70856
|
/**
|
|
@@ -70263,12 +70904,7 @@ export default class Client extends OpenApi {
|
|
|
70263
70904
|
reqBodyType: "formData",
|
|
70264
70905
|
bodyType: "json",
|
|
70265
70906
|
});
|
|
70266
|
-
|
|
70267
|
-
return $dara.cast<DeleteCenterPolicyResponse>(await this.callApi(params, req, runtime), new DeleteCenterPolicyResponse({}));
|
|
70268
|
-
} else {
|
|
70269
|
-
return $dara.cast<DeleteCenterPolicyResponse>(await this.execute(params, req, runtime), new DeleteCenterPolicyResponse({}));
|
|
70270
|
-
}
|
|
70271
|
-
|
|
70907
|
+
return $dara.cast<DeleteCenterPolicyResponse>(await this.callApi(params, req, runtime), new DeleteCenterPolicyResponse({}));
|
|
70272
70908
|
}
|
|
70273
70909
|
|
|
70274
70910
|
/**
|
|
@@ -70318,12 +70954,7 @@ export default class Client extends OpenApi {
|
|
|
70318
70954
|
reqBodyType: "formData",
|
|
70319
70955
|
bodyType: "json",
|
|
70320
70956
|
});
|
|
70321
|
-
|
|
70322
|
-
return $dara.cast<DeleteCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new DeleteCloudDriveGroupsResponse({}));
|
|
70323
|
-
} else {
|
|
70324
|
-
return $dara.cast<DeleteCloudDriveGroupsResponse>(await this.execute(params, req, runtime), new DeleteCloudDriveGroupsResponse({}));
|
|
70325
|
-
}
|
|
70326
|
-
|
|
70957
|
+
return $dara.cast<DeleteCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new DeleteCloudDriveGroupsResponse({}));
|
|
70327
70958
|
}
|
|
70328
70959
|
|
|
70329
70960
|
/**
|
|
@@ -70373,12 +71004,7 @@ export default class Client extends OpenApi {
|
|
|
70373
71004
|
reqBodyType: "formData",
|
|
70374
71005
|
bodyType: "json",
|
|
70375
71006
|
});
|
|
70376
|
-
|
|
70377
|
-
return $dara.cast<DeleteCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new DeleteCloudDriveUsersResponse({}));
|
|
70378
|
-
} else {
|
|
70379
|
-
return $dara.cast<DeleteCloudDriveUsersResponse>(await this.execute(params, req, runtime), new DeleteCloudDriveUsersResponse({}));
|
|
70380
|
-
}
|
|
70381
|
-
|
|
71007
|
+
return $dara.cast<DeleteCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new DeleteCloudDriveUsersResponse({}));
|
|
70382
71008
|
}
|
|
70383
71009
|
|
|
70384
71010
|
/**
|
|
@@ -70424,12 +71050,7 @@ export default class Client extends OpenApi {
|
|
|
70424
71050
|
reqBodyType: "formData",
|
|
70425
71051
|
bodyType: "json",
|
|
70426
71052
|
});
|
|
70427
|
-
|
|
70428
|
-
return $dara.cast<DeleteConfigGroupResponse>(await this.callApi(params, req, runtime), new DeleteConfigGroupResponse({}));
|
|
70429
|
-
} else {
|
|
70430
|
-
return $dara.cast<DeleteConfigGroupResponse>(await this.execute(params, req, runtime), new DeleteConfigGroupResponse({}));
|
|
70431
|
-
}
|
|
70432
|
-
|
|
71053
|
+
return $dara.cast<DeleteConfigGroupResponse>(await this.callApi(params, req, runtime), new DeleteConfigGroupResponse({}));
|
|
70433
71054
|
}
|
|
70434
71055
|
|
|
70435
71056
|
/**
|
|
@@ -70480,12 +71101,7 @@ export default class Client extends OpenApi {
|
|
|
70480
71101
|
reqBodyType: "formData",
|
|
70481
71102
|
bodyType: "json",
|
|
70482
71103
|
});
|
|
70483
|
-
|
|
70484
|
-
return $dara.cast<DeleteDesktopGroupResponse>(await this.callApi(params, req, runtime), new DeleteDesktopGroupResponse({}));
|
|
70485
|
-
} else {
|
|
70486
|
-
return $dara.cast<DeleteDesktopGroupResponse>(await this.execute(params, req, runtime), new DeleteDesktopGroupResponse({}));
|
|
70487
|
-
}
|
|
70488
|
-
|
|
71104
|
+
return $dara.cast<DeleteDesktopGroupResponse>(await this.callApi(params, req, runtime), new DeleteDesktopGroupResponse({}));
|
|
70489
71105
|
}
|
|
70490
71106
|
|
|
70491
71107
|
/**
|
|
@@ -70536,12 +71152,7 @@ export default class Client extends OpenApi {
|
|
|
70536
71152
|
reqBodyType: "formData",
|
|
70537
71153
|
bodyType: "json",
|
|
70538
71154
|
});
|
|
70539
|
-
|
|
70540
|
-
return $dara.cast<DeleteDesktopsResponse>(await this.callApi(params, req, runtime), new DeleteDesktopsResponse({}));
|
|
70541
|
-
} else {
|
|
70542
|
-
return $dara.cast<DeleteDesktopsResponse>(await this.execute(params, req, runtime), new DeleteDesktopsResponse({}));
|
|
70543
|
-
}
|
|
70544
|
-
|
|
71155
|
+
return $dara.cast<DeleteDesktopsResponse>(await this.callApi(params, req, runtime), new DeleteDesktopsResponse({}));
|
|
70545
71156
|
}
|
|
70546
71157
|
|
|
70547
71158
|
/**
|
|
@@ -70598,12 +71209,7 @@ export default class Client extends OpenApi {
|
|
|
70598
71209
|
reqBodyType: "formData",
|
|
70599
71210
|
bodyType: "json",
|
|
70600
71211
|
});
|
|
70601
|
-
|
|
70602
|
-
return $dara.cast<DeleteDevicesResponse>(await this.callApi(params, req, runtime), new DeleteDevicesResponse({}));
|
|
70603
|
-
} else {
|
|
70604
|
-
return $dara.cast<DeleteDevicesResponse>(await this.execute(params, req, runtime), new DeleteDevicesResponse({}));
|
|
70605
|
-
}
|
|
70606
|
-
|
|
71212
|
+
return $dara.cast<DeleteDevicesResponse>(await this.callApi(params, req, runtime), new DeleteDevicesResponse({}));
|
|
70607
71213
|
}
|
|
70608
71214
|
|
|
70609
71215
|
/**
|
|
@@ -70655,12 +71261,7 @@ export default class Client extends OpenApi {
|
|
|
70655
71261
|
reqBodyType: "formData",
|
|
70656
71262
|
bodyType: "json",
|
|
70657
71263
|
});
|
|
70658
|
-
|
|
70659
|
-
return $dara.cast<DeleteDirectoriesResponse>(await this.callApi(params, req, runtime), new DeleteDirectoriesResponse({}));
|
|
70660
|
-
} else {
|
|
70661
|
-
return $dara.cast<DeleteDirectoriesResponse>(await this.execute(params, req, runtime), new DeleteDirectoriesResponse({}));
|
|
70662
|
-
}
|
|
70663
|
-
|
|
71264
|
+
return $dara.cast<DeleteDirectoriesResponse>(await this.callApi(params, req, runtime), new DeleteDirectoriesResponse({}));
|
|
70664
71265
|
}
|
|
70665
71266
|
|
|
70666
71267
|
/**
|
|
@@ -70707,12 +71308,7 @@ export default class Client extends OpenApi {
|
|
|
70707
71308
|
reqBodyType: "formData",
|
|
70708
71309
|
bodyType: "json",
|
|
70709
71310
|
});
|
|
70710
|
-
|
|
70711
|
-
return $dara.cast<DeleteEduRoomResponse>(await this.callApi(params, req, runtime), new DeleteEduRoomResponse({}));
|
|
70712
|
-
} else {
|
|
70713
|
-
return $dara.cast<DeleteEduRoomResponse>(await this.execute(params, req, runtime), new DeleteEduRoomResponse({}));
|
|
70714
|
-
}
|
|
70715
|
-
|
|
71311
|
+
return $dara.cast<DeleteEduRoomResponse>(await this.callApi(params, req, runtime), new DeleteEduRoomResponse({}));
|
|
70716
71312
|
}
|
|
70717
71313
|
|
|
70718
71314
|
/**
|
|
@@ -70764,12 +71360,7 @@ export default class Client extends OpenApi {
|
|
|
70764
71360
|
reqBodyType: "formData",
|
|
70765
71361
|
bodyType: "json",
|
|
70766
71362
|
});
|
|
70767
|
-
|
|
70768
|
-
return $dara.cast<DeleteImagesResponse>(await this.callApi(params, req, runtime), new DeleteImagesResponse({}));
|
|
70769
|
-
} else {
|
|
70770
|
-
return $dara.cast<DeleteImagesResponse>(await this.execute(params, req, runtime), new DeleteImagesResponse({}));
|
|
70771
|
-
}
|
|
70772
|
-
|
|
71363
|
+
return $dara.cast<DeleteImagesResponse>(await this.callApi(params, req, runtime), new DeleteImagesResponse({}));
|
|
70773
71364
|
}
|
|
70774
71365
|
|
|
70775
71366
|
/**
|
|
@@ -70823,12 +71414,7 @@ export default class Client extends OpenApi {
|
|
|
70823
71414
|
reqBodyType: "formData",
|
|
70824
71415
|
bodyType: "json",
|
|
70825
71416
|
});
|
|
70826
|
-
|
|
70827
|
-
return $dara.cast<DeleteNASFileSystemsResponse>(await this.callApi(params, req, runtime), new DeleteNASFileSystemsResponse({}));
|
|
70828
|
-
} else {
|
|
70829
|
-
return $dara.cast<DeleteNASFileSystemsResponse>(await this.execute(params, req, runtime), new DeleteNASFileSystemsResponse({}));
|
|
70830
|
-
}
|
|
70831
|
-
|
|
71417
|
+
return $dara.cast<DeleteNASFileSystemsResponse>(await this.callApi(params, req, runtime), new DeleteNASFileSystemsResponse({}));
|
|
70832
71418
|
}
|
|
70833
71419
|
|
|
70834
71420
|
/**
|
|
@@ -70878,12 +71464,7 @@ export default class Client extends OpenApi {
|
|
|
70878
71464
|
reqBodyType: "formData",
|
|
70879
71465
|
bodyType: "json",
|
|
70880
71466
|
});
|
|
70881
|
-
|
|
70882
|
-
return $dara.cast<DeleteNetworkPackagesResponse>(await this.callApi(params, req, runtime), new DeleteNetworkPackagesResponse({}));
|
|
70883
|
-
} else {
|
|
70884
|
-
return $dara.cast<DeleteNetworkPackagesResponse>(await this.execute(params, req, runtime), new DeleteNetworkPackagesResponse({}));
|
|
70885
|
-
}
|
|
70886
|
-
|
|
71467
|
+
return $dara.cast<DeleteNetworkPackagesResponse>(await this.callApi(params, req, runtime), new DeleteNetworkPackagesResponse({}));
|
|
70887
71468
|
}
|
|
70888
71469
|
|
|
70889
71470
|
/**
|
|
@@ -70935,12 +71516,7 @@ export default class Client extends OpenApi {
|
|
|
70935
71516
|
reqBodyType: "formData",
|
|
70936
71517
|
bodyType: "json",
|
|
70937
71518
|
});
|
|
70938
|
-
|
|
70939
|
-
return $dara.cast<DeleteOfficeSitesResponse>(await this.callApi(params, req, runtime), new DeleteOfficeSitesResponse({}));
|
|
70940
|
-
} else {
|
|
70941
|
-
return $dara.cast<DeleteOfficeSitesResponse>(await this.execute(params, req, runtime), new DeleteOfficeSitesResponse({}));
|
|
70942
|
-
}
|
|
70943
|
-
|
|
71519
|
+
return $dara.cast<DeleteOfficeSitesResponse>(await this.callApi(params, req, runtime), new DeleteOfficeSitesResponse({}));
|
|
70944
71520
|
}
|
|
70945
71521
|
|
|
70946
71522
|
/**
|
|
@@ -70996,12 +71572,7 @@ export default class Client extends OpenApi {
|
|
|
70996
71572
|
reqBodyType: "formData",
|
|
70997
71573
|
bodyType: "json",
|
|
70998
71574
|
});
|
|
70999
|
-
|
|
71000
|
-
return $dara.cast<DeletePolicyGroupsResponse>(await this.callApi(params, req, runtime), new DeletePolicyGroupsResponse({}));
|
|
71001
|
-
} else {
|
|
71002
|
-
return $dara.cast<DeletePolicyGroupsResponse>(await this.execute(params, req, runtime), new DeletePolicyGroupsResponse({}));
|
|
71003
|
-
}
|
|
71004
|
-
|
|
71575
|
+
return $dara.cast<DeletePolicyGroupsResponse>(await this.callApi(params, req, runtime), new DeletePolicyGroupsResponse({}));
|
|
71005
71576
|
}
|
|
71006
71577
|
|
|
71007
71578
|
/**
|
|
@@ -71054,12 +71625,7 @@ export default class Client extends OpenApi {
|
|
|
71054
71625
|
reqBodyType: "formData",
|
|
71055
71626
|
bodyType: "json",
|
|
71056
71627
|
});
|
|
71057
|
-
|
|
71058
|
-
return $dara.cast<DeleteSnapshotResponse>(await this.callApi(params, req, runtime), new DeleteSnapshotResponse({}));
|
|
71059
|
-
} else {
|
|
71060
|
-
return $dara.cast<DeleteSnapshotResponse>(await this.execute(params, req, runtime), new DeleteSnapshotResponse({}));
|
|
71061
|
-
}
|
|
71062
|
-
|
|
71628
|
+
return $dara.cast<DeleteSnapshotResponse>(await this.callApi(params, req, runtime), new DeleteSnapshotResponse({}));
|
|
71063
71629
|
}
|
|
71064
71630
|
|
|
71065
71631
|
/**
|
|
@@ -71111,12 +71677,7 @@ export default class Client extends OpenApi {
|
|
|
71111
71677
|
reqBodyType: "formData",
|
|
71112
71678
|
bodyType: "json",
|
|
71113
71679
|
});
|
|
71114
|
-
|
|
71115
|
-
return $dara.cast<DeleteVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualMFADeviceResponse({}));
|
|
71116
|
-
} else {
|
|
71117
|
-
return $dara.cast<DeleteVirtualMFADeviceResponse>(await this.execute(params, req, runtime), new DeleteVirtualMFADeviceResponse({}));
|
|
71118
|
-
}
|
|
71119
|
-
|
|
71680
|
+
return $dara.cast<DeleteVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new DeleteVirtualMFADeviceResponse({}));
|
|
71120
71681
|
}
|
|
71121
71682
|
|
|
71122
71683
|
/**
|
|
@@ -71181,12 +71742,7 @@ export default class Client extends OpenApi {
|
|
|
71181
71742
|
reqBodyType: "formData",
|
|
71182
71743
|
bodyType: "json",
|
|
71183
71744
|
});
|
|
71184
|
-
|
|
71185
|
-
return $dara.cast<DescribeAclEntriesResponse>(await this.callApi(params, req, runtime), new DescribeAclEntriesResponse({}));
|
|
71186
|
-
} else {
|
|
71187
|
-
return $dara.cast<DescribeAclEntriesResponse>(await this.execute(params, req, runtime), new DescribeAclEntriesResponse({}));
|
|
71188
|
-
}
|
|
71189
|
-
|
|
71745
|
+
return $dara.cast<DescribeAclEntriesResponse>(await this.callApi(params, req, runtime), new DescribeAclEntriesResponse({}));
|
|
71190
71746
|
}
|
|
71191
71747
|
|
|
71192
71748
|
/**
|
|
@@ -71247,12 +71803,7 @@ export default class Client extends OpenApi {
|
|
|
71247
71803
|
reqBodyType: "formData",
|
|
71248
71804
|
bodyType: "json",
|
|
71249
71805
|
});
|
|
71250
|
-
|
|
71251
|
-
return $dara.cast<DescribeAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new DescribeAutoSnapshotPolicyResponse({}));
|
|
71252
|
-
} else {
|
|
71253
|
-
return $dara.cast<DescribeAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new DescribeAutoSnapshotPolicyResponse({}));
|
|
71254
|
-
}
|
|
71255
|
-
|
|
71806
|
+
return $dara.cast<DescribeAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new DescribeAutoSnapshotPolicyResponse({}));
|
|
71256
71807
|
}
|
|
71257
71808
|
|
|
71258
71809
|
/**
|
|
@@ -71377,12 +71928,7 @@ export default class Client extends OpenApi {
|
|
|
71377
71928
|
reqBodyType: "formData",
|
|
71378
71929
|
bodyType: "json",
|
|
71379
71930
|
});
|
|
71380
|
-
|
|
71381
|
-
return $dara.cast<DescribeBundlesResponse>(await this.callApi(params, req, runtime), new DescribeBundlesResponse({}));
|
|
71382
|
-
} else {
|
|
71383
|
-
return $dara.cast<DescribeBundlesResponse>(await this.execute(params, req, runtime), new DescribeBundlesResponse({}));
|
|
71384
|
-
}
|
|
71385
|
-
|
|
71931
|
+
return $dara.cast<DescribeBundlesResponse>(await this.callApi(params, req, runtime), new DescribeBundlesResponse({}));
|
|
71386
71932
|
}
|
|
71387
71933
|
|
|
71388
71934
|
/**
|
|
@@ -71448,12 +71994,7 @@ export default class Client extends OpenApi {
|
|
|
71448
71994
|
reqBodyType: "formData",
|
|
71449
71995
|
bodyType: "json",
|
|
71450
71996
|
});
|
|
71451
|
-
|
|
71452
|
-
return $dara.cast<DescribeCdsFileShareLinksResponse>(await this.callApi(params, req, runtime), new DescribeCdsFileShareLinksResponse({}));
|
|
71453
|
-
} else {
|
|
71454
|
-
return $dara.cast<DescribeCdsFileShareLinksResponse>(await this.execute(params, req, runtime), new DescribeCdsFileShareLinksResponse({}));
|
|
71455
|
-
}
|
|
71456
|
-
|
|
71997
|
+
return $dara.cast<DescribeCdsFileShareLinksResponse>(await this.callApi(params, req, runtime), new DescribeCdsFileShareLinksResponse({}));
|
|
71457
71998
|
}
|
|
71458
71999
|
|
|
71459
72000
|
/**
|
|
@@ -71503,12 +72044,7 @@ export default class Client extends OpenApi {
|
|
|
71503
72044
|
reqBodyType: "formData",
|
|
71504
72045
|
bodyType: "json",
|
|
71505
72046
|
});
|
|
71506
|
-
|
|
71507
|
-
return $dara.cast<DescribeCensResponse>(await this.callApi(params, req, runtime), new DescribeCensResponse({}));
|
|
71508
|
-
} else {
|
|
71509
|
-
return $dara.cast<DescribeCensResponse>(await this.execute(params, req, runtime), new DescribeCensResponse({}));
|
|
71510
|
-
}
|
|
71511
|
-
|
|
72047
|
+
return $dara.cast<DescribeCensResponse>(await this.callApi(params, req, runtime), new DescribeCensResponse({}));
|
|
71512
72048
|
}
|
|
71513
72049
|
|
|
71514
72050
|
/**
|
|
@@ -71570,12 +72106,7 @@ export default class Client extends OpenApi {
|
|
|
71570
72106
|
reqBodyType: "formData",
|
|
71571
72107
|
bodyType: "json",
|
|
71572
72108
|
});
|
|
71573
|
-
|
|
71574
|
-
return $dara.cast<DescribeCenterPolicyListResponse>(await this.callApi(params, req, runtime), new DescribeCenterPolicyListResponse({}));
|
|
71575
|
-
} else {
|
|
71576
|
-
return $dara.cast<DescribeCenterPolicyListResponse>(await this.execute(params, req, runtime), new DescribeCenterPolicyListResponse({}));
|
|
71577
|
-
}
|
|
71578
|
-
|
|
72109
|
+
return $dara.cast<DescribeCenterPolicyListResponse>(await this.callApi(params, req, runtime), new DescribeCenterPolicyListResponse({}));
|
|
71579
72110
|
}
|
|
71580
72111
|
|
|
71581
72112
|
/**
|
|
@@ -71634,6 +72165,14 @@ export default class Client extends OpenApi {
|
|
|
71634
72165
|
query["EventTypes"] = request.eventTypes;
|
|
71635
72166
|
}
|
|
71636
72167
|
|
|
72168
|
+
if (!$dara.isNull(request.fillHardwareInfo)) {
|
|
72169
|
+
query["FillHardwareInfo"] = request.fillHardwareInfo;
|
|
72170
|
+
}
|
|
72171
|
+
|
|
72172
|
+
if (!$dara.isNull(request.language)) {
|
|
72173
|
+
query["Language"] = request.language;
|
|
72174
|
+
}
|
|
72175
|
+
|
|
71637
72176
|
if (!$dara.isNull(request.maxResults)) {
|
|
71638
72177
|
query["MaxResults"] = request.maxResults;
|
|
71639
72178
|
}
|
|
@@ -71672,12 +72211,7 @@ export default class Client extends OpenApi {
|
|
|
71672
72211
|
reqBodyType: "formData",
|
|
71673
72212
|
bodyType: "json",
|
|
71674
72213
|
});
|
|
71675
|
-
|
|
71676
|
-
return $dara.cast<DescribeClientEventsResponse>(await this.callApi(params, req, runtime), new DescribeClientEventsResponse({}));
|
|
71677
|
-
} else {
|
|
71678
|
-
return $dara.cast<DescribeClientEventsResponse>(await this.execute(params, req, runtime), new DescribeClientEventsResponse({}));
|
|
71679
|
-
}
|
|
71680
|
-
|
|
72214
|
+
return $dara.cast<DescribeClientEventsResponse>(await this.callApi(params, req, runtime), new DescribeClientEventsResponse({}));
|
|
71681
72215
|
}
|
|
71682
72216
|
|
|
71683
72217
|
/**
|
|
@@ -71766,12 +72300,7 @@ export default class Client extends OpenApi {
|
|
|
71766
72300
|
reqBodyType: "formData",
|
|
71767
72301
|
bodyType: "json",
|
|
71768
72302
|
});
|
|
71769
|
-
|
|
71770
|
-
return $dara.cast<DescribeCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new DescribeCloudDriveGroupsResponse({}));
|
|
71771
|
-
} else {
|
|
71772
|
-
return $dara.cast<DescribeCloudDriveGroupsResponse>(await this.execute(params, req, runtime), new DescribeCloudDriveGroupsResponse({}));
|
|
71773
|
-
}
|
|
71774
|
-
|
|
72303
|
+
return $dara.cast<DescribeCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new DescribeCloudDriveGroupsResponse({}));
|
|
71775
72304
|
}
|
|
71776
72305
|
|
|
71777
72306
|
/**
|
|
@@ -71817,12 +72346,7 @@ export default class Client extends OpenApi {
|
|
|
71817
72346
|
reqBodyType: "formData",
|
|
71818
72347
|
bodyType: "json",
|
|
71819
72348
|
});
|
|
71820
|
-
|
|
71821
|
-
return $dara.cast<DescribeCloudDrivePermissionsResponse>(await this.callApi(params, req, runtime), new DescribeCloudDrivePermissionsResponse({}));
|
|
71822
|
-
} else {
|
|
71823
|
-
return $dara.cast<DescribeCloudDrivePermissionsResponse>(await this.execute(params, req, runtime), new DescribeCloudDrivePermissionsResponse({}));
|
|
71824
|
-
}
|
|
71825
|
-
|
|
72349
|
+
return $dara.cast<DescribeCloudDrivePermissionsResponse>(await this.callApi(params, req, runtime), new DescribeCloudDrivePermissionsResponse({}));
|
|
71826
72350
|
}
|
|
71827
72351
|
|
|
71828
72352
|
/**
|
|
@@ -71880,12 +72404,7 @@ export default class Client extends OpenApi {
|
|
|
71880
72404
|
reqBodyType: "formData",
|
|
71881
72405
|
bodyType: "json",
|
|
71882
72406
|
});
|
|
71883
|
-
|
|
71884
|
-
return $dara.cast<DescribeCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new DescribeCloudDriveUsersResponse({}));
|
|
71885
|
-
} else {
|
|
71886
|
-
return $dara.cast<DescribeCloudDriveUsersResponse>(await this.execute(params, req, runtime), new DescribeCloudDriveUsersResponse({}));
|
|
71887
|
-
}
|
|
71888
|
-
|
|
72407
|
+
return $dara.cast<DescribeCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new DescribeCloudDriveUsersResponse({}));
|
|
71889
72408
|
}
|
|
71890
72409
|
|
|
71891
72410
|
/**
|
|
@@ -71959,12 +72478,7 @@ export default class Client extends OpenApi {
|
|
|
71959
72478
|
reqBodyType: "formData",
|
|
71960
72479
|
bodyType: "json",
|
|
71961
72480
|
});
|
|
71962
|
-
|
|
71963
|
-
return $dara.cast<DescribeConfigGroupResponse>(await this.callApi(params, req, runtime), new DescribeConfigGroupResponse({}));
|
|
71964
|
-
} else {
|
|
71965
|
-
return $dara.cast<DescribeConfigGroupResponse>(await this.execute(params, req, runtime), new DescribeConfigGroupResponse({}));
|
|
71966
|
-
}
|
|
71967
|
-
|
|
72481
|
+
return $dara.cast<DescribeConfigGroupResponse>(await this.callApi(params, req, runtime), new DescribeConfigGroupResponse({}));
|
|
71968
72482
|
}
|
|
71969
72483
|
|
|
71970
72484
|
/**
|
|
@@ -72012,12 +72526,7 @@ export default class Client extends OpenApi {
|
|
|
72012
72526
|
reqBodyType: "formData",
|
|
72013
72527
|
bodyType: "json",
|
|
72014
72528
|
});
|
|
72015
|
-
|
|
72016
|
-
return $dara.cast<DescribeCustomizedListHeadersResponse>(await this.callApi(params, req, runtime), new DescribeCustomizedListHeadersResponse({}));
|
|
72017
|
-
} else {
|
|
72018
|
-
return $dara.cast<DescribeCustomizedListHeadersResponse>(await this.execute(params, req, runtime), new DescribeCustomizedListHeadersResponse({}));
|
|
72019
|
-
}
|
|
72020
|
-
|
|
72529
|
+
return $dara.cast<DescribeCustomizedListHeadersResponse>(await this.callApi(params, req, runtime), new DescribeCustomizedListHeadersResponse({}));
|
|
72021
72530
|
}
|
|
72022
72531
|
|
|
72023
72532
|
/**
|
|
@@ -72085,12 +72594,7 @@ export default class Client extends OpenApi {
|
|
|
72085
72594
|
reqBodyType: "formData",
|
|
72086
72595
|
bodyType: "json",
|
|
72087
72596
|
});
|
|
72088
|
-
|
|
72089
|
-
return $dara.cast<DescribeDesktopGroupSessionsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopGroupSessionsResponse({}));
|
|
72090
|
-
} else {
|
|
72091
|
-
return $dara.cast<DescribeDesktopGroupSessionsResponse>(await this.execute(params, req, runtime), new DescribeDesktopGroupSessionsResponse({}));
|
|
72092
|
-
}
|
|
72093
|
-
|
|
72597
|
+
return $dara.cast<DescribeDesktopGroupSessionsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopGroupSessionsResponse({}));
|
|
72094
72598
|
}
|
|
72095
72599
|
|
|
72096
72600
|
/**
|
|
@@ -72204,12 +72708,7 @@ export default class Client extends OpenApi {
|
|
|
72204
72708
|
reqBodyType: "formData",
|
|
72205
72709
|
bodyType: "json",
|
|
72206
72710
|
});
|
|
72207
|
-
|
|
72208
|
-
return $dara.cast<DescribeDesktopGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopGroupsResponse({}));
|
|
72209
|
-
} else {
|
|
72210
|
-
return $dara.cast<DescribeDesktopGroupsResponse>(await this.execute(params, req, runtime), new DescribeDesktopGroupsResponse({}));
|
|
72211
|
-
}
|
|
72212
|
-
|
|
72711
|
+
return $dara.cast<DescribeDesktopGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopGroupsResponse({}));
|
|
72213
72712
|
}
|
|
72214
72713
|
|
|
72215
72714
|
/**
|
|
@@ -72255,12 +72754,7 @@ export default class Client extends OpenApi {
|
|
|
72255
72754
|
reqBodyType: "formData",
|
|
72256
72755
|
bodyType: "json",
|
|
72257
72756
|
});
|
|
72258
|
-
|
|
72259
|
-
return $dara.cast<DescribeDesktopInfoResponse>(await this.callApi(params, req, runtime), new DescribeDesktopInfoResponse({}));
|
|
72260
|
-
} else {
|
|
72261
|
-
return $dara.cast<DescribeDesktopInfoResponse>(await this.execute(params, req, runtime), new DescribeDesktopInfoResponse({}));
|
|
72262
|
-
}
|
|
72263
|
-
|
|
72757
|
+
return $dara.cast<DescribeDesktopInfoResponse>(await this.callApi(params, req, runtime), new DescribeDesktopInfoResponse({}));
|
|
72264
72758
|
}
|
|
72265
72759
|
|
|
72266
72760
|
/**
|
|
@@ -72310,12 +72804,7 @@ export default class Client extends OpenApi {
|
|
|
72310
72804
|
reqBodyType: "formData",
|
|
72311
72805
|
bodyType: "json",
|
|
72312
72806
|
});
|
|
72313
|
-
|
|
72314
|
-
return $dara.cast<DescribeDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldGroupResponse({}));
|
|
72315
|
-
} else {
|
|
72316
|
-
return $dara.cast<DescribeDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new DescribeDesktopOversoldGroupResponse({}));
|
|
72317
|
-
}
|
|
72318
|
-
|
|
72807
|
+
return $dara.cast<DescribeDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldGroupResponse({}));
|
|
72319
72808
|
}
|
|
72320
72809
|
|
|
72321
72810
|
/**
|
|
@@ -72381,12 +72870,7 @@ export default class Client extends OpenApi {
|
|
|
72381
72870
|
reqBodyType: "formData",
|
|
72382
72871
|
bodyType: "json",
|
|
72383
72872
|
});
|
|
72384
|
-
|
|
72385
|
-
return $dara.cast<DescribeDesktopOversoldUserResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldUserResponse({}));
|
|
72386
|
-
} else {
|
|
72387
|
-
return $dara.cast<DescribeDesktopOversoldUserResponse>(await this.execute(params, req, runtime), new DescribeDesktopOversoldUserResponse({}));
|
|
72388
|
-
}
|
|
72389
|
-
|
|
72873
|
+
return $dara.cast<DescribeDesktopOversoldUserResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldUserResponse({}));
|
|
72390
72874
|
}
|
|
72391
72875
|
|
|
72392
72876
|
/**
|
|
@@ -72440,12 +72924,7 @@ export default class Client extends OpenApi {
|
|
|
72440
72924
|
reqBodyType: "formData",
|
|
72441
72925
|
bodyType: "json",
|
|
72442
72926
|
});
|
|
72443
|
-
|
|
72444
|
-
return $dara.cast<DescribeDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldUserGroupResponse({}));
|
|
72445
|
-
} else {
|
|
72446
|
-
return $dara.cast<DescribeDesktopOversoldUserGroupResponse>(await this.execute(params, req, runtime), new DescribeDesktopOversoldUserGroupResponse({}));
|
|
72447
|
-
}
|
|
72448
|
-
|
|
72927
|
+
return $dara.cast<DescribeDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopOversoldUserGroupResponse({}));
|
|
72449
72928
|
}
|
|
72450
72929
|
|
|
72451
72930
|
/**
|
|
@@ -72538,12 +73017,7 @@ export default class Client extends OpenApi {
|
|
|
72538
73017
|
reqBodyType: "formData",
|
|
72539
73018
|
bodyType: "json",
|
|
72540
73019
|
});
|
|
72541
|
-
|
|
72542
|
-
return $dara.cast<DescribeDesktopSessionsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopSessionsResponse({}));
|
|
72543
|
-
} else {
|
|
72544
|
-
return $dara.cast<DescribeDesktopSessionsResponse>(await this.execute(params, req, runtime), new DescribeDesktopSessionsResponse({}));
|
|
72545
|
-
}
|
|
72546
|
-
|
|
73020
|
+
return $dara.cast<DescribeDesktopSessionsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopSessionsResponse({}));
|
|
72547
73021
|
}
|
|
72548
73022
|
|
|
72549
73023
|
/**
|
|
@@ -72659,12 +73133,7 @@ export default class Client extends OpenApi {
|
|
|
72659
73133
|
reqBodyType: "formData",
|
|
72660
73134
|
bodyType: "json",
|
|
72661
73135
|
});
|
|
72662
|
-
|
|
72663
|
-
return $dara.cast<DescribeDesktopTypesResponse>(await this.callApi(params, req, runtime), new DescribeDesktopTypesResponse({}));
|
|
72664
|
-
} else {
|
|
72665
|
-
return $dara.cast<DescribeDesktopTypesResponse>(await this.execute(params, req, runtime), new DescribeDesktopTypesResponse({}));
|
|
72666
|
-
}
|
|
72667
|
-
|
|
73136
|
+
return $dara.cast<DescribeDesktopTypesResponse>(await this.callApi(params, req, runtime), new DescribeDesktopTypesResponse({}));
|
|
72668
73137
|
}
|
|
72669
73138
|
|
|
72670
73139
|
/**
|
|
@@ -72849,12 +73318,7 @@ export default class Client extends OpenApi {
|
|
|
72849
73318
|
reqBodyType: "formData",
|
|
72850
73319
|
bodyType: "json",
|
|
72851
73320
|
});
|
|
72852
|
-
|
|
72853
|
-
return $dara.cast<DescribeDesktopsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopsResponse({}));
|
|
72854
|
-
} else {
|
|
72855
|
-
return $dara.cast<DescribeDesktopsResponse>(await this.execute(params, req, runtime), new DescribeDesktopsResponse({}));
|
|
72856
|
-
}
|
|
72857
|
-
|
|
73321
|
+
return $dara.cast<DescribeDesktopsResponse>(await this.callApi(params, req, runtime), new DescribeDesktopsResponse({}));
|
|
72858
73322
|
}
|
|
72859
73323
|
|
|
72860
73324
|
/**
|
|
@@ -72924,12 +73388,7 @@ export default class Client extends OpenApi {
|
|
|
72924
73388
|
reqBodyType: "formData",
|
|
72925
73389
|
bodyType: "json",
|
|
72926
73390
|
});
|
|
72927
|
-
|
|
72928
|
-
return $dara.cast<DescribeDesktopsInGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopsInGroupResponse({}));
|
|
72929
|
-
} else {
|
|
72930
|
-
return $dara.cast<DescribeDesktopsInGroupResponse>(await this.execute(params, req, runtime), new DescribeDesktopsInGroupResponse({}));
|
|
72931
|
-
}
|
|
72932
|
-
|
|
73391
|
+
return $dara.cast<DescribeDesktopsInGroupResponse>(await this.callApi(params, req, runtime), new DescribeDesktopsInGroupResponse({}));
|
|
72933
73392
|
}
|
|
72934
73393
|
|
|
72935
73394
|
/**
|
|
@@ -73003,12 +73462,7 @@ export default class Client extends OpenApi {
|
|
|
73003
73462
|
reqBodyType: "formData",
|
|
73004
73463
|
bodyType: "json",
|
|
73005
73464
|
});
|
|
73006
|
-
|
|
73007
|
-
return $dara.cast<DescribeDevicesResponse>(await this.callApi(params, req, runtime), new DescribeDevicesResponse({}));
|
|
73008
|
-
} else {
|
|
73009
|
-
return $dara.cast<DescribeDevicesResponse>(await this.execute(params, req, runtime), new DescribeDevicesResponse({}));
|
|
73010
|
-
}
|
|
73011
|
-
|
|
73465
|
+
return $dara.cast<DescribeDevicesResponse>(await this.callApi(params, req, runtime), new DescribeDevicesResponse({}));
|
|
73012
73466
|
}
|
|
73013
73467
|
|
|
73014
73468
|
/**
|
|
@@ -73074,12 +73528,7 @@ export default class Client extends OpenApi {
|
|
|
73074
73528
|
reqBodyType: "formData",
|
|
73075
73529
|
bodyType: "json",
|
|
73076
73530
|
});
|
|
73077
|
-
|
|
73078
|
-
return $dara.cast<DescribeDirectoriesResponse>(await this.callApi(params, req, runtime), new DescribeDirectoriesResponse({}));
|
|
73079
|
-
} else {
|
|
73080
|
-
return $dara.cast<DescribeDirectoriesResponse>(await this.execute(params, req, runtime), new DescribeDirectoriesResponse({}));
|
|
73081
|
-
}
|
|
73082
|
-
|
|
73531
|
+
return $dara.cast<DescribeDirectoriesResponse>(await this.callApi(params, req, runtime), new DescribeDirectoriesResponse({}));
|
|
73083
73532
|
}
|
|
73084
73533
|
|
|
73085
73534
|
/**
|
|
@@ -73143,12 +73592,7 @@ export default class Client extends OpenApi {
|
|
|
73143
73592
|
reqBodyType: "formData",
|
|
73144
73593
|
bodyType: "json",
|
|
73145
73594
|
});
|
|
73146
|
-
|
|
73147
|
-
return $dara.cast<DescribeFlowMetricResponse>(await this.callApi(params, req, runtime), new DescribeFlowMetricResponse({}));
|
|
73148
|
-
} else {
|
|
73149
|
-
return $dara.cast<DescribeFlowMetricResponse>(await this.execute(params, req, runtime), new DescribeFlowMetricResponse({}));
|
|
73150
|
-
}
|
|
73151
|
-
|
|
73595
|
+
return $dara.cast<DescribeFlowMetricResponse>(await this.callApi(params, req, runtime), new DescribeFlowMetricResponse({}));
|
|
73152
73596
|
}
|
|
73153
73597
|
|
|
73154
73598
|
/**
|
|
@@ -73211,12 +73655,7 @@ export default class Client extends OpenApi {
|
|
|
73211
73655
|
reqBodyType: "formData",
|
|
73212
73656
|
bodyType: "json",
|
|
73213
73657
|
});
|
|
73214
|
-
|
|
73215
|
-
return $dara.cast<DescribeFlowStatisticResponse>(await this.callApi(params, req, runtime), new DescribeFlowStatisticResponse({}));
|
|
73216
|
-
} else {
|
|
73217
|
-
return $dara.cast<DescribeFlowStatisticResponse>(await this.execute(params, req, runtime), new DescribeFlowStatisticResponse({}));
|
|
73218
|
-
}
|
|
73219
|
-
|
|
73658
|
+
return $dara.cast<DescribeFlowStatisticResponse>(await this.callApi(params, req, runtime), new DescribeFlowStatisticResponse({}));
|
|
73220
73659
|
}
|
|
73221
73660
|
|
|
73222
73661
|
/**
|
|
@@ -73285,12 +73724,7 @@ export default class Client extends OpenApi {
|
|
|
73285
73724
|
reqBodyType: "formData",
|
|
73286
73725
|
bodyType: "json",
|
|
73287
73726
|
});
|
|
73288
|
-
|
|
73289
|
-
return $dara.cast<DescribeFotaPendingDesktopsResponse>(await this.callApi(params, req, runtime), new DescribeFotaPendingDesktopsResponse({}));
|
|
73290
|
-
} else {
|
|
73291
|
-
return $dara.cast<DescribeFotaPendingDesktopsResponse>(await this.execute(params, req, runtime), new DescribeFotaPendingDesktopsResponse({}));
|
|
73292
|
-
}
|
|
73293
|
-
|
|
73727
|
+
return $dara.cast<DescribeFotaPendingDesktopsResponse>(await this.callApi(params, req, runtime), new DescribeFotaPendingDesktopsResponse({}));
|
|
73294
73728
|
}
|
|
73295
73729
|
|
|
73296
73730
|
/**
|
|
@@ -73356,12 +73790,7 @@ export default class Client extends OpenApi {
|
|
|
73356
73790
|
reqBodyType: "formData",
|
|
73357
73791
|
bodyType: "json",
|
|
73358
73792
|
});
|
|
73359
|
-
|
|
73360
|
-
return $dara.cast<DescribeFotaTasksResponse>(await this.callApi(params, req, runtime), new DescribeFotaTasksResponse({}));
|
|
73361
|
-
} else {
|
|
73362
|
-
return $dara.cast<DescribeFotaTasksResponse>(await this.execute(params, req, runtime), new DescribeFotaTasksResponse({}));
|
|
73363
|
-
}
|
|
73364
|
-
|
|
73793
|
+
return $dara.cast<DescribeFotaTasksResponse>(await this.callApi(params, req, runtime), new DescribeFotaTasksResponse({}));
|
|
73365
73794
|
}
|
|
73366
73795
|
|
|
73367
73796
|
/**
|
|
@@ -73411,12 +73840,7 @@ export default class Client extends OpenApi {
|
|
|
73411
73840
|
reqBodyType: "formData",
|
|
73412
73841
|
bodyType: "json",
|
|
73413
73842
|
});
|
|
73414
|
-
|
|
73415
|
-
return $dara.cast<DescribeGuestApplicationsResponse>(await this.callApi(params, req, runtime), new DescribeGuestApplicationsResponse({}));
|
|
73416
|
-
} else {
|
|
73417
|
-
return $dara.cast<DescribeGuestApplicationsResponse>(await this.execute(params, req, runtime), new DescribeGuestApplicationsResponse({}));
|
|
73418
|
-
}
|
|
73419
|
-
|
|
73843
|
+
return $dara.cast<DescribeGuestApplicationsResponse>(await this.callApi(params, req, runtime), new DescribeGuestApplicationsResponse({}));
|
|
73420
73844
|
}
|
|
73421
73845
|
|
|
73422
73846
|
/**
|
|
@@ -73470,12 +73894,7 @@ export default class Client extends OpenApi {
|
|
|
73470
73894
|
reqBodyType: "formData",
|
|
73471
73895
|
bodyType: "json",
|
|
73472
73896
|
});
|
|
73473
|
-
|
|
73474
|
-
return $dara.cast<DescribeImageModifiedRecordsResponse>(await this.callApi(params, req, runtime), new DescribeImageModifiedRecordsResponse({}));
|
|
73475
|
-
} else {
|
|
73476
|
-
return $dara.cast<DescribeImageModifiedRecordsResponse>(await this.execute(params, req, runtime), new DescribeImageModifiedRecordsResponse({}));
|
|
73477
|
-
}
|
|
73478
|
-
|
|
73897
|
+
return $dara.cast<DescribeImageModifiedRecordsResponse>(await this.callApi(params, req, runtime), new DescribeImageModifiedRecordsResponse({}));
|
|
73479
73898
|
}
|
|
73480
73899
|
|
|
73481
73900
|
/**
|
|
@@ -73524,12 +73943,7 @@ export default class Client extends OpenApi {
|
|
|
73524
73943
|
reqBodyType: "formData",
|
|
73525
73944
|
bodyType: "json",
|
|
73526
73945
|
});
|
|
73527
|
-
|
|
73528
|
-
return $dara.cast<DescribeImagePermissionResponse>(await this.callApi(params, req, runtime), new DescribeImagePermissionResponse({}));
|
|
73529
|
-
} else {
|
|
73530
|
-
return $dara.cast<DescribeImagePermissionResponse>(await this.execute(params, req, runtime), new DescribeImagePermissionResponse({}));
|
|
73531
|
-
}
|
|
73532
|
-
|
|
73946
|
+
return $dara.cast<DescribeImagePermissionResponse>(await this.callApi(params, req, runtime), new DescribeImagePermissionResponse({}));
|
|
73533
73947
|
}
|
|
73534
73948
|
|
|
73535
73949
|
/**
|
|
@@ -73630,12 +74044,7 @@ export default class Client extends OpenApi {
|
|
|
73630
74044
|
reqBodyType: "formData",
|
|
73631
74045
|
bodyType: "json",
|
|
73632
74046
|
});
|
|
73633
|
-
|
|
73634
|
-
return $dara.cast<DescribeImagesResponse>(await this.callApi(params, req, runtime), new DescribeImagesResponse({}));
|
|
73635
|
-
} else {
|
|
73636
|
-
return $dara.cast<DescribeImagesResponse>(await this.execute(params, req, runtime), new DescribeImagesResponse({}));
|
|
73637
|
-
}
|
|
73638
|
-
|
|
74047
|
+
return $dara.cast<DescribeImagesResponse>(await this.callApi(params, req, runtime), new DescribeImagesResponse({}));
|
|
73639
74048
|
}
|
|
73640
74049
|
|
|
73641
74050
|
/**
|
|
@@ -73723,12 +74132,7 @@ export default class Client extends OpenApi {
|
|
|
73723
74132
|
reqBodyType: "formData",
|
|
73724
74133
|
bodyType: "json",
|
|
73725
74134
|
});
|
|
73726
|
-
|
|
73727
|
-
return $dara.cast<DescribeInvocationsResponse>(await this.callApi(params, req, runtime), new DescribeInvocationsResponse({}));
|
|
73728
|
-
} else {
|
|
73729
|
-
return $dara.cast<DescribeInvocationsResponse>(await this.execute(params, req, runtime), new DescribeInvocationsResponse({}));
|
|
73730
|
-
}
|
|
73731
|
-
|
|
74135
|
+
return $dara.cast<DescribeInvocationsResponse>(await this.callApi(params, req, runtime), new DescribeInvocationsResponse({}));
|
|
73732
74136
|
}
|
|
73733
74137
|
|
|
73734
74138
|
/**
|
|
@@ -73772,12 +74176,7 @@ export default class Client extends OpenApi {
|
|
|
73772
74176
|
reqBodyType: "formData",
|
|
73773
74177
|
bodyType: "json",
|
|
73774
74178
|
});
|
|
73775
|
-
|
|
73776
|
-
return $dara.cast<DescribeKmsKeysResponse>(await this.callApi(params, req, runtime), new DescribeKmsKeysResponse({}));
|
|
73777
|
-
} else {
|
|
73778
|
-
return $dara.cast<DescribeKmsKeysResponse>(await this.execute(params, req, runtime), new DescribeKmsKeysResponse({}));
|
|
73779
|
-
}
|
|
73780
|
-
|
|
74179
|
+
return $dara.cast<DescribeKmsKeysResponse>(await this.callApi(params, req, runtime), new DescribeKmsKeysResponse({}));
|
|
73781
74180
|
}
|
|
73782
74181
|
|
|
73783
74182
|
/**
|
|
@@ -73843,12 +74242,7 @@ export default class Client extends OpenApi {
|
|
|
73843
74242
|
reqBodyType: "formData",
|
|
73844
74243
|
bodyType: "json",
|
|
73845
74244
|
});
|
|
73846
|
-
|
|
73847
|
-
return $dara.cast<DescribeModificationPriceResponse>(await this.callApi(params, req, runtime), new DescribeModificationPriceResponse({}));
|
|
73848
|
-
} else {
|
|
73849
|
-
return $dara.cast<DescribeModificationPriceResponse>(await this.execute(params, req, runtime), new DescribeModificationPriceResponse({}));
|
|
73850
|
-
}
|
|
73851
|
-
|
|
74245
|
+
return $dara.cast<DescribeModificationPriceResponse>(await this.callApi(params, req, runtime), new DescribeModificationPriceResponse({}));
|
|
73852
74246
|
}
|
|
73853
74247
|
|
|
73854
74248
|
/**
|
|
@@ -73910,12 +74304,7 @@ export default class Client extends OpenApi {
|
|
|
73910
74304
|
reqBodyType: "formData",
|
|
73911
74305
|
bodyType: "json",
|
|
73912
74306
|
});
|
|
73913
|
-
|
|
73914
|
-
return $dara.cast<DescribeNASFileSystemsResponse>(await this.callApi(params, req, runtime), new DescribeNASFileSystemsResponse({}));
|
|
73915
|
-
} else {
|
|
73916
|
-
return $dara.cast<DescribeNASFileSystemsResponse>(await this.execute(params, req, runtime), new DescribeNASFileSystemsResponse({}));
|
|
73917
|
-
}
|
|
73918
|
-
|
|
74307
|
+
return $dara.cast<DescribeNASFileSystemsResponse>(await this.callApi(params, req, runtime), new DescribeNASFileSystemsResponse({}));
|
|
73919
74308
|
}
|
|
73920
74309
|
|
|
73921
74310
|
/**
|
|
@@ -73973,12 +74362,7 @@ export default class Client extends OpenApi {
|
|
|
73973
74362
|
reqBodyType: "formData",
|
|
73974
74363
|
bodyType: "json",
|
|
73975
74364
|
});
|
|
73976
|
-
|
|
73977
|
-
return $dara.cast<DescribeNetworkPackagesResponse>(await this.callApi(params, req, runtime), new DescribeNetworkPackagesResponse({}));
|
|
73978
|
-
} else {
|
|
73979
|
-
return $dara.cast<DescribeNetworkPackagesResponse>(await this.execute(params, req, runtime), new DescribeNetworkPackagesResponse({}));
|
|
73980
|
-
}
|
|
73981
|
-
|
|
74365
|
+
return $dara.cast<DescribeNetworkPackagesResponse>(await this.callApi(params, req, runtime), new DescribeNetworkPackagesResponse({}));
|
|
73982
74366
|
}
|
|
73983
74367
|
|
|
73984
74368
|
/**
|
|
@@ -74044,12 +74428,7 @@ export default class Client extends OpenApi {
|
|
|
74044
74428
|
reqBodyType: "formData",
|
|
74045
74429
|
bodyType: "json",
|
|
74046
74430
|
});
|
|
74047
|
-
|
|
74048
|
-
return $dara.cast<DescribeOfficeSitesResponse>(await this.callApi(params, req, runtime), new DescribeOfficeSitesResponse({}));
|
|
74049
|
-
} else {
|
|
74050
|
-
return $dara.cast<DescribeOfficeSitesResponse>(await this.execute(params, req, runtime), new DescribeOfficeSitesResponse({}));
|
|
74051
|
-
}
|
|
74052
|
-
|
|
74431
|
+
return $dara.cast<DescribeOfficeSitesResponse>(await this.callApi(params, req, runtime), new DescribeOfficeSitesResponse({}));
|
|
74053
74432
|
}
|
|
74054
74433
|
|
|
74055
74434
|
/**
|
|
@@ -74119,12 +74498,7 @@ export default class Client extends OpenApi {
|
|
|
74119
74498
|
reqBodyType: "formData",
|
|
74120
74499
|
bodyType: "json",
|
|
74121
74500
|
});
|
|
74122
|
-
|
|
74123
|
-
return $dara.cast<DescribePolicyGroupsResponse>(await this.callApi(params, req, runtime), new DescribePolicyGroupsResponse({}));
|
|
74124
|
-
} else {
|
|
74125
|
-
return $dara.cast<DescribePolicyGroupsResponse>(await this.execute(params, req, runtime), new DescribePolicyGroupsResponse({}));
|
|
74126
|
-
}
|
|
74127
|
-
|
|
74501
|
+
return $dara.cast<DescribePolicyGroupsResponse>(await this.callApi(params, req, runtime), new DescribePolicyGroupsResponse({}));
|
|
74128
74502
|
}
|
|
74129
74503
|
|
|
74130
74504
|
/**
|
|
@@ -74234,12 +74608,7 @@ export default class Client extends OpenApi {
|
|
|
74234
74608
|
reqBodyType: "formData",
|
|
74235
74609
|
bodyType: "json",
|
|
74236
74610
|
});
|
|
74237
|
-
|
|
74238
|
-
return $dara.cast<DescribePriceResponse>(await this.callApi(params, req, runtime), new DescribePriceResponse({}));
|
|
74239
|
-
} else {
|
|
74240
|
-
return $dara.cast<DescribePriceResponse>(await this.execute(params, req, runtime), new DescribePriceResponse({}));
|
|
74241
|
-
}
|
|
74242
|
-
|
|
74611
|
+
return $dara.cast<DescribePriceResponse>(await this.callApi(params, req, runtime), new DescribePriceResponse({}));
|
|
74243
74612
|
}
|
|
74244
74613
|
|
|
74245
74614
|
/**
|
|
@@ -74313,12 +74682,7 @@ export default class Client extends OpenApi {
|
|
|
74313
74682
|
reqBodyType: "formData",
|
|
74314
74683
|
bodyType: "json",
|
|
74315
74684
|
});
|
|
74316
|
-
|
|
74317
|
-
return $dara.cast<DescribePriceForCreateDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribePriceForCreateDesktopOversoldGroupResponse({}));
|
|
74318
|
-
} else {
|
|
74319
|
-
return $dara.cast<DescribePriceForCreateDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new DescribePriceForCreateDesktopOversoldGroupResponse({}));
|
|
74320
|
-
}
|
|
74321
|
-
|
|
74685
|
+
return $dara.cast<DescribePriceForCreateDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribePriceForCreateDesktopOversoldGroupResponse({}));
|
|
74322
74686
|
}
|
|
74323
74687
|
|
|
74324
74688
|
/**
|
|
@@ -74368,12 +74732,7 @@ export default class Client extends OpenApi {
|
|
|
74368
74732
|
reqBodyType: "formData",
|
|
74369
74733
|
bodyType: "json",
|
|
74370
74734
|
});
|
|
74371
|
-
|
|
74372
|
-
return $dara.cast<DescribePriceForModifyDesktopOversoldGroupSaleResponse>(await this.callApi(params, req, runtime), new DescribePriceForModifyDesktopOversoldGroupSaleResponse({}));
|
|
74373
|
-
} else {
|
|
74374
|
-
return $dara.cast<DescribePriceForModifyDesktopOversoldGroupSaleResponse>(await this.execute(params, req, runtime), new DescribePriceForModifyDesktopOversoldGroupSaleResponse({}));
|
|
74375
|
-
}
|
|
74376
|
-
|
|
74735
|
+
return $dara.cast<DescribePriceForModifyDesktopOversoldGroupSaleResponse>(await this.callApi(params, req, runtime), new DescribePriceForModifyDesktopOversoldGroupSaleResponse({}));
|
|
74377
74736
|
}
|
|
74378
74737
|
|
|
74379
74738
|
/**
|
|
@@ -74423,12 +74782,7 @@ export default class Client extends OpenApi {
|
|
|
74423
74782
|
reqBodyType: "formData",
|
|
74424
74783
|
bodyType: "json",
|
|
74425
74784
|
});
|
|
74426
|
-
|
|
74427
|
-
return $dara.cast<DescribePriceForRenewDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribePriceForRenewDesktopOversoldGroupResponse({}));
|
|
74428
|
-
} else {
|
|
74429
|
-
return $dara.cast<DescribePriceForRenewDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new DescribePriceForRenewDesktopOversoldGroupResponse({}));
|
|
74430
|
-
}
|
|
74431
|
-
|
|
74785
|
+
return $dara.cast<DescribePriceForRenewDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new DescribePriceForRenewDesktopOversoldGroupResponse({}));
|
|
74432
74786
|
}
|
|
74433
74787
|
|
|
74434
74788
|
/**
|
|
@@ -74508,12 +74862,7 @@ export default class Client extends OpenApi {
|
|
|
74508
74862
|
reqBodyType: "formData",
|
|
74509
74863
|
bodyType: "json",
|
|
74510
74864
|
});
|
|
74511
|
-
|
|
74512
|
-
return $dara.cast<DescribeRecordingsResponse>(await this.callApi(params, req, runtime), new DescribeRecordingsResponse({}));
|
|
74513
|
-
} else {
|
|
74514
|
-
return $dara.cast<DescribeRecordingsResponse>(await this.execute(params, req, runtime), new DescribeRecordingsResponse({}));
|
|
74515
|
-
}
|
|
74516
|
-
|
|
74865
|
+
return $dara.cast<DescribeRecordingsResponse>(await this.callApi(params, req, runtime), new DescribeRecordingsResponse({}));
|
|
74517
74866
|
}
|
|
74518
74867
|
|
|
74519
74868
|
/**
|
|
@@ -74561,12 +74910,7 @@ export default class Client extends OpenApi {
|
|
|
74561
74910
|
reqBodyType: "formData",
|
|
74562
74911
|
bodyType: "json",
|
|
74563
74912
|
});
|
|
74564
|
-
|
|
74565
|
-
return $dara.cast<DescribeRefundPriceResponse>(await this.callApi(params, req, runtime), new DescribeRefundPriceResponse({}));
|
|
74566
|
-
} else {
|
|
74567
|
-
return $dara.cast<DescribeRefundPriceResponse>(await this.execute(params, req, runtime), new DescribeRefundPriceResponse({}));
|
|
74568
|
-
}
|
|
74569
|
-
|
|
74913
|
+
return $dara.cast<DescribeRefundPriceResponse>(await this.callApi(params, req, runtime), new DescribeRefundPriceResponse({}));
|
|
74570
74914
|
}
|
|
74571
74915
|
|
|
74572
74916
|
/**
|
|
@@ -74612,12 +74956,7 @@ export default class Client extends OpenApi {
|
|
|
74612
74956
|
reqBodyType: "formData",
|
|
74613
74957
|
bodyType: "json",
|
|
74614
74958
|
});
|
|
74615
|
-
|
|
74616
|
-
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
74617
|
-
} else {
|
|
74618
|
-
return $dara.cast<DescribeRegionsResponse>(await this.execute(params, req, runtime), new DescribeRegionsResponse({}));
|
|
74619
|
-
}
|
|
74620
|
-
|
|
74959
|
+
return $dara.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
|
|
74621
74960
|
}
|
|
74622
74961
|
|
|
74623
74962
|
/**
|
|
@@ -74679,12 +75018,7 @@ export default class Client extends OpenApi {
|
|
|
74679
75018
|
reqBodyType: "formData",
|
|
74680
75019
|
bodyType: "json",
|
|
74681
75020
|
});
|
|
74682
|
-
|
|
74683
|
-
return $dara.cast<DescribeRenewalPriceResponse>(await this.callApi(params, req, runtime), new DescribeRenewalPriceResponse({}));
|
|
74684
|
-
} else {
|
|
74685
|
-
return $dara.cast<DescribeRenewalPriceResponse>(await this.execute(params, req, runtime), new DescribeRenewalPriceResponse({}));
|
|
74686
|
-
}
|
|
74687
|
-
|
|
75021
|
+
return $dara.cast<DescribeRenewalPriceResponse>(await this.callApi(params, req, runtime), new DescribeRenewalPriceResponse({}));
|
|
74688
75022
|
}
|
|
74689
75023
|
|
|
74690
75024
|
/**
|
|
@@ -74740,12 +75074,7 @@ export default class Client extends OpenApi {
|
|
|
74740
75074
|
reqBodyType: "formData",
|
|
74741
75075
|
bodyType: "json",
|
|
74742
75076
|
});
|
|
74743
|
-
|
|
74744
|
-
return $dara.cast<DescribeResourceByCenterPolicyIdResponse>(await this.callApi(params, req, runtime), new DescribeResourceByCenterPolicyIdResponse({}));
|
|
74745
|
-
} else {
|
|
74746
|
-
return $dara.cast<DescribeResourceByCenterPolicyIdResponse>(await this.execute(params, req, runtime), new DescribeResourceByCenterPolicyIdResponse({}));
|
|
74747
|
-
}
|
|
74748
|
-
|
|
75077
|
+
return $dara.cast<DescribeResourceByCenterPolicyIdResponse>(await this.callApi(params, req, runtime), new DescribeResourceByCenterPolicyIdResponse({}));
|
|
74749
75078
|
}
|
|
74750
75079
|
|
|
74751
75080
|
/**
|
|
@@ -74809,12 +75138,7 @@ export default class Client extends OpenApi {
|
|
|
74809
75138
|
reqBodyType: "formData",
|
|
74810
75139
|
bodyType: "json",
|
|
74811
75140
|
});
|
|
74812
|
-
|
|
74813
|
-
return $dara.cast<DescribeSessionStatisticResponse>(await this.callApi(params, req, runtime), new DescribeSessionStatisticResponse({}));
|
|
74814
|
-
} else {
|
|
74815
|
-
return $dara.cast<DescribeSessionStatisticResponse>(await this.execute(params, req, runtime), new DescribeSessionStatisticResponse({}));
|
|
74816
|
-
}
|
|
74817
|
-
|
|
75141
|
+
return $dara.cast<DescribeSessionStatisticResponse>(await this.callApi(params, req, runtime), new DescribeSessionStatisticResponse({}));
|
|
74818
75142
|
}
|
|
74819
75143
|
|
|
74820
75144
|
/**
|
|
@@ -74908,12 +75232,7 @@ export default class Client extends OpenApi {
|
|
|
74908
75232
|
reqBodyType: "formData",
|
|
74909
75233
|
bodyType: "json",
|
|
74910
75234
|
});
|
|
74911
|
-
|
|
74912
|
-
return $dara.cast<DescribeSnapshotsResponse>(await this.callApi(params, req, runtime), new DescribeSnapshotsResponse({}));
|
|
74913
|
-
} else {
|
|
74914
|
-
return $dara.cast<DescribeSnapshotsResponse>(await this.execute(params, req, runtime), new DescribeSnapshotsResponse({}));
|
|
74915
|
-
}
|
|
74916
|
-
|
|
75235
|
+
return $dara.cast<DescribeSnapshotsResponse>(await this.callApi(params, req, runtime), new DescribeSnapshotsResponse({}));
|
|
74917
75236
|
}
|
|
74918
75237
|
|
|
74919
75238
|
/**
|
|
@@ -74959,12 +75278,7 @@ export default class Client extends OpenApi {
|
|
|
74959
75278
|
reqBodyType: "formData",
|
|
74960
75279
|
bodyType: "json",
|
|
74961
75280
|
});
|
|
74962
|
-
|
|
74963
|
-
return $dara.cast<DescribeTimerGroupResponse>(await this.callApi(params, req, runtime), new DescribeTimerGroupResponse({}));
|
|
74964
|
-
} else {
|
|
74965
|
-
return $dara.cast<DescribeTimerGroupResponse>(await this.execute(params, req, runtime), new DescribeTimerGroupResponse({}));
|
|
74966
|
-
}
|
|
74967
|
-
|
|
75281
|
+
return $dara.cast<DescribeTimerGroupResponse>(await this.callApi(params, req, runtime), new DescribeTimerGroupResponse({}));
|
|
74968
75282
|
}
|
|
74969
75283
|
|
|
74970
75284
|
/**
|
|
@@ -75034,12 +75348,7 @@ export default class Client extends OpenApi {
|
|
|
75034
75348
|
reqBodyType: "formData",
|
|
75035
75349
|
bodyType: "json",
|
|
75036
75350
|
});
|
|
75037
|
-
|
|
75038
|
-
return $dara.cast<DescribeUserConnectTimeResponse>(await this.callApi(params, req, runtime), new DescribeUserConnectTimeResponse({}));
|
|
75039
|
-
} else {
|
|
75040
|
-
return $dara.cast<DescribeUserConnectTimeResponse>(await this.execute(params, req, runtime), new DescribeUserConnectTimeResponse({}));
|
|
75041
|
-
}
|
|
75042
|
-
|
|
75351
|
+
return $dara.cast<DescribeUserConnectTimeResponse>(await this.callApi(params, req, runtime), new DescribeUserConnectTimeResponse({}));
|
|
75043
75352
|
}
|
|
75044
75353
|
|
|
75045
75354
|
/**
|
|
@@ -75129,12 +75438,7 @@ export default class Client extends OpenApi {
|
|
|
75129
75438
|
reqBodyType: "formData",
|
|
75130
75439
|
bodyType: "json",
|
|
75131
75440
|
});
|
|
75132
|
-
|
|
75133
|
-
return $dara.cast<DescribeUserConnectionRecordsResponse>(await this.callApi(params, req, runtime), new DescribeUserConnectionRecordsResponse({}));
|
|
75134
|
-
} else {
|
|
75135
|
-
return $dara.cast<DescribeUserConnectionRecordsResponse>(await this.execute(params, req, runtime), new DescribeUserConnectionRecordsResponse({}));
|
|
75136
|
-
}
|
|
75137
|
-
|
|
75441
|
+
return $dara.cast<DescribeUserConnectionRecordsResponse>(await this.callApi(params, req, runtime), new DescribeUserConnectionRecordsResponse({}));
|
|
75138
75442
|
}
|
|
75139
75443
|
|
|
75140
75444
|
/**
|
|
@@ -75184,12 +75488,7 @@ export default class Client extends OpenApi {
|
|
|
75184
75488
|
reqBodyType: "formData",
|
|
75185
75489
|
bodyType: "json",
|
|
75186
75490
|
});
|
|
75187
|
-
|
|
75188
|
-
return $dara.cast<DescribeUserProfilePathRulesResponse>(await this.callApi(params, req, runtime), new DescribeUserProfilePathRulesResponse({}));
|
|
75189
|
-
} else {
|
|
75190
|
-
return $dara.cast<DescribeUserProfilePathRulesResponse>(await this.execute(params, req, runtime), new DescribeUserProfilePathRulesResponse({}));
|
|
75191
|
-
}
|
|
75192
|
-
|
|
75491
|
+
return $dara.cast<DescribeUserProfilePathRulesResponse>(await this.callApi(params, req, runtime), new DescribeUserProfilePathRulesResponse({}));
|
|
75193
75492
|
}
|
|
75194
75493
|
|
|
75195
75494
|
/**
|
|
@@ -75267,12 +75566,7 @@ export default class Client extends OpenApi {
|
|
|
75267
75566
|
reqBodyType: "formData",
|
|
75268
75567
|
bodyType: "json",
|
|
75269
75568
|
});
|
|
75270
|
-
|
|
75271
|
-
return $dara.cast<DescribeUsersInGroupResponse>(await this.callApi(params, req, runtime), new DescribeUsersInGroupResponse({}));
|
|
75272
|
-
} else {
|
|
75273
|
-
return $dara.cast<DescribeUsersInGroupResponse>(await this.execute(params, req, runtime), new DescribeUsersInGroupResponse({}));
|
|
75274
|
-
}
|
|
75275
|
-
|
|
75569
|
+
return $dara.cast<DescribeUsersInGroupResponse>(await this.callApi(params, req, runtime), new DescribeUsersInGroupResponse({}));
|
|
75276
75570
|
}
|
|
75277
75571
|
|
|
75278
75572
|
/**
|
|
@@ -75318,12 +75612,7 @@ export default class Client extends OpenApi {
|
|
|
75318
75612
|
reqBodyType: "formData",
|
|
75319
75613
|
bodyType: "json",
|
|
75320
75614
|
});
|
|
75321
|
-
|
|
75322
|
-
return $dara.cast<DescribeUsersPasswordResponse>(await this.callApi(params, req, runtime), new DescribeUsersPasswordResponse({}));
|
|
75323
|
-
} else {
|
|
75324
|
-
return $dara.cast<DescribeUsersPasswordResponse>(await this.execute(params, req, runtime), new DescribeUsersPasswordResponse({}));
|
|
75325
|
-
}
|
|
75326
|
-
|
|
75615
|
+
return $dara.cast<DescribeUsersPasswordResponse>(await this.callApi(params, req, runtime), new DescribeUsersPasswordResponse({}));
|
|
75327
75616
|
}
|
|
75328
75617
|
|
|
75329
75618
|
/**
|
|
@@ -75381,12 +75670,7 @@ export default class Client extends OpenApi {
|
|
|
75381
75670
|
reqBodyType: "formData",
|
|
75382
75671
|
bodyType: "json",
|
|
75383
75672
|
});
|
|
75384
|
-
|
|
75385
|
-
return $dara.cast<DescribeVirtualMFADevicesResponse>(await this.callApi(params, req, runtime), new DescribeVirtualMFADevicesResponse({}));
|
|
75386
|
-
} else {
|
|
75387
|
-
return $dara.cast<DescribeVirtualMFADevicesResponse>(await this.execute(params, req, runtime), new DescribeVirtualMFADevicesResponse({}));
|
|
75388
|
-
}
|
|
75389
|
-
|
|
75673
|
+
return $dara.cast<DescribeVirtualMFADevicesResponse>(await this.callApi(params, req, runtime), new DescribeVirtualMFADevicesResponse({}));
|
|
75390
75674
|
}
|
|
75391
75675
|
|
|
75392
75676
|
/**
|
|
@@ -75432,12 +75716,7 @@ export default class Client extends OpenApi {
|
|
|
75432
75716
|
reqBodyType: "formData",
|
|
75433
75717
|
bodyType: "json",
|
|
75434
75718
|
});
|
|
75435
|
-
|
|
75436
|
-
return $dara.cast<DescribeZonesResponse>(await this.callApi(params, req, runtime), new DescribeZonesResponse({}));
|
|
75437
|
-
} else {
|
|
75438
|
-
return $dara.cast<DescribeZonesResponse>(await this.execute(params, req, runtime), new DescribeZonesResponse({}));
|
|
75439
|
-
}
|
|
75440
|
-
|
|
75719
|
+
return $dara.cast<DescribeZonesResponse>(await this.callApi(params, req, runtime), new DescribeZonesResponse({}));
|
|
75441
75720
|
}
|
|
75442
75721
|
|
|
75443
75722
|
/**
|
|
@@ -75483,12 +75762,7 @@ export default class Client extends OpenApi {
|
|
|
75483
75762
|
reqBodyType: "formData",
|
|
75484
75763
|
bodyType: "json",
|
|
75485
75764
|
});
|
|
75486
|
-
|
|
75487
|
-
return $dara.cast<DetachCenResponse>(await this.callApi(params, req, runtime), new DetachCenResponse({}));
|
|
75488
|
-
} else {
|
|
75489
|
-
return $dara.cast<DetachCenResponse>(await this.execute(params, req, runtime), new DetachCenResponse({}));
|
|
75490
|
-
}
|
|
75491
|
-
|
|
75765
|
+
return $dara.cast<DetachCenResponse>(await this.callApi(params, req, runtime), new DetachCenResponse({}));
|
|
75492
75766
|
}
|
|
75493
75767
|
|
|
75494
75768
|
/**
|
|
@@ -75550,12 +75824,7 @@ export default class Client extends OpenApi {
|
|
|
75550
75824
|
reqBodyType: "formData",
|
|
75551
75825
|
bodyType: "json",
|
|
75552
75826
|
});
|
|
75553
|
-
|
|
75554
|
-
return $dara.cast<DetachEndUserResponse>(await this.callApi(params, req, runtime), new DetachEndUserResponse({}));
|
|
75555
|
-
} else {
|
|
75556
|
-
return $dara.cast<DetachEndUserResponse>(await this.execute(params, req, runtime), new DetachEndUserResponse({}));
|
|
75557
|
-
}
|
|
75558
|
-
|
|
75827
|
+
return $dara.cast<DetachEndUserResponse>(await this.callApi(params, req, runtime), new DetachEndUserResponse({}));
|
|
75559
75828
|
}
|
|
75560
75829
|
|
|
75561
75830
|
/**
|
|
@@ -75605,12 +75874,7 @@ export default class Client extends OpenApi {
|
|
|
75605
75874
|
reqBodyType: "formData",
|
|
75606
75875
|
bodyType: "json",
|
|
75607
75876
|
});
|
|
75608
|
-
|
|
75609
|
-
return $dara.cast<DisableDesktopsInGroupResponse>(await this.callApi(params, req, runtime), new DisableDesktopsInGroupResponse({}));
|
|
75610
|
-
} else {
|
|
75611
|
-
return $dara.cast<DisableDesktopsInGroupResponse>(await this.execute(params, req, runtime), new DisableDesktopsInGroupResponse({}));
|
|
75612
|
-
}
|
|
75613
|
-
|
|
75877
|
+
return $dara.cast<DisableDesktopsInGroupResponse>(await this.callApi(params, req, runtime), new DisableDesktopsInGroupResponse({}));
|
|
75614
75878
|
}
|
|
75615
75879
|
|
|
75616
75880
|
/**
|
|
@@ -75660,12 +75924,7 @@ export default class Client extends OpenApi {
|
|
|
75660
75924
|
reqBodyType: "formData",
|
|
75661
75925
|
bodyType: "json",
|
|
75662
75926
|
});
|
|
75663
|
-
|
|
75664
|
-
return $dara.cast<DisconnectDesktopSessionsResponse>(await this.callApi(params, req, runtime), new DisconnectDesktopSessionsResponse({}));
|
|
75665
|
-
} else {
|
|
75666
|
-
return $dara.cast<DisconnectDesktopSessionsResponse>(await this.execute(params, req, runtime), new DisconnectDesktopSessionsResponse({}));
|
|
75667
|
-
}
|
|
75668
|
-
|
|
75927
|
+
return $dara.cast<DisconnectDesktopSessionsResponse>(await this.callApi(params, req, runtime), new DisconnectDesktopSessionsResponse({}));
|
|
75669
75928
|
}
|
|
75670
75929
|
|
|
75671
75930
|
/**
|
|
@@ -75711,12 +75970,7 @@ export default class Client extends OpenApi {
|
|
|
75711
75970
|
reqBodyType: "formData",
|
|
75712
75971
|
bodyType: "json",
|
|
75713
75972
|
});
|
|
75714
|
-
|
|
75715
|
-
return $dara.cast<DissociateNetworkPackageResponse>(await this.callApi(params, req, runtime), new DissociateNetworkPackageResponse({}));
|
|
75716
|
-
} else {
|
|
75717
|
-
return $dara.cast<DissociateNetworkPackageResponse>(await this.execute(params, req, runtime), new DissociateNetworkPackageResponse({}));
|
|
75718
|
-
}
|
|
75719
|
-
|
|
75973
|
+
return $dara.cast<DissociateNetworkPackageResponse>(await this.callApi(params, req, runtime), new DissociateNetworkPackageResponse({}));
|
|
75720
75974
|
}
|
|
75721
75975
|
|
|
75722
75976
|
/**
|
|
@@ -75774,12 +76028,7 @@ export default class Client extends OpenApi {
|
|
|
75774
76028
|
reqBodyType: "formData",
|
|
75775
76029
|
bodyType: "json",
|
|
75776
76030
|
});
|
|
75777
|
-
|
|
75778
|
-
return $dara.cast<DownloadCdsFileResponse>(await this.callApi(params, req, runtime), new DownloadCdsFileResponse({}));
|
|
75779
|
-
} else {
|
|
75780
|
-
return $dara.cast<DownloadCdsFileResponse>(await this.execute(params, req, runtime), new DownloadCdsFileResponse({}));
|
|
75781
|
-
}
|
|
75782
|
-
|
|
76031
|
+
return $dara.cast<DownloadCdsFileResponse>(await this.callApi(params, req, runtime), new DownloadCdsFileResponse({}));
|
|
75783
76032
|
}
|
|
75784
76033
|
|
|
75785
76034
|
/**
|
|
@@ -75865,12 +76114,7 @@ export default class Client extends OpenApi {
|
|
|
75865
76114
|
reqBodyType: "formData",
|
|
75866
76115
|
bodyType: "json",
|
|
75867
76116
|
});
|
|
75868
|
-
|
|
75869
|
-
return $dara.cast<ExportClientEventsResponse>(await this.callApi(params, req, runtime), new ExportClientEventsResponse({}));
|
|
75870
|
-
} else {
|
|
75871
|
-
return $dara.cast<ExportClientEventsResponse>(await this.execute(params, req, runtime), new ExportClientEventsResponse({}));
|
|
75872
|
-
}
|
|
75873
|
-
|
|
76117
|
+
return $dara.cast<ExportClientEventsResponse>(await this.callApi(params, req, runtime), new ExportClientEventsResponse({}));
|
|
75874
76118
|
}
|
|
75875
76119
|
|
|
75876
76120
|
/**
|
|
@@ -75956,12 +76200,7 @@ export default class Client extends OpenApi {
|
|
|
75956
76200
|
reqBodyType: "formData",
|
|
75957
76201
|
bodyType: "json",
|
|
75958
76202
|
});
|
|
75959
|
-
|
|
75960
|
-
return $dara.cast<ExportDesktopGroupInfoResponse>(await this.callApi(params, req, runtime), new ExportDesktopGroupInfoResponse({}));
|
|
75961
|
-
} else {
|
|
75962
|
-
return $dara.cast<ExportDesktopGroupInfoResponse>(await this.execute(params, req, runtime), new ExportDesktopGroupInfoResponse({}));
|
|
75963
|
-
}
|
|
75964
|
-
|
|
76203
|
+
return $dara.cast<ExportDesktopGroupInfoResponse>(await this.callApi(params, req, runtime), new ExportDesktopGroupInfoResponse({}));
|
|
75965
76204
|
}
|
|
75966
76205
|
|
|
75967
76206
|
/**
|
|
@@ -76077,12 +76316,7 @@ export default class Client extends OpenApi {
|
|
|
76077
76316
|
reqBodyType: "formData",
|
|
76078
76317
|
bodyType: "json",
|
|
76079
76318
|
});
|
|
76080
|
-
|
|
76081
|
-
return $dara.cast<ExportDesktopListInfoResponse>(await this.callApi(params, req, runtime), new ExportDesktopListInfoResponse({}));
|
|
76082
|
-
} else {
|
|
76083
|
-
return $dara.cast<ExportDesktopListInfoResponse>(await this.execute(params, req, runtime), new ExportDesktopListInfoResponse({}));
|
|
76084
|
-
}
|
|
76085
|
-
|
|
76319
|
+
return $dara.cast<ExportDesktopListInfoResponse>(await this.callApi(params, req, runtime), new ExportDesktopListInfoResponse({}));
|
|
76086
76320
|
}
|
|
76087
76321
|
|
|
76088
76322
|
/**
|
|
@@ -76146,12 +76380,7 @@ export default class Client extends OpenApi {
|
|
|
76146
76380
|
reqBodyType: "formData",
|
|
76147
76381
|
bodyType: "json",
|
|
76148
76382
|
});
|
|
76149
|
-
|
|
76150
|
-
return $dara.cast<GetAsyncTaskResponse>(await this.callApi(params, req, runtime), new GetAsyncTaskResponse({}));
|
|
76151
|
-
} else {
|
|
76152
|
-
return $dara.cast<GetAsyncTaskResponse>(await this.execute(params, req, runtime), new GetAsyncTaskResponse({}));
|
|
76153
|
-
}
|
|
76154
|
-
|
|
76383
|
+
return $dara.cast<GetAsyncTaskResponse>(await this.callApi(params, req, runtime), new GetAsyncTaskResponse({}));
|
|
76155
76384
|
}
|
|
76156
76385
|
|
|
76157
76386
|
/**
|
|
@@ -76232,12 +76461,7 @@ export default class Client extends OpenApi {
|
|
|
76232
76461
|
reqBodyType: "formData",
|
|
76233
76462
|
bodyType: "json",
|
|
76234
76463
|
});
|
|
76235
|
-
|
|
76236
|
-
return $dara.cast<GetConnectionTicketResponse>(await this.callApi(params, req, runtime), new GetConnectionTicketResponse({}));
|
|
76237
|
-
} else {
|
|
76238
|
-
return $dara.cast<GetConnectionTicketResponse>(await this.execute(params, req, runtime), new GetConnectionTicketResponse({}));
|
|
76239
|
-
}
|
|
76240
|
-
|
|
76464
|
+
return $dara.cast<GetConnectionTicketResponse>(await this.callApi(params, req, runtime), new GetConnectionTicketResponse({}));
|
|
76241
76465
|
}
|
|
76242
76466
|
|
|
76243
76467
|
/**
|
|
@@ -76298,12 +76522,7 @@ export default class Client extends OpenApi {
|
|
|
76298
76522
|
reqBodyType: "formData",
|
|
76299
76523
|
bodyType: "json",
|
|
76300
76524
|
});
|
|
76301
|
-
|
|
76302
|
-
return $dara.cast<GetCoordinateTicketResponse>(await this.callApi(params, req, runtime), new GetCoordinateTicketResponse({}));
|
|
76303
|
-
} else {
|
|
76304
|
-
return $dara.cast<GetCoordinateTicketResponse>(await this.execute(params, req, runtime), new GetCoordinateTicketResponse({}));
|
|
76305
|
-
}
|
|
76306
|
-
|
|
76525
|
+
return $dara.cast<GetCoordinateTicketResponse>(await this.callApi(params, req, runtime), new GetCoordinateTicketResponse({}));
|
|
76307
76526
|
}
|
|
76308
76527
|
|
|
76309
76528
|
/**
|
|
@@ -76349,12 +76568,7 @@ export default class Client extends OpenApi {
|
|
|
76349
76568
|
reqBodyType: "formData",
|
|
76350
76569
|
bodyType: "json",
|
|
76351
76570
|
});
|
|
76352
|
-
|
|
76353
|
-
return $dara.cast<GetDesktopGroupDetailResponse>(await this.callApi(params, req, runtime), new GetDesktopGroupDetailResponse({}));
|
|
76354
|
-
} else {
|
|
76355
|
-
return $dara.cast<GetDesktopGroupDetailResponse>(await this.execute(params, req, runtime), new GetDesktopGroupDetailResponse({}));
|
|
76356
|
-
}
|
|
76357
|
-
|
|
76571
|
+
return $dara.cast<GetDesktopGroupDetailResponse>(await this.callApi(params, req, runtime), new GetDesktopGroupDetailResponse({}));
|
|
76358
76572
|
}
|
|
76359
76573
|
|
|
76360
76574
|
/**
|
|
@@ -76400,12 +76614,7 @@ export default class Client extends OpenApi {
|
|
|
76400
76614
|
reqBodyType: "formData",
|
|
76401
76615
|
bodyType: "json",
|
|
76402
76616
|
});
|
|
76403
|
-
|
|
76404
|
-
return $dara.cast<GetOfficeSiteSsoStatusResponse>(await this.callApi(params, req, runtime), new GetOfficeSiteSsoStatusResponse({}));
|
|
76405
|
-
} else {
|
|
76406
|
-
return $dara.cast<GetOfficeSiteSsoStatusResponse>(await this.execute(params, req, runtime), new GetOfficeSiteSsoStatusResponse({}));
|
|
76407
|
-
}
|
|
76408
|
-
|
|
76617
|
+
return $dara.cast<GetOfficeSiteSsoStatusResponse>(await this.callApi(params, req, runtime), new GetOfficeSiteSsoStatusResponse({}));
|
|
76409
76618
|
}
|
|
76410
76619
|
|
|
76411
76620
|
/**
|
|
@@ -76458,12 +76667,7 @@ export default class Client extends OpenApi {
|
|
|
76458
76667
|
reqBodyType: "formData",
|
|
76459
76668
|
bodyType: "json",
|
|
76460
76669
|
});
|
|
76461
|
-
|
|
76462
|
-
return $dara.cast<GetSpMetadataResponse>(await this.callApi(params, req, runtime), new GetSpMetadataResponse({}));
|
|
76463
|
-
} else {
|
|
76464
|
-
return $dara.cast<GetSpMetadataResponse>(await this.execute(params, req, runtime), new GetSpMetadataResponse({}));
|
|
76465
|
-
}
|
|
76466
|
-
|
|
76670
|
+
return $dara.cast<GetSpMetadataResponse>(await this.callApi(params, req, runtime), new GetSpMetadataResponse({}));
|
|
76467
76671
|
}
|
|
76468
76672
|
|
|
76469
76673
|
/**
|
|
@@ -76515,12 +76719,7 @@ export default class Client extends OpenApi {
|
|
|
76515
76719
|
reqBodyType: "formData",
|
|
76516
76720
|
bodyType: "json",
|
|
76517
76721
|
});
|
|
76518
|
-
|
|
76519
|
-
return $dara.cast<HibernateDesktopsResponse>(await this.callApi(params, req, runtime), new HibernateDesktopsResponse({}));
|
|
76520
|
-
} else {
|
|
76521
|
-
return $dara.cast<HibernateDesktopsResponse>(await this.execute(params, req, runtime), new HibernateDesktopsResponse({}));
|
|
76522
|
-
}
|
|
76523
|
-
|
|
76722
|
+
return $dara.cast<HibernateDesktopsResponse>(await this.callApi(params, req, runtime), new HibernateDesktopsResponse({}));
|
|
76524
76723
|
}
|
|
76525
76724
|
|
|
76526
76725
|
/**
|
|
@@ -76607,12 +76806,7 @@ export default class Client extends OpenApi {
|
|
|
76607
76806
|
reqBodyType: "formData",
|
|
76608
76807
|
bodyType: "json",
|
|
76609
76808
|
});
|
|
76610
|
-
|
|
76611
|
-
return $dara.cast<ListCdsFilesResponse>(await this.callApi(params, req, runtime), new ListCdsFilesResponse({}));
|
|
76612
|
-
} else {
|
|
76613
|
-
return $dara.cast<ListCdsFilesResponse>(await this.execute(params, req, runtime), new ListCdsFilesResponse({}));
|
|
76614
|
-
}
|
|
76615
|
-
|
|
76809
|
+
return $dara.cast<ListCdsFilesResponse>(await this.callApi(params, req, runtime), new ListCdsFilesResponse({}));
|
|
76616
76810
|
}
|
|
76617
76811
|
|
|
76618
76812
|
/**
|
|
@@ -76689,12 +76883,7 @@ export default class Client extends OpenApi {
|
|
|
76689
76883
|
reqBodyType: "formData",
|
|
76690
76884
|
bodyType: "json",
|
|
76691
76885
|
});
|
|
76692
|
-
|
|
76693
|
-
return $dara.cast<ListDirectoryUsersResponse>(await this.callApi(params, req, runtime), new ListDirectoryUsersResponse({}));
|
|
76694
|
-
} else {
|
|
76695
|
-
return $dara.cast<ListDirectoryUsersResponse>(await this.execute(params, req, runtime), new ListDirectoryUsersResponse({}));
|
|
76696
|
-
}
|
|
76697
|
-
|
|
76886
|
+
return $dara.cast<ListDirectoryUsersResponse>(await this.callApi(params, req, runtime), new ListDirectoryUsersResponse({}));
|
|
76698
76887
|
}
|
|
76699
76888
|
|
|
76700
76889
|
/**
|
|
@@ -76755,12 +76944,7 @@ export default class Client extends OpenApi {
|
|
|
76755
76944
|
reqBodyType: "formData",
|
|
76756
76945
|
bodyType: "json",
|
|
76757
76946
|
});
|
|
76758
|
-
|
|
76759
|
-
return $dara.cast<ListFilePermissionResponse>(await this.callApi(params, req, runtime), new ListFilePermissionResponse({}));
|
|
76760
|
-
} else {
|
|
76761
|
-
return $dara.cast<ListFilePermissionResponse>(await this.execute(params, req, runtime), new ListFilePermissionResponse({}));
|
|
76762
|
-
}
|
|
76763
|
-
|
|
76947
|
+
return $dara.cast<ListFilePermissionResponse>(await this.callApi(params, req, runtime), new ListFilePermissionResponse({}));
|
|
76764
76948
|
}
|
|
76765
76949
|
|
|
76766
76950
|
/**
|
|
@@ -76822,12 +77006,7 @@ export default class Client extends OpenApi {
|
|
|
76822
77006
|
reqBodyType: "formData",
|
|
76823
77007
|
bodyType: "json",
|
|
76824
77008
|
});
|
|
76825
|
-
|
|
76826
|
-
return $dara.cast<ListOfficeSiteOverviewResponse>(await this.callApi(params, req, runtime), new ListOfficeSiteOverviewResponse({}));
|
|
76827
|
-
} else {
|
|
76828
|
-
return $dara.cast<ListOfficeSiteOverviewResponse>(await this.execute(params, req, runtime), new ListOfficeSiteOverviewResponse({}));
|
|
76829
|
-
}
|
|
76830
|
-
|
|
77009
|
+
return $dara.cast<ListOfficeSiteOverviewResponse>(await this.callApi(params, req, runtime), new ListOfficeSiteOverviewResponse({}));
|
|
76831
77010
|
}
|
|
76832
77011
|
|
|
76833
77012
|
/**
|
|
@@ -76901,12 +77080,7 @@ export default class Client extends OpenApi {
|
|
|
76901
77080
|
reqBodyType: "formData",
|
|
76902
77081
|
bodyType: "json",
|
|
76903
77082
|
});
|
|
76904
|
-
|
|
76905
|
-
return $dara.cast<ListOfficeSiteUsersResponse>(await this.callApi(params, req, runtime), new ListOfficeSiteUsersResponse({}));
|
|
76906
|
-
} else {
|
|
76907
|
-
return $dara.cast<ListOfficeSiteUsersResponse>(await this.execute(params, req, runtime), new ListOfficeSiteUsersResponse({}));
|
|
76908
|
-
}
|
|
76909
|
-
|
|
77083
|
+
return $dara.cast<ListOfficeSiteUsersResponse>(await this.callApi(params, req, runtime), new ListOfficeSiteUsersResponse({}));
|
|
76910
77084
|
}
|
|
76911
77085
|
|
|
76912
77086
|
/**
|
|
@@ -76971,12 +77145,7 @@ export default class Client extends OpenApi {
|
|
|
76971
77145
|
reqBodyType: "formData",
|
|
76972
77146
|
bodyType: "json",
|
|
76973
77147
|
});
|
|
76974
|
-
|
|
76975
|
-
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
76976
|
-
} else {
|
|
76977
|
-
return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
|
|
76978
|
-
}
|
|
76979
|
-
|
|
77148
|
+
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
76980
77149
|
}
|
|
76981
77150
|
|
|
76982
77151
|
/**
|
|
@@ -77037,12 +77206,7 @@ export default class Client extends OpenApi {
|
|
|
77037
77206
|
reqBodyType: "formData",
|
|
77038
77207
|
bodyType: "json",
|
|
77039
77208
|
});
|
|
77040
|
-
|
|
77041
|
-
return $dara.cast<ListUserAdOrganizationUnitsResponse>(await this.callApi(params, req, runtime), new ListUserAdOrganizationUnitsResponse({}));
|
|
77042
|
-
} else {
|
|
77043
|
-
return $dara.cast<ListUserAdOrganizationUnitsResponse>(await this.execute(params, req, runtime), new ListUserAdOrganizationUnitsResponse({}));
|
|
77044
|
-
}
|
|
77045
|
-
|
|
77209
|
+
return $dara.cast<ListUserAdOrganizationUnitsResponse>(await this.callApi(params, req, runtime), new ListUserAdOrganizationUnitsResponse({}));
|
|
77046
77210
|
}
|
|
77047
77211
|
|
|
77048
77212
|
/**
|
|
@@ -77091,12 +77255,7 @@ export default class Client extends OpenApi {
|
|
|
77091
77255
|
reqBodyType: "formData",
|
|
77092
77256
|
bodyType: "json",
|
|
77093
77257
|
});
|
|
77094
|
-
|
|
77095
|
-
return $dara.cast<LockVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new LockVirtualMFADeviceResponse({}));
|
|
77096
|
-
} else {
|
|
77097
|
-
return $dara.cast<LockVirtualMFADeviceResponse>(await this.execute(params, req, runtime), new LockVirtualMFADeviceResponse({}));
|
|
77098
|
-
}
|
|
77099
|
-
|
|
77258
|
+
return $dara.cast<LockVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new LockVirtualMFADeviceResponse({}));
|
|
77100
77259
|
}
|
|
77101
77260
|
|
|
77102
77261
|
/**
|
|
@@ -77149,12 +77308,7 @@ export default class Client extends OpenApi {
|
|
|
77149
77308
|
reqBodyType: "formData",
|
|
77150
77309
|
bodyType: "json",
|
|
77151
77310
|
});
|
|
77152
|
-
|
|
77153
|
-
return $dara.cast<MigrateDesktopsResponse>(await this.callApi(params, req, runtime), new MigrateDesktopsResponse({}));
|
|
77154
|
-
} else {
|
|
77155
|
-
return $dara.cast<MigrateDesktopsResponse>(await this.execute(params, req, runtime), new MigrateDesktopsResponse({}));
|
|
77156
|
-
}
|
|
77157
|
-
|
|
77311
|
+
return $dara.cast<MigrateDesktopsResponse>(await this.callApi(params, req, runtime), new MigrateDesktopsResponse({}));
|
|
77158
77312
|
}
|
|
77159
77313
|
|
|
77160
77314
|
/**
|
|
@@ -77204,12 +77358,7 @@ export default class Client extends OpenApi {
|
|
|
77204
77358
|
reqBodyType: "formData",
|
|
77205
77359
|
bodyType: "json",
|
|
77206
77360
|
});
|
|
77207
|
-
|
|
77208
|
-
return $dara.cast<MigrateImageProtocolResponse>(await this.callApi(params, req, runtime), new MigrateImageProtocolResponse({}));
|
|
77209
|
-
} else {
|
|
77210
|
-
return $dara.cast<MigrateImageProtocolResponse>(await this.execute(params, req, runtime), new MigrateImageProtocolResponse({}));
|
|
77211
|
-
}
|
|
77212
|
-
|
|
77361
|
+
return $dara.cast<MigrateImageProtocolResponse>(await this.callApi(params, req, runtime), new MigrateImageProtocolResponse({}));
|
|
77213
77362
|
}
|
|
77214
77363
|
|
|
77215
77364
|
/**
|
|
@@ -77298,12 +77447,7 @@ export default class Client extends OpenApi {
|
|
|
77298
77447
|
reqBodyType: "formData",
|
|
77299
77448
|
bodyType: "json",
|
|
77300
77449
|
});
|
|
77301
|
-
|
|
77302
|
-
return $dara.cast<ModifyADConnectorDirectoryResponse>(await this.callApi(params, req, runtime), new ModifyADConnectorDirectoryResponse({}));
|
|
77303
|
-
} else {
|
|
77304
|
-
return $dara.cast<ModifyADConnectorDirectoryResponse>(await this.execute(params, req, runtime), new ModifyADConnectorDirectoryResponse({}));
|
|
77305
|
-
}
|
|
77306
|
-
|
|
77450
|
+
return $dara.cast<ModifyADConnectorDirectoryResponse>(await this.callApi(params, req, runtime), new ModifyADConnectorDirectoryResponse({}));
|
|
77307
77451
|
}
|
|
77308
77452
|
|
|
77309
77453
|
/**
|
|
@@ -77403,12 +77547,7 @@ export default class Client extends OpenApi {
|
|
|
77403
77547
|
reqBodyType: "formData",
|
|
77404
77548
|
bodyType: "json",
|
|
77405
77549
|
});
|
|
77406
|
-
|
|
77407
|
-
return $dara.cast<ModifyADConnectorOfficeSiteResponse>(await this.callApi(params, req, runtime), new ModifyADConnectorOfficeSiteResponse({}));
|
|
77408
|
-
} else {
|
|
77409
|
-
return $dara.cast<ModifyADConnectorOfficeSiteResponse>(await this.execute(params, req, runtime), new ModifyADConnectorOfficeSiteResponse({}));
|
|
77410
|
-
}
|
|
77411
|
-
|
|
77550
|
+
return $dara.cast<ModifyADConnectorOfficeSiteResponse>(await this.callApi(params, req, runtime), new ModifyADConnectorOfficeSiteResponse({}));
|
|
77412
77551
|
}
|
|
77413
77552
|
|
|
77414
77553
|
/**
|
|
@@ -77468,12 +77607,7 @@ export default class Client extends OpenApi {
|
|
|
77468
77607
|
reqBodyType: "formData",
|
|
77469
77608
|
bodyType: "json",
|
|
77470
77609
|
});
|
|
77471
|
-
|
|
77472
|
-
return $dara.cast<ModifyAclEntriesResponse>(await this.callApi(params, req, runtime), new ModifyAclEntriesResponse({}));
|
|
77473
|
-
} else {
|
|
77474
|
-
return $dara.cast<ModifyAclEntriesResponse>(await this.execute(params, req, runtime), new ModifyAclEntriesResponse({}));
|
|
77475
|
-
}
|
|
77476
|
-
|
|
77610
|
+
return $dara.cast<ModifyAclEntriesResponse>(await this.callApi(params, req, runtime), new ModifyAclEntriesResponse({}));
|
|
77477
77611
|
}
|
|
77478
77612
|
|
|
77479
77613
|
/**
|
|
@@ -77534,12 +77668,7 @@ export default class Client extends OpenApi {
|
|
|
77534
77668
|
reqBodyType: "formData",
|
|
77535
77669
|
bodyType: "json",
|
|
77536
77670
|
});
|
|
77537
|
-
|
|
77538
|
-
return $dara.cast<ModifyAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new ModifyAutoSnapshotPolicyResponse({}));
|
|
77539
|
-
} else {
|
|
77540
|
-
return $dara.cast<ModifyAutoSnapshotPolicyResponse>(await this.execute(params, req, runtime), new ModifyAutoSnapshotPolicyResponse({}));
|
|
77541
|
-
}
|
|
77542
|
-
|
|
77671
|
+
return $dara.cast<ModifyAutoSnapshotPolicyResponse>(await this.callApi(params, req, runtime), new ModifyAutoSnapshotPolicyResponse({}));
|
|
77543
77672
|
}
|
|
77544
77673
|
|
|
77545
77674
|
/**
|
|
@@ -77604,12 +77733,7 @@ export default class Client extends OpenApi {
|
|
|
77604
77733
|
reqBodyType: "formData",
|
|
77605
77734
|
bodyType: "json",
|
|
77606
77735
|
});
|
|
77607
|
-
|
|
77608
|
-
return $dara.cast<ModifyBundleResponse>(await this.callApi(params, req, runtime), new ModifyBundleResponse({}));
|
|
77609
|
-
} else {
|
|
77610
|
-
return $dara.cast<ModifyBundleResponse>(await this.execute(params, req, runtime), new ModifyBundleResponse({}));
|
|
77611
|
-
}
|
|
77612
|
-
|
|
77736
|
+
return $dara.cast<ModifyBundleResponse>(await this.callApi(params, req, runtime), new ModifyBundleResponse({}));
|
|
77613
77737
|
}
|
|
77614
77738
|
|
|
77615
77739
|
/**
|
|
@@ -77678,12 +77802,7 @@ export default class Client extends OpenApi {
|
|
|
77678
77802
|
reqBodyType: "formData",
|
|
77679
77803
|
bodyType: "json",
|
|
77680
77804
|
});
|
|
77681
|
-
|
|
77682
|
-
return $dara.cast<ModifyCdsFileResponse>(await this.callApi(params, req, runtime), new ModifyCdsFileResponse({}));
|
|
77683
|
-
} else {
|
|
77684
|
-
return $dara.cast<ModifyCdsFileResponse>(await this.execute(params, req, runtime), new ModifyCdsFileResponse({}));
|
|
77685
|
-
}
|
|
77686
|
-
|
|
77805
|
+
return $dara.cast<ModifyCdsFileResponse>(await this.callApi(params, req, runtime), new ModifyCdsFileResponse({}));
|
|
77687
77806
|
}
|
|
77688
77807
|
|
|
77689
77808
|
/**
|
|
@@ -77793,12 +77912,7 @@ export default class Client extends OpenApi {
|
|
|
77793
77912
|
reqBodyType: "formData",
|
|
77794
77913
|
bodyType: "json",
|
|
77795
77914
|
});
|
|
77796
|
-
|
|
77797
|
-
return $dara.cast<ModifyCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new ModifyCdsFileShareLinkResponse({}));
|
|
77798
|
-
} else {
|
|
77799
|
-
return $dara.cast<ModifyCdsFileShareLinkResponse>(await this.execute(params, req, runtime), new ModifyCdsFileShareLinkResponse({}));
|
|
77800
|
-
}
|
|
77801
|
-
|
|
77915
|
+
return $dara.cast<ModifyCdsFileShareLinkResponse>(await this.callApi(params, req, runtime), new ModifyCdsFileShareLinkResponse({}));
|
|
77802
77916
|
}
|
|
77803
77917
|
|
|
77804
77918
|
/**
|
|
@@ -78242,12 +78356,7 @@ export default class Client extends OpenApi {
|
|
|
78242
78356
|
reqBodyType: "formData",
|
|
78243
78357
|
bodyType: "json",
|
|
78244
78358
|
});
|
|
78245
|
-
|
|
78246
|
-
return $dara.cast<ModifyCenterPolicyResponse>(await this.callApi(params, req, runtime), new ModifyCenterPolicyResponse({}));
|
|
78247
|
-
} else {
|
|
78248
|
-
return $dara.cast<ModifyCenterPolicyResponse>(await this.execute(params, req, runtime), new ModifyCenterPolicyResponse({}));
|
|
78249
|
-
}
|
|
78250
|
-
|
|
78359
|
+
return $dara.cast<ModifyCenterPolicyResponse>(await this.callApi(params, req, runtime), new ModifyCenterPolicyResponse({}));
|
|
78251
78360
|
}
|
|
78252
78361
|
|
|
78253
78362
|
/**
|
|
@@ -78303,12 +78412,7 @@ export default class Client extends OpenApi {
|
|
|
78303
78412
|
reqBodyType: "formData",
|
|
78304
78413
|
bodyType: "json",
|
|
78305
78414
|
});
|
|
78306
|
-
|
|
78307
|
-
return $dara.cast<ModifyCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new ModifyCloudDriveGroupsResponse({}));
|
|
78308
|
-
} else {
|
|
78309
|
-
return $dara.cast<ModifyCloudDriveGroupsResponse>(await this.execute(params, req, runtime), new ModifyCloudDriveGroupsResponse({}));
|
|
78310
|
-
}
|
|
78311
|
-
|
|
78415
|
+
return $dara.cast<ModifyCloudDriveGroupsResponse>(await this.callApi(params, req, runtime), new ModifyCloudDriveGroupsResponse({}));
|
|
78312
78416
|
}
|
|
78313
78417
|
|
|
78314
78418
|
/**
|
|
@@ -78366,12 +78470,7 @@ export default class Client extends OpenApi {
|
|
|
78366
78470
|
reqBodyType: "formData",
|
|
78367
78471
|
bodyType: "json",
|
|
78368
78472
|
});
|
|
78369
|
-
|
|
78370
|
-
return $dara.cast<ModifyCloudDrivePermissionResponse>(await this.callApi(params, req, runtime), new ModifyCloudDrivePermissionResponse({}));
|
|
78371
|
-
} else {
|
|
78372
|
-
return $dara.cast<ModifyCloudDrivePermissionResponse>(await this.execute(params, req, runtime), new ModifyCloudDrivePermissionResponse({}));
|
|
78373
|
-
}
|
|
78374
|
-
|
|
78473
|
+
return $dara.cast<ModifyCloudDrivePermissionResponse>(await this.callApi(params, req, runtime), new ModifyCloudDrivePermissionResponse({}));
|
|
78375
78474
|
}
|
|
78376
78475
|
|
|
78377
78476
|
/**
|
|
@@ -78429,12 +78528,7 @@ export default class Client extends OpenApi {
|
|
|
78429
78528
|
reqBodyType: "formData",
|
|
78430
78529
|
bodyType: "json",
|
|
78431
78530
|
});
|
|
78432
|
-
|
|
78433
|
-
return $dara.cast<ModifyCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new ModifyCloudDriveUsersResponse({}));
|
|
78434
|
-
} else {
|
|
78435
|
-
return $dara.cast<ModifyCloudDriveUsersResponse>(await this.execute(params, req, runtime), new ModifyCloudDriveUsersResponse({}));
|
|
78436
|
-
}
|
|
78437
|
-
|
|
78531
|
+
return $dara.cast<ModifyCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new ModifyCloudDriveUsersResponse({}));
|
|
78438
78532
|
}
|
|
78439
78533
|
|
|
78440
78534
|
/**
|
|
@@ -78488,12 +78582,7 @@ export default class Client extends OpenApi {
|
|
|
78488
78582
|
reqBodyType: "formData",
|
|
78489
78583
|
bodyType: "json",
|
|
78490
78584
|
});
|
|
78491
|
-
|
|
78492
|
-
return $dara.cast<ModifyConfigGroupResponse>(await this.callApi(params, req, runtime), new ModifyConfigGroupResponse({}));
|
|
78493
|
-
} else {
|
|
78494
|
-
return $dara.cast<ModifyConfigGroupResponse>(await this.execute(params, req, runtime), new ModifyConfigGroupResponse({}));
|
|
78495
|
-
}
|
|
78496
|
-
|
|
78585
|
+
return $dara.cast<ModifyConfigGroupResponse>(await this.callApi(params, req, runtime), new ModifyConfigGroupResponse({}));
|
|
78497
78586
|
}
|
|
78498
78587
|
|
|
78499
78588
|
/**
|
|
@@ -78543,12 +78632,7 @@ export default class Client extends OpenApi {
|
|
|
78543
78632
|
reqBodyType: "formData",
|
|
78544
78633
|
bodyType: "json",
|
|
78545
78634
|
});
|
|
78546
|
-
|
|
78547
|
-
return $dara.cast<ModifyCustomizedListHeadersResponse>(await this.callApi(params, req, runtime), new ModifyCustomizedListHeadersResponse({}));
|
|
78548
|
-
} else {
|
|
78549
|
-
return $dara.cast<ModifyCustomizedListHeadersResponse>(await this.execute(params, req, runtime), new ModifyCustomizedListHeadersResponse({}));
|
|
78550
|
-
}
|
|
78551
|
-
|
|
78635
|
+
return $dara.cast<ModifyCustomizedListHeadersResponse>(await this.callApi(params, req, runtime), new ModifyCustomizedListHeadersResponse({}));
|
|
78552
78636
|
}
|
|
78553
78637
|
|
|
78554
78638
|
/**
|
|
@@ -78623,12 +78707,7 @@ export default class Client extends OpenApi {
|
|
|
78623
78707
|
reqBodyType: "formData",
|
|
78624
78708
|
bodyType: "json",
|
|
78625
78709
|
});
|
|
78626
|
-
|
|
78627
|
-
return $dara.cast<ModifyDesktopChargeTypeResponse>(await this.callApi(params, req, runtime), new ModifyDesktopChargeTypeResponse({}));
|
|
78628
|
-
} else {
|
|
78629
|
-
return $dara.cast<ModifyDesktopChargeTypeResponse>(await this.execute(params, req, runtime), new ModifyDesktopChargeTypeResponse({}));
|
|
78630
|
-
}
|
|
78631
|
-
|
|
78710
|
+
return $dara.cast<ModifyDesktopChargeTypeResponse>(await this.callApi(params, req, runtime), new ModifyDesktopChargeTypeResponse({}));
|
|
78632
78711
|
}
|
|
78633
78712
|
|
|
78634
78713
|
/**
|
|
@@ -78778,12 +78857,7 @@ export default class Client extends OpenApi {
|
|
|
78778
78857
|
reqBodyType: "formData",
|
|
78779
78858
|
bodyType: "json",
|
|
78780
78859
|
});
|
|
78781
|
-
|
|
78782
|
-
return $dara.cast<ModifyDesktopGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopGroupResponse({}));
|
|
78783
|
-
} else {
|
|
78784
|
-
return $dara.cast<ModifyDesktopGroupResponse>(await this.execute(params, req, runtime), new ModifyDesktopGroupResponse({}));
|
|
78785
|
-
}
|
|
78786
|
-
|
|
78860
|
+
return $dara.cast<ModifyDesktopGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopGroupResponse({}));
|
|
78787
78861
|
}
|
|
78788
78862
|
|
|
78789
78863
|
/**
|
|
@@ -78839,12 +78913,7 @@ export default class Client extends OpenApi {
|
|
|
78839
78913
|
reqBodyType: "formData",
|
|
78840
78914
|
bodyType: "json",
|
|
78841
78915
|
});
|
|
78842
|
-
|
|
78843
|
-
return $dara.cast<ModifyDesktopHostNameResponse>(await this.callApi(params, req, runtime), new ModifyDesktopHostNameResponse({}));
|
|
78844
|
-
} else {
|
|
78845
|
-
return $dara.cast<ModifyDesktopHostNameResponse>(await this.execute(params, req, runtime), new ModifyDesktopHostNameResponse({}));
|
|
78846
|
-
}
|
|
78847
|
-
|
|
78916
|
+
return $dara.cast<ModifyDesktopHostNameResponse>(await this.callApi(params, req, runtime), new ModifyDesktopHostNameResponse({}));
|
|
78848
78917
|
}
|
|
78849
78918
|
|
|
78850
78919
|
/**
|
|
@@ -78897,12 +78966,7 @@ export default class Client extends OpenApi {
|
|
|
78897
78966
|
reqBodyType: "formData",
|
|
78898
78967
|
bodyType: "json",
|
|
78899
78968
|
});
|
|
78900
|
-
|
|
78901
|
-
return $dara.cast<ModifyDesktopNameResponse>(await this.callApi(params, req, runtime), new ModifyDesktopNameResponse({}));
|
|
78902
|
-
} else {
|
|
78903
|
-
return $dara.cast<ModifyDesktopNameResponse>(await this.execute(params, req, runtime), new ModifyDesktopNameResponse({}));
|
|
78904
|
-
}
|
|
78905
|
-
|
|
78969
|
+
return $dara.cast<ModifyDesktopNameResponse>(await this.callApi(params, req, runtime), new ModifyDesktopNameResponse({}));
|
|
78906
78970
|
}
|
|
78907
78971
|
|
|
78908
78972
|
/**
|
|
@@ -78984,12 +79048,7 @@ export default class Client extends OpenApi {
|
|
|
78984
79048
|
reqBodyType: "formData",
|
|
78985
79049
|
bodyType: "json",
|
|
78986
79050
|
});
|
|
78987
|
-
|
|
78988
|
-
return $dara.cast<ModifyDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldGroupResponse({}));
|
|
78989
|
-
} else {
|
|
78990
|
-
return $dara.cast<ModifyDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new ModifyDesktopOversoldGroupResponse({}));
|
|
78991
|
-
}
|
|
78992
|
-
|
|
79051
|
+
return $dara.cast<ModifyDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldGroupResponse({}));
|
|
78993
79052
|
}
|
|
78994
79053
|
|
|
78995
79054
|
/**
|
|
@@ -79039,12 +79098,7 @@ export default class Client extends OpenApi {
|
|
|
79039
79098
|
reqBodyType: "formData",
|
|
79040
79099
|
bodyType: "json",
|
|
79041
79100
|
});
|
|
79042
|
-
|
|
79043
|
-
return $dara.cast<ModifyDesktopOversoldGroupSaleResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldGroupSaleResponse({}));
|
|
79044
|
-
} else {
|
|
79045
|
-
return $dara.cast<ModifyDesktopOversoldGroupSaleResponse>(await this.execute(params, req, runtime), new ModifyDesktopOversoldGroupSaleResponse({}));
|
|
79046
|
-
}
|
|
79047
|
-
|
|
79101
|
+
return $dara.cast<ModifyDesktopOversoldGroupSaleResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldGroupSaleResponse({}));
|
|
79048
79102
|
}
|
|
79049
79103
|
|
|
79050
79104
|
/**
|
|
@@ -79102,12 +79156,7 @@ export default class Client extends OpenApi {
|
|
|
79102
79156
|
reqBodyType: "formData",
|
|
79103
79157
|
bodyType: "json",
|
|
79104
79158
|
});
|
|
79105
|
-
|
|
79106
|
-
return $dara.cast<ModifyDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldUserGroupResponse({}));
|
|
79107
|
-
} else {
|
|
79108
|
-
return $dara.cast<ModifyDesktopOversoldUserGroupResponse>(await this.execute(params, req, runtime), new ModifyDesktopOversoldUserGroupResponse({}));
|
|
79109
|
-
}
|
|
79110
|
-
|
|
79159
|
+
return $dara.cast<ModifyDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopOversoldUserGroupResponse({}));
|
|
79111
79160
|
}
|
|
79112
79161
|
|
|
79113
79162
|
/**
|
|
@@ -79197,12 +79246,7 @@ export default class Client extends OpenApi {
|
|
|
79197
79246
|
reqBodyType: "formData",
|
|
79198
79247
|
bodyType: "json",
|
|
79199
79248
|
});
|
|
79200
|
-
|
|
79201
|
-
return $dara.cast<ModifyDesktopSpecResponse>(await this.callApi(params, req, runtime), new ModifyDesktopSpecResponse({}));
|
|
79202
|
-
} else {
|
|
79203
|
-
return $dara.cast<ModifyDesktopSpecResponse>(await this.execute(params, req, runtime), new ModifyDesktopSpecResponse({}));
|
|
79204
|
-
}
|
|
79205
|
-
|
|
79249
|
+
return $dara.cast<ModifyDesktopSpecResponse>(await this.callApi(params, req, runtime), new ModifyDesktopSpecResponse({}));
|
|
79206
79250
|
}
|
|
79207
79251
|
|
|
79208
79252
|
/**
|
|
@@ -79268,12 +79312,7 @@ export default class Client extends OpenApi {
|
|
|
79268
79312
|
reqBodyType: "formData",
|
|
79269
79313
|
bodyType: "json",
|
|
79270
79314
|
});
|
|
79271
|
-
|
|
79272
|
-
return $dara.cast<ModifyDesktopTimerResponse>(await this.callApi(params, req, runtime), new ModifyDesktopTimerResponse({}));
|
|
79273
|
-
} else {
|
|
79274
|
-
return $dara.cast<ModifyDesktopTimerResponse>(await this.execute(params, req, runtime), new ModifyDesktopTimerResponse({}));
|
|
79275
|
-
}
|
|
79276
|
-
|
|
79315
|
+
return $dara.cast<ModifyDesktopTimerResponse>(await this.callApi(params, req, runtime), new ModifyDesktopTimerResponse({}));
|
|
79277
79316
|
}
|
|
79278
79317
|
|
|
79279
79318
|
/**
|
|
@@ -79330,12 +79369,7 @@ export default class Client extends OpenApi {
|
|
|
79330
79369
|
reqBodyType: "formData",
|
|
79331
79370
|
bodyType: "json",
|
|
79332
79371
|
});
|
|
79333
|
-
|
|
79334
|
-
return $dara.cast<ModifyDesktopsPolicyGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopsPolicyGroupResponse({}));
|
|
79335
|
-
} else {
|
|
79336
|
-
return $dara.cast<ModifyDesktopsPolicyGroupResponse>(await this.execute(params, req, runtime), new ModifyDesktopsPolicyGroupResponse({}));
|
|
79337
|
-
}
|
|
79338
|
-
|
|
79372
|
+
return $dara.cast<ModifyDesktopsPolicyGroupResponse>(await this.callApi(params, req, runtime), new ModifyDesktopsPolicyGroupResponse({}));
|
|
79339
79373
|
}
|
|
79340
79374
|
|
|
79341
79375
|
/**
|
|
@@ -79408,12 +79442,7 @@ export default class Client extends OpenApi {
|
|
|
79408
79442
|
reqBodyType: "formData",
|
|
79409
79443
|
bodyType: "json",
|
|
79410
79444
|
});
|
|
79411
|
-
|
|
79412
|
-
return $dara.cast<ModifyDiskSpecResponse>(await this.callApi(params, req, runtime), new ModifyDiskSpecResponse({}));
|
|
79413
|
-
} else {
|
|
79414
|
-
return $dara.cast<ModifyDiskSpecResponse>(await this.execute(params, req, runtime), new ModifyDiskSpecResponse({}));
|
|
79415
|
-
}
|
|
79416
|
-
|
|
79445
|
+
return $dara.cast<ModifyDiskSpecResponse>(await this.callApi(params, req, runtime), new ModifyDiskSpecResponse({}));
|
|
79417
79446
|
}
|
|
79418
79447
|
|
|
79419
79448
|
/**
|
|
@@ -79472,12 +79501,7 @@ export default class Client extends OpenApi {
|
|
|
79472
79501
|
reqBodyType: "formData",
|
|
79473
79502
|
bodyType: "json",
|
|
79474
79503
|
});
|
|
79475
|
-
|
|
79476
|
-
return $dara.cast<ModifyEntitlementResponse>(await this.callApi(params, req, runtime), new ModifyEntitlementResponse({}));
|
|
79477
|
-
} else {
|
|
79478
|
-
return $dara.cast<ModifyEntitlementResponse>(await this.execute(params, req, runtime), new ModifyEntitlementResponse({}));
|
|
79479
|
-
}
|
|
79480
|
-
|
|
79504
|
+
return $dara.cast<ModifyEntitlementResponse>(await this.callApi(params, req, runtime), new ModifyEntitlementResponse({}));
|
|
79481
79505
|
}
|
|
79482
79506
|
|
|
79483
79507
|
/**
|
|
@@ -79539,12 +79563,7 @@ export default class Client extends OpenApi {
|
|
|
79539
79563
|
reqBodyType: "formData",
|
|
79540
79564
|
bodyType: "json",
|
|
79541
79565
|
});
|
|
79542
|
-
|
|
79543
|
-
return $dara.cast<ModifyImageAttributeResponse>(await this.callApi(params, req, runtime), new ModifyImageAttributeResponse({}));
|
|
79544
|
-
} else {
|
|
79545
|
-
return $dara.cast<ModifyImageAttributeResponse>(await this.execute(params, req, runtime), new ModifyImageAttributeResponse({}));
|
|
79546
|
-
}
|
|
79547
|
-
|
|
79566
|
+
return $dara.cast<ModifyImageAttributeResponse>(await this.callApi(params, req, runtime), new ModifyImageAttributeResponse({}));
|
|
79548
79567
|
}
|
|
79549
79568
|
|
|
79550
79569
|
/**
|
|
@@ -79616,12 +79635,7 @@ export default class Client extends OpenApi {
|
|
|
79616
79635
|
reqBodyType: "formData",
|
|
79617
79636
|
bodyType: "json",
|
|
79618
79637
|
});
|
|
79619
|
-
|
|
79620
|
-
return $dara.cast<ModifyImagePermissionResponse>(await this.callApi(params, req, runtime), new ModifyImagePermissionResponse({}));
|
|
79621
|
-
} else {
|
|
79622
|
-
return $dara.cast<ModifyImagePermissionResponse>(await this.execute(params, req, runtime), new ModifyImagePermissionResponse({}));
|
|
79623
|
-
}
|
|
79624
|
-
|
|
79638
|
+
return $dara.cast<ModifyImagePermissionResponse>(await this.callApi(params, req, runtime), new ModifyImagePermissionResponse({}));
|
|
79625
79639
|
}
|
|
79626
79640
|
|
|
79627
79641
|
/**
|
|
@@ -79689,12 +79703,7 @@ export default class Client extends OpenApi {
|
|
|
79689
79703
|
reqBodyType: "formData",
|
|
79690
79704
|
bodyType: "json",
|
|
79691
79705
|
});
|
|
79692
|
-
|
|
79693
|
-
return $dara.cast<ModifyNASDefaultMountTargetResponse>(await this.callApi(params, req, runtime), new ModifyNASDefaultMountTargetResponse({}));
|
|
79694
|
-
} else {
|
|
79695
|
-
return $dara.cast<ModifyNASDefaultMountTargetResponse>(await this.execute(params, req, runtime), new ModifyNASDefaultMountTargetResponse({}));
|
|
79696
|
-
}
|
|
79697
|
-
|
|
79706
|
+
return $dara.cast<ModifyNASDefaultMountTargetResponse>(await this.callApi(params, req, runtime), new ModifyNASDefaultMountTargetResponse({}));
|
|
79698
79707
|
}
|
|
79699
79708
|
|
|
79700
79709
|
/**
|
|
@@ -79755,12 +79764,7 @@ export default class Client extends OpenApi {
|
|
|
79755
79764
|
reqBodyType: "formData",
|
|
79756
79765
|
bodyType: "json",
|
|
79757
79766
|
});
|
|
79758
|
-
|
|
79759
|
-
return $dara.cast<ModifyNetworkPackageBandwidthResponse>(await this.callApi(params, req, runtime), new ModifyNetworkPackageBandwidthResponse({}));
|
|
79760
|
-
} else {
|
|
79761
|
-
return $dara.cast<ModifyNetworkPackageBandwidthResponse>(await this.execute(params, req, runtime), new ModifyNetworkPackageBandwidthResponse({}));
|
|
79762
|
-
}
|
|
79763
|
-
|
|
79767
|
+
return $dara.cast<ModifyNetworkPackageBandwidthResponse>(await this.callApi(params, req, runtime), new ModifyNetworkPackageBandwidthResponse({}));
|
|
79764
79768
|
}
|
|
79765
79769
|
|
|
79766
79770
|
/**
|
|
@@ -79813,12 +79817,7 @@ export default class Client extends OpenApi {
|
|
|
79813
79817
|
reqBodyType: "formData",
|
|
79814
79818
|
bodyType: "json",
|
|
79815
79819
|
});
|
|
79816
|
-
|
|
79817
|
-
return $dara.cast<ModifyNetworkPackageEnabledResponse>(await this.callApi(params, req, runtime), new ModifyNetworkPackageEnabledResponse({}));
|
|
79818
|
-
} else {
|
|
79819
|
-
return $dara.cast<ModifyNetworkPackageEnabledResponse>(await this.execute(params, req, runtime), new ModifyNetworkPackageEnabledResponse({}));
|
|
79820
|
-
}
|
|
79821
|
-
|
|
79820
|
+
return $dara.cast<ModifyNetworkPackageEnabledResponse>(await this.callApi(params, req, runtime), new ModifyNetworkPackageEnabledResponse({}));
|
|
79822
79821
|
}
|
|
79823
79822
|
|
|
79824
79823
|
/**
|
|
@@ -79887,12 +79886,7 @@ export default class Client extends OpenApi {
|
|
|
79887
79886
|
reqBodyType: "formData",
|
|
79888
79887
|
bodyType: "json",
|
|
79889
79888
|
});
|
|
79890
|
-
|
|
79891
|
-
return $dara.cast<ModifyOfficeSiteAttributeResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteAttributeResponse({}));
|
|
79892
|
-
} else {
|
|
79893
|
-
return $dara.cast<ModifyOfficeSiteAttributeResponse>(await this.execute(params, req, runtime), new ModifyOfficeSiteAttributeResponse({}));
|
|
79894
|
-
}
|
|
79895
|
-
|
|
79889
|
+
return $dara.cast<ModifyOfficeSiteAttributeResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteAttributeResponse({}));
|
|
79896
79890
|
}
|
|
79897
79891
|
|
|
79898
79892
|
/**
|
|
@@ -79942,12 +79936,7 @@ export default class Client extends OpenApi {
|
|
|
79942
79936
|
reqBodyType: "formData",
|
|
79943
79937
|
bodyType: "json",
|
|
79944
79938
|
});
|
|
79945
|
-
|
|
79946
|
-
return $dara.cast<ModifyOfficeSiteCrossDesktopAccessResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteCrossDesktopAccessResponse({}));
|
|
79947
|
-
} else {
|
|
79948
|
-
return $dara.cast<ModifyOfficeSiteCrossDesktopAccessResponse>(await this.execute(params, req, runtime), new ModifyOfficeSiteCrossDesktopAccessResponse({}));
|
|
79949
|
-
}
|
|
79950
|
-
|
|
79939
|
+
return $dara.cast<ModifyOfficeSiteCrossDesktopAccessResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteCrossDesktopAccessResponse({}));
|
|
79951
79940
|
}
|
|
79952
79941
|
|
|
79953
79942
|
/**
|
|
@@ -79997,12 +79986,7 @@ export default class Client extends OpenApi {
|
|
|
79997
79986
|
reqBodyType: "formData",
|
|
79998
79987
|
bodyType: "json",
|
|
79999
79988
|
});
|
|
80000
|
-
|
|
80001
|
-
return $dara.cast<ModifyOfficeSiteDnsInfoResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteDnsInfoResponse({}));
|
|
80002
|
-
} else {
|
|
80003
|
-
return $dara.cast<ModifyOfficeSiteDnsInfoResponse>(await this.execute(params, req, runtime), new ModifyOfficeSiteDnsInfoResponse({}));
|
|
80004
|
-
}
|
|
80005
|
-
|
|
79989
|
+
return $dara.cast<ModifyOfficeSiteDnsInfoResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteDnsInfoResponse({}));
|
|
80006
79990
|
}
|
|
80007
79991
|
|
|
80008
79992
|
/**
|
|
@@ -80052,12 +80036,7 @@ export default class Client extends OpenApi {
|
|
|
80052
80036
|
reqBodyType: "formData",
|
|
80053
80037
|
bodyType: "json",
|
|
80054
80038
|
});
|
|
80055
|
-
|
|
80056
|
-
return $dara.cast<ModifyOfficeSiteMfaEnabledResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteMfaEnabledResponse({}));
|
|
80057
|
-
} else {
|
|
80058
|
-
return $dara.cast<ModifyOfficeSiteMfaEnabledResponse>(await this.execute(params, req, runtime), new ModifyOfficeSiteMfaEnabledResponse({}));
|
|
80059
|
-
}
|
|
80060
|
-
|
|
80039
|
+
return $dara.cast<ModifyOfficeSiteMfaEnabledResponse>(await this.callApi(params, req, runtime), new ModifyOfficeSiteMfaEnabledResponse({}));
|
|
80061
80040
|
}
|
|
80062
80041
|
|
|
80063
80042
|
/**
|
|
@@ -80335,12 +80314,7 @@ export default class Client extends OpenApi {
|
|
|
80335
80314
|
reqBodyType: "formData",
|
|
80336
80315
|
bodyType: "json",
|
|
80337
80316
|
});
|
|
80338
|
-
|
|
80339
|
-
return $dara.cast<ModifyPolicyGroupResponse>(await this.callApi(params, req, runtime), new ModifyPolicyGroupResponse({}));
|
|
80340
|
-
} else {
|
|
80341
|
-
return $dara.cast<ModifyPolicyGroupResponse>(await this.execute(params, req, runtime), new ModifyPolicyGroupResponse({}));
|
|
80342
|
-
}
|
|
80343
|
-
|
|
80317
|
+
return $dara.cast<ModifyPolicyGroupResponse>(await this.callApi(params, req, runtime), new ModifyPolicyGroupResponse({}));
|
|
80344
80318
|
}
|
|
80345
80319
|
|
|
80346
80320
|
/**
|
|
@@ -80400,12 +80374,7 @@ export default class Client extends OpenApi {
|
|
|
80400
80374
|
reqBodyType: "formData",
|
|
80401
80375
|
bodyType: "json",
|
|
80402
80376
|
});
|
|
80403
|
-
|
|
80404
|
-
return $dara.cast<ModifyResourceCenterPolicyResponse>(await this.callApi(params, req, runtime), new ModifyResourceCenterPolicyResponse({}));
|
|
80405
|
-
} else {
|
|
80406
|
-
return $dara.cast<ModifyResourceCenterPolicyResponse>(await this.execute(params, req, runtime), new ModifyResourceCenterPolicyResponse({}));
|
|
80407
|
-
}
|
|
80408
|
-
|
|
80377
|
+
return $dara.cast<ModifyResourceCenterPolicyResponse>(await this.callApi(params, req, runtime), new ModifyResourceCenterPolicyResponse({}));
|
|
80409
80378
|
}
|
|
80410
80379
|
|
|
80411
80380
|
/**
|
|
@@ -80461,12 +80430,7 @@ export default class Client extends OpenApi {
|
|
|
80461
80430
|
reqBodyType: "formData",
|
|
80462
80431
|
bodyType: "json",
|
|
80463
80432
|
});
|
|
80464
|
-
|
|
80465
|
-
return $dara.cast<ModifyTimerGroupResponse>(await this.callApi(params, req, runtime), new ModifyTimerGroupResponse({}));
|
|
80466
|
-
} else {
|
|
80467
|
-
return $dara.cast<ModifyTimerGroupResponse>(await this.execute(params, req, runtime), new ModifyTimerGroupResponse({}));
|
|
80468
|
-
}
|
|
80469
|
-
|
|
80433
|
+
return $dara.cast<ModifyTimerGroupResponse>(await this.callApi(params, req, runtime), new ModifyTimerGroupResponse({}));
|
|
80470
80434
|
}
|
|
80471
80435
|
|
|
80472
80436
|
/**
|
|
@@ -80523,12 +80487,7 @@ export default class Client extends OpenApi {
|
|
|
80523
80487
|
reqBodyType: "formData",
|
|
80524
80488
|
bodyType: "json",
|
|
80525
80489
|
});
|
|
80526
|
-
|
|
80527
|
-
return $dara.cast<ModifyUserEntitlementResponse>(await this.callApi(params, req, runtime), new ModifyUserEntitlementResponse({}));
|
|
80528
|
-
} else {
|
|
80529
|
-
return $dara.cast<ModifyUserEntitlementResponse>(await this.execute(params, req, runtime), new ModifyUserEntitlementResponse({}));
|
|
80530
|
-
}
|
|
80531
|
-
|
|
80490
|
+
return $dara.cast<ModifyUserEntitlementResponse>(await this.callApi(params, req, runtime), new ModifyUserEntitlementResponse({}));
|
|
80532
80491
|
}
|
|
80533
80492
|
|
|
80534
80493
|
/**
|
|
@@ -80585,12 +80544,7 @@ export default class Client extends OpenApi {
|
|
|
80585
80544
|
reqBodyType: "formData",
|
|
80586
80545
|
bodyType: "json",
|
|
80587
80546
|
});
|
|
80588
|
-
|
|
80589
|
-
return $dara.cast<ModifyUserToDesktopGroupResponse>(await this.callApi(params, req, runtime), new ModifyUserToDesktopGroupResponse({}));
|
|
80590
|
-
} else {
|
|
80591
|
-
return $dara.cast<ModifyUserToDesktopGroupResponse>(await this.execute(params, req, runtime), new ModifyUserToDesktopGroupResponse({}));
|
|
80592
|
-
}
|
|
80593
|
-
|
|
80547
|
+
return $dara.cast<ModifyUserToDesktopGroupResponse>(await this.callApi(params, req, runtime), new ModifyUserToDesktopGroupResponse({}));
|
|
80594
80548
|
}
|
|
80595
80549
|
|
|
80596
80550
|
/**
|
|
@@ -80656,12 +80610,7 @@ export default class Client extends OpenApi {
|
|
|
80656
80610
|
reqBodyType: "formData",
|
|
80657
80611
|
bodyType: "json",
|
|
80658
80612
|
});
|
|
80659
|
-
|
|
80660
|
-
return $dara.cast<MoveCdsFileResponse>(await this.callApi(params, req, runtime), new MoveCdsFileResponse({}));
|
|
80661
|
-
} else {
|
|
80662
|
-
return $dara.cast<MoveCdsFileResponse>(await this.execute(params, req, runtime), new MoveCdsFileResponse({}));
|
|
80663
|
-
}
|
|
80664
|
-
|
|
80613
|
+
return $dara.cast<MoveCdsFileResponse>(await this.callApi(params, req, runtime), new MoveCdsFileResponse({}));
|
|
80665
80614
|
}
|
|
80666
80615
|
|
|
80667
80616
|
/**
|
|
@@ -80714,12 +80663,7 @@ export default class Client extends OpenApi {
|
|
|
80714
80663
|
reqBodyType: "formData",
|
|
80715
80664
|
bodyType: "json",
|
|
80716
80665
|
});
|
|
80717
|
-
|
|
80718
|
-
return $dara.cast<RebootDesktopsResponse>(await this.callApi(params, req, runtime), new RebootDesktopsResponse({}));
|
|
80719
|
-
} else {
|
|
80720
|
-
return $dara.cast<RebootDesktopsResponse>(await this.execute(params, req, runtime), new RebootDesktopsResponse({}));
|
|
80721
|
-
}
|
|
80722
|
-
|
|
80666
|
+
return $dara.cast<RebootDesktopsResponse>(await this.callApi(params, req, runtime), new RebootDesktopsResponse({}));
|
|
80723
80667
|
}
|
|
80724
80668
|
|
|
80725
80669
|
/**
|
|
@@ -80792,12 +80736,7 @@ export default class Client extends OpenApi {
|
|
|
80792
80736
|
reqBodyType: "formData",
|
|
80793
80737
|
bodyType: "json",
|
|
80794
80738
|
});
|
|
80795
|
-
|
|
80796
|
-
return $dara.cast<RebuildDesktopsResponse>(await this.callApi(params, req, runtime), new RebuildDesktopsResponse({}));
|
|
80797
|
-
} else {
|
|
80798
|
-
return $dara.cast<RebuildDesktopsResponse>(await this.execute(params, req, runtime), new RebuildDesktopsResponse({}));
|
|
80799
|
-
}
|
|
80800
|
-
|
|
80739
|
+
return $dara.cast<RebuildDesktopsResponse>(await this.callApi(params, req, runtime), new RebuildDesktopsResponse({}));
|
|
80801
80740
|
}
|
|
80802
80741
|
|
|
80803
80742
|
/**
|
|
@@ -80873,12 +80812,7 @@ export default class Client extends OpenApi {
|
|
|
80873
80812
|
reqBodyType: "formData",
|
|
80874
80813
|
bodyType: "json",
|
|
80875
80814
|
});
|
|
80876
|
-
|
|
80877
|
-
return $dara.cast<RemoveFilePermissionResponse>(await this.callApi(params, req, runtime), new RemoveFilePermissionResponse({}));
|
|
80878
|
-
} else {
|
|
80879
|
-
return $dara.cast<RemoveFilePermissionResponse>(await this.execute(params, req, runtime), new RemoveFilePermissionResponse({}));
|
|
80880
|
-
}
|
|
80881
|
-
|
|
80815
|
+
return $dara.cast<RemoveFilePermissionResponse>(await this.callApi(params, req, runtime), new RemoveFilePermissionResponse({}));
|
|
80882
80816
|
}
|
|
80883
80817
|
|
|
80884
80818
|
/**
|
|
@@ -80936,12 +80870,7 @@ export default class Client extends OpenApi {
|
|
|
80936
80870
|
reqBodyType: "formData",
|
|
80937
80871
|
bodyType: "json",
|
|
80938
80872
|
});
|
|
80939
|
-
|
|
80940
|
-
return $dara.cast<RemoveUserFromDesktopGroupResponse>(await this.callApi(params, req, runtime), new RemoveUserFromDesktopGroupResponse({}));
|
|
80941
|
-
} else {
|
|
80942
|
-
return $dara.cast<RemoveUserFromDesktopGroupResponse>(await this.execute(params, req, runtime), new RemoveUserFromDesktopGroupResponse({}));
|
|
80943
|
-
}
|
|
80944
|
-
|
|
80873
|
+
return $dara.cast<RemoveUserFromDesktopGroupResponse>(await this.callApi(params, req, runtime), new RemoveUserFromDesktopGroupResponse({}));
|
|
80945
80874
|
}
|
|
80946
80875
|
|
|
80947
80876
|
/**
|
|
@@ -80995,12 +80924,7 @@ export default class Client extends OpenApi {
|
|
|
80995
80924
|
reqBodyType: "formData",
|
|
80996
80925
|
bodyType: "json",
|
|
80997
80926
|
});
|
|
80998
|
-
|
|
80999
|
-
return $dara.cast<RemoveUserFromDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new RemoveUserFromDesktopOversoldUserGroupResponse({}));
|
|
81000
|
-
} else {
|
|
81001
|
-
return $dara.cast<RemoveUserFromDesktopOversoldUserGroupResponse>(await this.execute(params, req, runtime), new RemoveUserFromDesktopOversoldUserGroupResponse({}));
|
|
81002
|
-
}
|
|
81003
|
-
|
|
80927
|
+
return $dara.cast<RemoveUserFromDesktopOversoldUserGroupResponse>(await this.callApi(params, req, runtime), new RemoveUserFromDesktopOversoldUserGroupResponse({}));
|
|
81004
80928
|
}
|
|
81005
80929
|
|
|
81006
80930
|
/**
|
|
@@ -81062,12 +80986,7 @@ export default class Client extends OpenApi {
|
|
|
81062
80986
|
reqBodyType: "formData",
|
|
81063
80987
|
bodyType: "json",
|
|
81064
80988
|
});
|
|
81065
|
-
|
|
81066
|
-
return $dara.cast<RenewDesktopGroupResponse>(await this.callApi(params, req, runtime), new RenewDesktopGroupResponse({}));
|
|
81067
|
-
} else {
|
|
81068
|
-
return $dara.cast<RenewDesktopGroupResponse>(await this.execute(params, req, runtime), new RenewDesktopGroupResponse({}));
|
|
81069
|
-
}
|
|
81070
|
-
|
|
80989
|
+
return $dara.cast<RenewDesktopGroupResponse>(await this.callApi(params, req, runtime), new RenewDesktopGroupResponse({}));
|
|
81071
80990
|
}
|
|
81072
80991
|
|
|
81073
80992
|
/**
|
|
@@ -81117,12 +81036,7 @@ export default class Client extends OpenApi {
|
|
|
81117
81036
|
reqBodyType: "formData",
|
|
81118
81037
|
bodyType: "json",
|
|
81119
81038
|
});
|
|
81120
|
-
|
|
81121
|
-
return $dara.cast<RenewDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new RenewDesktopOversoldGroupResponse({}));
|
|
81122
|
-
} else {
|
|
81123
|
-
return $dara.cast<RenewDesktopOversoldGroupResponse>(await this.execute(params, req, runtime), new RenewDesktopOversoldGroupResponse({}));
|
|
81124
|
-
}
|
|
81125
|
-
|
|
81039
|
+
return $dara.cast<RenewDesktopOversoldGroupResponse>(await this.callApi(params, req, runtime), new RenewDesktopOversoldGroupResponse({}));
|
|
81126
81040
|
}
|
|
81127
81041
|
|
|
81128
81042
|
/**
|
|
@@ -81192,12 +81106,7 @@ export default class Client extends OpenApi {
|
|
|
81192
81106
|
reqBodyType: "formData",
|
|
81193
81107
|
bodyType: "json",
|
|
81194
81108
|
});
|
|
81195
|
-
|
|
81196
|
-
return $dara.cast<RenewDesktopsResponse>(await this.callApi(params, req, runtime), new RenewDesktopsResponse({}));
|
|
81197
|
-
} else {
|
|
81198
|
-
return $dara.cast<RenewDesktopsResponse>(await this.execute(params, req, runtime), new RenewDesktopsResponse({}));
|
|
81199
|
-
}
|
|
81200
|
-
|
|
81109
|
+
return $dara.cast<RenewDesktopsResponse>(await this.callApi(params, req, runtime), new RenewDesktopsResponse({}));
|
|
81201
81110
|
}
|
|
81202
81111
|
|
|
81203
81112
|
/**
|
|
@@ -81263,12 +81172,7 @@ export default class Client extends OpenApi {
|
|
|
81263
81172
|
reqBodyType: "formData",
|
|
81264
81173
|
bodyType: "json",
|
|
81265
81174
|
});
|
|
81266
|
-
|
|
81267
|
-
return $dara.cast<RenewNetworkPackagesResponse>(await this.callApi(params, req, runtime), new RenewNetworkPackagesResponse({}));
|
|
81268
|
-
} else {
|
|
81269
|
-
return $dara.cast<RenewNetworkPackagesResponse>(await this.execute(params, req, runtime), new RenewNetworkPackagesResponse({}));
|
|
81270
|
-
}
|
|
81271
|
-
|
|
81175
|
+
return $dara.cast<RenewNetworkPackagesResponse>(await this.callApi(params, req, runtime), new RenewNetworkPackagesResponse({}));
|
|
81272
81176
|
}
|
|
81273
81177
|
|
|
81274
81178
|
/**
|
|
@@ -81341,12 +81245,7 @@ export default class Client extends OpenApi {
|
|
|
81341
81245
|
reqBodyType: "formData",
|
|
81342
81246
|
bodyType: "json",
|
|
81343
81247
|
});
|
|
81344
|
-
|
|
81345
|
-
return $dara.cast<ResetDesktopsResponse>(await this.callApi(params, req, runtime), new ResetDesktopsResponse({}));
|
|
81346
|
-
} else {
|
|
81347
|
-
return $dara.cast<ResetDesktopsResponse>(await this.execute(params, req, runtime), new ResetDesktopsResponse({}));
|
|
81348
|
-
}
|
|
81349
|
-
|
|
81248
|
+
return $dara.cast<ResetDesktopsResponse>(await this.callApi(params, req, runtime), new ResetDesktopsResponse({}));
|
|
81350
81249
|
}
|
|
81351
81250
|
|
|
81352
81251
|
/**
|
|
@@ -81398,12 +81297,7 @@ export default class Client extends OpenApi {
|
|
|
81398
81297
|
reqBodyType: "formData",
|
|
81399
81298
|
bodyType: "json",
|
|
81400
81299
|
});
|
|
81401
|
-
|
|
81402
|
-
return $dara.cast<ResetNASDefaultMountTargetResponse>(await this.callApi(params, req, runtime), new ResetNASDefaultMountTargetResponse({}));
|
|
81403
|
-
} else {
|
|
81404
|
-
return $dara.cast<ResetNASDefaultMountTargetResponse>(await this.execute(params, req, runtime), new ResetNASDefaultMountTargetResponse({}));
|
|
81405
|
-
}
|
|
81406
|
-
|
|
81300
|
+
return $dara.cast<ResetNASDefaultMountTargetResponse>(await this.callApi(params, req, runtime), new ResetNASDefaultMountTargetResponse({}));
|
|
81407
81301
|
}
|
|
81408
81302
|
|
|
81409
81303
|
/**
|
|
@@ -81458,12 +81352,7 @@ export default class Client extends OpenApi {
|
|
|
81458
81352
|
reqBodyType: "formData",
|
|
81459
81353
|
bodyType: "json",
|
|
81460
81354
|
});
|
|
81461
|
-
|
|
81462
|
-
return $dara.cast<ResetSnapshotResponse>(await this.callApi(params, req, runtime), new ResetSnapshotResponse({}));
|
|
81463
|
-
} else {
|
|
81464
|
-
return $dara.cast<ResetSnapshotResponse>(await this.execute(params, req, runtime), new ResetSnapshotResponse({}));
|
|
81465
|
-
}
|
|
81466
|
-
|
|
81355
|
+
return $dara.cast<ResetSnapshotResponse>(await this.callApi(params, req, runtime), new ResetSnapshotResponse({}));
|
|
81467
81356
|
}
|
|
81468
81357
|
|
|
81469
81358
|
/**
|
|
@@ -81527,12 +81416,7 @@ export default class Client extends OpenApi {
|
|
|
81527
81416
|
reqBodyType: "formData",
|
|
81528
81417
|
bodyType: "json",
|
|
81529
81418
|
});
|
|
81530
|
-
|
|
81531
|
-
return $dara.cast<RevokeCoordinatePrivilegeResponse>(await this.callApi(params, req, runtime), new RevokeCoordinatePrivilegeResponse({}));
|
|
81532
|
-
} else {
|
|
81533
|
-
return $dara.cast<RevokeCoordinatePrivilegeResponse>(await this.execute(params, req, runtime), new RevokeCoordinatePrivilegeResponse({}));
|
|
81534
|
-
}
|
|
81535
|
-
|
|
81419
|
+
return $dara.cast<RevokeCoordinatePrivilegeResponse>(await this.callApi(params, req, runtime), new RevokeCoordinatePrivilegeResponse({}));
|
|
81536
81420
|
}
|
|
81537
81421
|
|
|
81538
81422
|
/**
|
|
@@ -81601,12 +81485,7 @@ export default class Client extends OpenApi {
|
|
|
81601
81485
|
reqBodyType: "formData",
|
|
81602
81486
|
bodyType: "json",
|
|
81603
81487
|
});
|
|
81604
|
-
|
|
81605
|
-
return $dara.cast<RunCommandResponse>(await this.callApi(params, req, runtime), new RunCommandResponse({}));
|
|
81606
|
-
} else {
|
|
81607
|
-
return $dara.cast<RunCommandResponse>(await this.execute(params, req, runtime), new RunCommandResponse({}));
|
|
81608
|
-
}
|
|
81609
|
-
|
|
81488
|
+
return $dara.cast<RunCommandResponse>(await this.callApi(params, req, runtime), new RunCommandResponse({}));
|
|
81610
81489
|
}
|
|
81611
81490
|
|
|
81612
81491
|
/**
|
|
@@ -81662,12 +81541,7 @@ export default class Client extends OpenApi {
|
|
|
81662
81541
|
reqBodyType: "formData",
|
|
81663
81542
|
bodyType: "json",
|
|
81664
81543
|
});
|
|
81665
|
-
|
|
81666
|
-
return $dara.cast<SendVerifyCodeResponse>(await this.callApi(params, req, runtime), new SendVerifyCodeResponse({}));
|
|
81667
|
-
} else {
|
|
81668
|
-
return $dara.cast<SendVerifyCodeResponse>(await this.execute(params, req, runtime), new SendVerifyCodeResponse({}));
|
|
81669
|
-
}
|
|
81670
|
-
|
|
81544
|
+
return $dara.cast<SendVerifyCodeResponse>(await this.callApi(params, req, runtime), new SendVerifyCodeResponse({}));
|
|
81671
81545
|
}
|
|
81672
81546
|
|
|
81673
81547
|
/**
|
|
@@ -81720,12 +81594,7 @@ export default class Client extends OpenApi {
|
|
|
81720
81594
|
reqBodyType: "formData",
|
|
81721
81595
|
bodyType: "json",
|
|
81722
81596
|
});
|
|
81723
|
-
|
|
81724
|
-
return $dara.cast<SetDesktopGroupScaleTimerResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupScaleTimerResponse({}));
|
|
81725
|
-
} else {
|
|
81726
|
-
return $dara.cast<SetDesktopGroupScaleTimerResponse>(await this.execute(params, req, runtime), new SetDesktopGroupScaleTimerResponse({}));
|
|
81727
|
-
}
|
|
81728
|
-
|
|
81597
|
+
return $dara.cast<SetDesktopGroupScaleTimerResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupScaleTimerResponse({}));
|
|
81729
81598
|
}
|
|
81730
81599
|
|
|
81731
81600
|
/**
|
|
@@ -81787,12 +81656,7 @@ export default class Client extends OpenApi {
|
|
|
81787
81656
|
reqBodyType: "formData",
|
|
81788
81657
|
bodyType: "json",
|
|
81789
81658
|
});
|
|
81790
|
-
|
|
81791
|
-
return $dara.cast<SetDesktopGroupTimerResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerResponse({}));
|
|
81792
|
-
} else {
|
|
81793
|
-
return $dara.cast<SetDesktopGroupTimerResponse>(await this.execute(params, req, runtime), new SetDesktopGroupTimerResponse({}));
|
|
81794
|
-
}
|
|
81795
|
-
|
|
81659
|
+
return $dara.cast<SetDesktopGroupTimerResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerResponse({}));
|
|
81796
81660
|
}
|
|
81797
81661
|
|
|
81798
81662
|
/**
|
|
@@ -81846,12 +81710,7 @@ export default class Client extends OpenApi {
|
|
|
81846
81710
|
reqBodyType: "formData",
|
|
81847
81711
|
bodyType: "json",
|
|
81848
81712
|
});
|
|
81849
|
-
|
|
81850
|
-
return $dara.cast<SetDesktopGroupTimerStatusResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerStatusResponse({}));
|
|
81851
|
-
} else {
|
|
81852
|
-
return $dara.cast<SetDesktopGroupTimerStatusResponse>(await this.execute(params, req, runtime), new SetDesktopGroupTimerStatusResponse({}));
|
|
81853
|
-
}
|
|
81854
|
-
|
|
81713
|
+
return $dara.cast<SetDesktopGroupTimerStatusResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerStatusResponse({}));
|
|
81855
81714
|
}
|
|
81856
81715
|
|
|
81857
81716
|
/**
|
|
@@ -81901,12 +81760,7 @@ export default class Client extends OpenApi {
|
|
|
81901
81760
|
reqBodyType: "formData",
|
|
81902
81761
|
bodyType: "json",
|
|
81903
81762
|
});
|
|
81904
|
-
|
|
81905
|
-
return $dara.cast<SetDesktopMaintenanceResponse>(await this.callApi(params, req, runtime), new SetDesktopMaintenanceResponse({}));
|
|
81906
|
-
} else {
|
|
81907
|
-
return $dara.cast<SetDesktopMaintenanceResponse>(await this.execute(params, req, runtime), new SetDesktopMaintenanceResponse({}));
|
|
81908
|
-
}
|
|
81909
|
-
|
|
81763
|
+
return $dara.cast<SetDesktopMaintenanceResponse>(await this.callApi(params, req, runtime), new SetDesktopMaintenanceResponse({}));
|
|
81910
81764
|
}
|
|
81911
81765
|
|
|
81912
81766
|
/**
|
|
@@ -81959,12 +81813,7 @@ export default class Client extends OpenApi {
|
|
|
81959
81813
|
reqBodyType: "formData",
|
|
81960
81814
|
bodyType: "json",
|
|
81961
81815
|
});
|
|
81962
|
-
|
|
81963
|
-
return $dara.cast<SetDirectorySsoStatusResponse>(await this.callApi(params, req, runtime), new SetDirectorySsoStatusResponse({}));
|
|
81964
|
-
} else {
|
|
81965
|
-
return $dara.cast<SetDirectorySsoStatusResponse>(await this.execute(params, req, runtime), new SetDirectorySsoStatusResponse({}));
|
|
81966
|
-
}
|
|
81967
|
-
|
|
81816
|
+
return $dara.cast<SetDirectorySsoStatusResponse>(await this.callApi(params, req, runtime), new SetDirectorySsoStatusResponse({}));
|
|
81968
81817
|
}
|
|
81969
81818
|
|
|
81970
81819
|
/**
|
|
@@ -82024,12 +81873,7 @@ export default class Client extends OpenApi {
|
|
|
82024
81873
|
reqBodyType: "formData",
|
|
82025
81874
|
bodyType: "json",
|
|
82026
81875
|
});
|
|
82027
|
-
|
|
82028
|
-
return $dara.cast<SetIdpMetadataResponse>(await this.callApi(params, req, runtime), new SetIdpMetadataResponse({}));
|
|
82029
|
-
} else {
|
|
82030
|
-
return $dara.cast<SetIdpMetadataResponse>(await this.execute(params, req, runtime), new SetIdpMetadataResponse({}));
|
|
82031
|
-
}
|
|
82032
|
-
|
|
81876
|
+
return $dara.cast<SetIdpMetadataResponse>(await this.callApi(params, req, runtime), new SetIdpMetadataResponse({}));
|
|
82033
81877
|
}
|
|
82034
81878
|
|
|
82035
81879
|
/**
|
|
@@ -82082,12 +81926,7 @@ export default class Client extends OpenApi {
|
|
|
82082
81926
|
reqBodyType: "formData",
|
|
82083
81927
|
bodyType: "json",
|
|
82084
81928
|
});
|
|
82085
|
-
|
|
82086
|
-
return $dara.cast<SetOfficeSiteSsoStatusResponse>(await this.callApi(params, req, runtime), new SetOfficeSiteSsoStatusResponse({}));
|
|
82087
|
-
} else {
|
|
82088
|
-
return $dara.cast<SetOfficeSiteSsoStatusResponse>(await this.execute(params, req, runtime), new SetOfficeSiteSsoStatusResponse({}));
|
|
82089
|
-
}
|
|
82090
|
-
|
|
81929
|
+
return $dara.cast<SetOfficeSiteSsoStatusResponse>(await this.callApi(params, req, runtime), new SetOfficeSiteSsoStatusResponse({}));
|
|
82091
81930
|
}
|
|
82092
81931
|
|
|
82093
81932
|
/**
|
|
@@ -82147,12 +81986,7 @@ export default class Client extends OpenApi {
|
|
|
82147
81986
|
reqBodyType: "formData",
|
|
82148
81987
|
bodyType: "json",
|
|
82149
81988
|
});
|
|
82150
|
-
|
|
82151
|
-
return $dara.cast<SetUserProfilePathRulesResponse>(await this.callApi(params, req, runtime), new SetUserProfilePathRulesResponse({}));
|
|
82152
|
-
} else {
|
|
82153
|
-
return $dara.cast<SetUserProfilePathRulesResponse>(await this.execute(params, req, runtime), new SetUserProfilePathRulesResponse({}));
|
|
82154
|
-
}
|
|
82155
|
-
|
|
81989
|
+
return $dara.cast<SetUserProfilePathRulesResponse>(await this.callApi(params, req, runtime), new SetUserProfilePathRulesResponse({}));
|
|
82156
81990
|
}
|
|
82157
81991
|
|
|
82158
81992
|
/**
|
|
@@ -82201,12 +82035,7 @@ export default class Client extends OpenApi {
|
|
|
82201
82035
|
reqBodyType: "formData",
|
|
82202
82036
|
bodyType: "json",
|
|
82203
82037
|
});
|
|
82204
|
-
|
|
82205
|
-
return $dara.cast<StartDesktopsResponse>(await this.callApi(params, req, runtime), new StartDesktopsResponse({}));
|
|
82206
|
-
} else {
|
|
82207
|
-
return $dara.cast<StartDesktopsResponse>(await this.execute(params, req, runtime), new StartDesktopsResponse({}));
|
|
82208
|
-
}
|
|
82209
|
-
|
|
82038
|
+
return $dara.cast<StartDesktopsResponse>(await this.callApi(params, req, runtime), new StartDesktopsResponse({}));
|
|
82210
82039
|
}
|
|
82211
82040
|
|
|
82212
82041
|
/**
|
|
@@ -82266,12 +82095,7 @@ export default class Client extends OpenApi {
|
|
|
82266
82095
|
reqBodyType: "formData",
|
|
82267
82096
|
bodyType: "json",
|
|
82268
82097
|
});
|
|
82269
|
-
|
|
82270
|
-
return $dara.cast<StopDesktopsResponse>(await this.callApi(params, req, runtime), new StopDesktopsResponse({}));
|
|
82271
|
-
} else {
|
|
82272
|
-
return $dara.cast<StopDesktopsResponse>(await this.execute(params, req, runtime), new StopDesktopsResponse({}));
|
|
82273
|
-
}
|
|
82274
|
-
|
|
82098
|
+
return $dara.cast<StopDesktopsResponse>(await this.callApi(params, req, runtime), new StopDesktopsResponse({}));
|
|
82275
82099
|
}
|
|
82276
82100
|
|
|
82277
82101
|
/**
|
|
@@ -82327,12 +82151,7 @@ export default class Client extends OpenApi {
|
|
|
82327
82151
|
reqBodyType: "formData",
|
|
82328
82152
|
bodyType: "json",
|
|
82329
82153
|
});
|
|
82330
|
-
|
|
82331
|
-
return $dara.cast<StopInvocationResponse>(await this.callApi(params, req, runtime), new StopInvocationResponse({}));
|
|
82332
|
-
} else {
|
|
82333
|
-
return $dara.cast<StopInvocationResponse>(await this.execute(params, req, runtime), new StopInvocationResponse({}));
|
|
82334
|
-
}
|
|
82335
|
-
|
|
82154
|
+
return $dara.cast<StopInvocationResponse>(await this.callApi(params, req, runtime), new StopInvocationResponse({}));
|
|
82336
82155
|
}
|
|
82337
82156
|
|
|
82338
82157
|
/**
|
|
@@ -82392,12 +82211,7 @@ export default class Client extends OpenApi {
|
|
|
82392
82211
|
reqBodyType: "formData",
|
|
82393
82212
|
bodyType: "json",
|
|
82394
82213
|
});
|
|
82395
|
-
|
|
82396
|
-
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
82397
|
-
} else {
|
|
82398
|
-
return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
|
|
82399
|
-
}
|
|
82400
|
-
|
|
82214
|
+
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
82401
82215
|
}
|
|
82402
82216
|
|
|
82403
82217
|
/**
|
|
@@ -82450,12 +82264,7 @@ export default class Client extends OpenApi {
|
|
|
82450
82264
|
reqBodyType: "formData",
|
|
82451
82265
|
bodyType: "json",
|
|
82452
82266
|
});
|
|
82453
|
-
|
|
82454
|
-
return $dara.cast<UnbindConfigGroupResponse>(await this.callApi(params, req, runtime), new UnbindConfigGroupResponse({}));
|
|
82455
|
-
} else {
|
|
82456
|
-
return $dara.cast<UnbindConfigGroupResponse>(await this.execute(params, req, runtime), new UnbindConfigGroupResponse({}));
|
|
82457
|
-
}
|
|
82458
|
-
|
|
82267
|
+
return $dara.cast<UnbindConfigGroupResponse>(await this.callApi(params, req, runtime), new UnbindConfigGroupResponse({}));
|
|
82459
82268
|
}
|
|
82460
82269
|
|
|
82461
82270
|
/**
|
|
@@ -82517,12 +82326,7 @@ export default class Client extends OpenApi {
|
|
|
82517
82326
|
reqBodyType: "formData",
|
|
82518
82327
|
bodyType: "json",
|
|
82519
82328
|
});
|
|
82520
|
-
|
|
82521
|
-
return $dara.cast<UnbindUserDesktopResponse>(await this.callApi(params, req, runtime), new UnbindUserDesktopResponse({}));
|
|
82522
|
-
} else {
|
|
82523
|
-
return $dara.cast<UnbindUserDesktopResponse>(await this.execute(params, req, runtime), new UnbindUserDesktopResponse({}));
|
|
82524
|
-
}
|
|
82525
|
-
|
|
82329
|
+
return $dara.cast<UnbindUserDesktopResponse>(await this.callApi(params, req, runtime), new UnbindUserDesktopResponse({}));
|
|
82526
82330
|
}
|
|
82527
82331
|
|
|
82528
82332
|
/**
|
|
@@ -82568,12 +82372,7 @@ export default class Client extends OpenApi {
|
|
|
82568
82372
|
reqBodyType: "formData",
|
|
82569
82373
|
bodyType: "json",
|
|
82570
82374
|
});
|
|
82571
|
-
|
|
82572
|
-
return $dara.cast<UnlockVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new UnlockVirtualMFADeviceResponse({}));
|
|
82573
|
-
} else {
|
|
82574
|
-
return $dara.cast<UnlockVirtualMFADeviceResponse>(await this.execute(params, req, runtime), new UnlockVirtualMFADeviceResponse({}));
|
|
82575
|
-
}
|
|
82576
|
-
|
|
82375
|
+
return $dara.cast<UnlockVirtualMFADeviceResponse>(await this.callApi(params, req, runtime), new UnlockVirtualMFADeviceResponse({}));
|
|
82577
82376
|
}
|
|
82578
82377
|
|
|
82579
82378
|
/**
|
|
@@ -82631,12 +82430,7 @@ export default class Client extends OpenApi {
|
|
|
82631
82430
|
reqBodyType: "formData",
|
|
82632
82431
|
bodyType: "json",
|
|
82633
82432
|
});
|
|
82634
|
-
|
|
82635
|
-
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
82636
|
-
} else {
|
|
82637
|
-
return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
|
|
82638
|
-
}
|
|
82639
|
-
|
|
82433
|
+
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
82640
82434
|
}
|
|
82641
82435
|
|
|
82642
82436
|
/**
|
|
@@ -82689,12 +82483,7 @@ export default class Client extends OpenApi {
|
|
|
82689
82483
|
reqBodyType: "formData",
|
|
82690
82484
|
bodyType: "json",
|
|
82691
82485
|
});
|
|
82692
|
-
|
|
82693
|
-
return $dara.cast<UpdateFotaTaskResponse>(await this.callApi(params, req, runtime), new UpdateFotaTaskResponse({}));
|
|
82694
|
-
} else {
|
|
82695
|
-
return $dara.cast<UpdateFotaTaskResponse>(await this.execute(params, req, runtime), new UpdateFotaTaskResponse({}));
|
|
82696
|
-
}
|
|
82697
|
-
|
|
82486
|
+
return $dara.cast<UpdateFotaTaskResponse>(await this.callApi(params, req, runtime), new UpdateFotaTaskResponse({}));
|
|
82698
82487
|
}
|
|
82699
82488
|
|
|
82700
82489
|
/**
|
|
@@ -82786,12 +82575,7 @@ export default class Client extends OpenApi {
|
|
|
82786
82575
|
reqBodyType: "formData",
|
|
82787
82576
|
bodyType: "json",
|
|
82788
82577
|
});
|
|
82789
|
-
|
|
82790
|
-
return $dara.cast<UploadImageResponse>(await this.callApi(params, req, runtime), new UploadImageResponse({}));
|
|
82791
|
-
} else {
|
|
82792
|
-
return $dara.cast<UploadImageResponse>(await this.execute(params, req, runtime), new UploadImageResponse({}));
|
|
82793
|
-
}
|
|
82794
|
-
|
|
82578
|
+
return $dara.cast<UploadImageResponse>(await this.callApi(params, req, runtime), new UploadImageResponse({}));
|
|
82795
82579
|
}
|
|
82796
82580
|
|
|
82797
82581
|
/**
|
|
@@ -82852,12 +82636,7 @@ export default class Client extends OpenApi {
|
|
|
82852
82636
|
reqBodyType: "formData",
|
|
82853
82637
|
bodyType: "json",
|
|
82854
82638
|
});
|
|
82855
|
-
|
|
82856
|
-
return $dara.cast<VerifyCenResponse>(await this.callApi(params, req, runtime), new VerifyCenResponse({}));
|
|
82857
|
-
} else {
|
|
82858
|
-
return $dara.cast<VerifyCenResponse>(await this.execute(params, req, runtime), new VerifyCenResponse({}));
|
|
82859
|
-
}
|
|
82860
|
-
|
|
82639
|
+
return $dara.cast<VerifyCenResponse>(await this.callApi(params, req, runtime), new VerifyCenResponse({}));
|
|
82861
82640
|
}
|
|
82862
82641
|
|
|
82863
82642
|
/**
|
|
@@ -82906,12 +82685,7 @@ export default class Client extends OpenApi {
|
|
|
82906
82685
|
reqBodyType: "formData",
|
|
82907
82686
|
bodyType: "json",
|
|
82908
82687
|
});
|
|
82909
|
-
|
|
82910
|
-
return $dara.cast<WakeupDesktopsResponse>(await this.callApi(params, req, runtime), new WakeupDesktopsResponse({}));
|
|
82911
|
-
} else {
|
|
82912
|
-
return $dara.cast<WakeupDesktopsResponse>(await this.execute(params, req, runtime), new WakeupDesktopsResponse({}));
|
|
82913
|
-
}
|
|
82914
|
-
|
|
82688
|
+
return $dara.cast<WakeupDesktopsResponse>(await this.callApi(params, req, runtime), new WakeupDesktopsResponse({}));
|
|
82915
82689
|
}
|
|
82916
82690
|
|
|
82917
82691
|
/**
|