@alicloud/ecd20200930 4.0.1 → 4.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 +178 -0
- package/dist/client.js +320 -9
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +395 -0
package/dist/client.d.ts
CHANGED
|
@@ -1981,6 +1981,8 @@ export declare class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1981
1981
|
cameraRedirect?: string;
|
|
1982
1982
|
clientType?: CreatePolicyGroupRequestClientType[];
|
|
1983
1983
|
clipboard?: string;
|
|
1984
|
+
deviceRedirects?: CreatePolicyGroupRequestDeviceRedirects[];
|
|
1985
|
+
deviceRules?: CreatePolicyGroupRequestDeviceRules[];
|
|
1984
1986
|
domainList?: string;
|
|
1985
1987
|
domainResolveRule?: CreatePolicyGroupRequestDomainResolveRule[];
|
|
1986
1988
|
domainResolveRuleType?: string;
|
|
@@ -3026,6 +3028,7 @@ export declare class DescribeBundlesRequest extends $tea.Model {
|
|
|
3026
3028
|
fotaChannel?: string;
|
|
3027
3029
|
fromDesktopGroup?: boolean;
|
|
3028
3030
|
gpuCount?: number;
|
|
3031
|
+
gpuDriverType?: string;
|
|
3029
3032
|
imageId?: string[];
|
|
3030
3033
|
maxResults?: number;
|
|
3031
3034
|
memorySize?: number;
|
|
@@ -3766,6 +3769,7 @@ export declare class DescribeDesktopTypesRequest extends $tea.Model {
|
|
|
3766
3769
|
desktopIdForModify?: string;
|
|
3767
3770
|
desktopTypeId?: string;
|
|
3768
3771
|
gpuCount?: number;
|
|
3772
|
+
gpuDriverType?: string;
|
|
3769
3773
|
instanceTypeFamily?: string;
|
|
3770
3774
|
memorySize?: number;
|
|
3771
3775
|
orderType?: string;
|
|
@@ -5640,6 +5644,53 @@ export declare class DissociateNetworkPackageResponse extends $tea.Model {
|
|
|
5640
5644
|
[key: string]: any;
|
|
5641
5645
|
});
|
|
5642
5646
|
}
|
|
5647
|
+
export declare class DownloadCdsFileRequest extends $tea.Model {
|
|
5648
|
+
cdsId?: string;
|
|
5649
|
+
endUserId?: string;
|
|
5650
|
+
fileId?: string;
|
|
5651
|
+
groupId?: string;
|
|
5652
|
+
regionId?: string;
|
|
5653
|
+
static names(): {
|
|
5654
|
+
[key: string]: string;
|
|
5655
|
+
};
|
|
5656
|
+
static types(): {
|
|
5657
|
+
[key: string]: any;
|
|
5658
|
+
};
|
|
5659
|
+
constructor(map?: {
|
|
5660
|
+
[key: string]: any;
|
|
5661
|
+
});
|
|
5662
|
+
}
|
|
5663
|
+
export declare class DownloadCdsFileResponseBody extends $tea.Model {
|
|
5664
|
+
downloadFileModel?: DownloadCdsFileResponseBodyDownloadFileModel;
|
|
5665
|
+
message?: string;
|
|
5666
|
+
requestId?: string;
|
|
5667
|
+
success?: boolean;
|
|
5668
|
+
static names(): {
|
|
5669
|
+
[key: string]: string;
|
|
5670
|
+
};
|
|
5671
|
+
static types(): {
|
|
5672
|
+
[key: string]: any;
|
|
5673
|
+
};
|
|
5674
|
+
constructor(map?: {
|
|
5675
|
+
[key: string]: any;
|
|
5676
|
+
});
|
|
5677
|
+
}
|
|
5678
|
+
export declare class DownloadCdsFileResponse extends $tea.Model {
|
|
5679
|
+
headers?: {
|
|
5680
|
+
[key: string]: string;
|
|
5681
|
+
};
|
|
5682
|
+
statusCode?: number;
|
|
5683
|
+
body?: DownloadCdsFileResponseBody;
|
|
5684
|
+
static names(): {
|
|
5685
|
+
[key: string]: string;
|
|
5686
|
+
};
|
|
5687
|
+
static types(): {
|
|
5688
|
+
[key: string]: any;
|
|
5689
|
+
};
|
|
5690
|
+
constructor(map?: {
|
|
5691
|
+
[key: string]: any;
|
|
5692
|
+
});
|
|
5693
|
+
}
|
|
5643
5694
|
export declare class ExportClientEventsRequest extends $tea.Model {
|
|
5644
5695
|
desktopId?: string;
|
|
5645
5696
|
desktopName?: string;
|
|
@@ -8033,6 +8084,8 @@ export declare class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
8033
8084
|
cameraRedirect?: string;
|
|
8034
8085
|
clientType?: ModifyPolicyGroupRequestClientType[];
|
|
8035
8086
|
clipboard?: string;
|
|
8087
|
+
deviceRedirects?: ModifyPolicyGroupRequestDeviceRedirects[];
|
|
8088
|
+
deviceRules?: ModifyPolicyGroupRequestDeviceRules[];
|
|
8036
8089
|
domainList?: string;
|
|
8037
8090
|
domainResolveRule?: ModifyPolicyGroupRequestDomainResolveRule[];
|
|
8038
8091
|
domainResolveRuleType?: string;
|
|
@@ -10055,6 +10108,36 @@ export declare class CreatePolicyGroupRequestClientType extends $tea.Model {
|
|
|
10055
10108
|
[key: string]: any;
|
|
10056
10109
|
});
|
|
10057
10110
|
}
|
|
10111
|
+
export declare class CreatePolicyGroupRequestDeviceRedirects extends $tea.Model {
|
|
10112
|
+
deviceType?: string;
|
|
10113
|
+
redirectType?: string;
|
|
10114
|
+
static names(): {
|
|
10115
|
+
[key: string]: string;
|
|
10116
|
+
};
|
|
10117
|
+
static types(): {
|
|
10118
|
+
[key: string]: any;
|
|
10119
|
+
};
|
|
10120
|
+
constructor(map?: {
|
|
10121
|
+
[key: string]: any;
|
|
10122
|
+
});
|
|
10123
|
+
}
|
|
10124
|
+
export declare class CreatePolicyGroupRequestDeviceRules extends $tea.Model {
|
|
10125
|
+
deviceName?: string;
|
|
10126
|
+
devicePid?: string;
|
|
10127
|
+
deviceType?: string;
|
|
10128
|
+
deviceVid?: string;
|
|
10129
|
+
optCommand?: string;
|
|
10130
|
+
redirectType?: string;
|
|
10131
|
+
static names(): {
|
|
10132
|
+
[key: string]: string;
|
|
10133
|
+
};
|
|
10134
|
+
static types(): {
|
|
10135
|
+
[key: string]: any;
|
|
10136
|
+
};
|
|
10137
|
+
constructor(map?: {
|
|
10138
|
+
[key: string]: any;
|
|
10139
|
+
});
|
|
10140
|
+
}
|
|
10058
10141
|
export declare class CreatePolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
10059
10142
|
description?: string;
|
|
10060
10143
|
domain?: string;
|
|
@@ -11343,6 +11426,36 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsClientT
|
|
|
11343
11426
|
[key: string]: any;
|
|
11344
11427
|
});
|
|
11345
11428
|
}
|
|
11429
|
+
export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects extends $tea.Model {
|
|
11430
|
+
deviceType?: string;
|
|
11431
|
+
redirectType?: string;
|
|
11432
|
+
static names(): {
|
|
11433
|
+
[key: string]: string;
|
|
11434
|
+
};
|
|
11435
|
+
static types(): {
|
|
11436
|
+
[key: string]: any;
|
|
11437
|
+
};
|
|
11438
|
+
constructor(map?: {
|
|
11439
|
+
[key: string]: any;
|
|
11440
|
+
});
|
|
11441
|
+
}
|
|
11442
|
+
export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules extends $tea.Model {
|
|
11443
|
+
deviceName?: string;
|
|
11444
|
+
devicePid?: string;
|
|
11445
|
+
deviceType?: string;
|
|
11446
|
+
deviceVid?: string;
|
|
11447
|
+
optCommand?: string;
|
|
11448
|
+
redirectType?: string;
|
|
11449
|
+
static names(): {
|
|
11450
|
+
[key: string]: string;
|
|
11451
|
+
};
|
|
11452
|
+
static types(): {
|
|
11453
|
+
[key: string]: any;
|
|
11454
|
+
};
|
|
11455
|
+
constructor(map?: {
|
|
11456
|
+
[key: string]: any;
|
|
11457
|
+
});
|
|
11458
|
+
}
|
|
11346
11459
|
export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule extends $tea.Model {
|
|
11347
11460
|
description?: string;
|
|
11348
11461
|
domain?: string;
|
|
@@ -11404,6 +11517,8 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extend
|
|
|
11404
11517
|
cpuRateLimit?: number;
|
|
11405
11518
|
cpuSampleDuration?: number;
|
|
11406
11519
|
cpuSingleRateLimit?: number;
|
|
11520
|
+
deviceRedirects?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
11521
|
+
deviceRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
11407
11522
|
displayMode?: string;
|
|
11408
11523
|
domainList?: string;
|
|
11409
11524
|
domainResolveRule?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
@@ -11902,6 +12017,24 @@ export declare class DisconnectDesktopSessionsResponseBodyInvalidSessions extend
|
|
|
11902
12017
|
[key: string]: any;
|
|
11903
12018
|
});
|
|
11904
12019
|
}
|
|
12020
|
+
export declare class DownloadCdsFileResponseBodyDownloadFileModel extends $tea.Model {
|
|
12021
|
+
downloadType?: string;
|
|
12022
|
+
downloadUrl?: string;
|
|
12023
|
+
expirationSecond?: string;
|
|
12024
|
+
expirationTime?: string;
|
|
12025
|
+
fileId?: string;
|
|
12026
|
+
size?: number;
|
|
12027
|
+
streamUrl?: string;
|
|
12028
|
+
static names(): {
|
|
12029
|
+
[key: string]: string;
|
|
12030
|
+
};
|
|
12031
|
+
static types(): {
|
|
12032
|
+
[key: string]: any;
|
|
12033
|
+
};
|
|
12034
|
+
constructor(map?: {
|
|
12035
|
+
[key: string]: any;
|
|
12036
|
+
});
|
|
12037
|
+
}
|
|
11905
12038
|
export declare class ExportDesktopGroupInfoRequestTag extends $tea.Model {
|
|
11906
12039
|
key?: string;
|
|
11907
12040
|
value?: string;
|
|
@@ -12305,6 +12438,36 @@ export declare class ModifyPolicyGroupRequestClientType extends $tea.Model {
|
|
|
12305
12438
|
[key: string]: any;
|
|
12306
12439
|
});
|
|
12307
12440
|
}
|
|
12441
|
+
export declare class ModifyPolicyGroupRequestDeviceRedirects extends $tea.Model {
|
|
12442
|
+
deviceType?: string;
|
|
12443
|
+
redirectType?: string;
|
|
12444
|
+
static names(): {
|
|
12445
|
+
[key: string]: string;
|
|
12446
|
+
};
|
|
12447
|
+
static types(): {
|
|
12448
|
+
[key: string]: any;
|
|
12449
|
+
};
|
|
12450
|
+
constructor(map?: {
|
|
12451
|
+
[key: string]: any;
|
|
12452
|
+
});
|
|
12453
|
+
}
|
|
12454
|
+
export declare class ModifyPolicyGroupRequestDeviceRules extends $tea.Model {
|
|
12455
|
+
deviceName?: string;
|
|
12456
|
+
devicePid?: string;
|
|
12457
|
+
deviceType?: string;
|
|
12458
|
+
deviceVid?: string;
|
|
12459
|
+
optCommand?: string;
|
|
12460
|
+
redirectType?: string;
|
|
12461
|
+
static names(): {
|
|
12462
|
+
[key: string]: string;
|
|
12463
|
+
};
|
|
12464
|
+
static types(): {
|
|
12465
|
+
[key: string]: any;
|
|
12466
|
+
};
|
|
12467
|
+
constructor(map?: {
|
|
12468
|
+
[key: string]: any;
|
|
12469
|
+
});
|
|
12470
|
+
}
|
|
12308
12471
|
export declare class ModifyPolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
12309
12472
|
description?: string;
|
|
12310
12473
|
domain?: string;
|
|
@@ -14438,6 +14601,21 @@ export default class Client extends OpenApi {
|
|
|
14438
14601
|
* @return DissociateNetworkPackageResponse
|
|
14439
14602
|
*/
|
|
14440
14603
|
dissociateNetworkPackage(request: DissociateNetworkPackageRequest): Promise<DissociateNetworkPackageResponse>;
|
|
14604
|
+
/**
|
|
14605
|
+
* @summary CDS文件下载
|
|
14606
|
+
*
|
|
14607
|
+
* @param request DownloadCdsFileRequest
|
|
14608
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14609
|
+
* @return DownloadCdsFileResponse
|
|
14610
|
+
*/
|
|
14611
|
+
downloadCdsFileWithOptions(request: DownloadCdsFileRequest, runtime: $Util.RuntimeOptions): Promise<DownloadCdsFileResponse>;
|
|
14612
|
+
/**
|
|
14613
|
+
* @summary CDS文件下载
|
|
14614
|
+
*
|
|
14615
|
+
* @param request DownloadCdsFileRequest
|
|
14616
|
+
* @return DownloadCdsFileResponse
|
|
14617
|
+
*/
|
|
14618
|
+
downloadCdsFile(request: DownloadCdsFileRequest): Promise<DownloadCdsFileResponse>;
|
|
14441
14619
|
/**
|
|
14442
14620
|
* @summary Exports events that occur on a cloud desktop from an Alibaba Cloud Workspace client.
|
|
14443
14621
|
*
|