@alicloud/ecd20200930 4.2.0 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +37 -0
- package/dist/client.js +61 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +77 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -37066,6 +37066,7 @@ export class DescribeClientEventsResponseBodyEvents extends $tea.Model {
|
|
|
37066
37066
|
* 1.0.4 202012021700
|
|
37067
37067
|
*/
|
|
37068
37068
|
clientVersion?: string;
|
|
37069
|
+
description?: string;
|
|
37069
37070
|
/**
|
|
37070
37071
|
* @remarks
|
|
37071
37072
|
* The desktop group ID.
|
|
@@ -37223,6 +37224,7 @@ export class DescribeClientEventsResponseBodyEvents extends $tea.Model {
|
|
|
37223
37224
|
clientIp: 'ClientIp',
|
|
37224
37225
|
clientOS: 'ClientOS',
|
|
37225
37226
|
clientVersion: 'ClientVersion',
|
|
37227
|
+
description: 'Description',
|
|
37226
37228
|
desktopGroupId: 'DesktopGroupId',
|
|
37227
37229
|
desktopGroupName: 'DesktopGroupName',
|
|
37228
37230
|
desktopId: 'DesktopId',
|
|
@@ -37250,6 +37252,7 @@ export class DescribeClientEventsResponseBodyEvents extends $tea.Model {
|
|
|
37250
37252
|
clientIp: 'string',
|
|
37251
37253
|
clientOS: 'string',
|
|
37252
37254
|
clientVersion: 'string',
|
|
37255
|
+
description: 'string',
|
|
37253
37256
|
desktopGroupId: 'string',
|
|
37254
37257
|
desktopGroupName: 'string',
|
|
37255
37258
|
desktopId: 'string',
|
|
@@ -43002,6 +43005,28 @@ export class DescribeModificationPriceResponseBodyPriceInfo extends $tea.Model {
|
|
|
43002
43005
|
}
|
|
43003
43006
|
}
|
|
43004
43007
|
|
|
43008
|
+
export class DescribeNASFileSystemsResponseBodyFileSystemsAppInstanceGroups extends $tea.Model {
|
|
43009
|
+
appInstanceGroupId?: string;
|
|
43010
|
+
appInstanceGroupName?: string;
|
|
43011
|
+
static names(): { [key: string]: string } {
|
|
43012
|
+
return {
|
|
43013
|
+
appInstanceGroupId: 'AppInstanceGroupId',
|
|
43014
|
+
appInstanceGroupName: 'AppInstanceGroupName',
|
|
43015
|
+
};
|
|
43016
|
+
}
|
|
43017
|
+
|
|
43018
|
+
static types(): { [key: string]: any } {
|
|
43019
|
+
return {
|
|
43020
|
+
appInstanceGroupId: 'string',
|
|
43021
|
+
appInstanceGroupName: 'string',
|
|
43022
|
+
};
|
|
43023
|
+
}
|
|
43024
|
+
|
|
43025
|
+
constructor(map?: { [key: string]: any }) {
|
|
43026
|
+
super(map);
|
|
43027
|
+
}
|
|
43028
|
+
}
|
|
43029
|
+
|
|
43005
43030
|
export class DescribeNASFileSystemsResponseBodyFileSystemsDesktopGroups extends $tea.Model {
|
|
43006
43031
|
/**
|
|
43007
43032
|
* @remarks
|
|
@@ -43038,7 +43063,31 @@ export class DescribeNASFileSystemsResponseBodyFileSystemsDesktopGroups extends
|
|
|
43038
43063
|
}
|
|
43039
43064
|
}
|
|
43040
43065
|
|
|
43066
|
+
export class DescribeNASFileSystemsResponseBodyFileSystemsOfficeSites extends $tea.Model {
|
|
43067
|
+
officeSiteId?: string;
|
|
43068
|
+
officeSiteName?: string;
|
|
43069
|
+
static names(): { [key: string]: string } {
|
|
43070
|
+
return {
|
|
43071
|
+
officeSiteId: 'OfficeSiteId',
|
|
43072
|
+
officeSiteName: 'OfficeSiteName',
|
|
43073
|
+
};
|
|
43074
|
+
}
|
|
43075
|
+
|
|
43076
|
+
static types(): { [key: string]: any } {
|
|
43077
|
+
return {
|
|
43078
|
+
officeSiteId: 'string',
|
|
43079
|
+
officeSiteName: 'string',
|
|
43080
|
+
};
|
|
43081
|
+
}
|
|
43082
|
+
|
|
43083
|
+
constructor(map?: { [key: string]: any }) {
|
|
43084
|
+
super(map);
|
|
43085
|
+
}
|
|
43086
|
+
}
|
|
43087
|
+
|
|
43041
43088
|
export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
43089
|
+
allowOperateUserDrive?: boolean;
|
|
43090
|
+
appInstanceGroups?: DescribeNASFileSystemsResponseBodyFileSystemsAppInstanceGroups[];
|
|
43042
43091
|
/**
|
|
43043
43092
|
* @remarks
|
|
43044
43093
|
* The total capacity of the NAS file system. Unit: GiB.
|
|
@@ -43164,6 +43213,7 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43164
43213
|
* test
|
|
43165
43214
|
*/
|
|
43166
43215
|
officeSiteName?: string;
|
|
43216
|
+
officeSites?: DescribeNASFileSystemsResponseBodyFileSystemsOfficeSites[];
|
|
43167
43217
|
/**
|
|
43168
43218
|
* @remarks
|
|
43169
43219
|
* Indicates whether the User Profile Management (UPM) feature is supported.
|
|
@@ -43180,6 +43230,7 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43180
43230
|
* cn-hangzhou
|
|
43181
43231
|
*/
|
|
43182
43232
|
regionId?: string;
|
|
43233
|
+
scene?: string;
|
|
43183
43234
|
/**
|
|
43184
43235
|
* @remarks
|
|
43185
43236
|
* The storage type of the NAS file system. Valid values:
|
|
@@ -43209,6 +43260,8 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43209
43260
|
zoneId?: string;
|
|
43210
43261
|
static names(): { [key: string]: string } {
|
|
43211
43262
|
return {
|
|
43263
|
+
allowOperateUserDrive: 'AllowOperateUserDrive',
|
|
43264
|
+
appInstanceGroups: 'AppInstanceGroups',
|
|
43212
43265
|
capacity: 'Capacity',
|
|
43213
43266
|
createTime: 'CreateTime',
|
|
43214
43267
|
description: 'Description',
|
|
@@ -43223,8 +43276,10 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43223
43276
|
mountTargetStatus: 'MountTargetStatus',
|
|
43224
43277
|
officeSiteId: 'OfficeSiteId',
|
|
43225
43278
|
officeSiteName: 'OfficeSiteName',
|
|
43279
|
+
officeSites: 'OfficeSites',
|
|
43226
43280
|
profileCompatible: 'ProfileCompatible',
|
|
43227
43281
|
regionId: 'RegionId',
|
|
43282
|
+
scene: 'Scene',
|
|
43228
43283
|
storageType: 'StorageType',
|
|
43229
43284
|
supportAcl: 'SupportAcl',
|
|
43230
43285
|
zoneId: 'ZoneId',
|
|
@@ -43233,6 +43288,8 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43233
43288
|
|
|
43234
43289
|
static types(): { [key: string]: any } {
|
|
43235
43290
|
return {
|
|
43291
|
+
allowOperateUserDrive: 'boolean',
|
|
43292
|
+
appInstanceGroups: { 'type': 'array', 'itemType': DescribeNASFileSystemsResponseBodyFileSystemsAppInstanceGroups },
|
|
43236
43293
|
capacity: 'number',
|
|
43237
43294
|
createTime: 'string',
|
|
43238
43295
|
description: 'string',
|
|
@@ -43247,8 +43304,10 @@ export class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.Model {
|
|
|
43247
43304
|
mountTargetStatus: 'string',
|
|
43248
43305
|
officeSiteId: 'string',
|
|
43249
43306
|
officeSiteName: 'string',
|
|
43307
|
+
officeSites: { 'type': 'array', 'itemType': DescribeNASFileSystemsResponseBodyFileSystemsOfficeSites },
|
|
43250
43308
|
profileCompatible: 'boolean',
|
|
43251
43309
|
regionId: 'string',
|
|
43310
|
+
scene: 'string',
|
|
43252
43311
|
storageType: 'string',
|
|
43253
43312
|
supportAcl: 'boolean',
|
|
43254
43313
|
zoneId: 'string',
|
|
@@ -44815,6 +44874,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
44815
44874
|
* 70
|
|
44816
44875
|
*/
|
|
44817
44876
|
cpuSingleRateLimit?: number;
|
|
44877
|
+
desktopCount?: number;
|
|
44878
|
+
desktopGroupCount?: number;
|
|
44818
44879
|
deviceRedirects?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
44819
44880
|
deviceRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
44820
44881
|
displayMode?: string;
|
|
@@ -44986,6 +45047,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
44986
45047
|
* 30
|
|
44987
45048
|
*/
|
|
44988
45049
|
memorySingleRateLimit?: number;
|
|
45050
|
+
mobileRestart?: string;
|
|
45051
|
+
mobileShutdown?: string;
|
|
44989
45052
|
/**
|
|
44990
45053
|
* @remarks
|
|
44991
45054
|
* The policy name.
|
|
@@ -45196,6 +45259,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45196
45259
|
* fullControl
|
|
45197
45260
|
*/
|
|
45198
45261
|
remoteCoordinate?: string;
|
|
45262
|
+
resourceGroupCount?: number;
|
|
45199
45263
|
resourceRegionId?: string;
|
|
45200
45264
|
/**
|
|
45201
45265
|
* @remarks
|
|
@@ -45214,6 +45278,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45214
45278
|
*/
|
|
45215
45279
|
scopeValue?: string[];
|
|
45216
45280
|
smoothEnhancement?: string;
|
|
45281
|
+
statusMonitor?: string;
|
|
45217
45282
|
streamingMode?: string;
|
|
45218
45283
|
targetFps?: number;
|
|
45219
45284
|
/**
|
|
@@ -45404,6 +45469,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45404
45469
|
cpuRateLimit: 'CpuRateLimit',
|
|
45405
45470
|
cpuSampleDuration: 'CpuSampleDuration',
|
|
45406
45471
|
cpuSingleRateLimit: 'CpuSingleRateLimit',
|
|
45472
|
+
desktopCount: 'DesktopCount',
|
|
45473
|
+
desktopGroupCount: 'DesktopGroupCount',
|
|
45407
45474
|
deviceRedirects: 'DeviceRedirects',
|
|
45408
45475
|
deviceRules: 'DeviceRules',
|
|
45409
45476
|
displayMode: 'DisplayMode',
|
|
@@ -45425,6 +45492,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45425
45492
|
memoryRateLimit: 'MemoryRateLimit',
|
|
45426
45493
|
memorySampleDuration: 'MemorySampleDuration',
|
|
45427
45494
|
memorySingleRateLimit: 'MemorySingleRateLimit',
|
|
45495
|
+
mobileRestart: 'MobileRestart',
|
|
45496
|
+
mobileShutdown: 'MobileShutdown',
|
|
45428
45497
|
name: 'Name',
|
|
45429
45498
|
netRedirect: 'NetRedirect',
|
|
45430
45499
|
netRedirectRule: 'NetRedirectRule',
|
|
@@ -45447,10 +45516,12 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45447
45516
|
recordingUserNotify: 'RecordingUserNotify',
|
|
45448
45517
|
recordingUserNotifyMessage: 'RecordingUserNotifyMessage',
|
|
45449
45518
|
remoteCoordinate: 'RemoteCoordinate',
|
|
45519
|
+
resourceGroupCount: 'ResourceGroupCount',
|
|
45450
45520
|
resourceRegionId: 'ResourceRegionId',
|
|
45451
45521
|
scope: 'Scope',
|
|
45452
45522
|
scopeValue: 'ScopeValue',
|
|
45453
45523
|
smoothEnhancement: 'SmoothEnhancement',
|
|
45524
|
+
statusMonitor: 'StatusMonitor',
|
|
45454
45525
|
streamingMode: 'StreamingMode',
|
|
45455
45526
|
targetFps: 'TargetFps',
|
|
45456
45527
|
usbRedirect: 'UsbRedirect',
|
|
@@ -45495,6 +45566,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45495
45566
|
cpuRateLimit: 'number',
|
|
45496
45567
|
cpuSampleDuration: 'number',
|
|
45497
45568
|
cpuSingleRateLimit: 'number',
|
|
45569
|
+
desktopCount: 'number',
|
|
45570
|
+
desktopGroupCount: 'number',
|
|
45498
45571
|
deviceRedirects: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects },
|
|
45499
45572
|
deviceRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules },
|
|
45500
45573
|
displayMode: 'string',
|
|
@@ -45516,6 +45589,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45516
45589
|
memoryRateLimit: 'number',
|
|
45517
45590
|
memorySampleDuration: 'number',
|
|
45518
45591
|
memorySingleRateLimit: 'number',
|
|
45592
|
+
mobileRestart: 'string',
|
|
45593
|
+
mobileShutdown: 'string',
|
|
45519
45594
|
name: 'string',
|
|
45520
45595
|
netRedirect: 'string',
|
|
45521
45596
|
netRedirectRule: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsNetRedirectRule },
|
|
@@ -45538,10 +45613,12 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
45538
45613
|
recordingUserNotify: 'string',
|
|
45539
45614
|
recordingUserNotifyMessage: 'string',
|
|
45540
45615
|
remoteCoordinate: 'string',
|
|
45616
|
+
resourceGroupCount: 'number',
|
|
45541
45617
|
resourceRegionId: 'string',
|
|
45542
45618
|
scope: 'string',
|
|
45543
45619
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
45544
45620
|
smoothEnhancement: 'string',
|
|
45621
|
+
statusMonitor: 'string',
|
|
45545
45622
|
streamingMode: 'string',
|
|
45546
45623
|
targetFps: 'number',
|
|
45547
45624
|
usbRedirect: 'string',
|