@alicloud/ecd20200930 4.0.0 → 4.0.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 +101 -0
- package/dist/client.js +179 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +229 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3632,6 +3632,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3632
3632
|
cameraRedirect?: string;
|
|
3633
3633
|
clientType?: CreatePolicyGroupRequestClientType[];
|
|
3634
3634
|
clipboard?: string;
|
|
3635
|
+
deviceRedirects?: CreatePolicyGroupRequestDeviceRedirects[];
|
|
3636
|
+
deviceRules?: CreatePolicyGroupRequestDeviceRules[];
|
|
3635
3637
|
domainList?: string;
|
|
3636
3638
|
domainResolveRule?: CreatePolicyGroupRequestDomainResolveRule[];
|
|
3637
3639
|
domainResolveRuleType?: string;
|
|
@@ -3688,6 +3690,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3688
3690
|
cameraRedirect: 'CameraRedirect',
|
|
3689
3691
|
clientType: 'ClientType',
|
|
3690
3692
|
clipboard: 'Clipboard',
|
|
3693
|
+
deviceRedirects: 'DeviceRedirects',
|
|
3694
|
+
deviceRules: 'DeviceRules',
|
|
3691
3695
|
domainList: 'DomainList',
|
|
3692
3696
|
domainResolveRule: 'DomainResolveRule',
|
|
3693
3697
|
domainResolveRuleType: 'DomainResolveRuleType',
|
|
@@ -3747,6 +3751,8 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
3747
3751
|
cameraRedirect: 'string',
|
|
3748
3752
|
clientType: { 'type': 'array', 'itemType': CreatePolicyGroupRequestClientType },
|
|
3749
3753
|
clipboard: 'string',
|
|
3754
|
+
deviceRedirects: { 'type': 'array', 'itemType': CreatePolicyGroupRequestDeviceRedirects },
|
|
3755
|
+
deviceRules: { 'type': 'array', 'itemType': CreatePolicyGroupRequestDeviceRules },
|
|
3750
3756
|
domainList: 'string',
|
|
3751
3757
|
domainResolveRule: { 'type': 'array', 'itemType': CreatePolicyGroupRequestDomainResolveRule },
|
|
3752
3758
|
domainResolveRuleType: 'string',
|
|
@@ -5454,6 +5460,7 @@ export class DescribeBundlesRequest extends $tea.Model {
|
|
|
5454
5460
|
fotaChannel?: string;
|
|
5455
5461
|
fromDesktopGroup?: boolean;
|
|
5456
5462
|
gpuCount?: number;
|
|
5463
|
+
gpuDriverType?: string;
|
|
5457
5464
|
imageId?: string[];
|
|
5458
5465
|
maxResults?: number;
|
|
5459
5466
|
memorySize?: number;
|
|
@@ -5476,6 +5483,7 @@ export class DescribeBundlesRequest extends $tea.Model {
|
|
|
5476
5483
|
fotaChannel: 'FotaChannel',
|
|
5477
5484
|
fromDesktopGroup: 'FromDesktopGroup',
|
|
5478
5485
|
gpuCount: 'GpuCount',
|
|
5486
|
+
gpuDriverType: 'GpuDriverType',
|
|
5479
5487
|
imageId: 'ImageId',
|
|
5480
5488
|
maxResults: 'MaxResults',
|
|
5481
5489
|
memorySize: 'MemorySize',
|
|
@@ -5501,6 +5509,7 @@ export class DescribeBundlesRequest extends $tea.Model {
|
|
|
5501
5509
|
fotaChannel: 'string',
|
|
5502
5510
|
fromDesktopGroup: 'boolean',
|
|
5503
5511
|
gpuCount: 'number',
|
|
5512
|
+
gpuDriverType: 'string',
|
|
5504
5513
|
imageId: { 'type': 'array', 'itemType': 'string' },
|
|
5505
5514
|
maxResults: 'number',
|
|
5506
5515
|
memorySize: 'number',
|
|
@@ -6823,6 +6832,7 @@ export class DescribeDesktopTypesRequest extends $tea.Model {
|
|
|
6823
6832
|
desktopIdForModify?: string;
|
|
6824
6833
|
desktopTypeId?: string;
|
|
6825
6834
|
gpuCount?: number;
|
|
6835
|
+
gpuDriverType?: string;
|
|
6826
6836
|
instanceTypeFamily?: string;
|
|
6827
6837
|
memorySize?: number;
|
|
6828
6838
|
orderType?: string;
|
|
@@ -6835,6 +6845,7 @@ export class DescribeDesktopTypesRequest extends $tea.Model {
|
|
|
6835
6845
|
desktopIdForModify: 'DesktopIdForModify',
|
|
6836
6846
|
desktopTypeId: 'DesktopTypeId',
|
|
6837
6847
|
gpuCount: 'GpuCount',
|
|
6848
|
+
gpuDriverType: 'GpuDriverType',
|
|
6838
6849
|
instanceTypeFamily: 'InstanceTypeFamily',
|
|
6839
6850
|
memorySize: 'MemorySize',
|
|
6840
6851
|
orderType: 'OrderType',
|
|
@@ -6850,6 +6861,7 @@ export class DescribeDesktopTypesRequest extends $tea.Model {
|
|
|
6850
6861
|
desktopIdForModify: 'string',
|
|
6851
6862
|
desktopTypeId: 'string',
|
|
6852
6863
|
gpuCount: 'number',
|
|
6864
|
+
gpuDriverType: 'string',
|
|
6853
6865
|
instanceTypeFamily: 'string',
|
|
6854
6866
|
memorySize: 'number',
|
|
6855
6867
|
orderType: 'string',
|
|
@@ -8394,6 +8406,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
|
|
|
8394
8406
|
officeSiteId?: string[];
|
|
8395
8407
|
officeSiteType?: string;
|
|
8396
8408
|
regionId?: string;
|
|
8409
|
+
securityProtection?: string;
|
|
8397
8410
|
status?: string;
|
|
8398
8411
|
static names(): { [key: string]: string } {
|
|
8399
8412
|
return {
|
|
@@ -8402,6 +8415,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
|
|
|
8402
8415
|
officeSiteId: 'OfficeSiteId',
|
|
8403
8416
|
officeSiteType: 'OfficeSiteType',
|
|
8404
8417
|
regionId: 'RegionId',
|
|
8418
|
+
securityProtection: 'SecurityProtection',
|
|
8405
8419
|
status: 'Status',
|
|
8406
8420
|
};
|
|
8407
8421
|
}
|
|
@@ -8413,6 +8427,7 @@ export class DescribeOfficeSitesRequest extends $tea.Model {
|
|
|
8413
8427
|
officeSiteId: { 'type': 'array', 'itemType': 'string' },
|
|
8414
8428
|
officeSiteType: 'string',
|
|
8415
8429
|
regionId: 'string',
|
|
8430
|
+
securityProtection: 'string',
|
|
8416
8431
|
status: 'string',
|
|
8417
8432
|
};
|
|
8418
8433
|
}
|
|
@@ -8426,11 +8441,13 @@ export class DescribeOfficeSitesResponseBody extends $tea.Model {
|
|
|
8426
8441
|
nextToken?: string;
|
|
8427
8442
|
officeSites?: DescribeOfficeSitesResponseBodyOfficeSites[];
|
|
8428
8443
|
requestId?: string;
|
|
8444
|
+
totalCount?: number;
|
|
8429
8445
|
static names(): { [key: string]: string } {
|
|
8430
8446
|
return {
|
|
8431
8447
|
nextToken: 'NextToken',
|
|
8432
8448
|
officeSites: 'OfficeSites',
|
|
8433
8449
|
requestId: 'RequestId',
|
|
8450
|
+
totalCount: 'TotalCount',
|
|
8434
8451
|
};
|
|
8435
8452
|
}
|
|
8436
8453
|
|
|
@@ -8439,6 +8456,7 @@ export class DescribeOfficeSitesResponseBody extends $tea.Model {
|
|
|
8439
8456
|
nextToken: 'string',
|
|
8440
8457
|
officeSites: { 'type': 'array', 'itemType': DescribeOfficeSitesResponseBodyOfficeSites },
|
|
8441
8458
|
requestId: 'string',
|
|
8459
|
+
totalCount: 'number',
|
|
8442
8460
|
};
|
|
8443
8461
|
}
|
|
8444
8462
|
|
|
@@ -14469,6 +14487,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14469
14487
|
cameraRedirect?: string;
|
|
14470
14488
|
clientType?: ModifyPolicyGroupRequestClientType[];
|
|
14471
14489
|
clipboard?: string;
|
|
14490
|
+
deviceRedirects?: ModifyPolicyGroupRequestDeviceRedirects[];
|
|
14491
|
+
deviceRules?: ModifyPolicyGroupRequestDeviceRules[];
|
|
14472
14492
|
domainList?: string;
|
|
14473
14493
|
domainResolveRule?: ModifyPolicyGroupRequestDomainResolveRule[];
|
|
14474
14494
|
domainResolveRuleType?: string;
|
|
@@ -14528,6 +14548,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14528
14548
|
cameraRedirect: 'CameraRedirect',
|
|
14529
14549
|
clientType: 'ClientType',
|
|
14530
14550
|
clipboard: 'Clipboard',
|
|
14551
|
+
deviceRedirects: 'DeviceRedirects',
|
|
14552
|
+
deviceRules: 'DeviceRules',
|
|
14531
14553
|
domainList: 'DomainList',
|
|
14532
14554
|
domainResolveRule: 'DomainResolveRule',
|
|
14533
14555
|
domainResolveRuleType: 'DomainResolveRuleType',
|
|
@@ -14590,6 +14612,8 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
14590
14612
|
cameraRedirect: 'string',
|
|
14591
14613
|
clientType: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestClientType },
|
|
14592
14614
|
clipboard: 'string',
|
|
14615
|
+
deviceRedirects: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestDeviceRedirects },
|
|
14616
|
+
deviceRules: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestDeviceRules },
|
|
14593
14617
|
domainList: 'string',
|
|
14594
14618
|
domainResolveRule: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestDomainResolveRule },
|
|
14595
14619
|
domainResolveRuleType: 'string',
|
|
@@ -18017,6 +18041,62 @@ export class CreatePolicyGroupRequestClientType extends $tea.Model {
|
|
|
18017
18041
|
}
|
|
18018
18042
|
}
|
|
18019
18043
|
|
|
18044
|
+
export class CreatePolicyGroupRequestDeviceRedirects extends $tea.Model {
|
|
18045
|
+
deviceType?: string;
|
|
18046
|
+
redirectType?: string;
|
|
18047
|
+
static names(): { [key: string]: string } {
|
|
18048
|
+
return {
|
|
18049
|
+
deviceType: 'DeviceType',
|
|
18050
|
+
redirectType: 'RedirectType',
|
|
18051
|
+
};
|
|
18052
|
+
}
|
|
18053
|
+
|
|
18054
|
+
static types(): { [key: string]: any } {
|
|
18055
|
+
return {
|
|
18056
|
+
deviceType: 'string',
|
|
18057
|
+
redirectType: 'string',
|
|
18058
|
+
};
|
|
18059
|
+
}
|
|
18060
|
+
|
|
18061
|
+
constructor(map?: { [key: string]: any }) {
|
|
18062
|
+
super(map);
|
|
18063
|
+
}
|
|
18064
|
+
}
|
|
18065
|
+
|
|
18066
|
+
export class CreatePolicyGroupRequestDeviceRules extends $tea.Model {
|
|
18067
|
+
deviceName?: string;
|
|
18068
|
+
devicePid?: string;
|
|
18069
|
+
deviceType?: string;
|
|
18070
|
+
deviceVid?: string;
|
|
18071
|
+
optCommand?: string;
|
|
18072
|
+
redirectType?: string;
|
|
18073
|
+
static names(): { [key: string]: string } {
|
|
18074
|
+
return {
|
|
18075
|
+
deviceName: 'DeviceName',
|
|
18076
|
+
devicePid: 'DevicePid',
|
|
18077
|
+
deviceType: 'DeviceType',
|
|
18078
|
+
deviceVid: 'DeviceVid',
|
|
18079
|
+
optCommand: 'OptCommand',
|
|
18080
|
+
redirectType: 'RedirectType',
|
|
18081
|
+
};
|
|
18082
|
+
}
|
|
18083
|
+
|
|
18084
|
+
static types(): { [key: string]: any } {
|
|
18085
|
+
return {
|
|
18086
|
+
deviceName: 'string',
|
|
18087
|
+
devicePid: 'string',
|
|
18088
|
+
deviceType: 'string',
|
|
18089
|
+
deviceVid: 'string',
|
|
18090
|
+
optCommand: 'string',
|
|
18091
|
+
redirectType: 'string',
|
|
18092
|
+
};
|
|
18093
|
+
}
|
|
18094
|
+
|
|
18095
|
+
constructor(map?: { [key: string]: any }) {
|
|
18096
|
+
super(map);
|
|
18097
|
+
}
|
|
18098
|
+
}
|
|
18099
|
+
|
|
18020
18100
|
export class CreatePolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
18021
18101
|
description?: string;
|
|
18022
18102
|
domain?: string;
|
|
@@ -20635,6 +20715,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
|
|
|
20635
20715
|
rdsLicenseAddress?: string;
|
|
20636
20716
|
rdsLicenseDomainName?: string;
|
|
20637
20717
|
rdsLicenseStatus?: string;
|
|
20718
|
+
securityProtection?: string;
|
|
20638
20719
|
ssoEnabled?: boolean;
|
|
20639
20720
|
ssoType?: string;
|
|
20640
20721
|
status?: string;
|
|
@@ -20686,6 +20767,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
|
|
|
20686
20767
|
rdsLicenseAddress: 'RdsLicenseAddress',
|
|
20687
20768
|
rdsLicenseDomainName: 'RdsLicenseDomainName',
|
|
20688
20769
|
rdsLicenseStatus: 'RdsLicenseStatus',
|
|
20770
|
+
securityProtection: 'SecurityProtection',
|
|
20689
20771
|
ssoEnabled: 'SsoEnabled',
|
|
20690
20772
|
ssoType: 'SsoType',
|
|
20691
20773
|
status: 'Status',
|
|
@@ -20740,6 +20822,7 @@ export class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Model {
|
|
|
20740
20822
|
rdsLicenseAddress: 'string',
|
|
20741
20823
|
rdsLicenseDomainName: 'string',
|
|
20742
20824
|
rdsLicenseStatus: 'string',
|
|
20825
|
+
securityProtection: 'string',
|
|
20743
20826
|
ssoEnabled: 'boolean',
|
|
20744
20827
|
ssoType: 'string',
|
|
20745
20828
|
status: 'string',
|
|
@@ -20841,6 +20924,62 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsClientTypes ext
|
|
|
20841
20924
|
}
|
|
20842
20925
|
}
|
|
20843
20926
|
|
|
20927
|
+
export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects extends $tea.Model {
|
|
20928
|
+
deviceType?: string;
|
|
20929
|
+
redirectType?: string;
|
|
20930
|
+
static names(): { [key: string]: string } {
|
|
20931
|
+
return {
|
|
20932
|
+
deviceType: 'DeviceType',
|
|
20933
|
+
redirectType: 'RedirectType',
|
|
20934
|
+
};
|
|
20935
|
+
}
|
|
20936
|
+
|
|
20937
|
+
static types(): { [key: string]: any } {
|
|
20938
|
+
return {
|
|
20939
|
+
deviceType: 'string',
|
|
20940
|
+
redirectType: 'string',
|
|
20941
|
+
};
|
|
20942
|
+
}
|
|
20943
|
+
|
|
20944
|
+
constructor(map?: { [key: string]: any }) {
|
|
20945
|
+
super(map);
|
|
20946
|
+
}
|
|
20947
|
+
}
|
|
20948
|
+
|
|
20949
|
+
export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules extends $tea.Model {
|
|
20950
|
+
deviceName?: string;
|
|
20951
|
+
devicePid?: string;
|
|
20952
|
+
deviceType?: string;
|
|
20953
|
+
deviceVid?: string;
|
|
20954
|
+
optCommand?: string;
|
|
20955
|
+
redirectType?: string;
|
|
20956
|
+
static names(): { [key: string]: string } {
|
|
20957
|
+
return {
|
|
20958
|
+
deviceName: 'DeviceName',
|
|
20959
|
+
devicePid: 'DevicePid',
|
|
20960
|
+
deviceType: 'DeviceType',
|
|
20961
|
+
deviceVid: 'DeviceVid',
|
|
20962
|
+
optCommand: 'OptCommand',
|
|
20963
|
+
redirectType: 'RedirectType',
|
|
20964
|
+
};
|
|
20965
|
+
}
|
|
20966
|
+
|
|
20967
|
+
static types(): { [key: string]: any } {
|
|
20968
|
+
return {
|
|
20969
|
+
deviceName: 'string',
|
|
20970
|
+
devicePid: 'string',
|
|
20971
|
+
deviceType: 'string',
|
|
20972
|
+
deviceVid: 'string',
|
|
20973
|
+
optCommand: 'string',
|
|
20974
|
+
redirectType: 'string',
|
|
20975
|
+
};
|
|
20976
|
+
}
|
|
20977
|
+
|
|
20978
|
+
constructor(map?: { [key: string]: any }) {
|
|
20979
|
+
super(map);
|
|
20980
|
+
}
|
|
20981
|
+
}
|
|
20982
|
+
|
|
20844
20983
|
export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule extends $tea.Model {
|
|
20845
20984
|
description?: string;
|
|
20846
20985
|
domain?: string;
|
|
@@ -20943,6 +21082,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
20943
21082
|
cpuRateLimit?: number;
|
|
20944
21083
|
cpuSampleDuration?: number;
|
|
20945
21084
|
cpuSingleRateLimit?: number;
|
|
21085
|
+
deviceRedirects?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
21086
|
+
deviceRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
20946
21087
|
displayMode?: string;
|
|
20947
21088
|
domainList?: string;
|
|
20948
21089
|
domainResolveRule?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
@@ -21027,6 +21168,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
21027
21168
|
cpuRateLimit: 'CpuRateLimit',
|
|
21028
21169
|
cpuSampleDuration: 'CpuSampleDuration',
|
|
21029
21170
|
cpuSingleRateLimit: 'CpuSingleRateLimit',
|
|
21171
|
+
deviceRedirects: 'DeviceRedirects',
|
|
21172
|
+
deviceRules: 'DeviceRules',
|
|
21030
21173
|
displayMode: 'DisplayMode',
|
|
21031
21174
|
domainList: 'DomainList',
|
|
21032
21175
|
domainResolveRule: 'DomainResolveRule',
|
|
@@ -21114,6 +21257,8 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
21114
21257
|
cpuRateLimit: 'number',
|
|
21115
21258
|
cpuSampleDuration: 'number',
|
|
21116
21259
|
cpuSingleRateLimit: 'number',
|
|
21260
|
+
deviceRedirects: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects },
|
|
21261
|
+
deviceRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules },
|
|
21117
21262
|
displayMode: 'string',
|
|
21118
21263
|
domainList: 'string',
|
|
21119
21264
|
domainResolveRule: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule },
|
|
@@ -22803,6 +22948,62 @@ export class ModifyPolicyGroupRequestClientType extends $tea.Model {
|
|
|
22803
22948
|
}
|
|
22804
22949
|
}
|
|
22805
22950
|
|
|
22951
|
+
export class ModifyPolicyGroupRequestDeviceRedirects extends $tea.Model {
|
|
22952
|
+
deviceType?: string;
|
|
22953
|
+
redirectType?: string;
|
|
22954
|
+
static names(): { [key: string]: string } {
|
|
22955
|
+
return {
|
|
22956
|
+
deviceType: 'DeviceType',
|
|
22957
|
+
redirectType: 'RedirectType',
|
|
22958
|
+
};
|
|
22959
|
+
}
|
|
22960
|
+
|
|
22961
|
+
static types(): { [key: string]: any } {
|
|
22962
|
+
return {
|
|
22963
|
+
deviceType: 'string',
|
|
22964
|
+
redirectType: 'string',
|
|
22965
|
+
};
|
|
22966
|
+
}
|
|
22967
|
+
|
|
22968
|
+
constructor(map?: { [key: string]: any }) {
|
|
22969
|
+
super(map);
|
|
22970
|
+
}
|
|
22971
|
+
}
|
|
22972
|
+
|
|
22973
|
+
export class ModifyPolicyGroupRequestDeviceRules extends $tea.Model {
|
|
22974
|
+
deviceName?: string;
|
|
22975
|
+
devicePid?: string;
|
|
22976
|
+
deviceType?: string;
|
|
22977
|
+
deviceVid?: string;
|
|
22978
|
+
optCommand?: string;
|
|
22979
|
+
redirectType?: string;
|
|
22980
|
+
static names(): { [key: string]: string } {
|
|
22981
|
+
return {
|
|
22982
|
+
deviceName: 'DeviceName',
|
|
22983
|
+
devicePid: 'DevicePid',
|
|
22984
|
+
deviceType: 'DeviceType',
|
|
22985
|
+
deviceVid: 'DeviceVid',
|
|
22986
|
+
optCommand: 'OptCommand',
|
|
22987
|
+
redirectType: 'RedirectType',
|
|
22988
|
+
};
|
|
22989
|
+
}
|
|
22990
|
+
|
|
22991
|
+
static types(): { [key: string]: any } {
|
|
22992
|
+
return {
|
|
22993
|
+
deviceName: 'string',
|
|
22994
|
+
devicePid: 'string',
|
|
22995
|
+
deviceType: 'string',
|
|
22996
|
+
deviceVid: 'string',
|
|
22997
|
+
optCommand: 'string',
|
|
22998
|
+
redirectType: 'string',
|
|
22999
|
+
};
|
|
23000
|
+
}
|
|
23001
|
+
|
|
23002
|
+
constructor(map?: { [key: string]: any }) {
|
|
23003
|
+
super(map);
|
|
23004
|
+
}
|
|
23005
|
+
}
|
|
23006
|
+
|
|
22806
23007
|
export class ModifyPolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
22807
23008
|
description?: string;
|
|
22808
23009
|
domain?: string;
|
|
@@ -26072,6 +26273,14 @@ export default class Client extends OpenApi {
|
|
|
26072
26273
|
query["Clipboard"] = request.clipboard;
|
|
26073
26274
|
}
|
|
26074
26275
|
|
|
26276
|
+
if (!Util.isUnset(request.deviceRedirects)) {
|
|
26277
|
+
query["DeviceRedirects"] = request.deviceRedirects;
|
|
26278
|
+
}
|
|
26279
|
+
|
|
26280
|
+
if (!Util.isUnset(request.deviceRules)) {
|
|
26281
|
+
query["DeviceRules"] = request.deviceRules;
|
|
26282
|
+
}
|
|
26283
|
+
|
|
26075
26284
|
if (!Util.isUnset(request.domainList)) {
|
|
26076
26285
|
query["DomainList"] = request.domainList;
|
|
26077
26286
|
}
|
|
@@ -27534,6 +27743,10 @@ export default class Client extends OpenApi {
|
|
|
27534
27743
|
query["GpuCount"] = request.gpuCount;
|
|
27535
27744
|
}
|
|
27536
27745
|
|
|
27746
|
+
if (!Util.isUnset(request.gpuDriverType)) {
|
|
27747
|
+
query["GpuDriverType"] = request.gpuDriverType;
|
|
27748
|
+
}
|
|
27749
|
+
|
|
27537
27750
|
if (!Util.isUnset(request.imageId)) {
|
|
27538
27751
|
query["ImageId"] = request.imageId;
|
|
27539
27752
|
}
|
|
@@ -28578,6 +28791,10 @@ export default class Client extends OpenApi {
|
|
|
28578
28791
|
query["GpuCount"] = request.gpuCount;
|
|
28579
28792
|
}
|
|
28580
28793
|
|
|
28794
|
+
if (!Util.isUnset(request.gpuDriverType)) {
|
|
28795
|
+
query["GpuDriverType"] = request.gpuDriverType;
|
|
28796
|
+
}
|
|
28797
|
+
|
|
28581
28798
|
if (!Util.isUnset(request.instanceTypeFamily)) {
|
|
28582
28799
|
query["InstanceTypeFamily"] = request.instanceTypeFamily;
|
|
28583
28800
|
}
|
|
@@ -29756,6 +29973,10 @@ export default class Client extends OpenApi {
|
|
|
29756
29973
|
query["RegionId"] = request.regionId;
|
|
29757
29974
|
}
|
|
29758
29975
|
|
|
29976
|
+
if (!Util.isUnset(request.securityProtection)) {
|
|
29977
|
+
query["SecurityProtection"] = request.securityProtection;
|
|
29978
|
+
}
|
|
29979
|
+
|
|
29759
29980
|
if (!Util.isUnset(request.status)) {
|
|
29760
29981
|
query["Status"] = request.status;
|
|
29761
29982
|
}
|
|
@@ -34594,6 +34815,14 @@ export default class Client extends OpenApi {
|
|
|
34594
34815
|
query["Clipboard"] = request.clipboard;
|
|
34595
34816
|
}
|
|
34596
34817
|
|
|
34818
|
+
if (!Util.isUnset(request.deviceRedirects)) {
|
|
34819
|
+
query["DeviceRedirects"] = request.deviceRedirects;
|
|
34820
|
+
}
|
|
34821
|
+
|
|
34822
|
+
if (!Util.isUnset(request.deviceRules)) {
|
|
34823
|
+
query["DeviceRules"] = request.deviceRules;
|
|
34824
|
+
}
|
|
34825
|
+
|
|
34597
34826
|
if (!Util.isUnset(request.domainList)) {
|
|
34598
34827
|
query["DomainList"] = request.domainList;
|
|
34599
34828
|
}
|