@alicloud/ecd20200930 4.19.0 → 4.19.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.
Files changed (32) hide show
  1. package/dist/client.js +9 -0
  2. package/dist/client.js.map +1 -1
  3. package/dist/models/CreateConfigGroupRequest.d.ts +15 -0
  4. package/dist/models/CreateConfigGroupRequest.js +6 -0
  5. package/dist/models/CreateConfigGroupRequest.js.map +1 -1
  6. package/dist/models/DescribeConfigGroupResponseBody.d.ts +12 -0
  7. package/dist/models/DescribeConfigGroupResponseBody.js +8 -0
  8. package/dist/models/DescribeConfigGroupResponseBody.js.map +1 -1
  9. package/dist/models/DescribeGlobalTimerRecordsRequest.d.ts +2 -0
  10. package/dist/models/DescribeGlobalTimerRecordsRequest.js +4 -0
  11. package/dist/models/DescribeGlobalTimerRecordsRequest.js.map +1 -1
  12. package/dist/models/DescribeGlobalTimerRecordsResponseBody.d.ts +3 -0
  13. package/dist/models/DescribeGlobalTimerRecordsResponseBody.js +6 -0
  14. package/dist/models/DescribeGlobalTimerRecordsResponseBody.js.map +1 -1
  15. package/dist/models/DescribeOfficeSitesRequest.d.ts +1 -0
  16. package/dist/models/DescribeOfficeSitesRequest.js +2 -0
  17. package/dist/models/DescribeOfficeSitesRequest.js.map +1 -1
  18. package/dist/models/DescribeTimerGroupResponseBody.d.ts +27 -0
  19. package/dist/models/DescribeTimerGroupResponseBody.js +14 -0
  20. package/dist/models/DescribeTimerGroupResponseBody.js.map +1 -1
  21. package/dist/models/ModifyTimerGroupRequest.d.ts +15 -0
  22. package/dist/models/ModifyTimerGroupRequest.js +6 -0
  23. package/dist/models/ModifyTimerGroupRequest.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/client.ts +12 -0
  26. package/src/models/CreateConfigGroupRequest.ts +21 -0
  27. package/src/models/DescribeConfigGroupResponseBody.ts +20 -0
  28. package/src/models/DescribeGlobalTimerRecordsRequest.ts +6 -0
  29. package/src/models/DescribeGlobalTimerRecordsResponseBody.ts +9 -0
  30. package/src/models/DescribeOfficeSitesRequest.ts +3 -0
  31. package/src/models/DescribeTimerGroupResponseBody.ts +41 -0
  32. package/src/models/ModifyTimerGroupRequest.ts +21 -0
@@ -37,6 +37,7 @@ export class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
37
37
  * DesktopName
38
38
  */
39
39
  desktopName?: string;
40
+ displayResultName?: string;
40
41
  /**
41
42
  * @remarks
42
43
  * The time when the scheduled task ended.
@@ -53,6 +54,7 @@ export class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
53
54
  * cn-hangzhou
54
55
  */
55
56
  regionId?: string;
57
+ retryable?: boolean;
56
58
  /**
57
59
  * @remarks
58
60
  * The ID of the scheduled task group.
@@ -61,6 +63,7 @@ export class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
61
63
  * ccg-xxxx
62
64
  */
63
65
  timerGroupId?: string;
66
+ timerRecordId?: string;
64
67
  /**
65
68
  * @remarks
66
69
  * The execution result of the scheduled task.
@@ -85,9 +88,12 @@ export class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
85
88
  createTime: 'CreateTime',
86
89
  desktopId: 'DesktopId',
87
90
  desktopName: 'DesktopName',
91
+ displayResultName: 'DisplayResultName',
88
92
  finishTime: 'FinishTime',
89
93
  regionId: 'RegionId',
94
+ retryable: 'Retryable',
90
95
  timerGroupId: 'TimerGroupId',
96
+ timerRecordId: 'TimerRecordId',
91
97
  timerResult: 'TimerResult',
92
98
  timerType: 'TimerType',
93
99
  };
@@ -101,9 +107,12 @@ export class DescribeGlobalTimerRecordsResponseBodyResults extends $dara.Model {
101
107
  createTime: 'string',
102
108
  desktopId: 'string',
103
109
  desktopName: 'string',
110
+ displayResultName: 'string',
104
111
  finishTime: 'string',
105
112
  regionId: 'string',
113
+ retryable: 'boolean',
106
114
  timerGroupId: 'string',
115
+ timerRecordId: 'string',
107
116
  timerResult: 'string',
108
117
  timerType: 'string',
109
118
  };
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class DescribeOfficeSitesRequest extends $dara.Model {
6
+ accountType?: string;
6
7
  /**
7
8
  * @remarks
8
9
  * The number of entries to return on each page.
@@ -171,6 +172,7 @@ export class DescribeOfficeSitesRequest extends $dara.Model {
171
172
  vpcId?: string;
172
173
  static names(): { [key: string]: string } {
173
174
  return {
175
+ accountType: 'AccountType',
174
176
  maxResults: 'MaxResults',
175
177
  nextToken: 'NextToken',
176
178
  officeSiteId: 'OfficeSiteId',
@@ -184,6 +186,7 @@ export class DescribeOfficeSitesRequest extends $dara.Model {
184
186
 
185
187
  static types(): { [key: string]: any } {
186
188
  return {
189
+ accountType: 'string',
187
190
  maxResults: 'number',
188
191
  nextToken: 'string',
189
192
  officeSiteId: { 'type': 'array', 'itemType': 'string' },
@@ -3,9 +3,24 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class DescribeTimerGroupResponseBodyDataConfigTimersSegmentTimers extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 1764660600967
9
+ */
10
+ appointmentTimer?: number;
6
11
  endCronExpression?: string;
7
12
  enforce?: boolean;
13
+ /**
14
+ * @example
15
+ * m-5b0vjqbiqu010XXXXXX
16
+ */
17
+ imageId?: string;
8
18
  interval?: number;
19
+ /**
20
+ * @example
21
+ * 1800
22
+ */
23
+ lockScreenTime?: number;
9
24
  notificationTime?: number;
10
25
  operationType?: string;
11
26
  processWhitelist?: string[];
@@ -16,9 +31,12 @@ export class DescribeTimerGroupResponseBodyDataConfigTimersSegmentTimers extends
16
31
  triggerType?: string;
17
32
  static names(): { [key: string]: string } {
18
33
  return {
34
+ appointmentTimer: 'AppointmentTimer',
19
35
  endCronExpression: 'EndCronExpression',
20
36
  enforce: 'Enforce',
37
+ imageId: 'ImageId',
21
38
  interval: 'Interval',
39
+ lockScreenTime: 'LockScreenTime',
22
40
  notificationTime: 'NotificationTime',
23
41
  operationType: 'OperationType',
24
42
  processWhitelist: 'ProcessWhitelist',
@@ -32,9 +50,12 @@ export class DescribeTimerGroupResponseBodyDataConfigTimersSegmentTimers extends
32
50
 
33
51
  static types(): { [key: string]: any } {
34
52
  return {
53
+ appointmentTimer: 'number',
35
54
  endCronExpression: 'string',
36
55
  enforce: 'boolean',
56
+ imageId: 'string',
37
57
  interval: 'number',
58
+ lockScreenTime: 'number',
38
59
  notificationTime: 'number',
39
60
  operationType: 'string',
40
61
  processWhitelist: { 'type': 'array', 'itemType': 'string' },
@@ -237,6 +258,18 @@ export class DescribeTimerGroupResponseBodyData extends $dara.Model {
237
258
  * cg-75aazkg2tnqb2*****
238
259
  */
239
260
  groupId?: string;
261
+ /**
262
+ * @example
263
+ * INNER_TIMER_10_MINUTES_HIBERNATE_NO_UPDATE_DESC
264
+ */
265
+ innerTimerDesc?: string;
266
+ /**
267
+ * @example
268
+ * INNER_TIMER_10_MINUTES_HIBERNATE_NO_UPDATE
269
+ */
270
+ innerTimerName?: string;
271
+ isBind?: boolean;
272
+ isUpdate?: boolean;
240
273
  /**
241
274
  * @remarks
242
275
  * The name of the configuration group.
@@ -288,6 +321,10 @@ export class DescribeTimerGroupResponseBodyData extends $dara.Model {
288
321
  configTimers: 'ConfigTimers',
289
322
  description: 'Description',
290
323
  groupId: 'GroupId',
324
+ innerTimerDesc: 'InnerTimerDesc',
325
+ innerTimerName: 'InnerTimerName',
326
+ isBind: 'IsBind',
327
+ isUpdate: 'IsUpdate',
291
328
  name: 'Name',
292
329
  productType: 'ProductType',
293
330
  status: 'Status',
@@ -302,6 +339,10 @@ export class DescribeTimerGroupResponseBodyData extends $dara.Model {
302
339
  configTimers: { 'type': 'array', 'itemType': DescribeTimerGroupResponseBodyDataConfigTimers },
303
340
  description: 'string',
304
341
  groupId: 'string',
342
+ innerTimerDesc: 'string',
343
+ innerTimerName: 'string',
344
+ isBind: 'boolean',
345
+ isUpdate: 'boolean',
305
346
  name: 'string',
306
347
  productType: 'string',
307
348
  status: 'string',
@@ -3,9 +3,24 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class ModifyTimerGroupRequestConfigTimersSegmentTimers extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 1764660600967
9
+ */
10
+ appointmentTimer?: number;
6
11
  endCronExpression?: string;
7
12
  enforce?: boolean;
13
+ /**
14
+ * @example
15
+ * m-5b0vjqbiqu010XXXXXX
16
+ */
17
+ imageId?: string;
8
18
  interval?: number;
19
+ /**
20
+ * @example
21
+ * 1800
22
+ */
23
+ lockScreenTime?: number;
9
24
  notificationTime?: number;
10
25
  operationType?: string;
11
26
  processWhitelist?: string[];
@@ -16,9 +31,12 @@ export class ModifyTimerGroupRequestConfigTimersSegmentTimers extends $dara.Mode
16
31
  triggerType?: string;
17
32
  static names(): { [key: string]: string } {
18
33
  return {
34
+ appointmentTimer: 'AppointmentTimer',
19
35
  endCronExpression: 'EndCronExpression',
20
36
  enforce: 'Enforce',
37
+ imageId: 'ImageId',
21
38
  interval: 'Interval',
39
+ lockScreenTime: 'LockScreenTime',
22
40
  notificationTime: 'NotificationTime',
23
41
  operationType: 'OperationType',
24
42
  processWhitelist: 'ProcessWhitelist',
@@ -32,9 +50,12 @@ export class ModifyTimerGroupRequestConfigTimersSegmentTimers extends $dara.Mode
32
50
 
33
51
  static types(): { [key: string]: any } {
34
52
  return {
53
+ appointmentTimer: 'number',
35
54
  endCronExpression: 'string',
36
55
  enforce: 'boolean',
56
+ imageId: 'string',
37
57
  interval: 'number',
58
+ lockScreenTime: 'number',
38
59
  notificationTime: 'number',
39
60
  operationType: 'string',
40
61
  processWhitelist: { 'type': 'array', 'itemType': 'string' },