@alicloud/ecd20200930 4.9.0 → 4.10.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.
Files changed (49) hide show
  1. package/dist/client.d.ts +51 -0
  2. package/dist/client.js +162 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateCloudDriveGroupRequest.d.ts +58 -0
  5. package/dist/models/CreateCloudDriveGroupRequest.js +69 -0
  6. package/dist/models/CreateCloudDriveGroupRequest.js.map +1 -0
  7. package/dist/models/CreateCloudDriveGroupResponse.d.ts +19 -0
  8. package/dist/models/CreateCloudDriveGroupResponse.js +69 -0
  9. package/dist/models/CreateCloudDriveGroupResponse.js.map +1 -0
  10. package/dist/models/CreateCloudDriveGroupResponseBody.d.ts +53 -0
  11. package/dist/models/CreateCloudDriveGroupResponseBody.js +66 -0
  12. package/dist/models/CreateCloudDriveGroupResponseBody.js.map +1 -0
  13. package/dist/models/CreateEcdReportTaskRequest.d.ts +54 -0
  14. package/dist/models/CreateEcdReportTaskRequest.js +93 -0
  15. package/dist/models/CreateEcdReportTaskRequest.js.map +1 -0
  16. package/dist/models/CreateEcdReportTaskResponse.d.ts +19 -0
  17. package/dist/models/CreateEcdReportTaskResponse.js +69 -0
  18. package/dist/models/CreateEcdReportTaskResponse.js.map +1 -0
  19. package/dist/models/CreateEcdReportTaskResponseBody.d.ts +38 -0
  20. package/dist/models/CreateEcdReportTaskResponseBody.js +66 -0
  21. package/dist/models/CreateEcdReportTaskResponseBody.js.map +1 -0
  22. package/dist/models/DescribeDesktopsResponseBody.d.ts +1 -0
  23. package/dist/models/DescribeDesktopsResponseBody.js +2 -0
  24. package/dist/models/DescribeDesktopsResponseBody.js.map +1 -1
  25. package/dist/models/DescribeEcdReportTasksRequest.d.ts +39 -0
  26. package/dist/models/DescribeEcdReportTasksRequest.js +71 -0
  27. package/dist/models/DescribeEcdReportTasksRequest.js.map +1 -0
  28. package/dist/models/DescribeEcdReportTasksResponse.d.ts +19 -0
  29. package/dist/models/DescribeEcdReportTasksResponse.js +69 -0
  30. package/dist/models/DescribeEcdReportTasksResponse.js.map +1 -0
  31. package/dist/models/DescribeEcdReportTasksResponseBody.d.ts +87 -0
  32. package/dist/models/DescribeEcdReportTasksResponseBody.js +104 -0
  33. package/dist/models/DescribeEcdReportTasksResponseBody.js.map +1 -0
  34. package/dist/models/model.d.ts +11 -0
  35. package/dist/models/model.js +42 -20
  36. package/dist/models/model.js.map +1 -1
  37. package/package.json +1 -1
  38. package/src/client.ts +184 -0
  39. package/src/models/CreateCloudDriveGroupRequest.ts +82 -0
  40. package/src/models/CreateCloudDriveGroupResponse.ts +40 -0
  41. package/src/models/CreateCloudDriveGroupResponseBody.ts +74 -0
  42. package/src/models/CreateEcdReportTaskRequest.ts +93 -0
  43. package/src/models/CreateEcdReportTaskResponse.ts +40 -0
  44. package/src/models/CreateEcdReportTaskResponseBody.ts +59 -0
  45. package/src/models/DescribeDesktopsResponseBody.ts +3 -0
  46. package/src/models/DescribeEcdReportTasksRequest.ts +65 -0
  47. package/src/models/DescribeEcdReportTasksResponse.ts +40 -0
  48. package/src/models/DescribeEcdReportTasksResponseBody.ts +137 -0
  49. package/src/models/model.ts +11 -0
@@ -0,0 +1,58 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateCloudDriveGroupRequest extends $dara.Model {
3
+ /**
4
+ * **if can be null:**
5
+ * true
6
+ */
7
+ adminUserIds?: string[];
8
+ /**
9
+ * @remarks
10
+ * The ID of the cloud disk in Cloud Drive Service.
11
+ *
12
+ * This parameter is required.
13
+ *
14
+ * @example
15
+ * cn-hangzhou+cds-532033****
16
+ */
17
+ cdsId?: string;
18
+ /**
19
+ * @remarks
20
+ * The ID of the team.
21
+ *
22
+ * This parameter is required.
23
+ *
24
+ * @example
25
+ * 7f4bbccda0cf40bb85981b65fb5e****
26
+ */
27
+ groupId?: string;
28
+ /**
29
+ * @remarks
30
+ * The ID of the region.
31
+ *
32
+ * This parameter is required.
33
+ *
34
+ * @example
35
+ * cn-hangzhou
36
+ */
37
+ regionId?: string;
38
+ /**
39
+ * @remarks
40
+ * The size of the cloud disk in Cloud Drive Service. Unit: bytes. The size is unlimited.
41
+ *
42
+ * This parameter is required.
43
+ *
44
+ * @example
45
+ * 1024000
46
+ */
47
+ totalSize?: number;
48
+ static names(): {
49
+ [key: string]: string;
50
+ };
51
+ static types(): {
52
+ [key: string]: any;
53
+ };
54
+ validate(): void;
55
+ constructor(map?: {
56
+ [key: string]: any;
57
+ });
58
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateCloudDriveGroupRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateCloudDriveGroupRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ adminUserIds: 'AdminUserIds',
43
+ cdsId: 'CdsId',
44
+ groupId: 'GroupId',
45
+ regionId: 'RegionId',
46
+ totalSize: 'TotalSize',
47
+ };
48
+ }
49
+ static types() {
50
+ return {
51
+ adminUserIds: { 'type': 'array', 'itemType': 'string' },
52
+ cdsId: 'string',
53
+ groupId: 'string',
54
+ regionId: 'string',
55
+ totalSize: 'number',
56
+ };
57
+ }
58
+ validate() {
59
+ if (Array.isArray(this.adminUserIds)) {
60
+ $dara.Model.validateArray(this.adminUserIds);
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.CreateCloudDriveGroupRequest = CreateCloudDriveGroupRequest;
69
+ //# sourceMappingURL=CreateCloudDriveGroupRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateCloudDriveGroupRequest.js","sourceRoot":"","sources":["../../src/models/CreateCloudDriveGroupRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4BAA6B,SAAQ,KAAK,CAAC,KAAK;IA8C3D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACvD,KAAK,EAAE,QAAQ;YACf,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;YAClB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5ED,oEA4EC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { CreateCloudDriveGroupResponseBody } from "./CreateCloudDriveGroupResponseBody";
3
+ export declare class CreateCloudDriveGroupResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: CreateCloudDriveGroupResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateCloudDriveGroupResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const CreateCloudDriveGroupResponseBody_1 = require("./CreateCloudDriveGroupResponseBody");
40
+ class CreateCloudDriveGroupResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: CreateCloudDriveGroupResponseBody_1.CreateCloudDriveGroupResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.CreateCloudDriveGroupResponse = CreateCloudDriveGroupResponse;
69
+ //# sourceMappingURL=CreateCloudDriveGroupResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateCloudDriveGroupResponse.js","sourceRoot":"","sources":["../../src/models/CreateCloudDriveGroupResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,2FAAwF;AAGxF,MAAa,6BAA8B,SAAQ,KAAK,CAAC,KAAK;IAI5D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,qEAAiC;SACxC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,sEAiCC"}
@@ -0,0 +1,53 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateCloudDriveGroupResponseBody extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * The returned results. A value of success indicates that the operation is successful. If the operation failed, an error message is returned.
6
+ *
7
+ * @example
8
+ * success
9
+ */
10
+ code?: string;
11
+ /**
12
+ * @remarks
13
+ * The data information.
14
+ *
15
+ * @example
16
+ * []
17
+ */
18
+ data?: string;
19
+ /**
20
+ * @remarks
21
+ * The error message that is returned. This parameter is not returned if the value of Code is success.
22
+ *
23
+ * @example
24
+ * success
25
+ */
26
+ message?: string;
27
+ /**
28
+ * @remarks
29
+ * The ID of the request.
30
+ *
31
+ * @example
32
+ * FD14D2A1-CC39-5ED3-8EE7-11FDF4B9D6D2
33
+ */
34
+ requestId?: string;
35
+ /**
36
+ * @remarks
37
+ * Indicates whether the call is successful. true: The call is successful. false: The call fails.
38
+ *
39
+ * @example
40
+ * True
41
+ */
42
+ success?: boolean;
43
+ static names(): {
44
+ [key: string]: string;
45
+ };
46
+ static types(): {
47
+ [key: string]: any;
48
+ };
49
+ validate(): void;
50
+ constructor(map?: {
51
+ [key: string]: any;
52
+ });
53
+ }
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateCloudDriveGroupResponseBody = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateCloudDriveGroupResponseBody extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ code: 'Code',
43
+ data: 'Data',
44
+ message: 'Message',
45
+ requestId: 'RequestId',
46
+ success: 'Success',
47
+ };
48
+ }
49
+ static types() {
50
+ return {
51
+ code: 'string',
52
+ data: 'string',
53
+ message: 'string',
54
+ requestId: 'string',
55
+ success: 'boolean',
56
+ };
57
+ }
58
+ validate() {
59
+ super.validate();
60
+ }
61
+ constructor(map) {
62
+ super(map);
63
+ }
64
+ }
65
+ exports.CreateCloudDriveGroupResponseBody = CreateCloudDriveGroupResponseBody;
66
+ //# sourceMappingURL=CreateCloudDriveGroupResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateCloudDriveGroupResponseBody.js","sourceRoot":"","sources":["../../src/models/CreateCloudDriveGroupResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAyChE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,MAAM;YACZ,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApED,8EAoEC"}
@@ -0,0 +1,54 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateEcdReportTaskRequestFilterList extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * Tag:TestKey
6
+ */
7
+ filterKey?: string;
8
+ filterValues?: string[];
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
20
+ export declare class CreateEcdReportTaskRequest extends $dara.Model {
21
+ filterList?: CreateEcdReportTaskRequestFilterList[];
22
+ /**
23
+ * @example
24
+ * zh-CN
25
+ */
26
+ langType?: string;
27
+ reportFileName?: string;
28
+ /**
29
+ * @remarks
30
+ * This parameter is required.
31
+ *
32
+ * @example
33
+ * DESKTOP
34
+ */
35
+ subType?: string;
36
+ /**
37
+ * @remarks
38
+ * This parameter is required.
39
+ *
40
+ * @example
41
+ * RESOURCE_REPORT
42
+ */
43
+ taskType?: string;
44
+ static names(): {
45
+ [key: string]: string;
46
+ };
47
+ static types(): {
48
+ [key: string]: any;
49
+ };
50
+ validate(): void;
51
+ constructor(map?: {
52
+ [key: string]: any;
53
+ });
54
+ }
@@ -0,0 +1,93 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateEcdReportTaskRequest = exports.CreateEcdReportTaskRequestFilterList = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class CreateEcdReportTaskRequestFilterList extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ filterKey: 'FilterKey',
43
+ filterValues: 'FilterValues',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ filterKey: 'string',
49
+ filterValues: { 'type': 'array', 'itemType': 'string' },
50
+ };
51
+ }
52
+ validate() {
53
+ if (Array.isArray(this.filterValues)) {
54
+ $dara.Model.validateArray(this.filterValues);
55
+ }
56
+ super.validate();
57
+ }
58
+ constructor(map) {
59
+ super(map);
60
+ }
61
+ }
62
+ exports.CreateEcdReportTaskRequestFilterList = CreateEcdReportTaskRequestFilterList;
63
+ class CreateEcdReportTaskRequest extends $dara.Model {
64
+ static names() {
65
+ return {
66
+ filterList: 'FilterList',
67
+ langType: 'LangType',
68
+ reportFileName: 'ReportFileName',
69
+ subType: 'SubType',
70
+ taskType: 'TaskType',
71
+ };
72
+ }
73
+ static types() {
74
+ return {
75
+ filterList: { 'type': 'array', 'itemType': CreateEcdReportTaskRequestFilterList },
76
+ langType: 'string',
77
+ reportFileName: 'string',
78
+ subType: 'string',
79
+ taskType: 'string',
80
+ };
81
+ }
82
+ validate() {
83
+ if (Array.isArray(this.filterList)) {
84
+ $dara.Model.validateArray(this.filterList);
85
+ }
86
+ super.validate();
87
+ }
88
+ constructor(map) {
89
+ super(map);
90
+ }
91
+ }
92
+ exports.CreateEcdReportTaskRequest = CreateEcdReportTaskRequest;
93
+ //# sourceMappingURL=CreateEcdReportTaskRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateEcdReportTaskRequest.js","sourceRoot":"","sources":["../../src/models/CreateEcdReportTaskRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAOnE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;SACxD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA/BD,oFA+BC;AAED,MAAa,0BAA2B,SAAQ,KAAK,CAAC,KAAK;IAwBzD,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,QAAQ,EAAE,UAAU;YACpB,cAAc,EAAE,gBAAgB;YAChC,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,oCAAoC,EAAE;YACjF,QAAQ,EAAE,QAAQ;YAClB,cAAc,EAAE,QAAQ;YACxB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAClC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtDD,gEAsDC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { CreateEcdReportTaskResponseBody } from "./CreateEcdReportTaskResponseBody";
3
+ export declare class CreateEcdReportTaskResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: CreateEcdReportTaskResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.CreateEcdReportTaskResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const CreateEcdReportTaskResponseBody_1 = require("./CreateEcdReportTaskResponseBody");
40
+ class CreateEcdReportTaskResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: CreateEcdReportTaskResponseBody_1.CreateEcdReportTaskResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.CreateEcdReportTaskResponse = CreateEcdReportTaskResponse;
69
+ //# sourceMappingURL=CreateEcdReportTaskResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateEcdReportTaskResponse.js","sourceRoot":"","sources":["../../src/models/CreateEcdReportTaskResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uFAAoF;AAGpF,MAAa,2BAA4B,SAAQ,KAAK,CAAC,KAAK;IAI1D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,iEAA+B;SACtC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,kEAiCC"}
@@ -0,0 +1,38 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class CreateEcdReportTaskResponseBody extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * success
6
+ */
7
+ code?: string;
8
+ /**
9
+ * @example
10
+ * success
11
+ */
12
+ message?: string;
13
+ /**
14
+ * @example
15
+ * 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
16
+ */
17
+ requestId?: string;
18
+ /**
19
+ * @example
20
+ * True
21
+ */
22
+ success?: boolean;
23
+ /**
24
+ * @example
25
+ * ret-g67ip******
26
+ */
27
+ taskId?: string;
28
+ static names(): {
29
+ [key: string]: string;
30
+ };
31
+ static types(): {
32
+ [key: string]: any;
33
+ };
34
+ validate(): void;
35
+ constructor(map?: {
36
+ [key: string]: any;
37
+ });
38
+ }