@alicloud/dataworks-public20200518 6.1.2 → 6.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/dataworks-public20200518",
3
- "version": "6.1.2",
3
+ "version": "6.1.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -67243,6 +67243,28 @@ export class GetRemindResponseBodyDataProjects extends $tea.Model {
67243
67243
  }
67244
67244
  }
67245
67245
 
67246
+ export class GetRemindResponseBodyDataReceivers extends $tea.Model {
67247
+ alertTargets?: string[];
67248
+ alertUnit?: string;
67249
+ static names(): { [key: string]: string } {
67250
+ return {
67251
+ alertTargets: 'AlertTargets',
67252
+ alertUnit: 'AlertUnit',
67253
+ };
67254
+ }
67255
+
67256
+ static types(): { [key: string]: any } {
67257
+ return {
67258
+ alertTargets: { 'type': 'array', 'itemType': 'string' },
67259
+ alertUnit: 'string',
67260
+ };
67261
+ }
67262
+
67263
+ constructor(map?: { [key: string]: any }) {
67264
+ super(map);
67265
+ }
67266
+ }
67267
+
67246
67268
  export class GetRemindResponseBodyDataRobots extends $tea.Model {
67247
67269
  /**
67248
67270
  * @remarks
@@ -67298,6 +67320,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67298
67320
  * OWNER
67299
67321
  */
67300
67322
  alertUnit?: string;
67323
+ allowNodes?: number[];
67301
67324
  /**
67302
67325
  * @remarks
67303
67326
  * The baselines to which the custom alert rule is applied. This parameter is returned if the value of the RemindUnit parameter is BASELINE.
@@ -67362,6 +67385,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67362
67385
  * The workspaces to which the custom alert rule is applied. This parameter is returned if the value of the RemindUnit parameter is PROJECT.
67363
67386
  */
67364
67387
  projects?: GetRemindResponseBodyDataProjects[];
67388
+ receivers?: GetRemindResponseBodyDataReceivers[];
67365
67389
  /**
67366
67390
  * @remarks
67367
67391
  * The custom alert rule ID.
@@ -67411,6 +67435,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67411
67435
  alertMethods: 'AlertMethods',
67412
67436
  alertTargets: 'AlertTargets',
67413
67437
  alertUnit: 'AlertUnit',
67438
+ allowNodes: 'AllowNodes',
67414
67439
  baselines: 'Baselines',
67415
67440
  bizProcesses: 'BizProcesses',
67416
67441
  detail: 'Detail',
@@ -67420,6 +67445,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67420
67445
  maxAlertTimes: 'MaxAlertTimes',
67421
67446
  nodes: 'Nodes',
67422
67447
  projects: 'Projects',
67448
+ receivers: 'Receivers',
67423
67449
  remindId: 'RemindId',
67424
67450
  remindName: 'RemindName',
67425
67451
  remindType: 'RemindType',
@@ -67436,6 +67462,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67436
67462
  alertMethods: { 'type': 'array', 'itemType': 'string' },
67437
67463
  alertTargets: { 'type': 'array', 'itemType': 'string' },
67438
67464
  alertUnit: 'string',
67465
+ allowNodes: { 'type': 'array', 'itemType': 'number' },
67439
67466
  baselines: { 'type': 'array', 'itemType': GetRemindResponseBodyDataBaselines },
67440
67467
  bizProcesses: { 'type': 'array', 'itemType': GetRemindResponseBodyDataBizProcesses },
67441
67468
  detail: 'string',
@@ -67445,6 +67472,7 @@ export class GetRemindResponseBodyData extends $tea.Model {
67445
67472
  maxAlertTimes: 'number',
67446
67473
  nodes: { 'type': 'array', 'itemType': GetRemindResponseBodyDataNodes },
67447
67474
  projects: { 'type': 'array', 'itemType': GetRemindResponseBodyDataProjects },
67475
+ receivers: { 'type': 'array', 'itemType': GetRemindResponseBodyDataReceivers },
67448
67476
  remindId: 'number',
67449
67477
  remindName: 'string',
67450
67478
  remindType: 'string',