@alicloud/cms20240330 8.0.0 → 8.1.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.
Files changed (57) hide show
  1. package/dist/client.d.ts +18 -0
  2. package/dist/client.js +68 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/AlertRuleCondition.d.ts +48 -0
  5. package/dist/models/AlertRuleCondition.js +85 -1
  6. package/dist/models/AlertRuleCondition.js.map +1 -1
  7. package/dist/models/AlertRuleDataSource.d.ts +1 -0
  8. package/dist/models/AlertRuleDataSource.js +2 -0
  9. package/dist/models/AlertRuleDataSource.js.map +1 -1
  10. package/dist/models/AlertRuleNotification.d.ts +5 -0
  11. package/dist/models/AlertRuleNotification.js +5 -0
  12. package/dist/models/AlertRuleNotification.js.map +1 -1
  13. package/dist/models/AlertRuleQuery.d.ts +2 -0
  14. package/dist/models/AlertRuleQuery.js +4 -0
  15. package/dist/models/AlertRuleQuery.js.map +1 -1
  16. package/dist/models/DescribeMetricMetaListRequest.d.ts +61 -0
  17. package/dist/models/DescribeMetricMetaListRequest.js +92 -0
  18. package/dist/models/DescribeMetricMetaListRequest.js.map +1 -0
  19. package/dist/models/DescribeMetricMetaListResponse.d.ts +19 -0
  20. package/dist/models/DescribeMetricMetaListResponse.js +69 -0
  21. package/dist/models/DescribeMetricMetaListResponse.js.map +1 -0
  22. package/dist/models/DescribeMetricMetaListResponseBody.d.ts +74 -0
  23. package/dist/models/DescribeMetricMetaListResponseBody.js +134 -0
  24. package/dist/models/DescribeMetricMetaListResponseBody.js.map +1 -0
  25. package/dist/models/DescribeMetricMetaListShrinkRequest.d.ts +39 -0
  26. package/dist/models/DescribeMetricMetaListShrinkRequest.js +68 -0
  27. package/dist/models/DescribeMetricMetaListShrinkRequest.js.map +1 -0
  28. package/dist/models/GetPrometheusInstanceResponseBody.d.ts +4 -0
  29. package/dist/models/GetPrometheusInstanceResponseBody.js +8 -0
  30. package/dist/models/GetPrometheusInstanceResponseBody.js.map +1 -1
  31. package/dist/models/GetPrometheusViewResponseBody.d.ts +2 -0
  32. package/dist/models/GetPrometheusViewResponseBody.js +4 -0
  33. package/dist/models/GetPrometheusViewResponseBody.js.map +1 -1
  34. package/dist/models/ListPrometheusVirtualInstancesRequest.d.ts +2 -0
  35. package/dist/models/ListPrometheusVirtualInstancesRequest.js +4 -0
  36. package/dist/models/ListPrometheusVirtualInstancesRequest.js.map +1 -1
  37. package/dist/models/ListPrometheusVirtualInstancesResponseBody.d.ts +3 -0
  38. package/dist/models/ListPrometheusVirtualInstancesResponseBody.js +6 -0
  39. package/dist/models/ListPrometheusVirtualInstancesResponseBody.js.map +1 -1
  40. package/dist/models/model.d.ts +10 -0
  41. package/dist/models/model.js +37 -16
  42. package/dist/models/model.js.map +1 -1
  43. package/package.json +1 -1
  44. package/src/client.ts +79 -0
  45. package/src/models/AlertRuleCondition.ts +105 -0
  46. package/src/models/AlertRuleDataSource.ts +3 -0
  47. package/src/models/AlertRuleNotification.ts +6 -0
  48. package/src/models/AlertRuleQuery.ts +6 -0
  49. package/src/models/DescribeMetricMetaListRequest.ts +99 -0
  50. package/src/models/DescribeMetricMetaListResponse.ts +40 -0
  51. package/src/models/DescribeMetricMetaListResponseBody.ts +143 -0
  52. package/src/models/DescribeMetricMetaListShrinkRequest.ts +62 -0
  53. package/src/models/GetPrometheusInstanceResponseBody.ts +12 -0
  54. package/src/models/GetPrometheusViewResponseBody.ts +6 -0
  55. package/src/models/ListPrometheusVirtualInstancesRequest.ts +6 -0
  56. package/src/models/ListPrometheusVirtualInstancesResponseBody.ts +9 -0
  57. package/src/models/model.ts +10 -0
@@ -110,6 +110,7 @@ export class AlertRuleDataSource extends $dara.Model {
110
110
  * cn-hangzhou
111
111
  */
112
112
  regionId?: string;
113
+ tenantId?: string;
113
114
  /**
114
115
  * @remarks
115
116
  * Data source type.
@@ -133,6 +134,7 @@ export class AlertRuleDataSource extends $dara.Model {
133
134
  instanceId: 'instanceId',
134
135
  namespace: 'namespace',
135
136
  regionId: 'regionId',
137
+ tenantId: 'tenantId',
136
138
  type: 'type',
137
139
  };
138
140
  }
@@ -144,6 +146,7 @@ export class AlertRuleDataSource extends $dara.Model {
144
146
  instanceId: 'string',
145
147
  namespace: 'string',
146
148
  regionId: 'string',
149
+ tenantId: 'string',
147
150
  type: 'string',
148
151
  };
149
152
  }
@@ -35,6 +35,7 @@ export class AlertRuleNotification extends $dara.Model {
35
35
  * Notification time window; notifications are sent only during this period.
36
36
  */
37
37
  notifyTime?: AlertRuleTimeSpan;
38
+ qwencloudContacts?: { [key: string]: {[key: string]: any} };
38
39
  /**
39
40
  * @remarks
40
41
  * Notification silence duration, in seconds.
@@ -62,6 +63,7 @@ export class AlertRuleNotification extends $dara.Model {
62
63
  fsWebhooks: 'fsWebhooks',
63
64
  groups: 'groups',
64
65
  notifyTime: 'notifyTime',
66
+ qwencloudContacts: 'qwencloudContacts',
65
67
  silenceTime: 'silenceTime',
66
68
  slackWebhooks: 'slackWebhooks',
67
69
  wxWebhooks: 'wxWebhooks',
@@ -77,6 +79,7 @@ export class AlertRuleNotification extends $dara.Model {
77
79
  fsWebhooks: { 'type': 'array', 'itemType': 'string' },
78
80
  groups: { 'type': 'array', 'itemType': 'string' },
79
81
  notifyTime: AlertRuleTimeSpan,
82
+ qwencloudContacts: { 'type': 'map', 'keyType': 'string', 'valueType': '{[key: string]: any}' },
80
83
  silenceTime: 'number',
81
84
  slackWebhooks: { 'type': 'array', 'itemType': 'string' },
82
85
  wxWebhooks: { 'type': 'array', 'itemType': 'string' },
@@ -105,6 +108,9 @@ export class AlertRuleNotification extends $dara.Model {
105
108
  if(this.notifyTime && typeof (this.notifyTime as any).validate === 'function') {
106
109
  (this.notifyTime as any).validate();
107
110
  }
111
+ if(this.qwencloudContacts) {
112
+ $dara.Model.validateMap(this.qwencloudContacts);
113
+ }
108
114
  if(Array.isArray(this.slackWebhooks)) {
109
115
  $dara.Model.validateArray(this.slackWebhooks);
110
116
  }
@@ -292,6 +292,8 @@ export class AlertRuleQueryQueries extends $dara.Model {
292
292
  * sum by (rpc,acs_arms_service_id,pid,rpcType) (sum_over_time_lorc(arms_app_requests_count_ign_destid_endpoint_parent_ppid_prpc{callKind=~\\"http|rpc|custom_entry|server|consumer\\",pid=\\"gaddp9ap8q@cb005ffdf44b8ac\\",source=\\"apm\\"}[1m]))
293
293
  */
294
294
  expr?: string;
295
+ name?: string;
296
+ promQl?: string;
295
297
  /**
296
298
  * @remarks
297
299
  * Applicable query type: SLS_MULTI_QUERY.
@@ -328,6 +330,8 @@ export class AlertRuleQueryQueries extends $dara.Model {
328
330
  duration: 'duration',
329
331
  end: 'end',
330
332
  expr: 'expr',
333
+ name: 'name',
334
+ promQl: 'promQl',
331
335
  start: 'start',
332
336
  timeUnit: 'timeUnit',
333
337
  window: 'window',
@@ -342,6 +346,8 @@ export class AlertRuleQueryQueries extends $dara.Model {
342
346
  duration: 'number',
343
347
  end: 'number',
344
348
  expr: 'string',
349
+ name: 'string',
350
+ promQl: 'string',
345
351
  start: 'number',
346
352
  timeUnit: 'string',
347
353
  window: 'number',
@@ -0,0 +1,99 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeMetricMetaListRequestLabels extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * productCategory
9
+ */
10
+ name?: string;
11
+ /**
12
+ * @example
13
+ * ecs
14
+ */
15
+ value?: string;
16
+ static names(): { [key: string]: string } {
17
+ return {
18
+ name: 'name',
19
+ value: 'value',
20
+ };
21
+ }
22
+
23
+ static types(): { [key: string]: any } {
24
+ return {
25
+ name: 'string',
26
+ value: 'string',
27
+ };
28
+ }
29
+
30
+ validate() {
31
+ super.validate();
32
+ }
33
+
34
+ constructor(map?: { [key: string]: any }) {
35
+ super(map);
36
+ }
37
+ }
38
+
39
+ export class DescribeMetricMetaListRequest extends $dara.Model {
40
+ labels?: DescribeMetricMetaListRequestLabels[];
41
+ /**
42
+ * @example
43
+ * CMS
44
+ */
45
+ metaFormat?: string;
46
+ /**
47
+ * @example
48
+ * CPUUtilization
49
+ */
50
+ metricName?: string;
51
+ /**
52
+ * @example
53
+ * acs_ecs_dashboard
54
+ */
55
+ namespace?: string;
56
+ /**
57
+ * @example
58
+ * 1
59
+ */
60
+ pageNumber?: number;
61
+ /**
62
+ * @example
63
+ * 2000
64
+ */
65
+ pageSize?: number;
66
+ static names(): { [key: string]: string } {
67
+ return {
68
+ labels: 'labels',
69
+ metaFormat: 'metaFormat',
70
+ metricName: 'metricName',
71
+ namespace: 'namespace',
72
+ pageNumber: 'pageNumber',
73
+ pageSize: 'pageSize',
74
+ };
75
+ }
76
+
77
+ static types(): { [key: string]: any } {
78
+ return {
79
+ labels: { 'type': 'array', 'itemType': DescribeMetricMetaListRequestLabels },
80
+ metaFormat: 'string',
81
+ metricName: 'string',
82
+ namespace: 'string',
83
+ pageNumber: 'number',
84
+ pageSize: 'number',
85
+ };
86
+ }
87
+
88
+ validate() {
89
+ if(Array.isArray(this.labels)) {
90
+ $dara.Model.validateArray(this.labels);
91
+ }
92
+ super.validate();
93
+ }
94
+
95
+ constructor(map?: { [key: string]: any }) {
96
+ super(map);
97
+ }
98
+ }
99
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { DescribeMetricMetaListResponseBody } from "./DescribeMetricMetaListResponseBody";
4
+
5
+
6
+ export class DescribeMetricMetaListResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: DescribeMetricMetaListResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: DescribeMetricMetaListResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,143 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeMetricMetaListResponseBodyResourcesDimensionDescription extends $dara.Model {
6
+ name?: string;
7
+ static names(): { [key: string]: string } {
8
+ return {
9
+ name: 'name',
10
+ };
11
+ }
12
+
13
+ static types(): { [key: string]: any } {
14
+ return {
15
+ name: 'string',
16
+ };
17
+ }
18
+
19
+ validate() {
20
+ super.validate();
21
+ }
22
+
23
+ constructor(map?: { [key: string]: any }) {
24
+ super(map);
25
+ }
26
+ }
27
+
28
+ export class DescribeMetricMetaListResponseBodyResources extends $dara.Model {
29
+ description?: string;
30
+ dimensionDescription?: DescribeMetricMetaListResponseBodyResourcesDimensionDescription[];
31
+ dimensions?: string[];
32
+ labels?: { [key: string]: string };
33
+ metricName?: string;
34
+ namespace?: string;
35
+ periods?: string;
36
+ statistics?: string;
37
+ type?: string;
38
+ unit?: string;
39
+ static names(): { [key: string]: string } {
40
+ return {
41
+ description: 'description',
42
+ dimensionDescription: 'dimensionDescription',
43
+ dimensions: 'dimensions',
44
+ labels: 'labels',
45
+ metricName: 'metricName',
46
+ namespace: 'namespace',
47
+ periods: 'periods',
48
+ statistics: 'statistics',
49
+ type: 'type',
50
+ unit: 'unit',
51
+ };
52
+ }
53
+
54
+ static types(): { [key: string]: any } {
55
+ return {
56
+ description: 'string',
57
+ dimensionDescription: { 'type': 'array', 'itemType': DescribeMetricMetaListResponseBodyResourcesDimensionDescription },
58
+ dimensions: { 'type': 'array', 'itemType': 'string' },
59
+ labels: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
60
+ metricName: 'string',
61
+ namespace: 'string',
62
+ periods: 'string',
63
+ statistics: 'string',
64
+ type: 'string',
65
+ unit: 'string',
66
+ };
67
+ }
68
+
69
+ validate() {
70
+ if(Array.isArray(this.dimensionDescription)) {
71
+ $dara.Model.validateArray(this.dimensionDescription);
72
+ }
73
+ if(Array.isArray(this.dimensions)) {
74
+ $dara.Model.validateArray(this.dimensions);
75
+ }
76
+ if(this.labels) {
77
+ $dara.Model.validateMap(this.labels);
78
+ }
79
+ super.validate();
80
+ }
81
+
82
+ constructor(map?: { [key: string]: any }) {
83
+ super(map);
84
+ }
85
+ }
86
+
87
+ export class DescribeMetricMetaListResponseBody extends $dara.Model {
88
+ /**
89
+ * @example
90
+ * 1
91
+ */
92
+ pageNumber?: number;
93
+ /**
94
+ * @example
95
+ * 2000
96
+ */
97
+ pageSize?: number;
98
+ /**
99
+ * @remarks
100
+ * Id of the request
101
+ *
102
+ * @example
103
+ * 264C3E89-XXXX-XXXX-XXXX-CE9C2196C7DC
104
+ */
105
+ requestId?: string;
106
+ resources?: DescribeMetricMetaListResponseBodyResources[];
107
+ /**
108
+ * @example
109
+ * 6370
110
+ */
111
+ totalCount?: number;
112
+ static names(): { [key: string]: string } {
113
+ return {
114
+ pageNumber: 'pageNumber',
115
+ pageSize: 'pageSize',
116
+ requestId: 'requestId',
117
+ resources: 'resources',
118
+ totalCount: 'totalCount',
119
+ };
120
+ }
121
+
122
+ static types(): { [key: string]: any } {
123
+ return {
124
+ pageNumber: 'number',
125
+ pageSize: 'number',
126
+ requestId: 'string',
127
+ resources: { 'type': 'array', 'itemType': DescribeMetricMetaListResponseBodyResources },
128
+ totalCount: 'number',
129
+ };
130
+ }
131
+
132
+ validate() {
133
+ if(Array.isArray(this.resources)) {
134
+ $dara.Model.validateArray(this.resources);
135
+ }
136
+ super.validate();
137
+ }
138
+
139
+ constructor(map?: { [key: string]: any }) {
140
+ super(map);
141
+ }
142
+ }
143
+
@@ -0,0 +1,62 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeMetricMetaListShrinkRequest extends $dara.Model {
6
+ labelsShrink?: string;
7
+ /**
8
+ * @example
9
+ * CMS
10
+ */
11
+ metaFormat?: string;
12
+ /**
13
+ * @example
14
+ * CPUUtilization
15
+ */
16
+ metricName?: string;
17
+ /**
18
+ * @example
19
+ * acs_ecs_dashboard
20
+ */
21
+ namespace?: string;
22
+ /**
23
+ * @example
24
+ * 1
25
+ */
26
+ pageNumber?: number;
27
+ /**
28
+ * @example
29
+ * 2000
30
+ */
31
+ pageSize?: number;
32
+ static names(): { [key: string]: string } {
33
+ return {
34
+ labelsShrink: 'labels',
35
+ metaFormat: 'metaFormat',
36
+ metricName: 'metricName',
37
+ namespace: 'namespace',
38
+ pageNumber: 'pageNumber',
39
+ pageSize: 'pageSize',
40
+ };
41
+ }
42
+
43
+ static types(): { [key: string]: any } {
44
+ return {
45
+ labelsShrink: 'string',
46
+ metaFormat: 'string',
47
+ metricName: 'string',
48
+ namespace: 'string',
49
+ pageNumber: 'number',
50
+ pageSize: 'number',
51
+ };
52
+ }
53
+
54
+ validate() {
55
+ super.validate();
56
+ }
57
+
58
+ constructor(map?: { [key: string]: any }) {
59
+ super(map);
60
+ }
61
+ }
62
+
@@ -171,6 +171,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
171
171
  * http://workspace-default-cms-xxxxxxx
172
172
  */
173
173
  httpApiInterUrl?: string;
174
+ httpApiInternalUrl?: string;
174
175
  /**
175
176
  * @remarks
176
177
  * HTTP intranet address.
@@ -237,6 +238,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
237
238
  * http://workspace-default-cms-xxxxxxx
238
239
  */
239
240
  pushGatewayInterUrl?: string;
241
+ pushGatewayInternalUrl?: string;
240
242
  /**
241
243
  * @remarks
242
244
  * Intranet address of PushGateway.
@@ -261,6 +263,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
261
263
  * http://workspace-default-cms-xxxxxxx
262
264
  */
263
265
  remoteReadInterUrl?: string;
266
+ remoteReadInternalUrl?: string;
264
267
  /**
265
268
  * @remarks
266
269
  * Intranet read address.
@@ -277,6 +280,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
277
280
  * https://workspace-default-cms-xxxxxxxxxx
278
281
  */
279
282
  remoteWriteInterUrl?: string;
283
+ remoteWriteInternalUrl?: string;
280
284
  /**
281
285
  * @remarks
282
286
  * Intranet write address.
@@ -367,6 +371,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
367
371
  grafanaInstanceId: 'grafanaInstanceId',
368
372
  grafanaInstanceName: 'grafanaInstanceName',
369
373
  httpApiInterUrl: 'httpApiInterUrl',
374
+ httpApiInternalUrl: 'httpApiInternalUrl',
370
375
  httpApiIntraUrl: 'httpApiIntraUrl',
371
376
  instanceType: 'instanceType',
372
377
  paymentType: 'paymentType',
@@ -375,11 +380,14 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
375
380
  prometheusInstanceId: 'prometheusInstanceId',
376
381
  prometheusInstanceName: 'prometheusInstanceName',
377
382
  pushGatewayInterUrl: 'pushGatewayInterUrl',
383
+ pushGatewayInternalUrl: 'pushGatewayInternalUrl',
378
384
  pushGatewayIntraUrl: 'pushGatewayIntraUrl',
379
385
  regionId: 'regionId',
380
386
  remoteReadInterUrl: 'remoteReadInterUrl',
387
+ remoteReadInternalUrl: 'remoteReadInternalUrl',
381
388
  remoteReadIntraUrl: 'remoteReadIntraUrl',
382
389
  remoteWriteInterUrl: 'remoteWriteInterUrl',
390
+ remoteWriteInternalUrl: 'remoteWriteInternalUrl',
383
391
  remoteWriteIntraUrl: 'remoteWriteIntraUrl',
384
392
  resourceGroupId: 'resourceGroupId',
385
393
  resourceType: 'resourceType',
@@ -409,6 +417,7 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
409
417
  grafanaInstanceId: 'string',
410
418
  grafanaInstanceName: 'string',
411
419
  httpApiInterUrl: 'string',
420
+ httpApiInternalUrl: 'string',
412
421
  httpApiIntraUrl: 'string',
413
422
  instanceType: 'string',
414
423
  paymentType: 'string',
@@ -417,11 +426,14 @@ export class GetPrometheusInstanceResponseBodyPrometheusInstance extends $dara.M
417
426
  prometheusInstanceId: 'string',
418
427
  prometheusInstanceName: 'string',
419
428
  pushGatewayInterUrl: 'string',
429
+ pushGatewayInternalUrl: 'string',
420
430
  pushGatewayIntraUrl: 'string',
421
431
  regionId: 'string',
422
432
  remoteReadInterUrl: 'string',
433
+ remoteReadInternalUrl: 'string',
423
434
  remoteReadIntraUrl: 'string',
424
435
  remoteWriteInterUrl: 'string',
436
+ remoteWriteInternalUrl: 'string',
425
437
  remoteWriteIntraUrl: 'string',
426
438
  resourceGroupId: 'string',
427
439
  resourceType: 'string',
@@ -174,6 +174,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
174
174
  * http://xxxxxxxx
175
175
  */
176
176
  httpApiInterUrl?: string;
177
+ httpApiInternalUrl?: string;
177
178
  /**
178
179
  * @remarks
179
180
  * Private HTTP address.
@@ -243,6 +244,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
243
244
  * http://workspace-default-cms-xxx-cn-hangzhou.cn-hangzhou.log.aliyuncs.com/prometheus/workspace-default-cms-xxx-cn-hangzhou/xxx/api/v1/read
244
245
  */
245
246
  remoteReadInterUrl?: string;
247
+ remoteReadInternalUrl?: string;
246
248
  /**
247
249
  * @remarks
248
250
  * Remote read intranet URL.
@@ -320,6 +322,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
320
322
  grafanaInstanceId: 'grafanaInstanceId',
321
323
  grafanaInstanceName: 'grafanaInstanceName',
322
324
  httpApiInterUrl: 'httpApiInterUrl',
325
+ httpApiInternalUrl: 'httpApiInternalUrl',
323
326
  httpApiIntraUrl: 'httpApiIntraUrl',
324
327
  instanceType: 'instanceType',
325
328
  paymentType: 'paymentType',
@@ -329,6 +332,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
329
332
  prometheusViewName: 'prometheusViewName',
330
333
  regionId: 'regionId',
331
334
  remoteReadInterUrl: 'remoteReadInterUrl',
335
+ remoteReadInternalUrl: 'remoteReadInternalUrl',
332
336
  remoteReadIntraUrl: 'remoteReadIntraUrl',
333
337
  resourceGroupId: 'resourceGroupId',
334
338
  resourceType: 'resourceType',
@@ -352,6 +356,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
352
356
  grafanaInstanceId: 'string',
353
357
  grafanaInstanceName: 'string',
354
358
  httpApiInterUrl: 'string',
359
+ httpApiInternalUrl: 'string',
355
360
  httpApiIntraUrl: 'string',
356
361
  instanceType: 'string',
357
362
  paymentType: 'string',
@@ -361,6 +366,7 @@ export class GetPrometheusViewResponseBodyPrometheusView extends $dara.Model {
361
366
  prometheusViewName: 'string',
362
367
  regionId: 'string',
363
368
  remoteReadInterUrl: 'string',
369
+ remoteReadInternalUrl: 'string',
364
370
  remoteReadIntraUrl: 'string',
365
371
  resourceGroupId: 'string',
366
372
  resourceType: 'string',
@@ -3,6 +3,7 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class ListPrometheusVirtualInstancesRequest extends $dara.Model {
6
+ maxResults?: number;
6
7
  /**
7
8
  * @remarks
8
9
  * Optional cloud product
@@ -11,17 +12,22 @@ export class ListPrometheusVirtualInstancesRequest extends $dara.Model {
11
12
  * ack-csi-fuse
12
13
  */
13
14
  namespace?: string;
15
+ nextToken?: string;
14
16
  tenantId?: string;
15
17
  static names(): { [key: string]: string } {
16
18
  return {
19
+ maxResults: 'maxResults',
17
20
  namespace: 'namespace',
21
+ nextToken: 'nextToken',
18
22
  tenantId: 'tenantId',
19
23
  };
20
24
  }
21
25
 
22
26
  static types(): { [key: string]: any } {
23
27
  return {
28
+ maxResults: 'number',
24
29
  namespace: 'string',
30
+ nextToken: 'string',
25
31
  tenantId: 'string',
26
32
  };
27
33
  }
@@ -92,6 +92,8 @@ export class ListPrometheusVirtualInstancesResponseBody extends $dara.Model {
92
92
  * Instance information.
93
93
  */
94
94
  instances?: ListPrometheusVirtualInstancesResponseBodyInstances[];
95
+ maxResults?: string;
96
+ nextToken?: string;
95
97
  /**
96
98
  * @remarks
97
99
  * ID of the request
@@ -100,17 +102,24 @@ export class ListPrometheusVirtualInstancesResponseBody extends $dara.Model {
100
102
  * 264C3E89-XXXX-XXXX-XXXX-CE9C2196C7DC
101
103
  */
102
104
  requestId?: string;
105
+ totalCount?: string;
103
106
  static names(): { [key: string]: string } {
104
107
  return {
105
108
  instances: 'instances',
109
+ maxResults: 'maxResults',
110
+ nextToken: 'nextToken',
106
111
  requestId: 'requestId',
112
+ totalCount: 'totalCount',
107
113
  };
108
114
  }
109
115
 
110
116
  static types(): { [key: string]: any } {
111
117
  return {
112
118
  instances: { 'type': 'array', 'itemType': ListPrometheusVirtualInstancesResponseBodyInstances },
119
+ maxResults: 'string',
120
+ nextToken: 'string',
113
121
  requestId: 'string',
122
+ totalCount: 'string',
114
123
  };
115
124
  }
116
125
 
@@ -16,6 +16,9 @@ export { AlertRuleConditionCompositeEscalation } from './AlertRuleCondition';
16
16
  export { AlertRuleConditionExpressEscalation } from './AlertRuleCondition';
17
17
  export { AlertRuleConditionSimpleEscalationEscalations } from './AlertRuleCondition';
18
18
  export { AlertRuleConditionSimpleEscalation } from './AlertRuleCondition';
19
+ export { AlertRuleConditionTriggersExpressionConditions } from './AlertRuleCondition';
20
+ export { AlertRuleConditionTriggersExpression } from './AlertRuleCondition';
21
+ export { AlertRuleConditionTriggers } from './AlertRuleCondition';
19
22
  export { AlertRuleDataSourceDsList } from './AlertRuleDataSource';
20
23
  export { AlertRuleQueryEntityFields } from './AlertRuleQuery';
21
24
  export { AlertRuleQueryEntityFilterFilters } from './AlertRuleQuery';
@@ -73,6 +76,9 @@ export { CreatePrometheusViewRequestPrometheusInstances } from './CreatePromethe
73
76
  export { CreatePrometheusViewRequestTags } from './CreatePrometheusViewRequest';
74
77
  export { CreatePrometheusVirtualInstanceResponseBodyInstance } from './CreatePrometheusVirtualInstanceResponseBody';
75
78
  export { CreateServiceRequestTags } from './CreateServiceRequest';
79
+ export { DescribeMetricMetaListRequestLabels } from './DescribeMetricMetaListRequest';
80
+ export { DescribeMetricMetaListResponseBodyResourcesDimensionDescription } from './DescribeMetricMetaListResponseBody';
81
+ export { DescribeMetricMetaListResponseBodyResources } from './DescribeMetricMetaListResponseBody';
76
82
  export { DescribeRegionsResponseBodyRegions } from './DescribeRegionsResponseBody';
77
83
  export { ExecuteQueryResponseBodyMeta } from './ExecuteQueryResponseBody';
78
84
  export { GetAddonResponseBodyDataDashboards } from './GetAddonResponseBody';
@@ -435,6 +441,10 @@ export { DeleteUmodelDataResponse } from './DeleteUmodelDataResponse';
435
441
  export { DeleteWorkspaceRequest } from './DeleteWorkspaceRequest';
436
442
  export { DeleteWorkspaceResponseBody } from './DeleteWorkspaceResponseBody';
437
443
  export { DeleteWorkspaceResponse } from './DeleteWorkspaceResponse';
444
+ export { DescribeMetricMetaListRequest } from './DescribeMetricMetaListRequest';
445
+ export { DescribeMetricMetaListShrinkRequest } from './DescribeMetricMetaListShrinkRequest';
446
+ export { DescribeMetricMetaListResponseBody } from './DescribeMetricMetaListResponseBody';
447
+ export { DescribeMetricMetaListResponse } from './DescribeMetricMetaListResponse';
438
448
  export { DescribeRegionsRequest } from './DescribeRegionsRequest';
439
449
  export { DescribeRegionsResponseBody } from './DescribeRegionsResponseBody';
440
450
  export { DescribeRegionsResponse } from './DescribeRegionsResponse';