@alicloud/ecd20200930 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +680 -599
- package/dist/client.js +190 -4
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +819 -599
package/src/client.ts
CHANGED
|
@@ -169,9 +169,9 @@ export class ActivateOfficeSiteResponseBody extends $tea.Model {
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
export class ActivateOfficeSiteResponse extends $tea.Model {
|
|
172
|
-
headers
|
|
173
|
-
statusCode
|
|
174
|
-
body
|
|
172
|
+
headers?: { [key: string]: string };
|
|
173
|
+
statusCode?: number;
|
|
174
|
+
body?: ActivateOfficeSiteResponseBody;
|
|
175
175
|
static names(): { [key: string]: string } {
|
|
176
176
|
return {
|
|
177
177
|
headers: 'headers',
|
|
@@ -244,9 +244,9 @@ export class AddDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
export class AddDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
247
|
-
headers
|
|
248
|
-
statusCode
|
|
249
|
-
body
|
|
247
|
+
headers?: { [key: string]: string };
|
|
248
|
+
statusCode?: number;
|
|
249
|
+
body?: AddDesktopOversoldUserGroupResponseBody;
|
|
250
250
|
static names(): { [key: string]: string } {
|
|
251
251
|
return {
|
|
252
252
|
headers: 'headers',
|
|
@@ -313,9 +313,9 @@ export class AddDevicesResponseBody extends $tea.Model {
|
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
export class AddDevicesResponse extends $tea.Model {
|
|
316
|
-
headers
|
|
317
|
-
statusCode
|
|
318
|
-
body
|
|
316
|
+
headers?: { [key: string]: string };
|
|
317
|
+
statusCode?: number;
|
|
318
|
+
body?: AddDevicesResponseBody;
|
|
319
319
|
static names(): { [key: string]: string } {
|
|
320
320
|
return {
|
|
321
321
|
headers: 'headers',
|
|
@@ -425,9 +425,9 @@ export class AddFilePermissionResponseBody extends $tea.Model {
|
|
|
425
425
|
}
|
|
426
426
|
|
|
427
427
|
export class AddFilePermissionResponse extends $tea.Model {
|
|
428
|
-
headers
|
|
429
|
-
statusCode
|
|
430
|
-
body
|
|
428
|
+
headers?: { [key: string]: string };
|
|
429
|
+
statusCode?: number;
|
|
430
|
+
body?: AddFilePermissionResponseBody;
|
|
431
431
|
static names(): { [key: string]: string } {
|
|
432
432
|
return {
|
|
433
433
|
headers: 'headers',
|
|
@@ -500,9 +500,9 @@ export class AddUserToDesktopGroupResponseBody extends $tea.Model {
|
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
export class AddUserToDesktopGroupResponse extends $tea.Model {
|
|
503
|
-
headers
|
|
504
|
-
statusCode
|
|
505
|
-
body
|
|
503
|
+
headers?: { [key: string]: string };
|
|
504
|
+
statusCode?: number;
|
|
505
|
+
body?: AddUserToDesktopGroupResponseBody;
|
|
506
506
|
static names(): { [key: string]: string } {
|
|
507
507
|
return {
|
|
508
508
|
headers: 'headers',
|
|
@@ -572,9 +572,9 @@ export class AddUserToDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
export class AddUserToDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
575
|
-
headers
|
|
576
|
-
statusCode
|
|
577
|
-
body
|
|
575
|
+
headers?: { [key: string]: string };
|
|
576
|
+
statusCode?: number;
|
|
577
|
+
body?: AddUserToDesktopOversoldUserGroupResponseBody;
|
|
578
578
|
static names(): { [key: string]: string } {
|
|
579
579
|
return {
|
|
580
580
|
headers: 'headers',
|
|
@@ -641,9 +641,9 @@ export class ApplyAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
641
641
|
}
|
|
642
642
|
|
|
643
643
|
export class ApplyAutoSnapshotPolicyResponse extends $tea.Model {
|
|
644
|
-
headers
|
|
645
|
-
statusCode
|
|
646
|
-
body
|
|
644
|
+
headers?: { [key: string]: string };
|
|
645
|
+
statusCode?: number;
|
|
646
|
+
body?: ApplyAutoSnapshotPolicyResponseBody;
|
|
647
647
|
static names(): { [key: string]: string } {
|
|
648
648
|
return {
|
|
649
649
|
headers: 'headers',
|
|
@@ -716,9 +716,9 @@ export class ApplyCoordinatePrivilegeResponseBody extends $tea.Model {
|
|
|
716
716
|
}
|
|
717
717
|
|
|
718
718
|
export class ApplyCoordinatePrivilegeResponse extends $tea.Model {
|
|
719
|
-
headers
|
|
720
|
-
statusCode
|
|
721
|
-
body
|
|
719
|
+
headers?: { [key: string]: string };
|
|
720
|
+
statusCode?: number;
|
|
721
|
+
body?: ApplyCoordinatePrivilegeResponseBody;
|
|
722
722
|
static names(): { [key: string]: string } {
|
|
723
723
|
return {
|
|
724
724
|
headers: 'headers',
|
|
@@ -797,9 +797,9 @@ export class ApplyCoordinationForMonitoringResponseBody extends $tea.Model {
|
|
|
797
797
|
}
|
|
798
798
|
|
|
799
799
|
export class ApplyCoordinationForMonitoringResponse extends $tea.Model {
|
|
800
|
-
headers
|
|
801
|
-
statusCode
|
|
802
|
-
body
|
|
800
|
+
headers?: { [key: string]: string };
|
|
801
|
+
statusCode?: number;
|
|
802
|
+
body?: ApplyCoordinationForMonitoringResponseBody;
|
|
803
803
|
static names(): { [key: string]: string } {
|
|
804
804
|
return {
|
|
805
805
|
headers: 'headers',
|
|
@@ -866,9 +866,9 @@ export class ApproveFotaUpdateResponseBody extends $tea.Model {
|
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
export class ApproveFotaUpdateResponse extends $tea.Model {
|
|
869
|
-
headers
|
|
870
|
-
statusCode
|
|
871
|
-
body
|
|
869
|
+
headers?: { [key: string]: string };
|
|
870
|
+
statusCode?: number;
|
|
871
|
+
body?: ApproveFotaUpdateResponseBody;
|
|
872
872
|
static names(): { [key: string]: string } {
|
|
873
873
|
return {
|
|
874
874
|
headers: 'headers',
|
|
@@ -935,9 +935,9 @@ export class AssociateNetworkPackageResponseBody extends $tea.Model {
|
|
|
935
935
|
}
|
|
936
936
|
|
|
937
937
|
export class AssociateNetworkPackageResponse extends $tea.Model {
|
|
938
|
-
headers
|
|
939
|
-
statusCode
|
|
940
|
-
body
|
|
938
|
+
headers?: { [key: string]: string };
|
|
939
|
+
statusCode?: number;
|
|
940
|
+
body?: AssociateNetworkPackageResponseBody;
|
|
941
941
|
static names(): { [key: string]: string } {
|
|
942
942
|
return {
|
|
943
943
|
headers: 'headers',
|
|
@@ -1010,9 +1010,9 @@ export class AttachCenResponseBody extends $tea.Model {
|
|
|
1010
1010
|
}
|
|
1011
1011
|
|
|
1012
1012
|
export class AttachCenResponse extends $tea.Model {
|
|
1013
|
-
headers
|
|
1014
|
-
statusCode
|
|
1015
|
-
body
|
|
1013
|
+
headers?: { [key: string]: string };
|
|
1014
|
+
statusCode?: number;
|
|
1015
|
+
body?: AttachCenResponseBody;
|
|
1016
1016
|
static names(): { [key: string]: string } {
|
|
1017
1017
|
return {
|
|
1018
1018
|
headers: 'headers',
|
|
@@ -1091,9 +1091,9 @@ export class AttachEndUserResponseBody extends $tea.Model {
|
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
1093
1093
|
export class AttachEndUserResponse extends $tea.Model {
|
|
1094
|
-
headers
|
|
1095
|
-
statusCode
|
|
1096
|
-
body
|
|
1094
|
+
headers?: { [key: string]: string };
|
|
1095
|
+
statusCode?: number;
|
|
1096
|
+
body?: AttachEndUserResponseBody;
|
|
1097
1097
|
static names(): { [key: string]: string } {
|
|
1098
1098
|
return {
|
|
1099
1099
|
headers: 'headers',
|
|
@@ -1160,9 +1160,9 @@ export class CancelAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
1160
1160
|
}
|
|
1161
1161
|
|
|
1162
1162
|
export class CancelAutoSnapshotPolicyResponse extends $tea.Model {
|
|
1163
|
-
headers
|
|
1164
|
-
statusCode
|
|
1165
|
-
body
|
|
1163
|
+
headers?: { [key: string]: string };
|
|
1164
|
+
statusCode?: number;
|
|
1165
|
+
body?: CancelAutoSnapshotPolicyResponseBody;
|
|
1166
1166
|
static names(): { [key: string]: string } {
|
|
1167
1167
|
return {
|
|
1168
1168
|
headers: 'headers',
|
|
@@ -1238,9 +1238,9 @@ export class CancelCdsFileShareLinkResponseBody extends $tea.Model {
|
|
|
1238
1238
|
}
|
|
1239
1239
|
|
|
1240
1240
|
export class CancelCdsFileShareLinkResponse extends $tea.Model {
|
|
1241
|
-
headers
|
|
1242
|
-
statusCode
|
|
1243
|
-
body
|
|
1241
|
+
headers?: { [key: string]: string };
|
|
1242
|
+
statusCode?: number;
|
|
1243
|
+
body?: CancelCdsFileShareLinkResponseBody;
|
|
1244
1244
|
static names(): { [key: string]: string } {
|
|
1245
1245
|
return {
|
|
1246
1246
|
headers: 'headers',
|
|
@@ -1310,9 +1310,9 @@ export class CancelCoordinationForMonitoringResponseBody extends $tea.Model {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
|
|
1312
1312
|
export class CancelCoordinationForMonitoringResponse extends $tea.Model {
|
|
1313
|
-
headers
|
|
1314
|
-
statusCode
|
|
1315
|
-
body
|
|
1313
|
+
headers?: { [key: string]: string };
|
|
1314
|
+
statusCode?: number;
|
|
1315
|
+
body?: CancelCoordinationForMonitoringResponseBody;
|
|
1316
1316
|
static names(): { [key: string]: string } {
|
|
1317
1317
|
return {
|
|
1318
1318
|
headers: 'headers',
|
|
@@ -1376,9 +1376,9 @@ export class CancelCopyImageResponseBody extends $tea.Model {
|
|
|
1376
1376
|
}
|
|
1377
1377
|
|
|
1378
1378
|
export class CancelCopyImageResponse extends $tea.Model {
|
|
1379
|
-
headers
|
|
1380
|
-
statusCode
|
|
1381
|
-
body
|
|
1379
|
+
headers?: { [key: string]: string };
|
|
1380
|
+
statusCode?: number;
|
|
1381
|
+
body?: CancelCopyImageResponseBody;
|
|
1382
1382
|
static names(): { [key: string]: string } {
|
|
1383
1383
|
return {
|
|
1384
1384
|
headers: 'headers',
|
|
@@ -1448,9 +1448,9 @@ export class ClonePolicyGroupResponseBody extends $tea.Model {
|
|
|
1448
1448
|
}
|
|
1449
1449
|
|
|
1450
1450
|
export class ClonePolicyGroupResponse extends $tea.Model {
|
|
1451
|
-
headers
|
|
1452
|
-
statusCode
|
|
1453
|
-
body
|
|
1451
|
+
headers?: { [key: string]: string };
|
|
1452
|
+
statusCode?: number;
|
|
1453
|
+
body?: ClonePolicyGroupResponseBody;
|
|
1454
1454
|
static names(): { [key: string]: string } {
|
|
1455
1455
|
return {
|
|
1456
1456
|
headers: 'headers',
|
|
@@ -1526,9 +1526,9 @@ export class CompleteCdsFileResponseBody extends $tea.Model {
|
|
|
1526
1526
|
}
|
|
1527
1527
|
|
|
1528
1528
|
export class CompleteCdsFileResponse extends $tea.Model {
|
|
1529
|
-
headers
|
|
1530
|
-
statusCode
|
|
1531
|
-
body
|
|
1529
|
+
headers?: { [key: string]: string };
|
|
1530
|
+
statusCode?: number;
|
|
1531
|
+
body?: CompleteCdsFileResponseBody;
|
|
1532
1532
|
static names(): { [key: string]: string } {
|
|
1533
1533
|
return {
|
|
1534
1534
|
headers: 'headers',
|
|
@@ -1598,9 +1598,9 @@ export class ConfigADConnectorTrustResponseBody extends $tea.Model {
|
|
|
1598
1598
|
}
|
|
1599
1599
|
|
|
1600
1600
|
export class ConfigADConnectorTrustResponse extends $tea.Model {
|
|
1601
|
-
headers
|
|
1602
|
-
statusCode
|
|
1603
|
-
body
|
|
1601
|
+
headers?: { [key: string]: string };
|
|
1602
|
+
statusCode?: number;
|
|
1603
|
+
body?: ConfigADConnectorTrustResponseBody;
|
|
1604
1604
|
static names(): { [key: string]: string } {
|
|
1605
1605
|
return {
|
|
1606
1606
|
headers: 'headers',
|
|
@@ -1673,9 +1673,9 @@ export class ConfigADConnectorUserResponseBody extends $tea.Model {
|
|
|
1673
1673
|
}
|
|
1674
1674
|
|
|
1675
1675
|
export class ConfigADConnectorUserResponse extends $tea.Model {
|
|
1676
|
-
headers
|
|
1677
|
-
statusCode
|
|
1678
|
-
body
|
|
1676
|
+
headers?: { [key: string]: string };
|
|
1677
|
+
statusCode?: number;
|
|
1678
|
+
body?: ConfigADConnectorUserResponseBody;
|
|
1679
1679
|
static names(): { [key: string]: string } {
|
|
1680
1680
|
return {
|
|
1681
1681
|
headers: 'headers',
|
|
@@ -1772,9 +1772,9 @@ export class CopyCdsFileResponseBody extends $tea.Model {
|
|
|
1772
1772
|
}
|
|
1773
1773
|
|
|
1774
1774
|
export class CopyCdsFileResponse extends $tea.Model {
|
|
1775
|
-
headers
|
|
1776
|
-
statusCode
|
|
1777
|
-
body
|
|
1775
|
+
headers?: { [key: string]: string };
|
|
1776
|
+
statusCode?: number;
|
|
1777
|
+
body?: CopyCdsFileResponseBody;
|
|
1778
1778
|
static names(): { [key: string]: string } {
|
|
1779
1779
|
return {
|
|
1780
1780
|
headers: 'headers',
|
|
@@ -1850,9 +1850,9 @@ export class CopyImageResponseBody extends $tea.Model {
|
|
|
1850
1850
|
}
|
|
1851
1851
|
|
|
1852
1852
|
export class CopyImageResponse extends $tea.Model {
|
|
1853
|
-
headers
|
|
1854
|
-
statusCode
|
|
1855
|
-
body
|
|
1853
|
+
headers?: { [key: string]: string };
|
|
1854
|
+
statusCode?: number;
|
|
1855
|
+
body?: CopyImageResponseBody;
|
|
1856
1856
|
static names(): { [key: string]: string } {
|
|
1857
1857
|
return {
|
|
1858
1858
|
headers: 'headers',
|
|
@@ -1958,9 +1958,9 @@ export class CreateADConnectorDirectoryResponseBody extends $tea.Model {
|
|
|
1958
1958
|
}
|
|
1959
1959
|
|
|
1960
1960
|
export class CreateADConnectorDirectoryResponse extends $tea.Model {
|
|
1961
|
-
headers
|
|
1962
|
-
statusCode
|
|
1963
|
-
body
|
|
1961
|
+
headers?: { [key: string]: string };
|
|
1962
|
+
statusCode?: number;
|
|
1963
|
+
body?: CreateADConnectorDirectoryResponseBody;
|
|
1964
1964
|
static names(): { [key: string]: string } {
|
|
1965
1965
|
return {
|
|
1966
1966
|
headers: 'headers',
|
|
@@ -2081,9 +2081,9 @@ export class CreateADConnectorOfficeSiteResponseBody extends $tea.Model {
|
|
|
2081
2081
|
}
|
|
2082
2082
|
|
|
2083
2083
|
export class CreateADConnectorOfficeSiteResponse extends $tea.Model {
|
|
2084
|
-
headers
|
|
2085
|
-
statusCode
|
|
2086
|
-
body
|
|
2084
|
+
headers?: { [key: string]: string };
|
|
2085
|
+
statusCode?: number;
|
|
2086
|
+
body?: CreateADConnectorOfficeSiteResponseBody;
|
|
2087
2087
|
static names(): { [key: string]: string } {
|
|
2088
2088
|
return {
|
|
2089
2089
|
headers: 'headers',
|
|
@@ -2165,9 +2165,9 @@ export class CreateAndBindNasFileSystemResponseBody extends $tea.Model {
|
|
|
2165
2165
|
}
|
|
2166
2166
|
|
|
2167
2167
|
export class CreateAndBindNasFileSystemResponse extends $tea.Model {
|
|
2168
|
-
headers
|
|
2169
|
-
statusCode
|
|
2170
|
-
body
|
|
2168
|
+
headers?: { [key: string]: string };
|
|
2169
|
+
statusCode?: number;
|
|
2170
|
+
body?: CreateAndBindNasFileSystemResponseBody;
|
|
2171
2171
|
static names(): { [key: string]: string } {
|
|
2172
2172
|
return {
|
|
2173
2173
|
headers: 'headers',
|
|
@@ -2240,9 +2240,9 @@ export class CreateAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
2240
2240
|
}
|
|
2241
2241
|
|
|
2242
2242
|
export class CreateAutoSnapshotPolicyResponse extends $tea.Model {
|
|
2243
|
-
headers
|
|
2244
|
-
statusCode
|
|
2245
|
-
body
|
|
2243
|
+
headers?: { [key: string]: string };
|
|
2244
|
+
statusCode?: number;
|
|
2245
|
+
body?: CreateAutoSnapshotPolicyResponseBody;
|
|
2246
2246
|
static names(): { [key: string]: string } {
|
|
2247
2247
|
return {
|
|
2248
2248
|
headers: 'headers',
|
|
@@ -2333,9 +2333,9 @@ export class CreateBundleResponseBody extends $tea.Model {
|
|
|
2333
2333
|
}
|
|
2334
2334
|
|
|
2335
2335
|
export class CreateBundleResponse extends $tea.Model {
|
|
2336
|
-
headers
|
|
2337
|
-
statusCode
|
|
2338
|
-
body
|
|
2336
|
+
headers?: { [key: string]: string };
|
|
2337
|
+
statusCode?: number;
|
|
2338
|
+
body?: CreateBundleResponseBody;
|
|
2339
2339
|
static names(): { [key: string]: string } {
|
|
2340
2340
|
return {
|
|
2341
2341
|
headers: 'headers',
|
|
@@ -2426,9 +2426,9 @@ export class CreateCdsFileResponseBody extends $tea.Model {
|
|
|
2426
2426
|
}
|
|
2427
2427
|
|
|
2428
2428
|
export class CreateCdsFileResponse extends $tea.Model {
|
|
2429
|
-
headers
|
|
2430
|
-
statusCode
|
|
2431
|
-
body
|
|
2429
|
+
headers?: { [key: string]: string };
|
|
2430
|
+
statusCode?: number;
|
|
2431
|
+
body?: CreateCdsFileResponseBody;
|
|
2432
2432
|
static names(): { [key: string]: string } {
|
|
2433
2433
|
return {
|
|
2434
2434
|
headers: 'headers',
|
|
@@ -2540,9 +2540,9 @@ export class CreateCdsFileShareLinkResponseBody extends $tea.Model {
|
|
|
2540
2540
|
}
|
|
2541
2541
|
|
|
2542
2542
|
export class CreateCdsFileShareLinkResponse extends $tea.Model {
|
|
2543
|
-
headers
|
|
2544
|
-
statusCode
|
|
2545
|
-
body
|
|
2543
|
+
headers?: { [key: string]: string };
|
|
2544
|
+
statusCode?: number;
|
|
2545
|
+
body?: CreateCdsFileShareLinkResponseBody;
|
|
2546
2546
|
static names(): { [key: string]: string } {
|
|
2547
2547
|
return {
|
|
2548
2548
|
headers: 'headers',
|
|
@@ -2651,9 +2651,9 @@ export class CreateCloudDriveServiceResponseBody extends $tea.Model {
|
|
|
2651
2651
|
}
|
|
2652
2652
|
|
|
2653
2653
|
export class CreateCloudDriveServiceResponse extends $tea.Model {
|
|
2654
|
-
headers
|
|
2655
|
-
statusCode
|
|
2656
|
-
body
|
|
2654
|
+
headers?: { [key: string]: string };
|
|
2655
|
+
statusCode?: number;
|
|
2656
|
+
body?: CreateCloudDriveServiceResponseBody;
|
|
2657
2657
|
static names(): { [key: string]: string } {
|
|
2658
2658
|
return {
|
|
2659
2659
|
headers: 'headers',
|
|
@@ -2723,9 +2723,9 @@ export class CreateCloudDriveUsersResponseBody extends $tea.Model {
|
|
|
2723
2723
|
}
|
|
2724
2724
|
|
|
2725
2725
|
export class CreateCloudDriveUsersResponse extends $tea.Model {
|
|
2726
|
-
headers
|
|
2727
|
-
statusCode
|
|
2728
|
-
body
|
|
2726
|
+
headers?: { [key: string]: string };
|
|
2727
|
+
statusCode?: number;
|
|
2728
|
+
body?: CreateCloudDriveUsersResponseBody;
|
|
2729
2729
|
static names(): { [key: string]: string } {
|
|
2730
2730
|
return {
|
|
2731
2731
|
headers: 'headers',
|
|
@@ -2903,9 +2903,9 @@ export class CreateDesktopGroupResponseBody extends $tea.Model {
|
|
|
2903
2903
|
}
|
|
2904
2904
|
|
|
2905
2905
|
export class CreateDesktopGroupResponse extends $tea.Model {
|
|
2906
|
-
headers
|
|
2907
|
-
statusCode
|
|
2908
|
-
body
|
|
2906
|
+
headers?: { [key: string]: string };
|
|
2907
|
+
statusCode?: number;
|
|
2908
|
+
body?: CreateDesktopGroupResponseBody;
|
|
2909
2909
|
static names(): { [key: string]: string } {
|
|
2910
2910
|
return {
|
|
2911
2911
|
headers: 'headers',
|
|
@@ -3008,9 +3008,9 @@ export class CreateDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
|
3008
3008
|
}
|
|
3009
3009
|
|
|
3010
3010
|
export class CreateDesktopOversoldGroupResponse extends $tea.Model {
|
|
3011
|
-
headers
|
|
3012
|
-
statusCode
|
|
3013
|
-
body
|
|
3011
|
+
headers?: { [key: string]: string };
|
|
3012
|
+
statusCode?: number;
|
|
3013
|
+
body?: CreateDesktopOversoldGroupResponseBody;
|
|
3014
3014
|
static names(): { [key: string]: string } {
|
|
3015
3015
|
return {
|
|
3016
3016
|
headers: 'headers',
|
|
@@ -3155,9 +3155,9 @@ export class CreateDesktopsResponseBody extends $tea.Model {
|
|
|
3155
3155
|
}
|
|
3156
3156
|
|
|
3157
3157
|
export class CreateDesktopsResponse extends $tea.Model {
|
|
3158
|
-
headers
|
|
3159
|
-
statusCode
|
|
3160
|
-
body
|
|
3158
|
+
headers?: { [key: string]: string };
|
|
3159
|
+
statusCode?: number;
|
|
3160
|
+
body?: CreateDesktopsResponseBody;
|
|
3161
3161
|
static names(): { [key: string]: string } {
|
|
3162
3162
|
return {
|
|
3163
3163
|
headers: 'headers',
|
|
@@ -3224,9 +3224,9 @@ export class CreateDiskEncryptionServiceResponseBody extends $tea.Model {
|
|
|
3224
3224
|
}
|
|
3225
3225
|
|
|
3226
3226
|
export class CreateDiskEncryptionServiceResponse extends $tea.Model {
|
|
3227
|
-
headers
|
|
3228
|
-
statusCode
|
|
3229
|
-
body
|
|
3227
|
+
headers?: { [key: string]: string };
|
|
3228
|
+
statusCode?: number;
|
|
3229
|
+
body?: CreateDiskEncryptionServiceResponseBody;
|
|
3230
3230
|
static names(): { [key: string]: string } {
|
|
3231
3231
|
return {
|
|
3232
3232
|
headers: 'headers',
|
|
@@ -3314,9 +3314,9 @@ export class CreateImageResponseBody extends $tea.Model {
|
|
|
3314
3314
|
}
|
|
3315
3315
|
|
|
3316
3316
|
export class CreateImageResponse extends $tea.Model {
|
|
3317
|
-
headers
|
|
3318
|
-
statusCode
|
|
3319
|
-
body
|
|
3317
|
+
headers?: { [key: string]: string };
|
|
3318
|
+
statusCode?: number;
|
|
3319
|
+
body?: CreateImageResponseBody;
|
|
3320
3320
|
static names(): { [key: string]: string } {
|
|
3321
3321
|
return {
|
|
3322
3322
|
headers: 'headers',
|
|
@@ -3404,9 +3404,9 @@ export class CreateNASFileSystemResponseBody extends $tea.Model {
|
|
|
3404
3404
|
}
|
|
3405
3405
|
|
|
3406
3406
|
export class CreateNASFileSystemResponse extends $tea.Model {
|
|
3407
|
-
headers
|
|
3408
|
-
statusCode
|
|
3409
|
-
body
|
|
3407
|
+
headers?: { [key: string]: string };
|
|
3408
|
+
statusCode?: number;
|
|
3409
|
+
body?: CreateNASFileSystemResponseBody;
|
|
3410
3410
|
static names(): { [key: string]: string } {
|
|
3411
3411
|
return {
|
|
3412
3412
|
headers: 'headers',
|
|
@@ -3500,9 +3500,9 @@ export class CreateNetworkPackageResponseBody extends $tea.Model {
|
|
|
3500
3500
|
}
|
|
3501
3501
|
|
|
3502
3502
|
export class CreateNetworkPackageResponse extends $tea.Model {
|
|
3503
|
-
headers
|
|
3504
|
-
statusCode
|
|
3505
|
-
body
|
|
3503
|
+
headers?: { [key: string]: string };
|
|
3504
|
+
statusCode?: number;
|
|
3505
|
+
body?: CreateNetworkPackageResponseBody;
|
|
3506
3506
|
static names(): { [key: string]: string } {
|
|
3507
3507
|
return {
|
|
3508
3508
|
headers: 'headers',
|
|
@@ -3556,6 +3556,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3556
3556
|
recordingExpires?: number;
|
|
3557
3557
|
recordingFps?: number;
|
|
3558
3558
|
recordingStartTime?: string;
|
|
3559
|
+
recordingUserNotify?: string;
|
|
3560
|
+
recordingUserNotifyMessage?: string;
|
|
3559
3561
|
regionId?: string;
|
|
3560
3562
|
remoteCoordinate?: string;
|
|
3561
3563
|
scope?: string;
|
|
@@ -3565,10 +3567,12 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3565
3567
|
videoRedirect?: string;
|
|
3566
3568
|
visualQuality?: string;
|
|
3567
3569
|
watermark?: string;
|
|
3570
|
+
watermarkAntiCam?: string;
|
|
3568
3571
|
watermarkColor?: number;
|
|
3569
3572
|
watermarkDegree?: number;
|
|
3570
3573
|
watermarkFontSize?: number;
|
|
3571
3574
|
watermarkFontStyle?: string;
|
|
3575
|
+
watermarkPower?: string;
|
|
3572
3576
|
watermarkRowAmount?: number;
|
|
3573
3577
|
watermarkSecurity?: string;
|
|
3574
3578
|
watermarkTransparency?: string;
|
|
@@ -3607,6 +3611,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3607
3611
|
recordingExpires: 'RecordingExpires',
|
|
3608
3612
|
recordingFps: 'RecordingFps',
|
|
3609
3613
|
recordingStartTime: 'RecordingStartTime',
|
|
3614
|
+
recordingUserNotify: 'RecordingUserNotify',
|
|
3615
|
+
recordingUserNotifyMessage: 'RecordingUserNotifyMessage',
|
|
3610
3616
|
regionId: 'RegionId',
|
|
3611
3617
|
remoteCoordinate: 'RemoteCoordinate',
|
|
3612
3618
|
scope: 'Scope',
|
|
@@ -3616,10 +3622,12 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3616
3622
|
videoRedirect: 'VideoRedirect',
|
|
3617
3623
|
visualQuality: 'VisualQuality',
|
|
3618
3624
|
watermark: 'Watermark',
|
|
3625
|
+
watermarkAntiCam: 'WatermarkAntiCam',
|
|
3619
3626
|
watermarkColor: 'WatermarkColor',
|
|
3620
3627
|
watermarkDegree: 'WatermarkDegree',
|
|
3621
3628
|
watermarkFontSize: 'WatermarkFontSize',
|
|
3622
3629
|
watermarkFontStyle: 'WatermarkFontStyle',
|
|
3630
|
+
watermarkPower: 'WatermarkPower',
|
|
3623
3631
|
watermarkRowAmount: 'WatermarkRowAmount',
|
|
3624
3632
|
watermarkSecurity: 'WatermarkSecurity',
|
|
3625
3633
|
watermarkTransparency: 'WatermarkTransparency',
|
|
@@ -3661,6 +3669,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3661
3669
|
recordingExpires: 'number',
|
|
3662
3670
|
recordingFps: 'number',
|
|
3663
3671
|
recordingStartTime: 'string',
|
|
3672
|
+
recordingUserNotify: 'string',
|
|
3673
|
+
recordingUserNotifyMessage: 'string',
|
|
3664
3674
|
regionId: 'string',
|
|
3665
3675
|
remoteCoordinate: 'string',
|
|
3666
3676
|
scope: 'string',
|
|
@@ -3670,10 +3680,12 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3670
3680
|
videoRedirect: 'string',
|
|
3671
3681
|
visualQuality: 'string',
|
|
3672
3682
|
watermark: 'string',
|
|
3683
|
+
watermarkAntiCam: 'string',
|
|
3673
3684
|
watermarkColor: 'number',
|
|
3674
3685
|
watermarkDegree: 'number',
|
|
3675
3686
|
watermarkFontSize: 'number',
|
|
3676
3687
|
watermarkFontStyle: 'string',
|
|
3688
|
+
watermarkPower: 'string',
|
|
3677
3689
|
watermarkRowAmount: 'number',
|
|
3678
3690
|
watermarkSecurity: 'string',
|
|
3679
3691
|
watermarkTransparency: 'string',
|
|
@@ -3710,9 +3722,9 @@ export class CreatePolicyGroupResponseBody extends $tea.Model {
|
|
|
3710
3722
|
}
|
|
3711
3723
|
|
|
3712
3724
|
export class CreatePolicyGroupResponse extends $tea.Model {
|
|
3713
|
-
headers
|
|
3714
|
-
statusCode
|
|
3715
|
-
body
|
|
3725
|
+
headers?: { [key: string]: string };
|
|
3726
|
+
statusCode?: number;
|
|
3727
|
+
body?: CreatePolicyGroupResponseBody;
|
|
3716
3728
|
static names(): { [key: string]: string } {
|
|
3717
3729
|
return {
|
|
3718
3730
|
headers: 'headers',
|
|
@@ -3791,9 +3803,9 @@ export class CreateRAMDirectoryResponseBody extends $tea.Model {
|
|
|
3791
3803
|
}
|
|
3792
3804
|
|
|
3793
3805
|
export class CreateRAMDirectoryResponse extends $tea.Model {
|
|
3794
|
-
headers
|
|
3795
|
-
statusCode
|
|
3796
|
-
body
|
|
3806
|
+
headers?: { [key: string]: string };
|
|
3807
|
+
statusCode?: number;
|
|
3808
|
+
body?: CreateRAMDirectoryResponseBody;
|
|
3797
3809
|
static names(): { [key: string]: string } {
|
|
3798
3810
|
return {
|
|
3799
3811
|
headers: 'headers',
|
|
@@ -3896,9 +3908,9 @@ export class CreateSimpleOfficeSiteResponseBody extends $tea.Model {
|
|
|
3896
3908
|
}
|
|
3897
3909
|
|
|
3898
3910
|
export class CreateSimpleOfficeSiteResponse extends $tea.Model {
|
|
3899
|
-
headers
|
|
3900
|
-
statusCode
|
|
3901
|
-
body
|
|
3911
|
+
headers?: { [key: string]: string };
|
|
3912
|
+
statusCode?: number;
|
|
3913
|
+
body?: CreateSimpleOfficeSiteResponseBody;
|
|
3902
3914
|
static names(): { [key: string]: string } {
|
|
3903
3915
|
return {
|
|
3904
3916
|
headers: 'headers',
|
|
@@ -3974,9 +3986,9 @@ export class CreateSnapshotResponseBody extends $tea.Model {
|
|
|
3974
3986
|
}
|
|
3975
3987
|
|
|
3976
3988
|
export class CreateSnapshotResponse extends $tea.Model {
|
|
3977
|
-
headers
|
|
3978
|
-
statusCode
|
|
3979
|
-
body
|
|
3989
|
+
headers?: { [key: string]: string };
|
|
3990
|
+
statusCode?: number;
|
|
3991
|
+
body?: CreateSnapshotResponseBody;
|
|
3980
3992
|
static names(): { [key: string]: string } {
|
|
3981
3993
|
return {
|
|
3982
3994
|
headers: 'headers',
|
|
@@ -4040,9 +4052,9 @@ export class DeleteAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
4040
4052
|
}
|
|
4041
4053
|
|
|
4042
4054
|
export class DeleteAutoSnapshotPolicyResponse extends $tea.Model {
|
|
4043
|
-
headers
|
|
4044
|
-
statusCode
|
|
4045
|
-
body
|
|
4055
|
+
headers?: { [key: string]: string };
|
|
4056
|
+
statusCode?: number;
|
|
4057
|
+
body?: DeleteAutoSnapshotPolicyResponseBody;
|
|
4046
4058
|
static names(): { [key: string]: string } {
|
|
4047
4059
|
return {
|
|
4048
4060
|
headers: 'headers',
|
|
@@ -4106,9 +4118,9 @@ export class DeleteBundlesResponseBody extends $tea.Model {
|
|
|
4106
4118
|
}
|
|
4107
4119
|
|
|
4108
4120
|
export class DeleteBundlesResponse extends $tea.Model {
|
|
4109
|
-
headers
|
|
4110
|
-
statusCode
|
|
4111
|
-
body
|
|
4121
|
+
headers?: { [key: string]: string };
|
|
4122
|
+
statusCode?: number;
|
|
4123
|
+
body?: DeleteBundlesResponseBody;
|
|
4112
4124
|
static names(): { [key: string]: string } {
|
|
4113
4125
|
return {
|
|
4114
4126
|
headers: 'headers',
|
|
@@ -4193,9 +4205,9 @@ export class DeleteCdsFileResponseBody extends $tea.Model {
|
|
|
4193
4205
|
}
|
|
4194
4206
|
|
|
4195
4207
|
export class DeleteCdsFileResponse extends $tea.Model {
|
|
4196
|
-
headers
|
|
4197
|
-
statusCode
|
|
4198
|
-
body
|
|
4208
|
+
headers?: { [key: string]: string };
|
|
4209
|
+
statusCode?: number;
|
|
4210
|
+
body?: DeleteCdsFileResponseBody;
|
|
4199
4211
|
static names(): { [key: string]: string } {
|
|
4200
4212
|
return {
|
|
4201
4213
|
headers: 'headers',
|
|
@@ -4274,9 +4286,9 @@ export class DeleteCloudDriveGroupsResponseBody extends $tea.Model {
|
|
|
4274
4286
|
}
|
|
4275
4287
|
|
|
4276
4288
|
export class DeleteCloudDriveGroupsResponse extends $tea.Model {
|
|
4277
|
-
headers
|
|
4278
|
-
statusCode
|
|
4279
|
-
body
|
|
4289
|
+
headers?: { [key: string]: string };
|
|
4290
|
+
statusCode?: number;
|
|
4291
|
+
body?: DeleteCloudDriveGroupsResponseBody;
|
|
4280
4292
|
static names(): { [key: string]: string } {
|
|
4281
4293
|
return {
|
|
4282
4294
|
headers: 'headers',
|
|
@@ -4343,9 +4355,9 @@ export class DeleteCloudDriveUsersResponseBody extends $tea.Model {
|
|
|
4343
4355
|
}
|
|
4344
4356
|
|
|
4345
4357
|
export class DeleteCloudDriveUsersResponse extends $tea.Model {
|
|
4346
|
-
headers
|
|
4347
|
-
statusCode
|
|
4348
|
-
body
|
|
4358
|
+
headers?: { [key: string]: string };
|
|
4359
|
+
statusCode?: number;
|
|
4360
|
+
body?: DeleteCloudDriveUsersResponseBody;
|
|
4349
4361
|
static names(): { [key: string]: string } {
|
|
4350
4362
|
return {
|
|
4351
4363
|
headers: 'headers',
|
|
@@ -4409,9 +4421,9 @@ export class DeleteDesktopGroupResponseBody extends $tea.Model {
|
|
|
4409
4421
|
}
|
|
4410
4422
|
|
|
4411
4423
|
export class DeleteDesktopGroupResponse extends $tea.Model {
|
|
4412
|
-
headers
|
|
4413
|
-
statusCode
|
|
4414
|
-
body
|
|
4424
|
+
headers?: { [key: string]: string };
|
|
4425
|
+
statusCode?: number;
|
|
4426
|
+
body?: DeleteDesktopGroupResponseBody;
|
|
4415
4427
|
static names(): { [key: string]: string } {
|
|
4416
4428
|
return {
|
|
4417
4429
|
headers: 'headers',
|
|
@@ -4475,9 +4487,9 @@ export class DeleteDesktopsResponseBody extends $tea.Model {
|
|
|
4475
4487
|
}
|
|
4476
4488
|
|
|
4477
4489
|
export class DeleteDesktopsResponse extends $tea.Model {
|
|
4478
|
-
headers
|
|
4479
|
-
statusCode
|
|
4480
|
-
body
|
|
4490
|
+
headers?: { [key: string]: string };
|
|
4491
|
+
statusCode?: number;
|
|
4492
|
+
body?: DeleteDesktopsResponseBody;
|
|
4481
4493
|
static names(): { [key: string]: string } {
|
|
4482
4494
|
return {
|
|
4483
4495
|
headers: 'headers',
|
|
@@ -4547,9 +4559,9 @@ export class DeleteDevicesResponseBody extends $tea.Model {
|
|
|
4547
4559
|
}
|
|
4548
4560
|
|
|
4549
4561
|
export class DeleteDevicesResponse extends $tea.Model {
|
|
4550
|
-
headers
|
|
4551
|
-
statusCode
|
|
4552
|
-
body
|
|
4562
|
+
headers?: { [key: string]: string };
|
|
4563
|
+
statusCode?: number;
|
|
4564
|
+
body?: DeleteDevicesResponseBody;
|
|
4553
4565
|
static names(): { [key: string]: string } {
|
|
4554
4566
|
return {
|
|
4555
4567
|
headers: 'headers',
|
|
@@ -4613,9 +4625,9 @@ export class DeleteDirectoriesResponseBody extends $tea.Model {
|
|
|
4613
4625
|
}
|
|
4614
4626
|
|
|
4615
4627
|
export class DeleteDirectoriesResponse extends $tea.Model {
|
|
4616
|
-
headers
|
|
4617
|
-
statusCode
|
|
4618
|
-
body
|
|
4628
|
+
headers?: { [key: string]: string };
|
|
4629
|
+
statusCode?: number;
|
|
4630
|
+
body?: DeleteDirectoriesResponseBody;
|
|
4619
4631
|
static names(): { [key: string]: string } {
|
|
4620
4632
|
return {
|
|
4621
4633
|
headers: 'headers',
|
|
@@ -4679,9 +4691,9 @@ export class DeleteEduRoomResponseBody extends $tea.Model {
|
|
|
4679
4691
|
}
|
|
4680
4692
|
|
|
4681
4693
|
export class DeleteEduRoomResponse extends $tea.Model {
|
|
4682
|
-
headers
|
|
4683
|
-
statusCode
|
|
4684
|
-
body
|
|
4694
|
+
headers?: { [key: string]: string };
|
|
4695
|
+
statusCode?: number;
|
|
4696
|
+
body?: DeleteEduRoomResponseBody;
|
|
4685
4697
|
static names(): { [key: string]: string } {
|
|
4686
4698
|
return {
|
|
4687
4699
|
headers: 'headers',
|
|
@@ -4748,9 +4760,9 @@ export class DeleteImagesResponseBody extends $tea.Model {
|
|
|
4748
4760
|
}
|
|
4749
4761
|
|
|
4750
4762
|
export class DeleteImagesResponse extends $tea.Model {
|
|
4751
|
-
headers
|
|
4752
|
-
statusCode
|
|
4753
|
-
body
|
|
4763
|
+
headers?: { [key: string]: string };
|
|
4764
|
+
statusCode?: number;
|
|
4765
|
+
body?: DeleteImagesResponseBody;
|
|
4754
4766
|
static names(): { [key: string]: string } {
|
|
4755
4767
|
return {
|
|
4756
4768
|
headers: 'headers',
|
|
@@ -4814,9 +4826,9 @@ export class DeleteNASFileSystemsResponseBody extends $tea.Model {
|
|
|
4814
4826
|
}
|
|
4815
4827
|
|
|
4816
4828
|
export class DeleteNASFileSystemsResponse extends $tea.Model {
|
|
4817
|
-
headers
|
|
4818
|
-
statusCode
|
|
4819
|
-
body
|
|
4829
|
+
headers?: { [key: string]: string };
|
|
4830
|
+
statusCode?: number;
|
|
4831
|
+
body?: DeleteNASFileSystemsResponseBody;
|
|
4820
4832
|
static names(): { [key: string]: string } {
|
|
4821
4833
|
return {
|
|
4822
4834
|
headers: 'headers',
|
|
@@ -4880,9 +4892,9 @@ export class DeleteNetworkPackagesResponseBody extends $tea.Model {
|
|
|
4880
4892
|
}
|
|
4881
4893
|
|
|
4882
4894
|
export class DeleteNetworkPackagesResponse extends $tea.Model {
|
|
4883
|
-
headers
|
|
4884
|
-
statusCode
|
|
4885
|
-
body
|
|
4895
|
+
headers?: { [key: string]: string };
|
|
4896
|
+
statusCode?: number;
|
|
4897
|
+
body?: DeleteNetworkPackagesResponseBody;
|
|
4886
4898
|
static names(): { [key: string]: string } {
|
|
4887
4899
|
return {
|
|
4888
4900
|
headers: 'headers',
|
|
@@ -4946,9 +4958,9 @@ export class DeleteOfficeSitesResponseBody extends $tea.Model {
|
|
|
4946
4958
|
}
|
|
4947
4959
|
|
|
4948
4960
|
export class DeleteOfficeSitesResponse extends $tea.Model {
|
|
4949
|
-
headers
|
|
4950
|
-
statusCode
|
|
4951
|
-
body
|
|
4961
|
+
headers?: { [key: string]: string };
|
|
4962
|
+
statusCode?: number;
|
|
4963
|
+
body?: DeleteOfficeSitesResponseBody;
|
|
4952
4964
|
static names(): { [key: string]: string } {
|
|
4953
4965
|
return {
|
|
4954
4966
|
headers: 'headers',
|
|
@@ -5012,9 +5024,9 @@ export class DeletePolicyGroupsResponseBody extends $tea.Model {
|
|
|
5012
5024
|
}
|
|
5013
5025
|
|
|
5014
5026
|
export class DeletePolicyGroupsResponse extends $tea.Model {
|
|
5015
|
-
headers
|
|
5016
|
-
statusCode
|
|
5017
|
-
body
|
|
5027
|
+
headers?: { [key: string]: string };
|
|
5028
|
+
statusCode?: number;
|
|
5029
|
+
body?: DeletePolicyGroupsResponseBody;
|
|
5018
5030
|
static names(): { [key: string]: string } {
|
|
5019
5031
|
return {
|
|
5020
5032
|
headers: 'headers',
|
|
@@ -5078,9 +5090,9 @@ export class DeleteSnapshotResponseBody extends $tea.Model {
|
|
|
5078
5090
|
}
|
|
5079
5091
|
|
|
5080
5092
|
export class DeleteSnapshotResponse extends $tea.Model {
|
|
5081
|
-
headers
|
|
5082
|
-
statusCode
|
|
5083
|
-
body
|
|
5093
|
+
headers?: { [key: string]: string };
|
|
5094
|
+
statusCode?: number;
|
|
5095
|
+
body?: DeleteSnapshotResponseBody;
|
|
5084
5096
|
static names(): { [key: string]: string } {
|
|
5085
5097
|
return {
|
|
5086
5098
|
headers: 'headers',
|
|
@@ -5144,9 +5156,9 @@ export class DeleteVirtualMFADeviceResponseBody extends $tea.Model {
|
|
|
5144
5156
|
}
|
|
5145
5157
|
|
|
5146
5158
|
export class DeleteVirtualMFADeviceResponse extends $tea.Model {
|
|
5147
|
-
headers
|
|
5148
|
-
statusCode
|
|
5149
|
-
body
|
|
5159
|
+
headers?: { [key: string]: string };
|
|
5160
|
+
statusCode?: number;
|
|
5161
|
+
body?: DeleteVirtualMFADeviceResponseBody;
|
|
5150
5162
|
static names(): { [key: string]: string } {
|
|
5151
5163
|
return {
|
|
5152
5164
|
headers: 'headers',
|
|
@@ -5225,9 +5237,9 @@ export class DescribeAclEntriesResponseBody extends $tea.Model {
|
|
|
5225
5237
|
}
|
|
5226
5238
|
|
|
5227
5239
|
export class DescribeAclEntriesResponse extends $tea.Model {
|
|
5228
|
-
headers
|
|
5229
|
-
statusCode
|
|
5230
|
-
body
|
|
5240
|
+
headers?: { [key: string]: string };
|
|
5241
|
+
statusCode?: number;
|
|
5242
|
+
body?: DescribeAclEntriesResponseBody;
|
|
5231
5243
|
static names(): { [key: string]: string } {
|
|
5232
5244
|
return {
|
|
5233
5245
|
headers: 'headers',
|
|
@@ -5306,9 +5318,9 @@ export class DescribeAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
5306
5318
|
}
|
|
5307
5319
|
|
|
5308
5320
|
export class DescribeAutoSnapshotPolicyResponse extends $tea.Model {
|
|
5309
|
-
headers
|
|
5310
|
-
statusCode
|
|
5311
|
-
body
|
|
5321
|
+
headers?: { [key: string]: string };
|
|
5322
|
+
statusCode?: number;
|
|
5323
|
+
body?: DescribeAutoSnapshotPolicyResponseBody;
|
|
5312
5324
|
static names(): { [key: string]: string } {
|
|
5313
5325
|
return {
|
|
5314
5326
|
headers: 'headers',
|
|
@@ -5432,9 +5444,9 @@ export class DescribeBundlesResponseBody extends $tea.Model {
|
|
|
5432
5444
|
}
|
|
5433
5445
|
|
|
5434
5446
|
export class DescribeBundlesResponse extends $tea.Model {
|
|
5435
|
-
headers
|
|
5436
|
-
statusCode
|
|
5437
|
-
body
|
|
5447
|
+
headers?: { [key: string]: string };
|
|
5448
|
+
statusCode?: number;
|
|
5449
|
+
body?: DescribeBundlesResponseBody;
|
|
5438
5450
|
static names(): { [key: string]: string } {
|
|
5439
5451
|
return {
|
|
5440
5452
|
headers: 'headers',
|
|
@@ -5528,9 +5540,9 @@ export class DescribeCdsFileShareLinksResponseBody extends $tea.Model {
|
|
|
5528
5540
|
}
|
|
5529
5541
|
|
|
5530
5542
|
export class DescribeCdsFileShareLinksResponse extends $tea.Model {
|
|
5531
|
-
headers
|
|
5532
|
-
statusCode
|
|
5533
|
-
body
|
|
5543
|
+
headers?: { [key: string]: string };
|
|
5544
|
+
statusCode?: number;
|
|
5545
|
+
body?: DescribeCdsFileShareLinksResponseBody;
|
|
5534
5546
|
static names(): { [key: string]: string } {
|
|
5535
5547
|
return {
|
|
5536
5548
|
headers: 'headers',
|
|
@@ -5609,9 +5621,9 @@ export class DescribeCensResponseBody extends $tea.Model {
|
|
|
5609
5621
|
}
|
|
5610
5622
|
|
|
5611
5623
|
export class DescribeCensResponse extends $tea.Model {
|
|
5612
|
-
headers
|
|
5613
|
-
statusCode
|
|
5614
|
-
body
|
|
5624
|
+
headers?: { [key: string]: string };
|
|
5625
|
+
statusCode?: number;
|
|
5626
|
+
body?: DescribeCensResponseBody;
|
|
5615
5627
|
static names(): { [key: string]: string } {
|
|
5616
5628
|
return {
|
|
5617
5629
|
headers: 'headers',
|
|
@@ -5717,9 +5729,9 @@ export class DescribeClientEventsResponseBody extends $tea.Model {
|
|
|
5717
5729
|
}
|
|
5718
5730
|
|
|
5719
5731
|
export class DescribeClientEventsResponse extends $tea.Model {
|
|
5720
|
-
headers
|
|
5721
|
-
statusCode
|
|
5722
|
-
body
|
|
5732
|
+
headers?: { [key: string]: string };
|
|
5733
|
+
statusCode?: number;
|
|
5734
|
+
body?: DescribeClientEventsResponseBody;
|
|
5723
5735
|
static names(): { [key: string]: string } {
|
|
5724
5736
|
return {
|
|
5725
5737
|
headers: 'headers',
|
|
@@ -5825,9 +5837,9 @@ export class DescribeCloudDriveGroupsResponseBody extends $tea.Model {
|
|
|
5825
5837
|
}
|
|
5826
5838
|
|
|
5827
5839
|
export class DescribeCloudDriveGroupsResponse extends $tea.Model {
|
|
5828
|
-
headers
|
|
5829
|
-
statusCode
|
|
5830
|
-
body
|
|
5840
|
+
headers?: { [key: string]: string };
|
|
5841
|
+
statusCode?: number;
|
|
5842
|
+
body?: DescribeCloudDriveGroupsResponseBody;
|
|
5831
5843
|
static names(): { [key: string]: string } {
|
|
5832
5844
|
return {
|
|
5833
5845
|
headers: 'headers',
|
|
@@ -5894,9 +5906,9 @@ export class DescribeCloudDrivePermissionsResponseBody extends $tea.Model {
|
|
|
5894
5906
|
}
|
|
5895
5907
|
|
|
5896
5908
|
export class DescribeCloudDrivePermissionsResponse extends $tea.Model {
|
|
5897
|
-
headers
|
|
5898
|
-
statusCode
|
|
5899
|
-
body
|
|
5909
|
+
headers?: { [key: string]: string };
|
|
5910
|
+
statusCode?: number;
|
|
5911
|
+
body?: DescribeCloudDrivePermissionsResponseBody;
|
|
5900
5912
|
static names(): { [key: string]: string } {
|
|
5901
5913
|
return {
|
|
5902
5914
|
headers: 'headers',
|
|
@@ -5975,9 +5987,9 @@ export class DescribeCloudDriveUsersResponseBody extends $tea.Model {
|
|
|
5975
5987
|
}
|
|
5976
5988
|
|
|
5977
5989
|
export class DescribeCloudDriveUsersResponse extends $tea.Model {
|
|
5978
|
-
headers
|
|
5979
|
-
statusCode
|
|
5980
|
-
body
|
|
5990
|
+
headers?: { [key: string]: string };
|
|
5991
|
+
statusCode?: number;
|
|
5992
|
+
body?: DescribeCloudDriveUsersResponseBody;
|
|
5981
5993
|
static names(): { [key: string]: string } {
|
|
5982
5994
|
return {
|
|
5983
5995
|
headers: 'headers',
|
|
@@ -6047,9 +6059,9 @@ export class DescribeCustomizedListHeadersResponseBody extends $tea.Model {
|
|
|
6047
6059
|
}
|
|
6048
6060
|
|
|
6049
6061
|
export class DescribeCustomizedListHeadersResponse extends $tea.Model {
|
|
6050
|
-
headers
|
|
6051
|
-
statusCode
|
|
6052
|
-
body
|
|
6062
|
+
headers?: { [key: string]: string };
|
|
6063
|
+
statusCode?: number;
|
|
6064
|
+
body?: DescribeCustomizedListHeadersResponseBody;
|
|
6053
6065
|
static names(): { [key: string]: string } {
|
|
6054
6066
|
return {
|
|
6055
6067
|
headers: 'headers',
|
|
@@ -6161,9 +6173,9 @@ export class DescribeDesktopGroupsResponseBody extends $tea.Model {
|
|
|
6161
6173
|
}
|
|
6162
6174
|
|
|
6163
6175
|
export class DescribeDesktopGroupsResponse extends $tea.Model {
|
|
6164
|
-
headers
|
|
6165
|
-
statusCode
|
|
6166
|
-
body
|
|
6176
|
+
headers?: { [key: string]: string };
|
|
6177
|
+
statusCode?: number;
|
|
6178
|
+
body?: DescribeDesktopGroupsResponseBody;
|
|
6167
6179
|
static names(): { [key: string]: string } {
|
|
6168
6180
|
return {
|
|
6169
6181
|
headers: 'headers',
|
|
@@ -6230,9 +6242,9 @@ export class DescribeDesktopInfoResponseBody extends $tea.Model {
|
|
|
6230
6242
|
}
|
|
6231
6243
|
|
|
6232
6244
|
export class DescribeDesktopInfoResponse extends $tea.Model {
|
|
6233
|
-
headers
|
|
6234
|
-
statusCode
|
|
6235
|
-
body
|
|
6245
|
+
headers?: { [key: string]: string };
|
|
6246
|
+
statusCode?: number;
|
|
6247
|
+
body?: DescribeDesktopInfoResponseBody;
|
|
6236
6248
|
static names(): { [key: string]: string } {
|
|
6237
6249
|
return {
|
|
6238
6250
|
headers: 'headers',
|
|
@@ -6308,9 +6320,9 @@ export class DescribeDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
|
6308
6320
|
}
|
|
6309
6321
|
|
|
6310
6322
|
export class DescribeDesktopOversoldGroupResponse extends $tea.Model {
|
|
6311
|
-
headers
|
|
6312
|
-
statusCode
|
|
6313
|
-
body
|
|
6323
|
+
headers?: { [key: string]: string };
|
|
6324
|
+
statusCode?: number;
|
|
6325
|
+
body?: DescribeDesktopOversoldGroupResponseBody;
|
|
6314
6326
|
static names(): { [key: string]: string } {
|
|
6315
6327
|
return {
|
|
6316
6328
|
headers: 'headers',
|
|
@@ -6398,9 +6410,9 @@ export class DescribeDesktopOversoldUserResponseBody extends $tea.Model {
|
|
|
6398
6410
|
}
|
|
6399
6411
|
|
|
6400
6412
|
export class DescribeDesktopOversoldUserResponse extends $tea.Model {
|
|
6401
|
-
headers
|
|
6402
|
-
statusCode
|
|
6403
|
-
body
|
|
6413
|
+
headers?: { [key: string]: string };
|
|
6414
|
+
statusCode?: number;
|
|
6415
|
+
body?: DescribeDesktopOversoldUserResponseBody;
|
|
6404
6416
|
static names(): { [key: string]: string } {
|
|
6405
6417
|
return {
|
|
6406
6418
|
headers: 'headers',
|
|
@@ -6479,9 +6491,9 @@ export class DescribeDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
|
6479
6491
|
}
|
|
6480
6492
|
|
|
6481
6493
|
export class DescribeDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
6482
|
-
headers
|
|
6483
|
-
statusCode
|
|
6484
|
-
body
|
|
6494
|
+
headers?: { [key: string]: string };
|
|
6495
|
+
statusCode?: number;
|
|
6496
|
+
body?: DescribeDesktopOversoldUserGroupResponseBody;
|
|
6485
6497
|
static names(): { [key: string]: string } {
|
|
6486
6498
|
return {
|
|
6487
6499
|
headers: 'headers',
|
|
@@ -6569,9 +6581,9 @@ export class DescribeDesktopSessionsResponseBody extends $tea.Model {
|
|
|
6569
6581
|
}
|
|
6570
6582
|
|
|
6571
6583
|
export class DescribeDesktopSessionsResponse extends $tea.Model {
|
|
6572
|
-
headers
|
|
6573
|
-
statusCode
|
|
6574
|
-
body
|
|
6584
|
+
headers?: { [key: string]: string };
|
|
6585
|
+
statusCode?: number;
|
|
6586
|
+
body?: DescribeDesktopSessionsResponseBody;
|
|
6575
6587
|
static names(): { [key: string]: string } {
|
|
6576
6588
|
return {
|
|
6577
6589
|
headers: 'headers',
|
|
@@ -6662,9 +6674,9 @@ export class DescribeDesktopTypesResponseBody extends $tea.Model {
|
|
|
6662
6674
|
}
|
|
6663
6675
|
|
|
6664
6676
|
export class DescribeDesktopTypesResponse extends $tea.Model {
|
|
6665
|
-
headers
|
|
6666
|
-
statusCode
|
|
6667
|
-
body
|
|
6677
|
+
headers?: { [key: string]: string };
|
|
6678
|
+
statusCode?: number;
|
|
6679
|
+
body?: DescribeDesktopTypesResponseBody;
|
|
6668
6680
|
static names(): { [key: string]: string } {
|
|
6669
6681
|
return {
|
|
6670
6682
|
headers: 'headers',
|
|
@@ -6815,9 +6827,9 @@ export class DescribeDesktopsResponseBody extends $tea.Model {
|
|
|
6815
6827
|
}
|
|
6816
6828
|
|
|
6817
6829
|
export class DescribeDesktopsResponse extends $tea.Model {
|
|
6818
|
-
headers
|
|
6819
|
-
statusCode
|
|
6820
|
-
body
|
|
6830
|
+
headers?: { [key: string]: string };
|
|
6831
|
+
statusCode?: number;
|
|
6832
|
+
body?: DescribeDesktopsResponseBody;
|
|
6821
6833
|
static names(): { [key: string]: string } {
|
|
6822
6834
|
return {
|
|
6823
6835
|
headers: 'headers',
|
|
@@ -6923,9 +6935,9 @@ export class DescribeDesktopsInGroupResponseBody extends $tea.Model {
|
|
|
6923
6935
|
}
|
|
6924
6936
|
|
|
6925
6937
|
export class DescribeDesktopsInGroupResponse extends $tea.Model {
|
|
6926
|
-
headers
|
|
6927
|
-
statusCode
|
|
6928
|
-
body
|
|
6938
|
+
headers?: { [key: string]: string };
|
|
6939
|
+
statusCode?: number;
|
|
6940
|
+
body?: DescribeDesktopsInGroupResponseBody;
|
|
6929
6941
|
static names(): { [key: string]: string } {
|
|
6930
6942
|
return {
|
|
6931
6943
|
headers: 'headers',
|
|
@@ -7013,9 +7025,9 @@ export class DescribeDevicesResponseBody extends $tea.Model {
|
|
|
7013
7025
|
}
|
|
7014
7026
|
|
|
7015
7027
|
export class DescribeDevicesResponse extends $tea.Model {
|
|
7016
|
-
headers
|
|
7017
|
-
statusCode
|
|
7018
|
-
body
|
|
7028
|
+
headers?: { [key: string]: string };
|
|
7029
|
+
statusCode?: number;
|
|
7030
|
+
body?: DescribeDevicesResponseBody;
|
|
7019
7031
|
static names(): { [key: string]: string } {
|
|
7020
7032
|
return {
|
|
7021
7033
|
headers: 'headers',
|
|
@@ -7103,9 +7115,9 @@ export class DescribeDirectoriesResponseBody extends $tea.Model {
|
|
|
7103
7115
|
}
|
|
7104
7116
|
|
|
7105
7117
|
export class DescribeDirectoriesResponse extends $tea.Model {
|
|
7106
|
-
headers
|
|
7107
|
-
statusCode
|
|
7108
|
-
body
|
|
7118
|
+
headers?: { [key: string]: string };
|
|
7119
|
+
statusCode?: number;
|
|
7120
|
+
body?: DescribeDirectoriesResponseBody;
|
|
7109
7121
|
static names(): { [key: string]: string } {
|
|
7110
7122
|
return {
|
|
7111
7123
|
headers: 'headers',
|
|
@@ -7187,9 +7199,9 @@ export class DescribeFlowMetricResponseBody extends $tea.Model {
|
|
|
7187
7199
|
}
|
|
7188
7200
|
|
|
7189
7201
|
export class DescribeFlowMetricResponse extends $tea.Model {
|
|
7190
|
-
headers
|
|
7191
|
-
statusCode
|
|
7192
|
-
body
|
|
7202
|
+
headers?: { [key: string]: string };
|
|
7203
|
+
statusCode?: number;
|
|
7204
|
+
body?: DescribeFlowMetricResponseBody;
|
|
7193
7205
|
static names(): { [key: string]: string } {
|
|
7194
7206
|
return {
|
|
7195
7207
|
headers: 'headers',
|
|
@@ -7271,9 +7283,9 @@ export class DescribeFlowStatisticResponseBody extends $tea.Model {
|
|
|
7271
7283
|
}
|
|
7272
7284
|
|
|
7273
7285
|
export class DescribeFlowStatisticResponse extends $tea.Model {
|
|
7274
|
-
headers
|
|
7275
|
-
statusCode
|
|
7276
|
-
body
|
|
7286
|
+
headers?: { [key: string]: string };
|
|
7287
|
+
statusCode?: number;
|
|
7288
|
+
body?: DescribeFlowStatisticResponseBody;
|
|
7277
7289
|
static names(): { [key: string]: string } {
|
|
7278
7290
|
return {
|
|
7279
7291
|
headers: 'headers',
|
|
@@ -7364,9 +7376,9 @@ export class DescribeFotaPendingDesktopsResponseBody extends $tea.Model {
|
|
|
7364
7376
|
}
|
|
7365
7377
|
|
|
7366
7378
|
export class DescribeFotaPendingDesktopsResponse extends $tea.Model {
|
|
7367
|
-
headers
|
|
7368
|
-
statusCode
|
|
7369
|
-
body
|
|
7379
|
+
headers?: { [key: string]: string };
|
|
7380
|
+
statusCode?: number;
|
|
7381
|
+
body?: DescribeFotaPendingDesktopsResponseBody;
|
|
7370
7382
|
static names(): { [key: string]: string } {
|
|
7371
7383
|
return {
|
|
7372
7384
|
headers: 'headers',
|
|
@@ -7457,9 +7469,9 @@ export class DescribeFotaTasksResponseBody extends $tea.Model {
|
|
|
7457
7469
|
}
|
|
7458
7470
|
|
|
7459
7471
|
export class DescribeFotaTasksResponse extends $tea.Model {
|
|
7460
|
-
headers
|
|
7461
|
-
statusCode
|
|
7462
|
-
body
|
|
7472
|
+
headers?: { [key: string]: string };
|
|
7473
|
+
statusCode?: number;
|
|
7474
|
+
body?: DescribeFotaTasksResponseBody;
|
|
7463
7475
|
static names(): { [key: string]: string } {
|
|
7464
7476
|
return {
|
|
7465
7477
|
headers: 'headers',
|
|
@@ -7529,9 +7541,9 @@ export class DescribeGuestApplicationsResponseBody extends $tea.Model {
|
|
|
7529
7541
|
}
|
|
7530
7542
|
|
|
7531
7543
|
export class DescribeGuestApplicationsResponse extends $tea.Model {
|
|
7532
|
-
headers
|
|
7533
|
-
statusCode
|
|
7534
|
-
body
|
|
7544
|
+
headers?: { [key: string]: string };
|
|
7545
|
+
statusCode?: number;
|
|
7546
|
+
body?: DescribeGuestApplicationsResponseBody;
|
|
7535
7547
|
static names(): { [key: string]: string } {
|
|
7536
7548
|
return {
|
|
7537
7549
|
headers: 'headers',
|
|
@@ -7610,9 +7622,9 @@ export class DescribeImageModifiedRecordsResponseBody extends $tea.Model {
|
|
|
7610
7622
|
}
|
|
7611
7623
|
|
|
7612
7624
|
export class DescribeImageModifiedRecordsResponse extends $tea.Model {
|
|
7613
|
-
headers
|
|
7614
|
-
statusCode
|
|
7615
|
-
body
|
|
7625
|
+
headers?: { [key: string]: string };
|
|
7626
|
+
statusCode?: number;
|
|
7627
|
+
body?: DescribeImageModifiedRecordsResponseBody;
|
|
7616
7628
|
static names(): { [key: string]: string } {
|
|
7617
7629
|
return {
|
|
7618
7630
|
headers: 'headers',
|
|
@@ -7679,9 +7691,9 @@ export class DescribeImagePermissionResponseBody extends $tea.Model {
|
|
|
7679
7691
|
}
|
|
7680
7692
|
|
|
7681
7693
|
export class DescribeImagePermissionResponse extends $tea.Model {
|
|
7682
|
-
headers
|
|
7683
|
-
statusCode
|
|
7684
|
-
body
|
|
7694
|
+
headers?: { [key: string]: string };
|
|
7695
|
+
statusCode?: number;
|
|
7696
|
+
body?: DescribeImagePermissionResponseBody;
|
|
7685
7697
|
static names(): { [key: string]: string } {
|
|
7686
7698
|
return {
|
|
7687
7699
|
headers: 'headers',
|
|
@@ -7790,9 +7802,9 @@ export class DescribeImagesResponseBody extends $tea.Model {
|
|
|
7790
7802
|
}
|
|
7791
7803
|
|
|
7792
7804
|
export class DescribeImagesResponse extends $tea.Model {
|
|
7793
|
-
headers
|
|
7794
|
-
statusCode
|
|
7795
|
-
body
|
|
7805
|
+
headers?: { [key: string]: string };
|
|
7806
|
+
statusCode?: number;
|
|
7807
|
+
body?: DescribeImagesResponseBody;
|
|
7796
7808
|
static names(): { [key: string]: string } {
|
|
7797
7809
|
return {
|
|
7798
7810
|
headers: 'headers',
|
|
@@ -7889,9 +7901,9 @@ export class DescribeInvocationsResponseBody extends $tea.Model {
|
|
|
7889
7901
|
}
|
|
7890
7902
|
|
|
7891
7903
|
export class DescribeInvocationsResponse extends $tea.Model {
|
|
7892
|
-
headers
|
|
7893
|
-
statusCode
|
|
7894
|
-
body
|
|
7904
|
+
headers?: { [key: string]: string };
|
|
7905
|
+
statusCode?: number;
|
|
7906
|
+
body?: DescribeInvocationsResponseBody;
|
|
7895
7907
|
static names(): { [key: string]: string } {
|
|
7896
7908
|
return {
|
|
7897
7909
|
headers: 'headers',
|
|
@@ -7961,9 +7973,9 @@ export class DescribeKmsKeysResponseBody extends $tea.Model {
|
|
|
7961
7973
|
}
|
|
7962
7974
|
|
|
7963
7975
|
export class DescribeKmsKeysResponse extends $tea.Model {
|
|
7964
|
-
headers
|
|
7965
|
-
statusCode
|
|
7966
|
-
body
|
|
7976
|
+
headers?: { [key: string]: string };
|
|
7977
|
+
statusCode?: number;
|
|
7978
|
+
body?: DescribeKmsKeysResponseBody;
|
|
7967
7979
|
static names(): { [key: string]: string } {
|
|
7968
7980
|
return {
|
|
7969
7981
|
headers: 'headers',
|
|
@@ -8045,9 +8057,9 @@ export class DescribeNASFileSystemsResponseBody extends $tea.Model {
|
|
|
8045
8057
|
}
|
|
8046
8058
|
|
|
8047
8059
|
export class DescribeNASFileSystemsResponse extends $tea.Model {
|
|
8048
|
-
headers
|
|
8049
|
-
statusCode
|
|
8050
|
-
body
|
|
8060
|
+
headers?: { [key: string]: string };
|
|
8061
|
+
statusCode?: number;
|
|
8062
|
+
body?: DescribeNASFileSystemsResponseBody;
|
|
8051
8063
|
static names(): { [key: string]: string } {
|
|
8052
8064
|
return {
|
|
8053
8065
|
headers: 'headers',
|
|
@@ -8126,9 +8138,9 @@ export class DescribeNetworkPackagesResponseBody extends $tea.Model {
|
|
|
8126
8138
|
}
|
|
8127
8139
|
|
|
8128
8140
|
export class DescribeNetworkPackagesResponse extends $tea.Model {
|
|
8129
|
-
headers
|
|
8130
|
-
statusCode
|
|
8131
|
-
body
|
|
8141
|
+
headers?: { [key: string]: string };
|
|
8142
|
+
statusCode?: number;
|
|
8143
|
+
body?: DescribeNetworkPackagesResponseBody;
|
|
8132
8144
|
static names(): { [key: string]: string } {
|
|
8133
8145
|
return {
|
|
8134
8146
|
headers: 'headers',
|
|
@@ -8210,9 +8222,9 @@ export class DescribeOfficeSitesResponseBody extends $tea.Model {
|
|
|
8210
8222
|
}
|
|
8211
8223
|
|
|
8212
8224
|
export class DescribeOfficeSitesResponse extends $tea.Model {
|
|
8213
|
-
headers
|
|
8214
|
-
statusCode
|
|
8215
|
-
body
|
|
8225
|
+
headers?: { [key: string]: string };
|
|
8226
|
+
statusCode?: number;
|
|
8227
|
+
body?: DescribeOfficeSitesResponseBody;
|
|
8216
8228
|
static names(): { [key: string]: string } {
|
|
8217
8229
|
return {
|
|
8218
8230
|
headers: 'headers',
|
|
@@ -8291,9 +8303,9 @@ export class DescribePolicyGroupsResponseBody extends $tea.Model {
|
|
|
8291
8303
|
}
|
|
8292
8304
|
|
|
8293
8305
|
export class DescribePolicyGroupsResponse extends $tea.Model {
|
|
8294
|
-
headers
|
|
8295
|
-
statusCode
|
|
8296
|
-
body
|
|
8306
|
+
headers?: { [key: string]: string };
|
|
8307
|
+
statusCode?: number;
|
|
8308
|
+
body?: DescribePolicyGroupsResponseBody;
|
|
8297
8309
|
static names(): { [key: string]: string } {
|
|
8298
8310
|
return {
|
|
8299
8311
|
headers: 'headers',
|
|
@@ -8450,9 +8462,9 @@ export class DescribePriceResponseBody extends $tea.Model {
|
|
|
8450
8462
|
}
|
|
8451
8463
|
|
|
8452
8464
|
export class DescribePriceResponse extends $tea.Model {
|
|
8453
|
-
headers
|
|
8454
|
-
statusCode
|
|
8455
|
-
body
|
|
8465
|
+
headers?: { [key: string]: string };
|
|
8466
|
+
statusCode?: number;
|
|
8467
|
+
body?: DescribePriceResponseBody;
|
|
8456
8468
|
static names(): { [key: string]: string } {
|
|
8457
8469
|
return {
|
|
8458
8470
|
headers: 'headers',
|
|
@@ -8534,9 +8546,9 @@ export class DescribePriceForCreateDesktopOversoldGroupResponseBody extends $tea
|
|
|
8534
8546
|
}
|
|
8535
8547
|
|
|
8536
8548
|
export class DescribePriceForCreateDesktopOversoldGroupResponse extends $tea.Model {
|
|
8537
|
-
headers
|
|
8538
|
-
statusCode
|
|
8539
|
-
body
|
|
8549
|
+
headers?: { [key: string]: string };
|
|
8550
|
+
statusCode?: number;
|
|
8551
|
+
body?: DescribePriceForCreateDesktopOversoldGroupResponseBody;
|
|
8540
8552
|
static names(): { [key: string]: string } {
|
|
8541
8553
|
return {
|
|
8542
8554
|
headers: 'headers',
|
|
@@ -8606,9 +8618,9 @@ export class DescribePriceForModifyDesktopOversoldGroupSaleResponseBody extends
|
|
|
8606
8618
|
}
|
|
8607
8619
|
|
|
8608
8620
|
export class DescribePriceForModifyDesktopOversoldGroupSaleResponse extends $tea.Model {
|
|
8609
|
-
headers
|
|
8610
|
-
statusCode
|
|
8611
|
-
body
|
|
8621
|
+
headers?: { [key: string]: string };
|
|
8622
|
+
statusCode?: number;
|
|
8623
|
+
body?: DescribePriceForModifyDesktopOversoldGroupSaleResponseBody;
|
|
8612
8624
|
static names(): { [key: string]: string } {
|
|
8613
8625
|
return {
|
|
8614
8626
|
headers: 'headers',
|
|
@@ -8678,9 +8690,9 @@ export class DescribePriceForRenewDesktopOversoldGroupResponseBody extends $tea.
|
|
|
8678
8690
|
}
|
|
8679
8691
|
|
|
8680
8692
|
export class DescribePriceForRenewDesktopOversoldGroupResponse extends $tea.Model {
|
|
8681
|
-
headers
|
|
8682
|
-
statusCode
|
|
8683
|
-
body
|
|
8693
|
+
headers?: { [key: string]: string };
|
|
8694
|
+
statusCode?: number;
|
|
8695
|
+
body?: DescribePriceForRenewDesktopOversoldGroupResponseBody;
|
|
8684
8696
|
static names(): { [key: string]: string } {
|
|
8685
8697
|
return {
|
|
8686
8698
|
headers: 'headers',
|
|
@@ -8747,9 +8759,9 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
8747
8759
|
}
|
|
8748
8760
|
|
|
8749
8761
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
8750
|
-
headers
|
|
8751
|
-
statusCode
|
|
8752
|
-
body
|
|
8762
|
+
headers?: { [key: string]: string };
|
|
8763
|
+
statusCode?: number;
|
|
8764
|
+
body?: DescribeRegionsResponseBody;
|
|
8753
8765
|
static names(): { [key: string]: string } {
|
|
8754
8766
|
return {
|
|
8755
8767
|
headers: 'headers',
|
|
@@ -8831,9 +8843,9 @@ export class DescribeSessionStatisticResponseBody extends $tea.Model {
|
|
|
8831
8843
|
}
|
|
8832
8844
|
|
|
8833
8845
|
export class DescribeSessionStatisticResponse extends $tea.Model {
|
|
8834
|
-
headers
|
|
8835
|
-
statusCode
|
|
8836
|
-
body
|
|
8846
|
+
headers?: { [key: string]: string };
|
|
8847
|
+
statusCode?: number;
|
|
8848
|
+
body?: DescribeSessionStatisticResponseBody;
|
|
8837
8849
|
static names(): { [key: string]: string } {
|
|
8838
8850
|
return {
|
|
8839
8851
|
headers: 'headers',
|
|
@@ -8933,9 +8945,9 @@ export class DescribeSnapshotsResponseBody extends $tea.Model {
|
|
|
8933
8945
|
}
|
|
8934
8946
|
|
|
8935
8947
|
export class DescribeSnapshotsResponse extends $tea.Model {
|
|
8936
|
-
headers
|
|
8937
|
-
statusCode
|
|
8938
|
-
body
|
|
8948
|
+
headers?: { [key: string]: string };
|
|
8949
|
+
statusCode?: number;
|
|
8950
|
+
body?: DescribeSnapshotsResponseBody;
|
|
8939
8951
|
static names(): { [key: string]: string } {
|
|
8940
8952
|
return {
|
|
8941
8953
|
headers: 'headers',
|
|
@@ -9026,9 +9038,9 @@ export class DescribeUserConnectTimeResponseBody extends $tea.Model {
|
|
|
9026
9038
|
}
|
|
9027
9039
|
|
|
9028
9040
|
export class DescribeUserConnectTimeResponse extends $tea.Model {
|
|
9029
|
-
headers
|
|
9030
|
-
statusCode
|
|
9031
|
-
body
|
|
9041
|
+
headers?: { [key: string]: string };
|
|
9042
|
+
statusCode?: number;
|
|
9043
|
+
body?: DescribeUserConnectTimeResponseBody;
|
|
9032
9044
|
static names(): { [key: string]: string } {
|
|
9033
9045
|
return {
|
|
9034
9046
|
headers: 'headers',
|
|
@@ -9131,9 +9143,9 @@ export class DescribeUserConnectionRecordsResponseBody extends $tea.Model {
|
|
|
9131
9143
|
}
|
|
9132
9144
|
|
|
9133
9145
|
export class DescribeUserConnectionRecordsResponse extends $tea.Model {
|
|
9134
|
-
headers
|
|
9135
|
-
statusCode
|
|
9136
|
-
body
|
|
9146
|
+
headers?: { [key: string]: string };
|
|
9147
|
+
statusCode?: number;
|
|
9148
|
+
body?: DescribeUserConnectionRecordsResponseBody;
|
|
9137
9149
|
static names(): { [key: string]: string } {
|
|
9138
9150
|
return {
|
|
9139
9151
|
headers: 'headers',
|
|
@@ -9203,9 +9215,9 @@ export class DescribeUserProfilePathRulesResponseBody extends $tea.Model {
|
|
|
9203
9215
|
}
|
|
9204
9216
|
|
|
9205
9217
|
export class DescribeUserProfilePathRulesResponse extends $tea.Model {
|
|
9206
|
-
headers
|
|
9207
|
-
statusCode
|
|
9208
|
-
body
|
|
9218
|
+
headers?: { [key: string]: string };
|
|
9219
|
+
statusCode?: number;
|
|
9220
|
+
body?: DescribeUserProfilePathRulesResponseBody;
|
|
9209
9221
|
static names(): { [key: string]: string } {
|
|
9210
9222
|
return {
|
|
9211
9223
|
headers: 'headers',
|
|
@@ -9305,9 +9317,9 @@ export class DescribeUsersInGroupResponseBody extends $tea.Model {
|
|
|
9305
9317
|
}
|
|
9306
9318
|
|
|
9307
9319
|
export class DescribeUsersInGroupResponse extends $tea.Model {
|
|
9308
|
-
headers
|
|
9309
|
-
statusCode
|
|
9310
|
-
body
|
|
9320
|
+
headers?: { [key: string]: string };
|
|
9321
|
+
statusCode?: number;
|
|
9322
|
+
body?: DescribeUsersInGroupResponseBody;
|
|
9311
9323
|
static names(): { [key: string]: string } {
|
|
9312
9324
|
return {
|
|
9313
9325
|
headers: 'headers',
|
|
@@ -9374,9 +9386,9 @@ export class DescribeUsersPasswordResponseBody extends $tea.Model {
|
|
|
9374
9386
|
}
|
|
9375
9387
|
|
|
9376
9388
|
export class DescribeUsersPasswordResponse extends $tea.Model {
|
|
9377
|
-
headers
|
|
9378
|
-
statusCode
|
|
9379
|
-
body
|
|
9389
|
+
headers?: { [key: string]: string };
|
|
9390
|
+
statusCode?: number;
|
|
9391
|
+
body?: DescribeUsersPasswordResponseBody;
|
|
9380
9392
|
static names(): { [key: string]: string } {
|
|
9381
9393
|
return {
|
|
9382
9394
|
headers: 'headers',
|
|
@@ -9455,9 +9467,9 @@ export class DescribeVirtualMFADevicesResponseBody extends $tea.Model {
|
|
|
9455
9467
|
}
|
|
9456
9468
|
|
|
9457
9469
|
export class DescribeVirtualMFADevicesResponse extends $tea.Model {
|
|
9458
|
-
headers
|
|
9459
|
-
statusCode
|
|
9460
|
-
body
|
|
9470
|
+
headers?: { [key: string]: string };
|
|
9471
|
+
statusCode?: number;
|
|
9472
|
+
body?: DescribeVirtualMFADevicesResponseBody;
|
|
9461
9473
|
static names(): { [key: string]: string } {
|
|
9462
9474
|
return {
|
|
9463
9475
|
headers: 'headers',
|
|
@@ -9524,9 +9536,9 @@ export class DescribeZonesResponseBody extends $tea.Model {
|
|
|
9524
9536
|
}
|
|
9525
9537
|
|
|
9526
9538
|
export class DescribeZonesResponse extends $tea.Model {
|
|
9527
|
-
headers
|
|
9528
|
-
statusCode
|
|
9529
|
-
body
|
|
9539
|
+
headers?: { [key: string]: string };
|
|
9540
|
+
statusCode?: number;
|
|
9541
|
+
body?: DescribeZonesResponseBody;
|
|
9530
9542
|
static names(): { [key: string]: string } {
|
|
9531
9543
|
return {
|
|
9532
9544
|
headers: 'headers',
|
|
@@ -9590,9 +9602,9 @@ export class DetachCenResponseBody extends $tea.Model {
|
|
|
9590
9602
|
}
|
|
9591
9603
|
|
|
9592
9604
|
export class DetachCenResponse extends $tea.Model {
|
|
9593
|
-
headers
|
|
9594
|
-
statusCode
|
|
9595
|
-
body
|
|
9605
|
+
headers?: { [key: string]: string };
|
|
9606
|
+
statusCode?: number;
|
|
9607
|
+
body?: DetachCenResponseBody;
|
|
9596
9608
|
static names(): { [key: string]: string } {
|
|
9597
9609
|
return {
|
|
9598
9610
|
headers: 'headers',
|
|
@@ -9668,9 +9680,9 @@ export class DetachEndUserResponseBody extends $tea.Model {
|
|
|
9668
9680
|
}
|
|
9669
9681
|
|
|
9670
9682
|
export class DetachEndUserResponse extends $tea.Model {
|
|
9671
|
-
headers
|
|
9672
|
-
statusCode
|
|
9673
|
-
body
|
|
9683
|
+
headers?: { [key: string]: string };
|
|
9684
|
+
statusCode?: number;
|
|
9685
|
+
body?: DetachEndUserResponseBody;
|
|
9674
9686
|
static names(): { [key: string]: string } {
|
|
9675
9687
|
return {
|
|
9676
9688
|
headers: 'headers',
|
|
@@ -9737,9 +9749,9 @@ export class DisableDesktopsInGroupResponseBody extends $tea.Model {
|
|
|
9737
9749
|
}
|
|
9738
9750
|
|
|
9739
9751
|
export class DisableDesktopsInGroupResponse extends $tea.Model {
|
|
9740
|
-
headers
|
|
9741
|
-
statusCode
|
|
9742
|
-
body
|
|
9752
|
+
headers?: { [key: string]: string };
|
|
9753
|
+
statusCode?: number;
|
|
9754
|
+
body?: DisableDesktopsInGroupResponseBody;
|
|
9743
9755
|
static names(): { [key: string]: string } {
|
|
9744
9756
|
return {
|
|
9745
9757
|
headers: 'headers',
|
|
@@ -9761,6 +9773,78 @@ export class DisableDesktopsInGroupResponse extends $tea.Model {
|
|
|
9761
9773
|
}
|
|
9762
9774
|
}
|
|
9763
9775
|
|
|
9776
|
+
export class DisconnectDesktopSessionsRequest extends $tea.Model {
|
|
9777
|
+
preCheck?: boolean;
|
|
9778
|
+
regionId?: string;
|
|
9779
|
+
sessions?: DisconnectDesktopSessionsRequestSessions[];
|
|
9780
|
+
static names(): { [key: string]: string } {
|
|
9781
|
+
return {
|
|
9782
|
+
preCheck: 'PreCheck',
|
|
9783
|
+
regionId: 'RegionId',
|
|
9784
|
+
sessions: 'Sessions',
|
|
9785
|
+
};
|
|
9786
|
+
}
|
|
9787
|
+
|
|
9788
|
+
static types(): { [key: string]: any } {
|
|
9789
|
+
return {
|
|
9790
|
+
preCheck: 'boolean',
|
|
9791
|
+
regionId: 'string',
|
|
9792
|
+
sessions: { 'type': 'array', 'itemType': DisconnectDesktopSessionsRequestSessions },
|
|
9793
|
+
};
|
|
9794
|
+
}
|
|
9795
|
+
|
|
9796
|
+
constructor(map?: { [key: string]: any }) {
|
|
9797
|
+
super(map);
|
|
9798
|
+
}
|
|
9799
|
+
}
|
|
9800
|
+
|
|
9801
|
+
export class DisconnectDesktopSessionsResponseBody extends $tea.Model {
|
|
9802
|
+
invalidSessions?: DisconnectDesktopSessionsResponseBodyInvalidSessions[];
|
|
9803
|
+
requestId?: string;
|
|
9804
|
+
static names(): { [key: string]: string } {
|
|
9805
|
+
return {
|
|
9806
|
+
invalidSessions: 'InvalidSessions',
|
|
9807
|
+
requestId: 'RequestId',
|
|
9808
|
+
};
|
|
9809
|
+
}
|
|
9810
|
+
|
|
9811
|
+
static types(): { [key: string]: any } {
|
|
9812
|
+
return {
|
|
9813
|
+
invalidSessions: { 'type': 'array', 'itemType': DisconnectDesktopSessionsResponseBodyInvalidSessions },
|
|
9814
|
+
requestId: 'string',
|
|
9815
|
+
};
|
|
9816
|
+
}
|
|
9817
|
+
|
|
9818
|
+
constructor(map?: { [key: string]: any }) {
|
|
9819
|
+
super(map);
|
|
9820
|
+
}
|
|
9821
|
+
}
|
|
9822
|
+
|
|
9823
|
+
export class DisconnectDesktopSessionsResponse extends $tea.Model {
|
|
9824
|
+
headers?: { [key: string]: string };
|
|
9825
|
+
statusCode?: number;
|
|
9826
|
+
body?: DisconnectDesktopSessionsResponseBody;
|
|
9827
|
+
static names(): { [key: string]: string } {
|
|
9828
|
+
return {
|
|
9829
|
+
headers: 'headers',
|
|
9830
|
+
statusCode: 'statusCode',
|
|
9831
|
+
body: 'body',
|
|
9832
|
+
};
|
|
9833
|
+
}
|
|
9834
|
+
|
|
9835
|
+
static types(): { [key: string]: any } {
|
|
9836
|
+
return {
|
|
9837
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9838
|
+
statusCode: 'number',
|
|
9839
|
+
body: DisconnectDesktopSessionsResponseBody,
|
|
9840
|
+
};
|
|
9841
|
+
}
|
|
9842
|
+
|
|
9843
|
+
constructor(map?: { [key: string]: any }) {
|
|
9844
|
+
super(map);
|
|
9845
|
+
}
|
|
9846
|
+
}
|
|
9847
|
+
|
|
9764
9848
|
export class DissociateNetworkPackageRequest extends $tea.Model {
|
|
9765
9849
|
networkPackageId?: string;
|
|
9766
9850
|
regionId?: string;
|
|
@@ -9803,9 +9887,9 @@ export class DissociateNetworkPackageResponseBody extends $tea.Model {
|
|
|
9803
9887
|
}
|
|
9804
9888
|
|
|
9805
9889
|
export class DissociateNetworkPackageResponse extends $tea.Model {
|
|
9806
|
-
headers
|
|
9807
|
-
statusCode
|
|
9808
|
-
body
|
|
9890
|
+
headers?: { [key: string]: string };
|
|
9891
|
+
statusCode?: number;
|
|
9892
|
+
body?: DissociateNetworkPackageResponseBody;
|
|
9809
9893
|
static names(): { [key: string]: string } {
|
|
9810
9894
|
return {
|
|
9811
9895
|
headers: 'headers',
|
|
@@ -9902,9 +9986,9 @@ export class ExportClientEventsResponseBody extends $tea.Model {
|
|
|
9902
9986
|
}
|
|
9903
9987
|
|
|
9904
9988
|
export class ExportClientEventsResponse extends $tea.Model {
|
|
9905
|
-
headers
|
|
9906
|
-
statusCode
|
|
9907
|
-
body
|
|
9989
|
+
headers?: { [key: string]: string };
|
|
9990
|
+
statusCode?: number;
|
|
9991
|
+
body?: ExportClientEventsResponseBody;
|
|
9908
9992
|
static names(): { [key: string]: string } {
|
|
9909
9993
|
return {
|
|
9910
9994
|
headers: 'headers',
|
|
@@ -9998,9 +10082,9 @@ export class ExportDesktopGroupInfoResponseBody extends $tea.Model {
|
|
|
9998
10082
|
}
|
|
9999
10083
|
|
|
10000
10084
|
export class ExportDesktopGroupInfoResponse extends $tea.Model {
|
|
10001
|
-
headers
|
|
10002
|
-
statusCode
|
|
10003
|
-
body
|
|
10085
|
+
headers?: { [key: string]: string };
|
|
10086
|
+
statusCode?: number;
|
|
10087
|
+
body?: ExportDesktopGroupInfoResponseBody;
|
|
10004
10088
|
static names(): { [key: string]: string } {
|
|
10005
10089
|
return {
|
|
10006
10090
|
headers: 'headers',
|
|
@@ -10106,9 +10190,9 @@ export class ExportDesktopListInfoResponseBody extends $tea.Model {
|
|
|
10106
10190
|
}
|
|
10107
10191
|
|
|
10108
10192
|
export class ExportDesktopListInfoResponse extends $tea.Model {
|
|
10109
|
-
headers
|
|
10110
|
-
statusCode
|
|
10111
|
-
body
|
|
10193
|
+
headers?: { [key: string]: string };
|
|
10194
|
+
statusCode?: number;
|
|
10195
|
+
body?: ExportDesktopListInfoResponseBody;
|
|
10112
10196
|
static names(): { [key: string]: string } {
|
|
10113
10197
|
return {
|
|
10114
10198
|
headers: 'headers',
|
|
@@ -10181,9 +10265,9 @@ export class GetAsyncTaskResponseBody extends $tea.Model {
|
|
|
10181
10265
|
}
|
|
10182
10266
|
|
|
10183
10267
|
export class GetAsyncTaskResponse extends $tea.Model {
|
|
10184
|
-
headers
|
|
10185
|
-
statusCode
|
|
10186
|
-
body
|
|
10268
|
+
headers?: { [key: string]: string };
|
|
10269
|
+
statusCode?: number;
|
|
10270
|
+
body?: GetAsyncTaskResponseBody;
|
|
10187
10271
|
static names(): { [key: string]: string } {
|
|
10188
10272
|
return {
|
|
10189
10273
|
headers: 'headers',
|
|
@@ -10280,9 +10364,9 @@ export class GetConnectionTicketResponseBody extends $tea.Model {
|
|
|
10280
10364
|
}
|
|
10281
10365
|
|
|
10282
10366
|
export class GetConnectionTicketResponse extends $tea.Model {
|
|
10283
|
-
headers
|
|
10284
|
-
statusCode
|
|
10285
|
-
body
|
|
10367
|
+
headers?: { [key: string]: string };
|
|
10368
|
+
statusCode?: number;
|
|
10369
|
+
body?: GetConnectionTicketResponseBody;
|
|
10286
10370
|
static names(): { [key: string]: string } {
|
|
10287
10371
|
return {
|
|
10288
10372
|
headers: 'headers',
|
|
@@ -10367,9 +10451,9 @@ export class GetCoordinateTicketResponseBody extends $tea.Model {
|
|
|
10367
10451
|
}
|
|
10368
10452
|
|
|
10369
10453
|
export class GetCoordinateTicketResponse extends $tea.Model {
|
|
10370
|
-
headers
|
|
10371
|
-
statusCode
|
|
10372
|
-
body
|
|
10454
|
+
headers?: { [key: string]: string };
|
|
10455
|
+
statusCode?: number;
|
|
10456
|
+
body?: GetCoordinateTicketResponseBody;
|
|
10373
10457
|
static names(): { [key: string]: string } {
|
|
10374
10458
|
return {
|
|
10375
10459
|
headers: 'headers',
|
|
@@ -10436,9 +10520,9 @@ export class GetDesktopGroupDetailResponseBody extends $tea.Model {
|
|
|
10436
10520
|
}
|
|
10437
10521
|
|
|
10438
10522
|
export class GetDesktopGroupDetailResponse extends $tea.Model {
|
|
10439
|
-
headers
|
|
10440
|
-
statusCode
|
|
10441
|
-
body
|
|
10523
|
+
headers?: { [key: string]: string };
|
|
10524
|
+
statusCode?: number;
|
|
10525
|
+
body?: GetDesktopGroupDetailResponseBody;
|
|
10442
10526
|
static names(): { [key: string]: string } {
|
|
10443
10527
|
return {
|
|
10444
10528
|
headers: 'headers',
|
|
@@ -10505,9 +10589,9 @@ export class GetOfficeSiteSsoStatusResponseBody extends $tea.Model {
|
|
|
10505
10589
|
}
|
|
10506
10590
|
|
|
10507
10591
|
export class GetOfficeSiteSsoStatusResponse extends $tea.Model {
|
|
10508
|
-
headers
|
|
10509
|
-
statusCode
|
|
10510
|
-
body
|
|
10592
|
+
headers?: { [key: string]: string };
|
|
10593
|
+
statusCode?: number;
|
|
10594
|
+
body?: GetOfficeSiteSsoStatusResponseBody;
|
|
10511
10595
|
static names(): { [key: string]: string } {
|
|
10512
10596
|
return {
|
|
10513
10597
|
headers: 'headers',
|
|
@@ -10577,9 +10661,9 @@ export class GetSpMetadataResponseBody extends $tea.Model {
|
|
|
10577
10661
|
}
|
|
10578
10662
|
|
|
10579
10663
|
export class GetSpMetadataResponse extends $tea.Model {
|
|
10580
|
-
headers
|
|
10581
|
-
statusCode
|
|
10582
|
-
body
|
|
10664
|
+
headers?: { [key: string]: string };
|
|
10665
|
+
statusCode?: number;
|
|
10666
|
+
body?: GetSpMetadataResponseBody;
|
|
10583
10667
|
static names(): { [key: string]: string } {
|
|
10584
10668
|
return {
|
|
10585
10669
|
headers: 'headers',
|
|
@@ -10643,9 +10727,9 @@ export class HibernateDesktopsResponseBody extends $tea.Model {
|
|
|
10643
10727
|
}
|
|
10644
10728
|
|
|
10645
10729
|
export class HibernateDesktopsResponse extends $tea.Model {
|
|
10646
|
-
headers
|
|
10647
|
-
statusCode
|
|
10648
|
-
body
|
|
10730
|
+
headers?: { [key: string]: string };
|
|
10731
|
+
statusCode?: number;
|
|
10732
|
+
body?: HibernateDesktopsResponseBody;
|
|
10649
10733
|
static names(): { [key: string]: string } {
|
|
10650
10734
|
return {
|
|
10651
10735
|
headers: 'headers',
|
|
@@ -10797,9 +10881,9 @@ export class ListCdsFilesResponseBody extends $tea.Model {
|
|
|
10797
10881
|
}
|
|
10798
10882
|
|
|
10799
10883
|
export class ListCdsFilesResponse extends $tea.Model {
|
|
10800
|
-
headers
|
|
10801
|
-
statusCode
|
|
10802
|
-
body
|
|
10884
|
+
headers?: { [key: string]: string };
|
|
10885
|
+
statusCode?: number;
|
|
10886
|
+
body?: ListCdsFilesResponseBody;
|
|
10803
10887
|
static names(): { [key: string]: string } {
|
|
10804
10888
|
return {
|
|
10805
10889
|
headers: 'headers',
|
|
@@ -10881,9 +10965,9 @@ export class ListDirectoryUsersResponseBody extends $tea.Model {
|
|
|
10881
10965
|
}
|
|
10882
10966
|
|
|
10883
10967
|
export class ListDirectoryUsersResponse extends $tea.Model {
|
|
10884
|
-
headers
|
|
10885
|
-
statusCode
|
|
10886
|
-
body
|
|
10968
|
+
headers?: { [key: string]: string };
|
|
10969
|
+
statusCode?: number;
|
|
10970
|
+
body?: ListDirectoryUsersResponseBody;
|
|
10887
10971
|
static names(): { [key: string]: string } {
|
|
10888
10972
|
return {
|
|
10889
10973
|
headers: 'headers',
|
|
@@ -10959,9 +11043,9 @@ export class ListFilePermissionResponseBody extends $tea.Model {
|
|
|
10959
11043
|
}
|
|
10960
11044
|
|
|
10961
11045
|
export class ListFilePermissionResponse extends $tea.Model {
|
|
10962
|
-
headers
|
|
10963
|
-
statusCode
|
|
10964
|
-
body
|
|
11046
|
+
headers?: { [key: string]: string };
|
|
11047
|
+
statusCode?: number;
|
|
11048
|
+
body?: ListFilePermissionResponseBody;
|
|
10965
11049
|
static names(): { [key: string]: string } {
|
|
10966
11050
|
return {
|
|
10967
11051
|
headers: 'headers',
|
|
@@ -11043,9 +11127,9 @@ export class ListOfficeSiteOverviewResponseBody extends $tea.Model {
|
|
|
11043
11127
|
}
|
|
11044
11128
|
|
|
11045
11129
|
export class ListOfficeSiteOverviewResponse extends $tea.Model {
|
|
11046
|
-
headers
|
|
11047
|
-
statusCode
|
|
11048
|
-
body
|
|
11130
|
+
headers?: { [key: string]: string };
|
|
11131
|
+
statusCode?: number;
|
|
11132
|
+
body?: ListOfficeSiteOverviewResponseBody;
|
|
11049
11133
|
static names(): { [key: string]: string } {
|
|
11050
11134
|
return {
|
|
11051
11135
|
headers: 'headers',
|
|
@@ -11127,9 +11211,9 @@ export class ListOfficeSiteUsersResponseBody extends $tea.Model {
|
|
|
11127
11211
|
}
|
|
11128
11212
|
|
|
11129
11213
|
export class ListOfficeSiteUsersResponse extends $tea.Model {
|
|
11130
|
-
headers
|
|
11131
|
-
statusCode
|
|
11132
|
-
body
|
|
11214
|
+
headers?: { [key: string]: string };
|
|
11215
|
+
statusCode?: number;
|
|
11216
|
+
body?: ListOfficeSiteUsersResponseBody;
|
|
11133
11217
|
static names(): { [key: string]: string } {
|
|
11134
11218
|
return {
|
|
11135
11219
|
headers: 'headers',
|
|
@@ -11211,9 +11295,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
11211
11295
|
}
|
|
11212
11296
|
|
|
11213
11297
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
11214
|
-
headers
|
|
11215
|
-
statusCode
|
|
11216
|
-
body
|
|
11298
|
+
headers?: { [key: string]: string };
|
|
11299
|
+
statusCode?: number;
|
|
11300
|
+
body?: ListTagResourcesResponseBody;
|
|
11217
11301
|
static names(): { [key: string]: string } {
|
|
11218
11302
|
return {
|
|
11219
11303
|
headers: 'headers',
|
|
@@ -11292,9 +11376,9 @@ export class ListUserAdOrganizationUnitsResponseBody extends $tea.Model {
|
|
|
11292
11376
|
}
|
|
11293
11377
|
|
|
11294
11378
|
export class ListUserAdOrganizationUnitsResponse extends $tea.Model {
|
|
11295
|
-
headers
|
|
11296
|
-
statusCode
|
|
11297
|
-
body
|
|
11379
|
+
headers?: { [key: string]: string };
|
|
11380
|
+
statusCode?: number;
|
|
11381
|
+
body?: ListUserAdOrganizationUnitsResponseBody;
|
|
11298
11382
|
static names(): { [key: string]: string } {
|
|
11299
11383
|
return {
|
|
11300
11384
|
headers: 'headers',
|
|
@@ -11358,9 +11442,9 @@ export class LockVirtualMFADeviceResponseBody extends $tea.Model {
|
|
|
11358
11442
|
}
|
|
11359
11443
|
|
|
11360
11444
|
export class LockVirtualMFADeviceResponse extends $tea.Model {
|
|
11361
|
-
headers
|
|
11362
|
-
statusCode
|
|
11363
|
-
body
|
|
11445
|
+
headers?: { [key: string]: string };
|
|
11446
|
+
statusCode?: number;
|
|
11447
|
+
body?: LockVirtualMFADeviceResponseBody;
|
|
11364
11448
|
static names(): { [key: string]: string } {
|
|
11365
11449
|
return {
|
|
11366
11450
|
headers: 'headers',
|
|
@@ -11427,9 +11511,9 @@ export class MigrateDesktopsResponseBody extends $tea.Model {
|
|
|
11427
11511
|
}
|
|
11428
11512
|
|
|
11429
11513
|
export class MigrateDesktopsResponse extends $tea.Model {
|
|
11430
|
-
headers
|
|
11431
|
-
statusCode
|
|
11432
|
-
body
|
|
11514
|
+
headers?: { [key: string]: string };
|
|
11515
|
+
statusCode?: number;
|
|
11516
|
+
body?: MigrateDesktopsResponseBody;
|
|
11433
11517
|
static names(): { [key: string]: string } {
|
|
11434
11518
|
return {
|
|
11435
11519
|
headers: 'headers',
|
|
@@ -11499,9 +11583,9 @@ export class MigrateImageProtocolResponseBody extends $tea.Model {
|
|
|
11499
11583
|
}
|
|
11500
11584
|
|
|
11501
11585
|
export class MigrateImageProtocolResponse extends $tea.Model {
|
|
11502
|
-
headers
|
|
11503
|
-
statusCode
|
|
11504
|
-
body
|
|
11586
|
+
headers?: { [key: string]: string };
|
|
11587
|
+
statusCode?: number;
|
|
11588
|
+
body?: MigrateImageProtocolResponseBody;
|
|
11505
11589
|
static names(): { [key: string]: string } {
|
|
11506
11590
|
return {
|
|
11507
11591
|
headers: 'headers',
|
|
@@ -11595,9 +11679,9 @@ export class ModifyADConnectorDirectoryResponseBody extends $tea.Model {
|
|
|
11595
11679
|
}
|
|
11596
11680
|
|
|
11597
11681
|
export class ModifyADConnectorDirectoryResponse extends $tea.Model {
|
|
11598
|
-
headers
|
|
11599
|
-
statusCode
|
|
11600
|
-
body
|
|
11682
|
+
headers?: { [key: string]: string };
|
|
11683
|
+
statusCode?: number;
|
|
11684
|
+
body?: ModifyADConnectorDirectoryResponseBody;
|
|
11601
11685
|
static names(): { [key: string]: string } {
|
|
11602
11686
|
return {
|
|
11603
11687
|
headers: 'headers',
|
|
@@ -11691,9 +11775,9 @@ export class ModifyADConnectorOfficeSiteResponseBody extends $tea.Model {
|
|
|
11691
11775
|
}
|
|
11692
11776
|
|
|
11693
11777
|
export class ModifyADConnectorOfficeSiteResponse extends $tea.Model {
|
|
11694
|
-
headers
|
|
11695
|
-
statusCode
|
|
11696
|
-
body
|
|
11778
|
+
headers?: { [key: string]: string };
|
|
11779
|
+
statusCode?: number;
|
|
11780
|
+
body?: ModifyADConnectorOfficeSiteResponseBody;
|
|
11697
11781
|
static names(): { [key: string]: string } {
|
|
11698
11782
|
return {
|
|
11699
11783
|
headers: 'headers',
|
|
@@ -11763,9 +11847,9 @@ export class ModifyAclEntriesResponseBody extends $tea.Model {
|
|
|
11763
11847
|
}
|
|
11764
11848
|
|
|
11765
11849
|
export class ModifyAclEntriesResponse extends $tea.Model {
|
|
11766
|
-
headers
|
|
11767
|
-
statusCode
|
|
11768
|
-
body
|
|
11850
|
+
headers?: { [key: string]: string };
|
|
11851
|
+
statusCode?: number;
|
|
11852
|
+
body?: ModifyAclEntriesResponseBody;
|
|
11769
11853
|
static names(): { [key: string]: string } {
|
|
11770
11854
|
return {
|
|
11771
11855
|
headers: 'headers',
|
|
@@ -11838,9 +11922,9 @@ export class ModifyAutoSnapshotPolicyResponseBody extends $tea.Model {
|
|
|
11838
11922
|
}
|
|
11839
11923
|
|
|
11840
11924
|
export class ModifyAutoSnapshotPolicyResponse extends $tea.Model {
|
|
11841
|
-
headers
|
|
11842
|
-
statusCode
|
|
11843
|
-
body
|
|
11925
|
+
headers?: { [key: string]: string };
|
|
11926
|
+
statusCode?: number;
|
|
11927
|
+
body?: ModifyAutoSnapshotPolicyResponseBody;
|
|
11844
11928
|
static names(): { [key: string]: string } {
|
|
11845
11929
|
return {
|
|
11846
11930
|
headers: 'headers',
|
|
@@ -11916,9 +12000,9 @@ export class ModifyBundleResponseBody extends $tea.Model {
|
|
|
11916
12000
|
}
|
|
11917
12001
|
|
|
11918
12002
|
export class ModifyBundleResponse extends $tea.Model {
|
|
11919
|
-
headers
|
|
11920
|
-
statusCode
|
|
11921
|
-
body
|
|
12003
|
+
headers?: { [key: string]: string };
|
|
12004
|
+
statusCode?: number;
|
|
12005
|
+
body?: ModifyBundleResponseBody;
|
|
11922
12006
|
static names(): { [key: string]: string } {
|
|
11923
12007
|
return {
|
|
11924
12008
|
headers: 'headers',
|
|
@@ -12009,9 +12093,9 @@ export class ModifyCdsFileResponseBody extends $tea.Model {
|
|
|
12009
12093
|
}
|
|
12010
12094
|
|
|
12011
12095
|
export class ModifyCdsFileResponse extends $tea.Model {
|
|
12012
|
-
headers
|
|
12013
|
-
statusCode
|
|
12014
|
-
body
|
|
12096
|
+
headers?: { [key: string]: string };
|
|
12097
|
+
statusCode?: number;
|
|
12098
|
+
body?: ModifyCdsFileResponseBody;
|
|
12015
12099
|
static names(): { [key: string]: string } {
|
|
12016
12100
|
return {
|
|
12017
12101
|
headers: 'headers',
|
|
@@ -12135,9 +12219,9 @@ export class ModifyCdsFileShareLinkResponseBody extends $tea.Model {
|
|
|
12135
12219
|
}
|
|
12136
12220
|
|
|
12137
12221
|
export class ModifyCdsFileShareLinkResponse extends $tea.Model {
|
|
12138
|
-
headers
|
|
12139
|
-
statusCode
|
|
12140
|
-
body
|
|
12222
|
+
headers?: { [key: string]: string };
|
|
12223
|
+
statusCode?: number;
|
|
12224
|
+
body?: ModifyCdsFileShareLinkResponseBody;
|
|
12141
12225
|
static names(): { [key: string]: string } {
|
|
12142
12226
|
return {
|
|
12143
12227
|
headers: 'headers',
|
|
@@ -12222,9 +12306,9 @@ export class ModifyCloudDriveGroupsResponseBody extends $tea.Model {
|
|
|
12222
12306
|
}
|
|
12223
12307
|
|
|
12224
12308
|
export class ModifyCloudDriveGroupsResponse extends $tea.Model {
|
|
12225
|
-
headers
|
|
12226
|
-
statusCode
|
|
12227
|
-
body
|
|
12309
|
+
headers?: { [key: string]: string };
|
|
12310
|
+
statusCode?: number;
|
|
12311
|
+
body?: ModifyCloudDriveGroupsResponseBody;
|
|
12228
12312
|
static names(): { [key: string]: string } {
|
|
12229
12313
|
return {
|
|
12230
12314
|
headers: 'headers',
|
|
@@ -12294,9 +12378,9 @@ export class ModifyCloudDrivePermissionResponseBody extends $tea.Model {
|
|
|
12294
12378
|
}
|
|
12295
12379
|
|
|
12296
12380
|
export class ModifyCloudDrivePermissionResponse extends $tea.Model {
|
|
12297
|
-
headers
|
|
12298
|
-
statusCode
|
|
12299
|
-
body
|
|
12381
|
+
headers?: { [key: string]: string };
|
|
12382
|
+
statusCode?: number;
|
|
12383
|
+
body?: ModifyCloudDrivePermissionResponseBody;
|
|
12300
12384
|
static names(): { [key: string]: string } {
|
|
12301
12385
|
return {
|
|
12302
12386
|
headers: 'headers',
|
|
@@ -12369,9 +12453,9 @@ export class ModifyCloudDriveUsersResponseBody extends $tea.Model {
|
|
|
12369
12453
|
}
|
|
12370
12454
|
|
|
12371
12455
|
export class ModifyCloudDriveUsersResponse extends $tea.Model {
|
|
12372
|
-
headers
|
|
12373
|
-
statusCode
|
|
12374
|
-
body
|
|
12456
|
+
headers?: { [key: string]: string };
|
|
12457
|
+
statusCode?: number;
|
|
12458
|
+
body?: ModifyCloudDriveUsersResponseBody;
|
|
12375
12459
|
static names(): { [key: string]: string } {
|
|
12376
12460
|
return {
|
|
12377
12461
|
headers: 'headers',
|
|
@@ -12438,9 +12522,9 @@ export class ModifyCustomizedListHeadersResponseBody extends $tea.Model {
|
|
|
12438
12522
|
}
|
|
12439
12523
|
|
|
12440
12524
|
export class ModifyCustomizedListHeadersResponse extends $tea.Model {
|
|
12441
|
-
headers
|
|
12442
|
-
statusCode
|
|
12443
|
-
body
|
|
12525
|
+
headers?: { [key: string]: string };
|
|
12526
|
+
statusCode?: number;
|
|
12527
|
+
body?: ModifyCustomizedListHeadersResponseBody;
|
|
12444
12528
|
static names(): { [key: string]: string } {
|
|
12445
12529
|
return {
|
|
12446
12530
|
headers: 'headers',
|
|
@@ -12528,9 +12612,9 @@ export class ModifyDesktopChargeTypeResponseBody extends $tea.Model {
|
|
|
12528
12612
|
}
|
|
12529
12613
|
|
|
12530
12614
|
export class ModifyDesktopChargeTypeResponse extends $tea.Model {
|
|
12531
|
-
headers
|
|
12532
|
-
statusCode
|
|
12533
|
-
body
|
|
12615
|
+
headers?: { [key: string]: string };
|
|
12616
|
+
statusCode?: number;
|
|
12617
|
+
body?: ModifyDesktopChargeTypeResponseBody;
|
|
12534
12618
|
static names(): { [key: string]: string } {
|
|
12535
12619
|
return {
|
|
12536
12620
|
headers: 'headers',
|
|
@@ -12666,9 +12750,9 @@ export class ModifyDesktopGroupResponseBody extends $tea.Model {
|
|
|
12666
12750
|
}
|
|
12667
12751
|
|
|
12668
12752
|
export class ModifyDesktopGroupResponse extends $tea.Model {
|
|
12669
|
-
headers
|
|
12670
|
-
statusCode
|
|
12671
|
-
body
|
|
12753
|
+
headers?: { [key: string]: string };
|
|
12754
|
+
statusCode?: number;
|
|
12755
|
+
body?: ModifyDesktopGroupResponseBody;
|
|
12672
12756
|
static names(): { [key: string]: string } {
|
|
12673
12757
|
return {
|
|
12674
12758
|
headers: 'headers',
|
|
@@ -12735,9 +12819,9 @@ export class ModifyDesktopHostNameResponseBody extends $tea.Model {
|
|
|
12735
12819
|
}
|
|
12736
12820
|
|
|
12737
12821
|
export class ModifyDesktopHostNameResponse extends $tea.Model {
|
|
12738
|
-
headers
|
|
12739
|
-
statusCode
|
|
12740
|
-
body
|
|
12822
|
+
headers?: { [key: string]: string };
|
|
12823
|
+
statusCode?: number;
|
|
12824
|
+
body?: ModifyDesktopHostNameResponseBody;
|
|
12741
12825
|
static names(): { [key: string]: string } {
|
|
12742
12826
|
return {
|
|
12743
12827
|
headers: 'headers',
|
|
@@ -12804,9 +12888,9 @@ export class ModifyDesktopNameResponseBody extends $tea.Model {
|
|
|
12804
12888
|
}
|
|
12805
12889
|
|
|
12806
12890
|
export class ModifyDesktopNameResponse extends $tea.Model {
|
|
12807
|
-
headers
|
|
12808
|
-
statusCode
|
|
12809
|
-
body
|
|
12891
|
+
headers?: { [key: string]: string };
|
|
12892
|
+
statusCode?: number;
|
|
12893
|
+
body?: ModifyDesktopNameResponseBody;
|
|
12810
12894
|
static names(): { [key: string]: string } {
|
|
12811
12895
|
return {
|
|
12812
12896
|
headers: 'headers',
|
|
@@ -12894,9 +12978,9 @@ export class ModifyDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
|
12894
12978
|
}
|
|
12895
12979
|
|
|
12896
12980
|
export class ModifyDesktopOversoldGroupResponse extends $tea.Model {
|
|
12897
|
-
headers
|
|
12898
|
-
statusCode
|
|
12899
|
-
body
|
|
12981
|
+
headers?: { [key: string]: string };
|
|
12982
|
+
statusCode?: number;
|
|
12983
|
+
body?: ModifyDesktopOversoldGroupResponseBody;
|
|
12900
12984
|
static names(): { [key: string]: string } {
|
|
12901
12985
|
return {
|
|
12902
12986
|
headers: 'headers',
|
|
@@ -12966,9 +13050,9 @@ export class ModifyDesktopOversoldGroupSaleResponseBody extends $tea.Model {
|
|
|
12966
13050
|
}
|
|
12967
13051
|
|
|
12968
13052
|
export class ModifyDesktopOversoldGroupSaleResponse extends $tea.Model {
|
|
12969
|
-
headers
|
|
12970
|
-
statusCode
|
|
12971
|
-
body
|
|
13053
|
+
headers?: { [key: string]: string };
|
|
13054
|
+
statusCode?: number;
|
|
13055
|
+
body?: ModifyDesktopOversoldGroupSaleResponseBody;
|
|
12972
13056
|
static names(): { [key: string]: string } {
|
|
12973
13057
|
return {
|
|
12974
13058
|
headers: 'headers',
|
|
@@ -13044,9 +13128,9 @@ export class ModifyDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
|
13044
13128
|
}
|
|
13045
13129
|
|
|
13046
13130
|
export class ModifyDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
13047
|
-
headers
|
|
13048
|
-
statusCode
|
|
13049
|
-
body
|
|
13131
|
+
headers?: { [key: string]: string };
|
|
13132
|
+
statusCode?: number;
|
|
13133
|
+
body?: ModifyDesktopOversoldUserGroupResponseBody;
|
|
13050
13134
|
static names(): { [key: string]: string } {
|
|
13051
13135
|
return {
|
|
13052
13136
|
headers: 'headers',
|
|
@@ -13131,9 +13215,9 @@ export class ModifyDesktopSpecResponseBody extends $tea.Model {
|
|
|
13131
13215
|
}
|
|
13132
13216
|
|
|
13133
13217
|
export class ModifyDesktopSpecResponse extends $tea.Model {
|
|
13134
|
-
headers
|
|
13135
|
-
statusCode
|
|
13136
|
-
body
|
|
13218
|
+
headers?: { [key: string]: string };
|
|
13219
|
+
statusCode?: number;
|
|
13220
|
+
body?: ModifyDesktopSpecResponseBody;
|
|
13137
13221
|
static names(): { [key: string]: string } {
|
|
13138
13222
|
return {
|
|
13139
13223
|
headers: 'headers',
|
|
@@ -13206,9 +13290,9 @@ export class ModifyDesktopTimerResponseBody extends $tea.Model {
|
|
|
13206
13290
|
}
|
|
13207
13291
|
|
|
13208
13292
|
export class ModifyDesktopTimerResponse extends $tea.Model {
|
|
13209
|
-
headers
|
|
13210
|
-
statusCode
|
|
13211
|
-
body
|
|
13293
|
+
headers?: { [key: string]: string };
|
|
13294
|
+
statusCode?: number;
|
|
13295
|
+
body?: ModifyDesktopTimerResponseBody;
|
|
13212
13296
|
static names(): { [key: string]: string } {
|
|
13213
13297
|
return {
|
|
13214
13298
|
headers: 'headers',
|
|
@@ -13281,9 +13365,9 @@ export class ModifyDesktopsPolicyGroupResponseBody extends $tea.Model {
|
|
|
13281
13365
|
}
|
|
13282
13366
|
|
|
13283
13367
|
export class ModifyDesktopsPolicyGroupResponse extends $tea.Model {
|
|
13284
|
-
headers
|
|
13285
|
-
statusCode
|
|
13286
|
-
body
|
|
13368
|
+
headers?: { [key: string]: string };
|
|
13369
|
+
statusCode?: number;
|
|
13370
|
+
body?: ModifyDesktopsPolicyGroupResponseBody;
|
|
13287
13371
|
static names(): { [key: string]: string } {
|
|
13288
13372
|
return {
|
|
13289
13373
|
headers: 'headers',
|
|
@@ -13362,9 +13446,9 @@ export class ModifyDiskSpecResponseBody extends $tea.Model {
|
|
|
13362
13446
|
}
|
|
13363
13447
|
|
|
13364
13448
|
export class ModifyDiskSpecResponse extends $tea.Model {
|
|
13365
|
-
headers
|
|
13366
|
-
statusCode
|
|
13367
|
-
body
|
|
13449
|
+
headers?: { [key: string]: string };
|
|
13450
|
+
statusCode?: number;
|
|
13451
|
+
body?: ModifyDiskSpecResponseBody;
|
|
13368
13452
|
static names(): { [key: string]: string } {
|
|
13369
13453
|
return {
|
|
13370
13454
|
headers: 'headers',
|
|
@@ -13431,9 +13515,9 @@ export class ModifyEntitlementResponseBody extends $tea.Model {
|
|
|
13431
13515
|
}
|
|
13432
13516
|
|
|
13433
13517
|
export class ModifyEntitlementResponse extends $tea.Model {
|
|
13434
|
-
headers
|
|
13435
|
-
statusCode
|
|
13436
|
-
body
|
|
13518
|
+
headers?: { [key: string]: string };
|
|
13519
|
+
statusCode?: number;
|
|
13520
|
+
body?: ModifyEntitlementResponseBody;
|
|
13437
13521
|
static names(): { [key: string]: string } {
|
|
13438
13522
|
return {
|
|
13439
13523
|
headers: 'headers',
|
|
@@ -13503,9 +13587,9 @@ export class ModifyImageAttributeResponseBody extends $tea.Model {
|
|
|
13503
13587
|
}
|
|
13504
13588
|
|
|
13505
13589
|
export class ModifyImageAttributeResponse extends $tea.Model {
|
|
13506
|
-
headers
|
|
13507
|
-
statusCode
|
|
13508
|
-
body
|
|
13590
|
+
headers?: { [key: string]: string };
|
|
13591
|
+
statusCode?: number;
|
|
13592
|
+
body?: ModifyImageAttributeResponseBody;
|
|
13509
13593
|
static names(): { [key: string]: string } {
|
|
13510
13594
|
return {
|
|
13511
13595
|
headers: 'headers',
|
|
@@ -13575,9 +13659,9 @@ export class ModifyImagePermissionResponseBody extends $tea.Model {
|
|
|
13575
13659
|
}
|
|
13576
13660
|
|
|
13577
13661
|
export class ModifyImagePermissionResponse extends $tea.Model {
|
|
13578
|
-
headers
|
|
13579
|
-
statusCode
|
|
13580
|
-
body
|
|
13662
|
+
headers?: { [key: string]: string };
|
|
13663
|
+
statusCode?: number;
|
|
13664
|
+
body?: ModifyImagePermissionResponseBody;
|
|
13581
13665
|
static names(): { [key: string]: string } {
|
|
13582
13666
|
return {
|
|
13583
13667
|
headers: 'headers',
|
|
@@ -13644,9 +13728,9 @@ export class ModifyNASDefaultMountTargetResponseBody extends $tea.Model {
|
|
|
13644
13728
|
}
|
|
13645
13729
|
|
|
13646
13730
|
export class ModifyNASDefaultMountTargetResponse extends $tea.Model {
|
|
13647
|
-
headers
|
|
13648
|
-
statusCode
|
|
13649
|
-
body
|
|
13731
|
+
headers?: { [key: string]: string };
|
|
13732
|
+
statusCode?: number;
|
|
13733
|
+
body?: ModifyNASDefaultMountTargetResponseBody;
|
|
13650
13734
|
static names(): { [key: string]: string } {
|
|
13651
13735
|
return {
|
|
13652
13736
|
headers: 'headers',
|
|
@@ -13722,9 +13806,9 @@ export class ModifyNetworkPackageBandwidthResponseBody extends $tea.Model {
|
|
|
13722
13806
|
}
|
|
13723
13807
|
|
|
13724
13808
|
export class ModifyNetworkPackageBandwidthResponse extends $tea.Model {
|
|
13725
|
-
headers
|
|
13726
|
-
statusCode
|
|
13727
|
-
body
|
|
13809
|
+
headers?: { [key: string]: string };
|
|
13810
|
+
statusCode?: number;
|
|
13811
|
+
body?: ModifyNetworkPackageBandwidthResponseBody;
|
|
13728
13812
|
static names(): { [key: string]: string } {
|
|
13729
13813
|
return {
|
|
13730
13814
|
headers: 'headers',
|
|
@@ -13791,9 +13875,9 @@ export class ModifyNetworkPackageEnabledResponseBody extends $tea.Model {
|
|
|
13791
13875
|
}
|
|
13792
13876
|
|
|
13793
13877
|
export class ModifyNetworkPackageEnabledResponse extends $tea.Model {
|
|
13794
|
-
headers
|
|
13795
|
-
statusCode
|
|
13796
|
-
body
|
|
13878
|
+
headers?: { [key: string]: string };
|
|
13879
|
+
statusCode?: number;
|
|
13880
|
+
body?: ModifyNetworkPackageEnabledResponseBody;
|
|
13797
13881
|
static names(): { [key: string]: string } {
|
|
13798
13882
|
return {
|
|
13799
13883
|
headers: 'headers',
|
|
@@ -13872,9 +13956,9 @@ export class ModifyOfficeSiteAttributeResponseBody extends $tea.Model {
|
|
|
13872
13956
|
}
|
|
13873
13957
|
|
|
13874
13958
|
export class ModifyOfficeSiteAttributeResponse extends $tea.Model {
|
|
13875
|
-
headers
|
|
13876
|
-
statusCode
|
|
13877
|
-
body
|
|
13959
|
+
headers?: { [key: string]: string };
|
|
13960
|
+
statusCode?: number;
|
|
13961
|
+
body?: ModifyOfficeSiteAttributeResponseBody;
|
|
13878
13962
|
static names(): { [key: string]: string } {
|
|
13879
13963
|
return {
|
|
13880
13964
|
headers: 'headers',
|
|
@@ -13941,9 +14025,9 @@ export class ModifyOfficeSiteCrossDesktopAccessResponseBody extends $tea.Model {
|
|
|
13941
14025
|
}
|
|
13942
14026
|
|
|
13943
14027
|
export class ModifyOfficeSiteCrossDesktopAccessResponse extends $tea.Model {
|
|
13944
|
-
headers
|
|
13945
|
-
statusCode
|
|
13946
|
-
body
|
|
14028
|
+
headers?: { [key: string]: string };
|
|
14029
|
+
statusCode?: number;
|
|
14030
|
+
body?: ModifyOfficeSiteCrossDesktopAccessResponseBody;
|
|
13947
14031
|
static names(): { [key: string]: string } {
|
|
13948
14032
|
return {
|
|
13949
14033
|
headers: 'headers',
|
|
@@ -14010,9 +14094,9 @@ export class ModifyOfficeSiteMfaEnabledResponseBody extends $tea.Model {
|
|
|
14010
14094
|
}
|
|
14011
14095
|
|
|
14012
14096
|
export class ModifyOfficeSiteMfaEnabledResponse extends $tea.Model {
|
|
14013
|
-
headers
|
|
14014
|
-
statusCode
|
|
14015
|
-
body
|
|
14097
|
+
headers?: { [key: string]: string };
|
|
14098
|
+
statusCode?: number;
|
|
14099
|
+
body?: ModifyOfficeSiteMfaEnabledResponseBody;
|
|
14016
14100
|
static names(): { [key: string]: string } {
|
|
14017
14101
|
return {
|
|
14018
14102
|
headers: 'headers',
|
|
@@ -14067,6 +14151,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14067
14151
|
recordingExpires?: number;
|
|
14068
14152
|
recordingFps?: number;
|
|
14069
14153
|
recordingStartTime?: string;
|
|
14154
|
+
recordingUserNotify?: string;
|
|
14155
|
+
recordingUserNotifyMessage?: string;
|
|
14070
14156
|
regionId?: string;
|
|
14071
14157
|
remoteCoordinate?: string;
|
|
14072
14158
|
revokeAccessPolicyRule?: ModifyPolicyGroupRequestRevokeAccessPolicyRule[];
|
|
@@ -14078,10 +14164,12 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14078
14164
|
videoRedirect?: string;
|
|
14079
14165
|
visualQuality?: string;
|
|
14080
14166
|
watermark?: string;
|
|
14167
|
+
watermarkAntiCam?: string;
|
|
14081
14168
|
watermarkColor?: number;
|
|
14082
14169
|
watermarkDegree?: number;
|
|
14083
14170
|
watermarkFontSize?: number;
|
|
14084
14171
|
watermarkFontStyle?: string;
|
|
14172
|
+
watermarkPower?: string;
|
|
14085
14173
|
watermarkRowAmount?: number;
|
|
14086
14174
|
watermarkSecurity?: string;
|
|
14087
14175
|
watermarkTransparency?: string;
|
|
@@ -14121,6 +14209,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14121
14209
|
recordingExpires: 'RecordingExpires',
|
|
14122
14210
|
recordingFps: 'RecordingFps',
|
|
14123
14211
|
recordingStartTime: 'RecordingStartTime',
|
|
14212
|
+
recordingUserNotify: 'RecordingUserNotify',
|
|
14213
|
+
recordingUserNotifyMessage: 'RecordingUserNotifyMessage',
|
|
14124
14214
|
regionId: 'RegionId',
|
|
14125
14215
|
remoteCoordinate: 'RemoteCoordinate',
|
|
14126
14216
|
revokeAccessPolicyRule: 'RevokeAccessPolicyRule',
|
|
@@ -14132,10 +14222,12 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14132
14222
|
videoRedirect: 'VideoRedirect',
|
|
14133
14223
|
visualQuality: 'VisualQuality',
|
|
14134
14224
|
watermark: 'Watermark',
|
|
14225
|
+
watermarkAntiCam: 'WatermarkAntiCam',
|
|
14135
14226
|
watermarkColor: 'WatermarkColor',
|
|
14136
14227
|
watermarkDegree: 'WatermarkDegree',
|
|
14137
14228
|
watermarkFontSize: 'WatermarkFontSize',
|
|
14138
14229
|
watermarkFontStyle: 'WatermarkFontStyle',
|
|
14230
|
+
watermarkPower: 'WatermarkPower',
|
|
14139
14231
|
watermarkRowAmount: 'WatermarkRowAmount',
|
|
14140
14232
|
watermarkSecurity: 'WatermarkSecurity',
|
|
14141
14233
|
watermarkTransparency: 'WatermarkTransparency',
|
|
@@ -14178,6 +14270,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14178
14270
|
recordingExpires: 'number',
|
|
14179
14271
|
recordingFps: 'number',
|
|
14180
14272
|
recordingStartTime: 'string',
|
|
14273
|
+
recordingUserNotify: 'string',
|
|
14274
|
+
recordingUserNotifyMessage: 'string',
|
|
14181
14275
|
regionId: 'string',
|
|
14182
14276
|
remoteCoordinate: 'string',
|
|
14183
14277
|
revokeAccessPolicyRule: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestRevokeAccessPolicyRule },
|
|
@@ -14189,10 +14283,12 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14189
14283
|
videoRedirect: 'string',
|
|
14190
14284
|
visualQuality: 'string',
|
|
14191
14285
|
watermark: 'string',
|
|
14286
|
+
watermarkAntiCam: 'string',
|
|
14192
14287
|
watermarkColor: 'number',
|
|
14193
14288
|
watermarkDegree: 'number',
|
|
14194
14289
|
watermarkFontSize: 'number',
|
|
14195
14290
|
watermarkFontStyle: 'string',
|
|
14291
|
+
watermarkPower: 'string',
|
|
14196
14292
|
watermarkRowAmount: 'number',
|
|
14197
14293
|
watermarkSecurity: 'string',
|
|
14198
14294
|
watermarkTransparency: 'string',
|
|
@@ -14226,9 +14322,9 @@ export class ModifyPolicyGroupResponseBody extends $tea.Model {
|
|
|
14226
14322
|
}
|
|
14227
14323
|
|
|
14228
14324
|
export class ModifyPolicyGroupResponse extends $tea.Model {
|
|
14229
|
-
headers
|
|
14230
|
-
statusCode
|
|
14231
|
-
body
|
|
14325
|
+
headers?: { [key: string]: string };
|
|
14326
|
+
statusCode?: number;
|
|
14327
|
+
body?: ModifyPolicyGroupResponseBody;
|
|
14232
14328
|
static names(): { [key: string]: string } {
|
|
14233
14329
|
return {
|
|
14234
14330
|
headers: 'headers',
|
|
@@ -14298,9 +14394,9 @@ export class ModifyUserEntitlementResponseBody extends $tea.Model {
|
|
|
14298
14394
|
}
|
|
14299
14395
|
|
|
14300
14396
|
export class ModifyUserEntitlementResponse extends $tea.Model {
|
|
14301
|
-
headers
|
|
14302
|
-
statusCode
|
|
14303
|
-
body
|
|
14397
|
+
headers?: { [key: string]: string };
|
|
14398
|
+
statusCode?: number;
|
|
14399
|
+
body?: ModifyUserEntitlementResponseBody;
|
|
14304
14400
|
static names(): { [key: string]: string } {
|
|
14305
14401
|
return {
|
|
14306
14402
|
headers: 'headers',
|
|
@@ -14370,9 +14466,9 @@ export class ModifyUserToDesktopGroupResponseBody extends $tea.Model {
|
|
|
14370
14466
|
}
|
|
14371
14467
|
|
|
14372
14468
|
export class ModifyUserToDesktopGroupResponse extends $tea.Model {
|
|
14373
|
-
headers
|
|
14374
|
-
statusCode
|
|
14375
|
-
body
|
|
14469
|
+
headers?: { [key: string]: string };
|
|
14470
|
+
statusCode?: number;
|
|
14471
|
+
body?: ModifyUserToDesktopGroupResponseBody;
|
|
14376
14472
|
static names(): { [key: string]: string } {
|
|
14377
14473
|
return {
|
|
14378
14474
|
headers: 'headers',
|
|
@@ -14463,9 +14559,9 @@ export class MoveCdsFileResponseBody extends $tea.Model {
|
|
|
14463
14559
|
}
|
|
14464
14560
|
|
|
14465
14561
|
export class MoveCdsFileResponse extends $tea.Model {
|
|
14466
|
-
headers
|
|
14467
|
-
statusCode
|
|
14468
|
-
body
|
|
14562
|
+
headers?: { [key: string]: string };
|
|
14563
|
+
statusCode?: number;
|
|
14564
|
+
body?: MoveCdsFileResponseBody;
|
|
14469
14565
|
static names(): { [key: string]: string } {
|
|
14470
14566
|
return {
|
|
14471
14567
|
headers: 'headers',
|
|
@@ -14529,9 +14625,9 @@ export class RebootDesktopsResponseBody extends $tea.Model {
|
|
|
14529
14625
|
}
|
|
14530
14626
|
|
|
14531
14627
|
export class RebootDesktopsResponse extends $tea.Model {
|
|
14532
|
-
headers
|
|
14533
|
-
statusCode
|
|
14534
|
-
body
|
|
14628
|
+
headers?: { [key: string]: string };
|
|
14629
|
+
statusCode?: number;
|
|
14630
|
+
body?: RebootDesktopsResponseBody;
|
|
14535
14631
|
static names(): { [key: string]: string } {
|
|
14536
14632
|
return {
|
|
14537
14633
|
headers: 'headers',
|
|
@@ -14604,9 +14700,9 @@ export class RebuildDesktopsResponseBody extends $tea.Model {
|
|
|
14604
14700
|
}
|
|
14605
14701
|
|
|
14606
14702
|
export class RebuildDesktopsResponse extends $tea.Model {
|
|
14607
|
-
headers
|
|
14608
|
-
statusCode
|
|
14609
|
-
body
|
|
14703
|
+
headers?: { [key: string]: string };
|
|
14704
|
+
statusCode?: number;
|
|
14705
|
+
body?: RebuildDesktopsResponseBody;
|
|
14610
14706
|
static names(): { [key: string]: string } {
|
|
14611
14707
|
return {
|
|
14612
14708
|
headers: 'headers',
|
|
@@ -14716,9 +14812,9 @@ export class RemoveFilePermissionResponseBody extends $tea.Model {
|
|
|
14716
14812
|
}
|
|
14717
14813
|
|
|
14718
14814
|
export class RemoveFilePermissionResponse extends $tea.Model {
|
|
14719
|
-
headers
|
|
14720
|
-
statusCode
|
|
14721
|
-
body
|
|
14815
|
+
headers?: { [key: string]: string };
|
|
14816
|
+
statusCode?: number;
|
|
14817
|
+
body?: RemoveFilePermissionResponseBody;
|
|
14722
14818
|
static names(): { [key: string]: string } {
|
|
14723
14819
|
return {
|
|
14724
14820
|
headers: 'headers',
|
|
@@ -14788,9 +14884,9 @@ export class RemoveUserFromDesktopGroupResponseBody extends $tea.Model {
|
|
|
14788
14884
|
}
|
|
14789
14885
|
|
|
14790
14886
|
export class RemoveUserFromDesktopGroupResponse extends $tea.Model {
|
|
14791
|
-
headers
|
|
14792
|
-
statusCode
|
|
14793
|
-
body
|
|
14887
|
+
headers?: { [key: string]: string };
|
|
14888
|
+
statusCode?: number;
|
|
14889
|
+
body?: RemoveUserFromDesktopGroupResponseBody;
|
|
14794
14890
|
static names(): { [key: string]: string } {
|
|
14795
14891
|
return {
|
|
14796
14892
|
headers: 'headers',
|
|
@@ -14860,9 +14956,9 @@ export class RemoveUserFromDesktopOversoldUserGroupResponseBody extends $tea.Mod
|
|
|
14860
14956
|
}
|
|
14861
14957
|
|
|
14862
14958
|
export class RemoveUserFromDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
14863
|
-
headers
|
|
14864
|
-
statusCode
|
|
14865
|
-
body
|
|
14959
|
+
headers?: { [key: string]: string };
|
|
14960
|
+
statusCode?: number;
|
|
14961
|
+
body?: RemoveUserFromDesktopOversoldUserGroupResponseBody;
|
|
14866
14962
|
static names(): { [key: string]: string } {
|
|
14867
14963
|
return {
|
|
14868
14964
|
headers: 'headers',
|
|
@@ -14932,9 +15028,9 @@ export class RenewDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
|
14932
15028
|
}
|
|
14933
15029
|
|
|
14934
15030
|
export class RenewDesktopOversoldGroupResponse extends $tea.Model {
|
|
14935
|
-
headers
|
|
14936
|
-
statusCode
|
|
14937
|
-
body
|
|
15031
|
+
headers?: { [key: string]: string };
|
|
15032
|
+
statusCode?: number;
|
|
15033
|
+
body?: RenewDesktopOversoldGroupResponseBody;
|
|
14938
15034
|
static names(): { [key: string]: string } {
|
|
14939
15035
|
return {
|
|
14940
15036
|
headers: 'headers',
|
|
@@ -15013,9 +15109,9 @@ export class RenewDesktopsResponseBody extends $tea.Model {
|
|
|
15013
15109
|
}
|
|
15014
15110
|
|
|
15015
15111
|
export class RenewDesktopsResponse extends $tea.Model {
|
|
15016
|
-
headers
|
|
15017
|
-
statusCode
|
|
15018
|
-
body
|
|
15112
|
+
headers?: { [key: string]: string };
|
|
15113
|
+
statusCode?: number;
|
|
15114
|
+
body?: RenewDesktopsResponseBody;
|
|
15019
15115
|
static names(): { [key: string]: string } {
|
|
15020
15116
|
return {
|
|
15021
15117
|
headers: 'headers',
|
|
@@ -15094,9 +15190,9 @@ export class RenewNetworkPackagesResponseBody extends $tea.Model {
|
|
|
15094
15190
|
}
|
|
15095
15191
|
|
|
15096
15192
|
export class RenewNetworkPackagesResponse extends $tea.Model {
|
|
15097
|
-
headers
|
|
15098
|
-
statusCode
|
|
15099
|
-
body
|
|
15193
|
+
headers?: { [key: string]: string };
|
|
15194
|
+
statusCode?: number;
|
|
15195
|
+
body?: RenewNetworkPackagesResponseBody;
|
|
15100
15196
|
static names(): { [key: string]: string } {
|
|
15101
15197
|
return {
|
|
15102
15198
|
headers: 'headers',
|
|
@@ -15172,9 +15268,9 @@ export class ResetDesktopsResponseBody extends $tea.Model {
|
|
|
15172
15268
|
}
|
|
15173
15269
|
|
|
15174
15270
|
export class ResetDesktopsResponse extends $tea.Model {
|
|
15175
|
-
headers
|
|
15176
|
-
statusCode
|
|
15177
|
-
body
|
|
15271
|
+
headers?: { [key: string]: string };
|
|
15272
|
+
statusCode?: number;
|
|
15273
|
+
body?: ResetDesktopsResponseBody;
|
|
15178
15274
|
static names(): { [key: string]: string } {
|
|
15179
15275
|
return {
|
|
15180
15276
|
headers: 'headers',
|
|
@@ -15238,9 +15334,9 @@ export class ResetNASDefaultMountTargetResponseBody extends $tea.Model {
|
|
|
15238
15334
|
}
|
|
15239
15335
|
|
|
15240
15336
|
export class ResetNASDefaultMountTargetResponse extends $tea.Model {
|
|
15241
|
-
headers
|
|
15242
|
-
statusCode
|
|
15243
|
-
body
|
|
15337
|
+
headers?: { [key: string]: string };
|
|
15338
|
+
statusCode?: number;
|
|
15339
|
+
body?: ResetNASDefaultMountTargetResponseBody;
|
|
15244
15340
|
static names(): { [key: string]: string } {
|
|
15245
15341
|
return {
|
|
15246
15342
|
headers: 'headers',
|
|
@@ -15304,9 +15400,9 @@ export class ResetSnapshotResponseBody extends $tea.Model {
|
|
|
15304
15400
|
}
|
|
15305
15401
|
|
|
15306
15402
|
export class ResetSnapshotResponse extends $tea.Model {
|
|
15307
|
-
headers
|
|
15308
|
-
statusCode
|
|
15309
|
-
body
|
|
15403
|
+
headers?: { [key: string]: string };
|
|
15404
|
+
statusCode?: number;
|
|
15405
|
+
body?: ResetSnapshotResponseBody;
|
|
15310
15406
|
static names(): { [key: string]: string } {
|
|
15311
15407
|
return {
|
|
15312
15408
|
headers: 'headers',
|
|
@@ -15379,9 +15475,9 @@ export class RevokeCoordinatePrivilegeResponseBody extends $tea.Model {
|
|
|
15379
15475
|
}
|
|
15380
15476
|
|
|
15381
15477
|
export class RevokeCoordinatePrivilegeResponse extends $tea.Model {
|
|
15382
|
-
headers
|
|
15383
|
-
statusCode
|
|
15384
|
-
body
|
|
15478
|
+
headers?: { [key: string]: string };
|
|
15479
|
+
statusCode?: number;
|
|
15480
|
+
body?: RevokeCoordinatePrivilegeResponseBody;
|
|
15385
15481
|
static names(): { [key: string]: string } {
|
|
15386
15482
|
return {
|
|
15387
15483
|
headers: 'headers',
|
|
@@ -15463,9 +15559,9 @@ export class RunCommandResponseBody extends $tea.Model {
|
|
|
15463
15559
|
}
|
|
15464
15560
|
|
|
15465
15561
|
export class RunCommandResponse extends $tea.Model {
|
|
15466
|
-
headers
|
|
15467
|
-
statusCode
|
|
15468
|
-
body
|
|
15562
|
+
headers?: { [key: string]: string };
|
|
15563
|
+
statusCode?: number;
|
|
15564
|
+
body?: RunCommandResponseBody;
|
|
15469
15565
|
static names(): { [key: string]: string } {
|
|
15470
15566
|
return {
|
|
15471
15567
|
headers: 'headers',
|
|
@@ -15532,9 +15628,9 @@ export class SendVerifyCodeResponseBody extends $tea.Model {
|
|
|
15532
15628
|
}
|
|
15533
15629
|
|
|
15534
15630
|
export class SendVerifyCodeResponse extends $tea.Model {
|
|
15535
|
-
headers
|
|
15536
|
-
statusCode
|
|
15537
|
-
body
|
|
15631
|
+
headers?: { [key: string]: string };
|
|
15632
|
+
statusCode?: number;
|
|
15633
|
+
body?: SendVerifyCodeResponseBody;
|
|
15538
15634
|
static names(): { [key: string]: string } {
|
|
15539
15635
|
return {
|
|
15540
15636
|
headers: 'headers',
|
|
@@ -15601,9 +15697,9 @@ export class SetDesktopGroupScaleTimerResponseBody extends $tea.Model {
|
|
|
15601
15697
|
}
|
|
15602
15698
|
|
|
15603
15699
|
export class SetDesktopGroupScaleTimerResponse extends $tea.Model {
|
|
15604
|
-
headers
|
|
15605
|
-
statusCode
|
|
15606
|
-
body
|
|
15700
|
+
headers?: { [key: string]: string };
|
|
15701
|
+
statusCode?: number;
|
|
15702
|
+
body?: SetDesktopGroupScaleTimerResponseBody;
|
|
15607
15703
|
static names(): { [key: string]: string } {
|
|
15608
15704
|
return {
|
|
15609
15705
|
headers: 'headers',
|
|
@@ -15679,9 +15775,9 @@ export class SetDesktopGroupTimerResponseBody extends $tea.Model {
|
|
|
15679
15775
|
}
|
|
15680
15776
|
|
|
15681
15777
|
export class SetDesktopGroupTimerResponse extends $tea.Model {
|
|
15682
|
-
headers
|
|
15683
|
-
statusCode
|
|
15684
|
-
body
|
|
15778
|
+
headers?: { [key: string]: string };
|
|
15779
|
+
statusCode?: number;
|
|
15780
|
+
body?: SetDesktopGroupTimerResponseBody;
|
|
15685
15781
|
static names(): { [key: string]: string } {
|
|
15686
15782
|
return {
|
|
15687
15783
|
headers: 'headers',
|
|
@@ -15751,9 +15847,9 @@ export class SetDesktopGroupTimerStatusResponseBody extends $tea.Model {
|
|
|
15751
15847
|
}
|
|
15752
15848
|
|
|
15753
15849
|
export class SetDesktopGroupTimerStatusResponse extends $tea.Model {
|
|
15754
|
-
headers
|
|
15755
|
-
statusCode
|
|
15756
|
-
body
|
|
15850
|
+
headers?: { [key: string]: string };
|
|
15851
|
+
statusCode?: number;
|
|
15852
|
+
body?: SetDesktopGroupTimerStatusResponseBody;
|
|
15757
15853
|
static names(): { [key: string]: string } {
|
|
15758
15854
|
return {
|
|
15759
15855
|
headers: 'headers',
|
|
@@ -15820,9 +15916,9 @@ export class SetDirectorySsoStatusResponseBody extends $tea.Model {
|
|
|
15820
15916
|
}
|
|
15821
15917
|
|
|
15822
15918
|
export class SetDirectorySsoStatusResponse extends $tea.Model {
|
|
15823
|
-
headers
|
|
15824
|
-
statusCode
|
|
15825
|
-
body
|
|
15919
|
+
headers?: { [key: string]: string };
|
|
15920
|
+
statusCode?: number;
|
|
15921
|
+
body?: SetDirectorySsoStatusResponseBody;
|
|
15826
15922
|
static names(): { [key: string]: string } {
|
|
15827
15923
|
return {
|
|
15828
15924
|
headers: 'headers',
|
|
@@ -15895,9 +15991,9 @@ export class SetIdpMetadataResponseBody extends $tea.Model {
|
|
|
15895
15991
|
}
|
|
15896
15992
|
|
|
15897
15993
|
export class SetIdpMetadataResponse extends $tea.Model {
|
|
15898
|
-
headers
|
|
15899
|
-
statusCode
|
|
15900
|
-
body
|
|
15994
|
+
headers?: { [key: string]: string };
|
|
15995
|
+
statusCode?: number;
|
|
15996
|
+
body?: SetIdpMetadataResponseBody;
|
|
15901
15997
|
static names(): { [key: string]: string } {
|
|
15902
15998
|
return {
|
|
15903
15999
|
headers: 'headers',
|
|
@@ -15964,9 +16060,9 @@ export class SetOfficeSiteSsoStatusResponseBody extends $tea.Model {
|
|
|
15964
16060
|
}
|
|
15965
16061
|
|
|
15966
16062
|
export class SetOfficeSiteSsoStatusResponse extends $tea.Model {
|
|
15967
|
-
headers
|
|
15968
|
-
statusCode
|
|
15969
|
-
body
|
|
16063
|
+
headers?: { [key: string]: string };
|
|
16064
|
+
statusCode?: number;
|
|
16065
|
+
body?: SetOfficeSiteSsoStatusResponseBody;
|
|
15970
16066
|
static names(): { [key: string]: string } {
|
|
15971
16067
|
return {
|
|
15972
16068
|
headers: 'headers',
|
|
@@ -16064,9 +16160,9 @@ export class SetUserProfilePathRulesResponseBody extends $tea.Model {
|
|
|
16064
16160
|
}
|
|
16065
16161
|
|
|
16066
16162
|
export class SetUserProfilePathRulesResponse extends $tea.Model {
|
|
16067
|
-
headers
|
|
16068
|
-
statusCode
|
|
16069
|
-
body
|
|
16163
|
+
headers?: { [key: string]: string };
|
|
16164
|
+
statusCode?: number;
|
|
16165
|
+
body?: SetUserProfilePathRulesResponseBody;
|
|
16070
16166
|
static names(): { [key: string]: string } {
|
|
16071
16167
|
return {
|
|
16072
16168
|
headers: 'headers',
|
|
@@ -16130,9 +16226,9 @@ export class StartDesktopsResponseBody extends $tea.Model {
|
|
|
16130
16226
|
}
|
|
16131
16227
|
|
|
16132
16228
|
export class StartDesktopsResponse extends $tea.Model {
|
|
16133
|
-
headers
|
|
16134
|
-
statusCode
|
|
16135
|
-
body
|
|
16229
|
+
headers?: { [key: string]: string };
|
|
16230
|
+
statusCode?: number;
|
|
16231
|
+
body?: StartDesktopsResponseBody;
|
|
16136
16232
|
static names(): { [key: string]: string } {
|
|
16137
16233
|
return {
|
|
16138
16234
|
headers: 'headers',
|
|
@@ -16199,9 +16295,9 @@ export class StopDesktopsResponseBody extends $tea.Model {
|
|
|
16199
16295
|
}
|
|
16200
16296
|
|
|
16201
16297
|
export class StopDesktopsResponse extends $tea.Model {
|
|
16202
|
-
headers
|
|
16203
|
-
statusCode
|
|
16204
|
-
body
|
|
16298
|
+
headers?: { [key: string]: string };
|
|
16299
|
+
statusCode?: number;
|
|
16300
|
+
body?: StopDesktopsResponseBody;
|
|
16205
16301
|
static names(): { [key: string]: string } {
|
|
16206
16302
|
return {
|
|
16207
16303
|
headers: 'headers',
|
|
@@ -16268,9 +16364,9 @@ export class StopInvocationResponseBody extends $tea.Model {
|
|
|
16268
16364
|
}
|
|
16269
16365
|
|
|
16270
16366
|
export class StopInvocationResponse extends $tea.Model {
|
|
16271
|
-
headers
|
|
16272
|
-
statusCode
|
|
16273
|
-
body
|
|
16367
|
+
headers?: { [key: string]: string };
|
|
16368
|
+
statusCode?: number;
|
|
16369
|
+
body?: StopInvocationResponseBody;
|
|
16274
16370
|
static names(): { [key: string]: string } {
|
|
16275
16371
|
return {
|
|
16276
16372
|
headers: 'headers',
|
|
@@ -16340,9 +16436,9 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
16340
16436
|
}
|
|
16341
16437
|
|
|
16342
16438
|
export class TagResourcesResponse extends $tea.Model {
|
|
16343
|
-
headers
|
|
16344
|
-
statusCode
|
|
16345
|
-
body
|
|
16439
|
+
headers?: { [key: string]: string };
|
|
16440
|
+
statusCode?: number;
|
|
16441
|
+
body?: TagResourcesResponseBody;
|
|
16346
16442
|
static names(): { [key: string]: string } {
|
|
16347
16443
|
return {
|
|
16348
16444
|
headers: 'headers',
|
|
@@ -16406,9 +16502,9 @@ export class UnlockVirtualMFADeviceResponseBody extends $tea.Model {
|
|
|
16406
16502
|
}
|
|
16407
16503
|
|
|
16408
16504
|
export class UnlockVirtualMFADeviceResponse extends $tea.Model {
|
|
16409
|
-
headers
|
|
16410
|
-
statusCode
|
|
16411
|
-
body
|
|
16505
|
+
headers?: { [key: string]: string };
|
|
16506
|
+
statusCode?: number;
|
|
16507
|
+
body?: UnlockVirtualMFADeviceResponseBody;
|
|
16412
16508
|
static names(): { [key: string]: string } {
|
|
16413
16509
|
return {
|
|
16414
16510
|
headers: 'headers',
|
|
@@ -16481,9 +16577,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
16481
16577
|
}
|
|
16482
16578
|
|
|
16483
16579
|
export class UntagResourcesResponse extends $tea.Model {
|
|
16484
|
-
headers
|
|
16485
|
-
statusCode
|
|
16486
|
-
body
|
|
16580
|
+
headers?: { [key: string]: string };
|
|
16581
|
+
statusCode?: number;
|
|
16582
|
+
body?: UntagResourcesResponseBody;
|
|
16487
16583
|
static names(): { [key: string]: string } {
|
|
16488
16584
|
return {
|
|
16489
16585
|
headers: 'headers',
|
|
@@ -16550,9 +16646,9 @@ export class UpdateFotaTaskResponseBody extends $tea.Model {
|
|
|
16550
16646
|
}
|
|
16551
16647
|
|
|
16552
16648
|
export class UpdateFotaTaskResponse extends $tea.Model {
|
|
16553
|
-
headers
|
|
16554
|
-
statusCode
|
|
16555
|
-
body
|
|
16649
|
+
headers?: { [key: string]: string };
|
|
16650
|
+
statusCode?: number;
|
|
16651
|
+
body?: UpdateFotaTaskResponseBody;
|
|
16556
16652
|
static names(): { [key: string]: string } {
|
|
16557
16653
|
return {
|
|
16558
16654
|
headers: 'headers',
|
|
@@ -16646,9 +16742,9 @@ export class UploadImageResponseBody extends $tea.Model {
|
|
|
16646
16742
|
}
|
|
16647
16743
|
|
|
16648
16744
|
export class UploadImageResponse extends $tea.Model {
|
|
16649
|
-
headers
|
|
16650
|
-
statusCode
|
|
16651
|
-
body
|
|
16745
|
+
headers?: { [key: string]: string };
|
|
16746
|
+
statusCode?: number;
|
|
16747
|
+
body?: UploadImageResponseBody;
|
|
16652
16748
|
static names(): { [key: string]: string } {
|
|
16653
16749
|
return {
|
|
16654
16750
|
headers: 'headers',
|
|
@@ -16730,9 +16826,9 @@ export class VerifyCenResponseBody extends $tea.Model {
|
|
|
16730
16826
|
}
|
|
16731
16827
|
|
|
16732
16828
|
export class VerifyCenResponse extends $tea.Model {
|
|
16733
|
-
headers
|
|
16734
|
-
statusCode
|
|
16735
|
-
body
|
|
16829
|
+
headers?: { [key: string]: string };
|
|
16830
|
+
statusCode?: number;
|
|
16831
|
+
body?: VerifyCenResponseBody;
|
|
16736
16832
|
static names(): { [key: string]: string } {
|
|
16737
16833
|
return {
|
|
16738
16834
|
headers: 'headers',
|
|
@@ -16796,9 +16892,9 @@ export class WakeupDesktopsResponseBody extends $tea.Model {
|
|
|
16796
16892
|
}
|
|
16797
16893
|
|
|
16798
16894
|
export class WakeupDesktopsResponse extends $tea.Model {
|
|
16799
|
-
headers
|
|
16800
|
-
statusCode
|
|
16801
|
-
body
|
|
16895
|
+
headers?: { [key: string]: string };
|
|
16896
|
+
statusCode?: number;
|
|
16897
|
+
body?: WakeupDesktopsResponseBody;
|
|
16802
16898
|
static names(): { [key: string]: string } {
|
|
16803
16899
|
return {
|
|
16804
16900
|
headers: 'headers',
|
|
@@ -20054,6 +20150,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20054
20150
|
recordingExpires?: number;
|
|
20055
20151
|
recordingFps?: number;
|
|
20056
20152
|
recordingStartTime?: string;
|
|
20153
|
+
recordingUserNotify?: string;
|
|
20154
|
+
recordingUserNotifyMessage?: string;
|
|
20057
20155
|
remoteCoordinate?: string;
|
|
20058
20156
|
scope?: string;
|
|
20059
20157
|
scopeValue?: string[];
|
|
@@ -20062,11 +20160,13 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20062
20160
|
videoRedirect?: string;
|
|
20063
20161
|
visualQuality?: string;
|
|
20064
20162
|
watermark?: string;
|
|
20163
|
+
watermarkAntiCam?: string;
|
|
20065
20164
|
watermarkColor?: number;
|
|
20066
20165
|
watermarkCustomText?: string;
|
|
20067
20166
|
watermarkDegree?: number;
|
|
20068
20167
|
watermarkFontSize?: number;
|
|
20069
20168
|
watermarkFontStyle?: string;
|
|
20169
|
+
watermarkPower?: string;
|
|
20070
20170
|
watermarkRowAmount?: number;
|
|
20071
20171
|
watermarkSecurity?: string;
|
|
20072
20172
|
watermarkTransparency?: string;
|
|
@@ -20122,6 +20222,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20122
20222
|
recordingExpires: 'RecordingExpires',
|
|
20123
20223
|
recordingFps: 'RecordingFps',
|
|
20124
20224
|
recordingStartTime: 'RecordingStartTime',
|
|
20225
|
+
recordingUserNotify: 'RecordingUserNotify',
|
|
20226
|
+
recordingUserNotifyMessage: 'RecordingUserNotifyMessage',
|
|
20125
20227
|
remoteCoordinate: 'RemoteCoordinate',
|
|
20126
20228
|
scope: 'Scope',
|
|
20127
20229
|
scopeValue: 'ScopeValue',
|
|
@@ -20130,11 +20232,13 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20130
20232
|
videoRedirect: 'VideoRedirect',
|
|
20131
20233
|
visualQuality: 'VisualQuality',
|
|
20132
20234
|
watermark: 'Watermark',
|
|
20235
|
+
watermarkAntiCam: 'WatermarkAntiCam',
|
|
20133
20236
|
watermarkColor: 'WatermarkColor',
|
|
20134
20237
|
watermarkCustomText: 'WatermarkCustomText',
|
|
20135
20238
|
watermarkDegree: 'WatermarkDegree',
|
|
20136
20239
|
watermarkFontSize: 'WatermarkFontSize',
|
|
20137
20240
|
watermarkFontStyle: 'WatermarkFontStyle',
|
|
20241
|
+
watermarkPower: 'WatermarkPower',
|
|
20138
20242
|
watermarkRowAmount: 'WatermarkRowAmount',
|
|
20139
20243
|
watermarkSecurity: 'WatermarkSecurity',
|
|
20140
20244
|
watermarkTransparency: 'WatermarkTransparency',
|
|
@@ -20193,6 +20297,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20193
20297
|
recordingExpires: 'number',
|
|
20194
20298
|
recordingFps: 'number',
|
|
20195
20299
|
recordingStartTime: 'string',
|
|
20300
|
+
recordingUserNotify: 'string',
|
|
20301
|
+
recordingUserNotifyMessage: 'string',
|
|
20196
20302
|
remoteCoordinate: 'string',
|
|
20197
20303
|
scope: 'string',
|
|
20198
20304
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
@@ -20201,11 +20307,13 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20201
20307
|
videoRedirect: 'string',
|
|
20202
20308
|
visualQuality: 'string',
|
|
20203
20309
|
watermark: 'string',
|
|
20310
|
+
watermarkAntiCam: 'string',
|
|
20204
20311
|
watermarkColor: 'number',
|
|
20205
20312
|
watermarkCustomText: 'string',
|
|
20206
20313
|
watermarkDegree: 'number',
|
|
20207
20314
|
watermarkFontSize: 'number',
|
|
20208
20315
|
watermarkFontStyle: 'string',
|
|
20316
|
+
watermarkPower: 'string',
|
|
20209
20317
|
watermarkRowAmount: 'number',
|
|
20210
20318
|
watermarkSecurity: 'string',
|
|
20211
20319
|
watermarkTransparency: 'string',
|
|
@@ -20912,6 +21020,50 @@ export class DescribeZonesResponseBodyZones extends $tea.Model {
|
|
|
20912
21020
|
}
|
|
20913
21021
|
}
|
|
20914
21022
|
|
|
21023
|
+
export class DisconnectDesktopSessionsRequestSessions extends $tea.Model {
|
|
21024
|
+
desktopId?: string;
|
|
21025
|
+
endUserId?: string;
|
|
21026
|
+
static names(): { [key: string]: string } {
|
|
21027
|
+
return {
|
|
21028
|
+
desktopId: 'DesktopId',
|
|
21029
|
+
endUserId: 'EndUserId',
|
|
21030
|
+
};
|
|
21031
|
+
}
|
|
21032
|
+
|
|
21033
|
+
static types(): { [key: string]: any } {
|
|
21034
|
+
return {
|
|
21035
|
+
desktopId: 'string',
|
|
21036
|
+
endUserId: 'string',
|
|
21037
|
+
};
|
|
21038
|
+
}
|
|
21039
|
+
|
|
21040
|
+
constructor(map?: { [key: string]: any }) {
|
|
21041
|
+
super(map);
|
|
21042
|
+
}
|
|
21043
|
+
}
|
|
21044
|
+
|
|
21045
|
+
export class DisconnectDesktopSessionsResponseBodyInvalidSessions extends $tea.Model {
|
|
21046
|
+
desktopId?: string;
|
|
21047
|
+
endUserId?: string;
|
|
21048
|
+
static names(): { [key: string]: string } {
|
|
21049
|
+
return {
|
|
21050
|
+
desktopId: 'DesktopId',
|
|
21051
|
+
endUserId: 'EndUserId',
|
|
21052
|
+
};
|
|
21053
|
+
}
|
|
21054
|
+
|
|
21055
|
+
static types(): { [key: string]: any } {
|
|
21056
|
+
return {
|
|
21057
|
+
desktopId: 'string',
|
|
21058
|
+
endUserId: 'string',
|
|
21059
|
+
};
|
|
21060
|
+
}
|
|
21061
|
+
|
|
21062
|
+
constructor(map?: { [key: string]: any }) {
|
|
21063
|
+
super(map);
|
|
21064
|
+
}
|
|
21065
|
+
}
|
|
21066
|
+
|
|
20915
21067
|
export class ExportDesktopListInfoRequestTag extends $tea.Model {
|
|
20916
21068
|
key?: string;
|
|
20917
21069
|
value?: string;
|
|
@@ -22081,6 +22233,7 @@ export default class Client extends OpenApi {
|
|
|
22081
22233
|
|
|
22082
22234
|
constructor(config: $OpenApi.Config) {
|
|
22083
22235
|
super(config);
|
|
22236
|
+
this._signatureAlgorithm = "v2";
|
|
22084
22237
|
this._endpointRule = "regional";
|
|
22085
22238
|
this.checkConfig(config);
|
|
22086
22239
|
this._endpoint = this.getEndpoint("ecd", this._regionId, this._endpointRule, this._network, this._suffix, this._endpointMap, this._endpoint);
|
|
@@ -24596,6 +24749,14 @@ export default class Client extends OpenApi {
|
|
|
24596
24749
|
query["RecordingStartTime"] = request.recordingStartTime;
|
|
24597
24750
|
}
|
|
24598
24751
|
|
|
24752
|
+
if (!Util.isUnset(request.recordingUserNotify)) {
|
|
24753
|
+
query["RecordingUserNotify"] = request.recordingUserNotify;
|
|
24754
|
+
}
|
|
24755
|
+
|
|
24756
|
+
if (!Util.isUnset(request.recordingUserNotifyMessage)) {
|
|
24757
|
+
query["RecordingUserNotifyMessage"] = request.recordingUserNotifyMessage;
|
|
24758
|
+
}
|
|
24759
|
+
|
|
24599
24760
|
if (!Util.isUnset(request.regionId)) {
|
|
24600
24761
|
query["RegionId"] = request.regionId;
|
|
24601
24762
|
}
|
|
@@ -24632,6 +24793,10 @@ export default class Client extends OpenApi {
|
|
|
24632
24793
|
query["Watermark"] = request.watermark;
|
|
24633
24794
|
}
|
|
24634
24795
|
|
|
24796
|
+
if (!Util.isUnset(request.watermarkAntiCam)) {
|
|
24797
|
+
query["WatermarkAntiCam"] = request.watermarkAntiCam;
|
|
24798
|
+
}
|
|
24799
|
+
|
|
24635
24800
|
if (!Util.isUnset(request.watermarkColor)) {
|
|
24636
24801
|
query["WatermarkColor"] = request.watermarkColor;
|
|
24637
24802
|
}
|
|
@@ -24648,6 +24813,10 @@ export default class Client extends OpenApi {
|
|
|
24648
24813
|
query["WatermarkFontStyle"] = request.watermarkFontStyle;
|
|
24649
24814
|
}
|
|
24650
24815
|
|
|
24816
|
+
if (!Util.isUnset(request.watermarkPower)) {
|
|
24817
|
+
query["WatermarkPower"] = request.watermarkPower;
|
|
24818
|
+
}
|
|
24819
|
+
|
|
24651
24820
|
if (!Util.isUnset(request.watermarkRowAmount)) {
|
|
24652
24821
|
query["WatermarkRowAmount"] = request.watermarkRowAmount;
|
|
24653
24822
|
}
|
|
@@ -25424,7 +25593,6 @@ export default class Client extends OpenApi {
|
|
|
25424
25593
|
* Before you delete a workspace, make sure that the following requirements are met:
|
|
25425
25594
|
* * All cloud desktops in the workspace are released.
|
|
25426
25595
|
* * The data that you want to retain is backed up.
|
|
25427
|
-
* **
|
|
25428
25596
|
* **Warning** After you delete a workspace, the resources and data of the workspace cannot be recovered. Exercise with caution.
|
|
25429
25597
|
*
|
|
25430
25598
|
* @param request DeleteOfficeSitesRequest
|
|
@@ -25463,7 +25631,6 @@ export default class Client extends OpenApi {
|
|
|
25463
25631
|
* Before you delete a workspace, make sure that the following requirements are met:
|
|
25464
25632
|
* * All cloud desktops in the workspace are released.
|
|
25465
25633
|
* * The data that you want to retain is backed up.
|
|
25466
|
-
* **
|
|
25467
25634
|
* **Warning** After you delete a workspace, the resources and data of the workspace cannot be recovered. Exercise with caution.
|
|
25468
25635
|
*
|
|
25469
25636
|
* @param request DeleteOfficeSitesRequest
|
|
@@ -28522,6 +28689,43 @@ export default class Client extends OpenApi {
|
|
|
28522
28689
|
return await this.disableDesktopsInGroupWithOptions(request, runtime);
|
|
28523
28690
|
}
|
|
28524
28691
|
|
|
28692
|
+
async disconnectDesktopSessionsWithOptions(request: DisconnectDesktopSessionsRequest, runtime: $Util.RuntimeOptions): Promise<DisconnectDesktopSessionsResponse> {
|
|
28693
|
+
Util.validateModel(request);
|
|
28694
|
+
let query = { };
|
|
28695
|
+
if (!Util.isUnset(request.preCheck)) {
|
|
28696
|
+
query["PreCheck"] = request.preCheck;
|
|
28697
|
+
}
|
|
28698
|
+
|
|
28699
|
+
if (!Util.isUnset(request.regionId)) {
|
|
28700
|
+
query["RegionId"] = request.regionId;
|
|
28701
|
+
}
|
|
28702
|
+
|
|
28703
|
+
if (!Util.isUnset(request.sessions)) {
|
|
28704
|
+
query["Sessions"] = request.sessions;
|
|
28705
|
+
}
|
|
28706
|
+
|
|
28707
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28708
|
+
query: OpenApiUtil.query(query),
|
|
28709
|
+
});
|
|
28710
|
+
let params = new $OpenApi.Params({
|
|
28711
|
+
action: "DisconnectDesktopSessions",
|
|
28712
|
+
version: "2020-09-30",
|
|
28713
|
+
protocol: "HTTPS",
|
|
28714
|
+
pathname: "/",
|
|
28715
|
+
method: "POST",
|
|
28716
|
+
authType: "AK",
|
|
28717
|
+
style: "RPC",
|
|
28718
|
+
reqBodyType: "formData",
|
|
28719
|
+
bodyType: "json",
|
|
28720
|
+
});
|
|
28721
|
+
return $tea.cast<DisconnectDesktopSessionsResponse>(await this.callApi(params, req, runtime), new DisconnectDesktopSessionsResponse({}));
|
|
28722
|
+
}
|
|
28723
|
+
|
|
28724
|
+
async disconnectDesktopSessions(request: DisconnectDesktopSessionsRequest): Promise<DisconnectDesktopSessionsResponse> {
|
|
28725
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
28726
|
+
return await this.disconnectDesktopSessionsWithOptions(request, runtime);
|
|
28727
|
+
}
|
|
28728
|
+
|
|
28525
28729
|
async dissociateNetworkPackageWithOptions(request: DissociateNetworkPackageRequest, runtime: $Util.RuntimeOptions): Promise<DissociateNetworkPackageResponse> {
|
|
28526
28730
|
Util.validateModel(request);
|
|
28527
28731
|
let query = { };
|
|
@@ -31480,6 +31684,14 @@ export default class Client extends OpenApi {
|
|
|
31480
31684
|
query["RecordingStartTime"] = request.recordingStartTime;
|
|
31481
31685
|
}
|
|
31482
31686
|
|
|
31687
|
+
if (!Util.isUnset(request.recordingUserNotify)) {
|
|
31688
|
+
query["RecordingUserNotify"] = request.recordingUserNotify;
|
|
31689
|
+
}
|
|
31690
|
+
|
|
31691
|
+
if (!Util.isUnset(request.recordingUserNotifyMessage)) {
|
|
31692
|
+
query["RecordingUserNotifyMessage"] = request.recordingUserNotifyMessage;
|
|
31693
|
+
}
|
|
31694
|
+
|
|
31483
31695
|
if (!Util.isUnset(request.regionId)) {
|
|
31484
31696
|
query["RegionId"] = request.regionId;
|
|
31485
31697
|
}
|
|
@@ -31524,6 +31736,10 @@ export default class Client extends OpenApi {
|
|
|
31524
31736
|
query["Watermark"] = request.watermark;
|
|
31525
31737
|
}
|
|
31526
31738
|
|
|
31739
|
+
if (!Util.isUnset(request.watermarkAntiCam)) {
|
|
31740
|
+
query["WatermarkAntiCam"] = request.watermarkAntiCam;
|
|
31741
|
+
}
|
|
31742
|
+
|
|
31527
31743
|
if (!Util.isUnset(request.watermarkColor)) {
|
|
31528
31744
|
query["WatermarkColor"] = request.watermarkColor;
|
|
31529
31745
|
}
|
|
@@ -31540,6 +31756,10 @@ export default class Client extends OpenApi {
|
|
|
31540
31756
|
query["WatermarkFontStyle"] = request.watermarkFontStyle;
|
|
31541
31757
|
}
|
|
31542
31758
|
|
|
31759
|
+
if (!Util.isUnset(request.watermarkPower)) {
|
|
31760
|
+
query["WatermarkPower"] = request.watermarkPower;
|
|
31761
|
+
}
|
|
31762
|
+
|
|
31543
31763
|
if (!Util.isUnset(request.watermarkRowAmount)) {
|
|
31544
31764
|
query["WatermarkRowAmount"] = request.watermarkRowAmount;
|
|
31545
31765
|
}
|