@alicloud/ecd20200930 2.0.11 → 2.0.13
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 +273 -0
- package/dist/client.js +584 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +733 -6
package/dist/client.d.ts
CHANGED
|
@@ -89,6 +89,50 @@ export declare class AddUserToDesktopGroupResponse extends $tea.Model {
|
|
|
89
89
|
[key: string]: any;
|
|
90
90
|
});
|
|
91
91
|
}
|
|
92
|
+
export declare class ApplyCoordinatePrivilegeRequest extends $tea.Model {
|
|
93
|
+
coId?: string;
|
|
94
|
+
endUserId?: string;
|
|
95
|
+
regionId?: string;
|
|
96
|
+
userType?: string;
|
|
97
|
+
uuid?: string;
|
|
98
|
+
static names(): {
|
|
99
|
+
[key: string]: string;
|
|
100
|
+
};
|
|
101
|
+
static types(): {
|
|
102
|
+
[key: string]: any;
|
|
103
|
+
};
|
|
104
|
+
constructor(map?: {
|
|
105
|
+
[key: string]: any;
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
export declare class ApplyCoordinatePrivilegeResponseBody extends $tea.Model {
|
|
109
|
+
requestId?: string;
|
|
110
|
+
static names(): {
|
|
111
|
+
[key: string]: string;
|
|
112
|
+
};
|
|
113
|
+
static types(): {
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
};
|
|
116
|
+
constructor(map?: {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
export declare class ApplyCoordinatePrivilegeResponse extends $tea.Model {
|
|
121
|
+
headers: {
|
|
122
|
+
[key: string]: string;
|
|
123
|
+
};
|
|
124
|
+
statusCode: number;
|
|
125
|
+
body: ApplyCoordinatePrivilegeResponseBody;
|
|
126
|
+
static names(): {
|
|
127
|
+
[key: string]: string;
|
|
128
|
+
};
|
|
129
|
+
static types(): {
|
|
130
|
+
[key: string]: any;
|
|
131
|
+
};
|
|
132
|
+
constructor(map?: {
|
|
133
|
+
[key: string]: any;
|
|
134
|
+
});
|
|
135
|
+
}
|
|
92
136
|
export declare class ApplyCoordinationForMonitoringRequest extends $tea.Model {
|
|
93
137
|
coordinatePolicyType?: string;
|
|
94
138
|
endUserId?: string;
|
|
@@ -636,6 +680,53 @@ export declare class CreateADConnectorOfficeSiteResponse extends $tea.Model {
|
|
|
636
680
|
[key: string]: any;
|
|
637
681
|
});
|
|
638
682
|
}
|
|
683
|
+
export declare class CreateAndBindNasFileSystemRequest extends $tea.Model {
|
|
684
|
+
description?: string;
|
|
685
|
+
desktopGroupId?: string;
|
|
686
|
+
encryptType?: number;
|
|
687
|
+
endUserIds?: string[];
|
|
688
|
+
fileSystemName?: string;
|
|
689
|
+
officeSiteId?: string;
|
|
690
|
+
regionId?: string;
|
|
691
|
+
storageType?: string;
|
|
692
|
+
static names(): {
|
|
693
|
+
[key: string]: string;
|
|
694
|
+
};
|
|
695
|
+
static types(): {
|
|
696
|
+
[key: string]: any;
|
|
697
|
+
};
|
|
698
|
+
constructor(map?: {
|
|
699
|
+
[key: string]: any;
|
|
700
|
+
});
|
|
701
|
+
}
|
|
702
|
+
export declare class CreateAndBindNasFileSystemResponseBody extends $tea.Model {
|
|
703
|
+
requestId?: string;
|
|
704
|
+
static names(): {
|
|
705
|
+
[key: string]: string;
|
|
706
|
+
};
|
|
707
|
+
static types(): {
|
|
708
|
+
[key: string]: any;
|
|
709
|
+
};
|
|
710
|
+
constructor(map?: {
|
|
711
|
+
[key: string]: any;
|
|
712
|
+
});
|
|
713
|
+
}
|
|
714
|
+
export declare class CreateAndBindNasFileSystemResponse extends $tea.Model {
|
|
715
|
+
headers: {
|
|
716
|
+
[key: string]: string;
|
|
717
|
+
};
|
|
718
|
+
statusCode: number;
|
|
719
|
+
body: CreateAndBindNasFileSystemResponseBody;
|
|
720
|
+
static names(): {
|
|
721
|
+
[key: string]: string;
|
|
722
|
+
};
|
|
723
|
+
static types(): {
|
|
724
|
+
[key: string]: any;
|
|
725
|
+
};
|
|
726
|
+
constructor(map?: {
|
|
727
|
+
[key: string]: any;
|
|
728
|
+
});
|
|
729
|
+
}
|
|
639
730
|
export declare class CreateBundleRequest extends $tea.Model {
|
|
640
731
|
bundleName?: string;
|
|
641
732
|
description?: string;
|
|
@@ -702,6 +793,7 @@ export declare class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
702
793
|
desktopGroupName?: string;
|
|
703
794
|
directoryId?: string;
|
|
704
795
|
endUserIds?: string[];
|
|
796
|
+
fileSystemId?: string;
|
|
705
797
|
idleDisconnectDuration?: number;
|
|
706
798
|
keepDuration?: number;
|
|
707
799
|
loadPolicy?: number;
|
|
@@ -712,6 +804,7 @@ export declare class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
712
804
|
period?: number;
|
|
713
805
|
periodUnit?: string;
|
|
714
806
|
policyGroupId?: string;
|
|
807
|
+
profileFollowSwitch?: boolean;
|
|
715
808
|
ratioThreshold?: number;
|
|
716
809
|
regionId?: string;
|
|
717
810
|
resetType?: number;
|
|
@@ -1095,6 +1188,7 @@ export declare class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1095
1188
|
recordingFps?: number;
|
|
1096
1189
|
recordingStartTime?: string;
|
|
1097
1190
|
regionId?: string;
|
|
1191
|
+
remoteCoordinate?: string;
|
|
1098
1192
|
usbRedirect?: string;
|
|
1099
1193
|
usbSupplyRedirectRule?: CreatePolicyGroupRequestUsbSupplyRedirectRule[];
|
|
1100
1194
|
visualQuality?: string;
|
|
@@ -1977,6 +2071,7 @@ export declare class DescribeClientEventsRequest extends $tea.Model {
|
|
|
1977
2071
|
endTime?: string;
|
|
1978
2072
|
endUserId?: string;
|
|
1979
2073
|
eventType?: string;
|
|
2074
|
+
eventTypes?: string[];
|
|
1980
2075
|
maxResults?: number;
|
|
1981
2076
|
nextToken?: string;
|
|
1982
2077
|
officeSiteId?: string;
|
|
@@ -2065,6 +2160,49 @@ export declare class DescribeCloudDrivePermissionsResponse extends $tea.Model {
|
|
|
2065
2160
|
[key: string]: any;
|
|
2066
2161
|
});
|
|
2067
2162
|
}
|
|
2163
|
+
export declare class DescribeCustomizedListHeadersRequest extends $tea.Model {
|
|
2164
|
+
langType?: string;
|
|
2165
|
+
listType?: string;
|
|
2166
|
+
regionId?: string;
|
|
2167
|
+
static names(): {
|
|
2168
|
+
[key: string]: string;
|
|
2169
|
+
};
|
|
2170
|
+
static types(): {
|
|
2171
|
+
[key: string]: any;
|
|
2172
|
+
};
|
|
2173
|
+
constructor(map?: {
|
|
2174
|
+
[key: string]: any;
|
|
2175
|
+
});
|
|
2176
|
+
}
|
|
2177
|
+
export declare class DescribeCustomizedListHeadersResponseBody extends $tea.Model {
|
|
2178
|
+
headers?: DescribeCustomizedListHeadersResponseBodyHeaders[];
|
|
2179
|
+
requestId?: string;
|
|
2180
|
+
static names(): {
|
|
2181
|
+
[key: string]: string;
|
|
2182
|
+
};
|
|
2183
|
+
static types(): {
|
|
2184
|
+
[key: string]: any;
|
|
2185
|
+
};
|
|
2186
|
+
constructor(map?: {
|
|
2187
|
+
[key: string]: any;
|
|
2188
|
+
});
|
|
2189
|
+
}
|
|
2190
|
+
export declare class DescribeCustomizedListHeadersResponse extends $tea.Model {
|
|
2191
|
+
headers: {
|
|
2192
|
+
[key: string]: string;
|
|
2193
|
+
};
|
|
2194
|
+
statusCode: number;
|
|
2195
|
+
body: DescribeCustomizedListHeadersResponseBody;
|
|
2196
|
+
static names(): {
|
|
2197
|
+
[key: string]: string;
|
|
2198
|
+
};
|
|
2199
|
+
static types(): {
|
|
2200
|
+
[key: string]: any;
|
|
2201
|
+
};
|
|
2202
|
+
constructor(map?: {
|
|
2203
|
+
[key: string]: any;
|
|
2204
|
+
});
|
|
2205
|
+
}
|
|
2068
2206
|
export declare class DescribeDesktopGroupsRequest extends $tea.Model {
|
|
2069
2207
|
desktopGroupId?: string;
|
|
2070
2208
|
desktopGroupName?: string;
|
|
@@ -3546,6 +3684,7 @@ export declare class DescribeUsersInGroupRequest extends $tea.Model {
|
|
|
3546
3684
|
filter?: string;
|
|
3547
3685
|
maxResults?: number;
|
|
3548
3686
|
nextToken?: string;
|
|
3687
|
+
orgId?: string;
|
|
3549
3688
|
queryUserDetail?: boolean;
|
|
3550
3689
|
regionId?: string;
|
|
3551
3690
|
static names(): {
|
|
@@ -3991,6 +4130,7 @@ export declare class ExportClientEventsRequest extends $tea.Model {
|
|
|
3991
4130
|
endTime?: string;
|
|
3992
4131
|
endUserId?: string;
|
|
3993
4132
|
eventType?: string;
|
|
4133
|
+
eventTypes?: string[];
|
|
3994
4134
|
maxResults?: number;
|
|
3995
4135
|
officeSiteId?: string;
|
|
3996
4136
|
officeSiteName?: string;
|
|
@@ -4824,6 +4964,48 @@ export declare class ModifyCloudDrivePermissionResponse extends $tea.Model {
|
|
|
4824
4964
|
[key: string]: any;
|
|
4825
4965
|
});
|
|
4826
4966
|
}
|
|
4967
|
+
export declare class ModifyCustomizedListHeadersRequest extends $tea.Model {
|
|
4968
|
+
headers?: ModifyCustomizedListHeadersRequestHeaders[];
|
|
4969
|
+
listType?: string;
|
|
4970
|
+
regionId?: string;
|
|
4971
|
+
static names(): {
|
|
4972
|
+
[key: string]: string;
|
|
4973
|
+
};
|
|
4974
|
+
static types(): {
|
|
4975
|
+
[key: string]: any;
|
|
4976
|
+
};
|
|
4977
|
+
constructor(map?: {
|
|
4978
|
+
[key: string]: any;
|
|
4979
|
+
});
|
|
4980
|
+
}
|
|
4981
|
+
export declare class ModifyCustomizedListHeadersResponseBody extends $tea.Model {
|
|
4982
|
+
requestId?: string;
|
|
4983
|
+
static names(): {
|
|
4984
|
+
[key: string]: string;
|
|
4985
|
+
};
|
|
4986
|
+
static types(): {
|
|
4987
|
+
[key: string]: any;
|
|
4988
|
+
};
|
|
4989
|
+
constructor(map?: {
|
|
4990
|
+
[key: string]: any;
|
|
4991
|
+
});
|
|
4992
|
+
}
|
|
4993
|
+
export declare class ModifyCustomizedListHeadersResponse extends $tea.Model {
|
|
4994
|
+
headers: {
|
|
4995
|
+
[key: string]: string;
|
|
4996
|
+
};
|
|
4997
|
+
statusCode: number;
|
|
4998
|
+
body: ModifyCustomizedListHeadersResponseBody;
|
|
4999
|
+
static names(): {
|
|
5000
|
+
[key: string]: string;
|
|
5001
|
+
};
|
|
5002
|
+
static types(): {
|
|
5003
|
+
[key: string]: any;
|
|
5004
|
+
};
|
|
5005
|
+
constructor(map?: {
|
|
5006
|
+
[key: string]: any;
|
|
5007
|
+
});
|
|
5008
|
+
}
|
|
4827
5009
|
export declare class ModifyDesktopChargeTypeRequest extends $tea.Model {
|
|
4828
5010
|
autoPay?: boolean;
|
|
4829
5011
|
chargeType?: string;
|
|
@@ -4882,6 +5064,7 @@ export declare class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
4882
5064
|
desktopGroupId?: string;
|
|
4883
5065
|
desktopGroupName?: string;
|
|
4884
5066
|
disableSessionConfig?: boolean;
|
|
5067
|
+
fileSystemId?: string;
|
|
4885
5068
|
idleDisconnectDuration?: number;
|
|
4886
5069
|
imageId?: string;
|
|
4887
5070
|
keepDuration?: number;
|
|
@@ -4890,6 +5073,7 @@ export declare class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
4890
5073
|
minDesktopsCount?: number;
|
|
4891
5074
|
ownBundleId?: string;
|
|
4892
5075
|
policyGroupId?: string;
|
|
5076
|
+
profileFollowSwitch?: boolean;
|
|
4893
5077
|
ratioThreshold?: number;
|
|
4894
5078
|
regionId?: string;
|
|
4895
5079
|
resetType?: number;
|
|
@@ -5610,6 +5794,7 @@ export declare class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
5610
5794
|
recordingFps?: number;
|
|
5611
5795
|
recordingStartTime?: string;
|
|
5612
5796
|
regionId?: string;
|
|
5797
|
+
remoteCoordinate?: string;
|
|
5613
5798
|
revokeAccessPolicyRule?: ModifyPolicyGroupRequestRevokeAccessPolicyRule[];
|
|
5614
5799
|
revokeSecurityPolicyRule?: ModifyPolicyGroupRequestRevokeSecurityPolicyRule[];
|
|
5615
5800
|
usbRedirect?: string;
|
|
@@ -6134,6 +6319,50 @@ export declare class ResetSnapshotResponse extends $tea.Model {
|
|
|
6134
6319
|
[key: string]: any;
|
|
6135
6320
|
});
|
|
6136
6321
|
}
|
|
6322
|
+
export declare class RevokeCoordinatePrivilegeRequest extends $tea.Model {
|
|
6323
|
+
coId?: string;
|
|
6324
|
+
endUserId?: string;
|
|
6325
|
+
regionId?: string;
|
|
6326
|
+
userType?: string;
|
|
6327
|
+
uuid?: string;
|
|
6328
|
+
static names(): {
|
|
6329
|
+
[key: string]: string;
|
|
6330
|
+
};
|
|
6331
|
+
static types(): {
|
|
6332
|
+
[key: string]: any;
|
|
6333
|
+
};
|
|
6334
|
+
constructor(map?: {
|
|
6335
|
+
[key: string]: any;
|
|
6336
|
+
});
|
|
6337
|
+
}
|
|
6338
|
+
export declare class RevokeCoordinatePrivilegeResponseBody extends $tea.Model {
|
|
6339
|
+
requestId?: string;
|
|
6340
|
+
static names(): {
|
|
6341
|
+
[key: string]: string;
|
|
6342
|
+
};
|
|
6343
|
+
static types(): {
|
|
6344
|
+
[key: string]: any;
|
|
6345
|
+
};
|
|
6346
|
+
constructor(map?: {
|
|
6347
|
+
[key: string]: any;
|
|
6348
|
+
});
|
|
6349
|
+
}
|
|
6350
|
+
export declare class RevokeCoordinatePrivilegeResponse extends $tea.Model {
|
|
6351
|
+
headers: {
|
|
6352
|
+
[key: string]: string;
|
|
6353
|
+
};
|
|
6354
|
+
statusCode: number;
|
|
6355
|
+
body: RevokeCoordinatePrivilegeResponseBody;
|
|
6356
|
+
static names(): {
|
|
6357
|
+
[key: string]: string;
|
|
6358
|
+
};
|
|
6359
|
+
static types(): {
|
|
6360
|
+
[key: string]: any;
|
|
6361
|
+
};
|
|
6362
|
+
constructor(map?: {
|
|
6363
|
+
[key: string]: any;
|
|
6364
|
+
});
|
|
6365
|
+
}
|
|
6137
6366
|
export declare class RollbackSuspEventQuaraFileRequest extends $tea.Model {
|
|
6138
6367
|
desktopId?: string;
|
|
6139
6368
|
quaraFieldId?: number;
|
|
@@ -7085,6 +7314,7 @@ export declare class DescribeBundlesResponseBodyBundles extends $tea.Model {
|
|
|
7085
7314
|
imageName?: string;
|
|
7086
7315
|
language?: string;
|
|
7087
7316
|
osType?: string;
|
|
7317
|
+
platform?: string;
|
|
7088
7318
|
protocolType?: string;
|
|
7089
7319
|
sessionType?: string;
|
|
7090
7320
|
stockState?: string;
|
|
@@ -7191,6 +7421,20 @@ export declare class DescribeCloudDrivePermissionsResponseBodyCloudDrivePermissi
|
|
|
7191
7421
|
[key: string]: any;
|
|
7192
7422
|
});
|
|
7193
7423
|
}
|
|
7424
|
+
export declare class DescribeCustomizedListHeadersResponseBodyHeaders extends $tea.Model {
|
|
7425
|
+
displayType?: string;
|
|
7426
|
+
headerKey?: string;
|
|
7427
|
+
headerName?: string;
|
|
7428
|
+
static names(): {
|
|
7429
|
+
[key: string]: string;
|
|
7430
|
+
};
|
|
7431
|
+
static types(): {
|
|
7432
|
+
[key: string]: any;
|
|
7433
|
+
};
|
|
7434
|
+
constructor(map?: {
|
|
7435
|
+
[key: string]: any;
|
|
7436
|
+
});
|
|
7437
|
+
}
|
|
7194
7438
|
export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
7195
7439
|
bindAmount?: number;
|
|
7196
7440
|
comments?: string;
|
|
@@ -8018,6 +8262,7 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extend
|
|
|
8018
8262
|
recordingExpires?: number;
|
|
8019
8263
|
recordingFps?: number;
|
|
8020
8264
|
recordingStartTime?: string;
|
|
8265
|
+
remoteCoordinate?: string;
|
|
8021
8266
|
usbRedirect?: string;
|
|
8022
8267
|
usbSupplyRedirectRule?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule[];
|
|
8023
8268
|
visualQuality?: string;
|
|
@@ -8236,10 +8481,12 @@ export declare class DescribeUsersInGroupResponseBodyEndUsers extends $tea.Model
|
|
|
8236
8481
|
connectionStatus?: string;
|
|
8237
8482
|
desktopId?: string;
|
|
8238
8483
|
desktopName?: string;
|
|
8484
|
+
displayName?: string;
|
|
8239
8485
|
endUserEmail?: string;
|
|
8240
8486
|
endUserId?: string;
|
|
8241
8487
|
endUserName?: string;
|
|
8242
8488
|
endUserPhone?: string;
|
|
8489
|
+
endUserRemark?: string;
|
|
8243
8490
|
endUserType?: string;
|
|
8244
8491
|
externalInfo?: DescribeUsersInGroupResponseBodyEndUsersExternalInfo;
|
|
8245
8492
|
userDesktopId?: string;
|
|
@@ -8423,6 +8670,8 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Mode
|
|
|
8423
8670
|
maxDesktopsCount?: number;
|
|
8424
8671
|
memory?: number;
|
|
8425
8672
|
minDesktopsCount?: number;
|
|
8673
|
+
nasFileSystemID?: string;
|
|
8674
|
+
nasFileSystemName?: string;
|
|
8426
8675
|
officeSiteId?: string;
|
|
8427
8676
|
officeSiteName?: string;
|
|
8428
8677
|
officeSiteType?: string;
|
|
@@ -8432,6 +8681,7 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Mode
|
|
|
8432
8681
|
payType?: string;
|
|
8433
8682
|
policyGroupId?: string;
|
|
8434
8683
|
policyGroupName?: string;
|
|
8684
|
+
profileFollowSwitch?: boolean;
|
|
8435
8685
|
ratioThreshold?: number;
|
|
8436
8686
|
resType?: number;
|
|
8437
8687
|
resetType?: number;
|
|
@@ -8555,6 +8805,19 @@ export declare class ListUserAdOrganizationUnitsResponseBodyOUNames extends $tea
|
|
|
8555
8805
|
[key: string]: any;
|
|
8556
8806
|
});
|
|
8557
8807
|
}
|
|
8808
|
+
export declare class ModifyCustomizedListHeadersRequestHeaders extends $tea.Model {
|
|
8809
|
+
displayType?: string;
|
|
8810
|
+
headerKey?: string;
|
|
8811
|
+
static names(): {
|
|
8812
|
+
[key: string]: string;
|
|
8813
|
+
};
|
|
8814
|
+
static types(): {
|
|
8815
|
+
[key: string]: any;
|
|
8816
|
+
};
|
|
8817
|
+
constructor(map?: {
|
|
8818
|
+
[key: string]: any;
|
|
8819
|
+
});
|
|
8820
|
+
}
|
|
8558
8821
|
export declare class ModifyDesktopsPolicyGroupResponseBodyModifyResults extends $tea.Model {
|
|
8559
8822
|
code?: string;
|
|
8560
8823
|
desktopId?: string;
|
|
@@ -8727,6 +8990,8 @@ export default class Client extends OpenApi {
|
|
|
8727
8990
|
activateOfficeSite(request: ActivateOfficeSiteRequest): Promise<ActivateOfficeSiteResponse>;
|
|
8728
8991
|
addUserToDesktopGroupWithOptions(request: AddUserToDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<AddUserToDesktopGroupResponse>;
|
|
8729
8992
|
addUserToDesktopGroup(request: AddUserToDesktopGroupRequest): Promise<AddUserToDesktopGroupResponse>;
|
|
8993
|
+
applyCoordinatePrivilegeWithOptions(request: ApplyCoordinatePrivilegeRequest, runtime: $Util.RuntimeOptions): Promise<ApplyCoordinatePrivilegeResponse>;
|
|
8994
|
+
applyCoordinatePrivilege(request: ApplyCoordinatePrivilegeRequest): Promise<ApplyCoordinatePrivilegeResponse>;
|
|
8730
8995
|
applyCoordinationForMonitoringWithOptions(request: ApplyCoordinationForMonitoringRequest, runtime: $Util.RuntimeOptions): Promise<ApplyCoordinationForMonitoringResponse>;
|
|
8731
8996
|
applyCoordinationForMonitoring(request: ApplyCoordinationForMonitoringRequest): Promise<ApplyCoordinationForMonitoringResponse>;
|
|
8732
8997
|
approveFotaUpdateWithOptions(request: ApproveFotaUpdateRequest, runtime: $Util.RuntimeOptions): Promise<ApproveFotaUpdateResponse>;
|
|
@@ -8751,6 +9016,8 @@ export default class Client extends OpenApi {
|
|
|
8751
9016
|
createADConnectorDirectory(request: CreateADConnectorDirectoryRequest): Promise<CreateADConnectorDirectoryResponse>;
|
|
8752
9017
|
createADConnectorOfficeSiteWithOptions(request: CreateADConnectorOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<CreateADConnectorOfficeSiteResponse>;
|
|
8753
9018
|
createADConnectorOfficeSite(request: CreateADConnectorOfficeSiteRequest): Promise<CreateADConnectorOfficeSiteResponse>;
|
|
9019
|
+
createAndBindNasFileSystemWithOptions(request: CreateAndBindNasFileSystemRequest, runtime: $Util.RuntimeOptions): Promise<CreateAndBindNasFileSystemResponse>;
|
|
9020
|
+
createAndBindNasFileSystem(request: CreateAndBindNasFileSystemRequest): Promise<CreateAndBindNasFileSystemResponse>;
|
|
8754
9021
|
createBundleWithOptions(request: CreateBundleRequest, runtime: $Util.RuntimeOptions): Promise<CreateBundleResponse>;
|
|
8755
9022
|
createBundle(request: CreateBundleRequest): Promise<CreateBundleResponse>;
|
|
8756
9023
|
createDesktopGroupWithOptions(request: CreateDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDesktopGroupResponse>;
|
|
@@ -8811,6 +9078,8 @@ export default class Client extends OpenApi {
|
|
|
8811
9078
|
describeClientEvents(request: DescribeClientEventsRequest): Promise<DescribeClientEventsResponse>;
|
|
8812
9079
|
describeCloudDrivePermissionsWithOptions(request: DescribeCloudDrivePermissionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCloudDrivePermissionsResponse>;
|
|
8813
9080
|
describeCloudDrivePermissions(request: DescribeCloudDrivePermissionsRequest): Promise<DescribeCloudDrivePermissionsResponse>;
|
|
9081
|
+
describeCustomizedListHeadersWithOptions(request: DescribeCustomizedListHeadersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCustomizedListHeadersResponse>;
|
|
9082
|
+
describeCustomizedListHeaders(request: DescribeCustomizedListHeadersRequest): Promise<DescribeCustomizedListHeadersResponse>;
|
|
8814
9083
|
describeDesktopGroupsWithOptions(request: DescribeDesktopGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopGroupsResponse>;
|
|
8815
9084
|
describeDesktopGroups(request: DescribeDesktopGroupsRequest): Promise<DescribeDesktopGroupsResponse>;
|
|
8816
9085
|
describeDesktopIdsByVulNamesWithOptions(request: DescribeDesktopIdsByVulNamesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopIdsByVulNamesResponse>;
|
|
@@ -8929,6 +9198,8 @@ export default class Client extends OpenApi {
|
|
|
8929
9198
|
modifyBundle(request: ModifyBundleRequest): Promise<ModifyBundleResponse>;
|
|
8930
9199
|
modifyCloudDrivePermissionWithOptions(request: ModifyCloudDrivePermissionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCloudDrivePermissionResponse>;
|
|
8931
9200
|
modifyCloudDrivePermission(request: ModifyCloudDrivePermissionRequest): Promise<ModifyCloudDrivePermissionResponse>;
|
|
9201
|
+
modifyCustomizedListHeadersWithOptions(request: ModifyCustomizedListHeadersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCustomizedListHeadersResponse>;
|
|
9202
|
+
modifyCustomizedListHeaders(request: ModifyCustomizedListHeadersRequest): Promise<ModifyCustomizedListHeadersResponse>;
|
|
8932
9203
|
modifyDesktopChargeTypeWithOptions(request: ModifyDesktopChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopChargeTypeResponse>;
|
|
8933
9204
|
modifyDesktopChargeType(request: ModifyDesktopChargeTypeRequest): Promise<ModifyDesktopChargeTypeResponse>;
|
|
8934
9205
|
modifyDesktopGroupWithOptions(request: ModifyDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopGroupResponse>;
|
|
@@ -8987,6 +9258,8 @@ export default class Client extends OpenApi {
|
|
|
8987
9258
|
resetNASDefaultMountTarget(request: ResetNASDefaultMountTargetRequest): Promise<ResetNASDefaultMountTargetResponse>;
|
|
8988
9259
|
resetSnapshotWithOptions(request: ResetSnapshotRequest, runtime: $Util.RuntimeOptions): Promise<ResetSnapshotResponse>;
|
|
8989
9260
|
resetSnapshot(request: ResetSnapshotRequest): Promise<ResetSnapshotResponse>;
|
|
9261
|
+
revokeCoordinatePrivilegeWithOptions(request: RevokeCoordinatePrivilegeRequest, runtime: $Util.RuntimeOptions): Promise<RevokeCoordinatePrivilegeResponse>;
|
|
9262
|
+
revokeCoordinatePrivilege(request: RevokeCoordinatePrivilegeRequest): Promise<RevokeCoordinatePrivilegeResponse>;
|
|
8990
9263
|
rollbackSuspEventQuaraFileWithOptions(request: RollbackSuspEventQuaraFileRequest, runtime: $Util.RuntimeOptions): Promise<RollbackSuspEventQuaraFileResponse>;
|
|
8991
9264
|
rollbackSuspEventQuaraFile(request: RollbackSuspEventQuaraFileRequest): Promise<RollbackSuspEventQuaraFileResponse>;
|
|
8992
9265
|
runCommandWithOptions(request: RunCommandRequest, runtime: $Util.RuntimeOptions): Promise<RunCommandResponse>;
|