@alicloud/csas20230120 1.11.0 → 1.11.1
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 +10 -0
- package/dist/client.js +23 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +33 -0
package/dist/client.d.ts
CHANGED
|
@@ -498,9 +498,13 @@ export declare class CreateWmBaseImageResponseBodyData extends $dara.Model {
|
|
|
498
498
|
});
|
|
499
499
|
}
|
|
500
500
|
export declare class CreateWmEmbedTaskRequestCsvControl extends $dara.Model {
|
|
501
|
+
embedBitsNumberInEachTime?: number;
|
|
501
502
|
embedColumn?: number;
|
|
503
|
+
embedDensity?: string;
|
|
502
504
|
embedPrecision?: number;
|
|
505
|
+
embedTimePosition?: string;
|
|
503
506
|
method?: string;
|
|
507
|
+
timeFormat?: string;
|
|
504
508
|
static names(): {
|
|
505
509
|
[key: string]: string;
|
|
506
510
|
};
|
|
@@ -656,9 +660,12 @@ export declare class CreateWmEmbedTaskResponseBodyData extends $dara.Model {
|
|
|
656
660
|
});
|
|
657
661
|
}
|
|
658
662
|
export declare class CreateWmExtractTaskRequestCsvControl extends $dara.Model {
|
|
663
|
+
embedBitsNumberInEachTime?: number;
|
|
659
664
|
embedColumn?: number;
|
|
660
665
|
embedPrecision?: number;
|
|
666
|
+
embedTimePosition?: string;
|
|
661
667
|
method?: string;
|
|
668
|
+
timeFormat?: string;
|
|
662
669
|
static names(): {
|
|
663
670
|
[key: string]: string;
|
|
664
671
|
};
|
|
@@ -1704,6 +1711,7 @@ export declare class GetUserDeviceResponseBodyDevice extends $dara.Model {
|
|
|
1704
1711
|
* Unauthorized
|
|
1705
1712
|
*/
|
|
1706
1713
|
dlpStatus?: string;
|
|
1714
|
+
edrStatus?: string;
|
|
1707
1715
|
historyUsers?: GetUserDeviceResponseBodyDeviceHistoryUsers[];
|
|
1708
1716
|
/**
|
|
1709
1717
|
* @example
|
|
@@ -4216,6 +4224,7 @@ export declare class ListUserDevicesResponseBodyDevices extends $dara.Model {
|
|
|
4216
4224
|
* Enabled
|
|
4217
4225
|
*/
|
|
4218
4226
|
dlpStatus?: string;
|
|
4227
|
+
edrStatus?: string;
|
|
4219
4228
|
/**
|
|
4220
4229
|
* @example
|
|
4221
4230
|
* win10-64bit
|
|
@@ -11267,6 +11276,7 @@ export declare class ListUserApplicationsResponse extends $dara.Model {
|
|
|
11267
11276
|
}
|
|
11268
11277
|
export declare class ListUserDevicesRequest extends $dara.Model {
|
|
11269
11278
|
appStatuses?: string[];
|
|
11279
|
+
appVersions?: string[];
|
|
11270
11280
|
/**
|
|
11271
11281
|
* @remarks
|
|
11272
11282
|
* This parameter is required.
|
package/dist/client.js
CHANGED
|
@@ -575,16 +575,24 @@ exports.CreateWmBaseImageResponseBodyData = CreateWmBaseImageResponseBodyData;
|
|
|
575
575
|
class CreateWmEmbedTaskRequestCsvControl extends $dara.Model {
|
|
576
576
|
static names() {
|
|
577
577
|
return {
|
|
578
|
+
embedBitsNumberInEachTime: 'EmbedBitsNumberInEachTime',
|
|
578
579
|
embedColumn: 'EmbedColumn',
|
|
580
|
+
embedDensity: 'EmbedDensity',
|
|
579
581
|
embedPrecision: 'EmbedPrecision',
|
|
582
|
+
embedTimePosition: 'EmbedTimePosition',
|
|
580
583
|
method: 'Method',
|
|
584
|
+
timeFormat: 'TimeFormat',
|
|
581
585
|
};
|
|
582
586
|
}
|
|
583
587
|
static types() {
|
|
584
588
|
return {
|
|
589
|
+
embedBitsNumberInEachTime: 'number',
|
|
585
590
|
embedColumn: 'number',
|
|
591
|
+
embedDensity: 'string',
|
|
586
592
|
embedPrecision: 'number',
|
|
593
|
+
embedTimePosition: 'string',
|
|
587
594
|
method: 'string',
|
|
595
|
+
timeFormat: 'string',
|
|
588
596
|
};
|
|
589
597
|
}
|
|
590
598
|
validate() {
|
|
@@ -730,16 +738,22 @@ exports.CreateWmEmbedTaskResponseBodyData = CreateWmEmbedTaskResponseBodyData;
|
|
|
730
738
|
class CreateWmExtractTaskRequestCsvControl extends $dara.Model {
|
|
731
739
|
static names() {
|
|
732
740
|
return {
|
|
741
|
+
embedBitsNumberInEachTime: 'EmbedBitsNumberInEachTime',
|
|
733
742
|
embedColumn: 'EmbedColumn',
|
|
734
743
|
embedPrecision: 'EmbedPrecision',
|
|
744
|
+
embedTimePosition: 'EmbedTimePosition',
|
|
735
745
|
method: 'Method',
|
|
746
|
+
timeFormat: 'TimeFormat',
|
|
736
747
|
};
|
|
737
748
|
}
|
|
738
749
|
static types() {
|
|
739
750
|
return {
|
|
751
|
+
embedBitsNumberInEachTime: 'number',
|
|
740
752
|
embedColumn: 'number',
|
|
741
753
|
embedPrecision: 'number',
|
|
754
|
+
embedTimePosition: 'string',
|
|
742
755
|
method: 'string',
|
|
756
|
+
timeFormat: 'string',
|
|
743
757
|
};
|
|
744
758
|
}
|
|
745
759
|
validate() {
|
|
@@ -1766,6 +1780,7 @@ class GetUserDeviceResponseBodyDevice extends $dara.Model {
|
|
|
1766
1780
|
deviceVersion: 'DeviceVersion',
|
|
1767
1781
|
disk: 'Disk',
|
|
1768
1782
|
dlpStatus: 'DlpStatus',
|
|
1783
|
+
edrStatus: 'EdrStatus',
|
|
1769
1784
|
historyUsers: 'HistoryUsers',
|
|
1770
1785
|
hostname: 'Hostname',
|
|
1771
1786
|
iaStatus: 'IaStatus',
|
|
@@ -1797,6 +1812,7 @@ class GetUserDeviceResponseBodyDevice extends $dara.Model {
|
|
|
1797
1812
|
deviceVersion: 'string',
|
|
1798
1813
|
disk: 'string',
|
|
1799
1814
|
dlpStatus: 'string',
|
|
1815
|
+
edrStatus: 'string',
|
|
1800
1816
|
historyUsers: { 'type': 'array', 'itemType': GetUserDeviceResponseBodyDeviceHistoryUsers },
|
|
1801
1817
|
hostname: 'string',
|
|
1802
1818
|
iaStatus: 'string',
|
|
@@ -4130,6 +4146,7 @@ class ListUserDevicesResponseBodyDevices extends $dara.Model {
|
|
|
4130
4146
|
deviceVersion: 'DeviceVersion',
|
|
4131
4147
|
disk: 'Disk',
|
|
4132
4148
|
dlpStatus: 'DlpStatus',
|
|
4149
|
+
edrStatus: 'EdrStatus',
|
|
4133
4150
|
hostname: 'Hostname',
|
|
4134
4151
|
iaStatus: 'IaStatus',
|
|
4135
4152
|
innerIP: 'InnerIP',
|
|
@@ -4160,6 +4177,7 @@ class ListUserDevicesResponseBodyDevices extends $dara.Model {
|
|
|
4160
4177
|
deviceVersion: 'string',
|
|
4161
4178
|
disk: 'string',
|
|
4162
4179
|
dlpStatus: 'string',
|
|
4180
|
+
edrStatus: 'string',
|
|
4163
4181
|
hostname: 'string',
|
|
4164
4182
|
iaStatus: 'string',
|
|
4165
4183
|
innerIP: 'string',
|
|
@@ -11759,6 +11777,7 @@ class ListUserDevicesRequest extends $dara.Model {
|
|
|
11759
11777
|
static names() {
|
|
11760
11778
|
return {
|
|
11761
11779
|
appStatuses: 'AppStatuses',
|
|
11780
|
+
appVersions: 'AppVersions',
|
|
11762
11781
|
currentPage: 'CurrentPage',
|
|
11763
11782
|
department: 'Department',
|
|
11764
11783
|
deviceBelong: 'DeviceBelong',
|
|
@@ -11782,6 +11801,7 @@ class ListUserDevicesRequest extends $dara.Model {
|
|
|
11782
11801
|
static types() {
|
|
11783
11802
|
return {
|
|
11784
11803
|
appStatuses: { 'type': 'array', 'itemType': 'string' },
|
|
11804
|
+
appVersions: { 'type': 'array', 'itemType': 'string' },
|
|
11785
11805
|
currentPage: 'number',
|
|
11786
11806
|
department: 'string',
|
|
11787
11807
|
deviceBelong: 'string',
|
|
@@ -11806,6 +11826,9 @@ class ListUserDevicesRequest extends $dara.Model {
|
|
|
11806
11826
|
if (Array.isArray(this.appStatuses)) {
|
|
11807
11827
|
$dara.Model.validateArray(this.appStatuses);
|
|
11808
11828
|
}
|
|
11829
|
+
if (Array.isArray(this.appVersions)) {
|
|
11830
|
+
$dara.Model.validateArray(this.appVersions);
|
|
11831
|
+
}
|
|
11809
11832
|
if (Array.isArray(this.deviceStatuses)) {
|
|
11810
11833
|
$dara.Model.validateArray(this.deviceStatuses);
|
|
11811
11834
|
}
|