@alicloud/ehpcinstant20230701 3.3.0 → 3.4.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 +15 -0
- package/dist/client.js +50 -0
- package/dist/client.js.map +1 -1
- package/dist/models/ListExecutorEventsRequest.d.ts +57 -0
- package/dist/models/ListExecutorEventsRequest.js +95 -0
- package/dist/models/ListExecutorEventsRequest.js.map +1 -0
- package/dist/models/ListExecutorEventsResponse.d.ts +19 -0
- package/dist/models/ListExecutorEventsResponse.js +69 -0
- package/dist/models/ListExecutorEventsResponse.js.map +1 -0
- package/dist/models/ListExecutorEventsResponseBody.d.ts +71 -0
- package/dist/models/ListExecutorEventsResponseBody.js +96 -0
- package/dist/models/ListExecutorEventsResponseBody.js.map +1 -0
- package/dist/models/ListExecutorEventsShrinkRequest.d.ts +24 -0
- package/dist/models/ListExecutorEventsShrinkRequest.js +62 -0
- package/dist/models/ListExecutorEventsShrinkRequest.js.map +1 -0
- package/dist/models/model.d.ts +6 -0
- package/dist/models/model.js +15 -3
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +56 -0
- package/src/models/ListExecutorEventsRequest.ts +98 -0
- package/src/models/ListExecutorEventsResponse.ts +40 -0
- package/src/models/ListExecutorEventsResponseBody.ts +113 -0
- package/src/models/ListExecutorEventsShrinkRequest.ts +41 -0
- package/src/models/model.ts +6 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListExecutorEventsShrinkRequest extends $dara.Model {
|
|
6
|
+
filterShrink?: string;
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* 1
|
|
10
|
+
*/
|
|
11
|
+
pageNumber?: number;
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* 50
|
|
15
|
+
*/
|
|
16
|
+
pageSize?: number;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
filterShrink: 'Filter',
|
|
20
|
+
pageNumber: 'PageNumber',
|
|
21
|
+
pageSize: 'PageSize',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static types(): { [key: string]: any } {
|
|
26
|
+
return {
|
|
27
|
+
filterShrink: 'string',
|
|
28
|
+
pageNumber: 'number',
|
|
29
|
+
pageSize: 'number',
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
validate() {
|
|
34
|
+
super.validate();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
constructor(map?: { [key: string]: any }) {
|
|
38
|
+
super(map);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -58,6 +58,8 @@ export { GetPoolResponseBodyPoolInfo } from './GetPoolResponseBody';
|
|
|
58
58
|
export { ListActionPlanActivitiesResponseBodyActionPlanActivitiesJobs } from './ListActionPlanActivitiesResponseBody';
|
|
59
59
|
export { ListActionPlanActivitiesResponseBodyActionPlanActivities } from './ListActionPlanActivitiesResponseBody';
|
|
60
60
|
export { ListActionPlansResponseBodyActionPlans } from './ListActionPlansResponseBody';
|
|
61
|
+
export { ListExecutorEventsRequestFilter } from './ListExecutorEventsRequest';
|
|
62
|
+
export { ListExecutorEventsResponseBodyExecutorEventList } from './ListExecutorEventsResponseBody';
|
|
61
63
|
export { ListExecutorsRequestFilter } from './ListExecutorsRequest';
|
|
62
64
|
export { ListExecutorsResponseBodyExecutorsResourceDisks } from './ListExecutorsResponseBody';
|
|
63
65
|
export { ListExecutorsResponseBodyExecutorsResource } from './ListExecutorsResponseBody';
|
|
@@ -139,6 +141,10 @@ export { ListActionPlansRequest } from './ListActionPlansRequest';
|
|
|
139
141
|
export { ListActionPlansShrinkRequest } from './ListActionPlansShrinkRequest';
|
|
140
142
|
export { ListActionPlansResponseBody } from './ListActionPlansResponseBody';
|
|
141
143
|
export { ListActionPlansResponse } from './ListActionPlansResponse';
|
|
144
|
+
export { ListExecutorEventsRequest } from './ListExecutorEventsRequest';
|
|
145
|
+
export { ListExecutorEventsShrinkRequest } from './ListExecutorEventsShrinkRequest';
|
|
146
|
+
export { ListExecutorEventsResponseBody } from './ListExecutorEventsResponseBody';
|
|
147
|
+
export { ListExecutorEventsResponse } from './ListExecutorEventsResponse';
|
|
142
148
|
export { ListExecutorsRequest } from './ListExecutorsRequest';
|
|
143
149
|
export { ListExecutorsShrinkRequest } from './ListExecutorsShrinkRequest';
|
|
144
150
|
export { ListExecutorsResponseBody } from './ListExecutorsResponseBody';
|