tencentcloud-sdk-nodejs-intl-en 3.0.1376 → 3.0.1378
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 +1 -1
- package/tencentcloud/cfs/v20190719/models.js +12 -5
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/iai/v20200303/iai_client.js +1 -1
- package/tencentcloud/monitor/v20180724/models.js +1151 -243
- package/tencentcloud/monitor/v20180724/monitor_client.js +101 -32
- package/tencentcloud/ocr/v20181119/models.js +5 -5
|
@@ -103,38 +103,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* DescribeOnCallForm request structure.
|
|
107
107
|
* @class
|
|
108
108
|
*/
|
|
109
|
-
class
|
|
109
|
+
class DescribeOnCallFormRequest extends AbstractModel {
|
|
110
110
|
constructor(){
|
|
111
111
|
super();
|
|
112
112
|
|
|
113
113
|
/**
|
|
114
|
-
*
|
|
115
|
-
Note: This field may return null, indicating that no valid value was found.
|
|
116
|
-
* @type {Array.<DescribePolicyGroupListGroup> || null}
|
|
117
|
-
*/
|
|
118
|
-
this.GroupList = null;
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Total number of policy groups.
|
|
122
|
-
* @type {number || null}
|
|
123
|
-
*/
|
|
124
|
-
this.Total = null;
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* Remarks
|
|
128
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
114
|
+
* The fixed value is monitor.
|
|
129
115
|
* @type {string || null}
|
|
130
116
|
*/
|
|
131
|
-
this.
|
|
117
|
+
this.Module = null;
|
|
132
118
|
|
|
133
119
|
/**
|
|
134
|
-
*
|
|
120
|
+
* On-call schedule ID.
|
|
135
121
|
* @type {string || null}
|
|
136
122
|
*/
|
|
137
|
-
this.
|
|
123
|
+
this.OnCallFormID = null;
|
|
138
124
|
|
|
139
125
|
}
|
|
140
126
|
|
|
@@ -145,18 +131,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
145
131
|
if (!params) {
|
|
146
132
|
return;
|
|
147
133
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
this.GroupList = new Array();
|
|
151
|
-
for (let z in params.GroupList) {
|
|
152
|
-
let obj = new DescribePolicyGroupListGroup();
|
|
153
|
-
obj.deserialize(params.GroupList[z]);
|
|
154
|
-
this.GroupList.push(obj);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
this.Total = 'Total' in params ? params.Total : null;
|
|
158
|
-
this.Warning = 'Warning' in params ? params.Warning : null;
|
|
159
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
134
|
+
this.Module = 'Module' in params ? params.Module : null;
|
|
135
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
160
136
|
|
|
161
137
|
}
|
|
162
138
|
}
|
|
@@ -1528,6 +1504,65 @@ class UpdateGrafanaWhiteListResponse extends AbstractModel {
|
|
|
1528
1504
|
}
|
|
1529
1505
|
}
|
|
1530
1506
|
|
|
1507
|
+
/**
|
|
1508
|
+
* DescribePolicyGroupList response structure.
|
|
1509
|
+
* @class
|
|
1510
|
+
*/
|
|
1511
|
+
class DescribePolicyGroupListResponse extends AbstractModel {
|
|
1512
|
+
constructor(){
|
|
1513
|
+
super();
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* Policy group list.
|
|
1517
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
1518
|
+
* @type {Array.<DescribePolicyGroupListGroup> || null}
|
|
1519
|
+
*/
|
|
1520
|
+
this.GroupList = null;
|
|
1521
|
+
|
|
1522
|
+
/**
|
|
1523
|
+
* Total number of policy groups.
|
|
1524
|
+
* @type {number || null}
|
|
1525
|
+
*/
|
|
1526
|
+
this.Total = null;
|
|
1527
|
+
|
|
1528
|
+
/**
|
|
1529
|
+
* Remarks
|
|
1530
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1531
|
+
* @type {string || null}
|
|
1532
|
+
*/
|
|
1533
|
+
this.Warning = null;
|
|
1534
|
+
|
|
1535
|
+
/**
|
|
1536
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1537
|
+
* @type {string || null}
|
|
1538
|
+
*/
|
|
1539
|
+
this.RequestId = null;
|
|
1540
|
+
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
/**
|
|
1544
|
+
* @private
|
|
1545
|
+
*/
|
|
1546
|
+
deserialize(params) {
|
|
1547
|
+
if (!params) {
|
|
1548
|
+
return;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
if (params.GroupList) {
|
|
1552
|
+
this.GroupList = new Array();
|
|
1553
|
+
for (let z in params.GroupList) {
|
|
1554
|
+
let obj = new DescribePolicyGroupListGroup();
|
|
1555
|
+
obj.deserialize(params.GroupList[z]);
|
|
1556
|
+
this.GroupList.push(obj);
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
1560
|
+
this.Warning = 'Warning' in params ? params.Warning : null;
|
|
1561
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1562
|
+
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1531
1566
|
/**
|
|
1532
1567
|
* DescribeGrafanaEnvironments request structure.
|
|
1533
1568
|
* @class
|
|
@@ -2614,6 +2649,41 @@ class CreateGrafanaIntegrationRequest extends AbstractModel {
|
|
|
2614
2649
|
}
|
|
2615
2650
|
}
|
|
2616
2651
|
|
|
2652
|
+
/**
|
|
2653
|
+
* DescribePrometheusGlobalConfig request structure.
|
|
2654
|
+
* @class
|
|
2655
|
+
*/
|
|
2656
|
+
class DescribePrometheusGlobalConfigRequest extends AbstractModel {
|
|
2657
|
+
constructor(){
|
|
2658
|
+
super();
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* Instance-level scrape configuration
|
|
2662
|
+
* @type {string || null}
|
|
2663
|
+
*/
|
|
2664
|
+
this.InstanceId = null;
|
|
2665
|
+
|
|
2666
|
+
/**
|
|
2667
|
+
* Whether to disable statistics
|
|
2668
|
+
* @type {boolean || null}
|
|
2669
|
+
*/
|
|
2670
|
+
this.DisableStatistics = null;
|
|
2671
|
+
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
/**
|
|
2675
|
+
* @private
|
|
2676
|
+
*/
|
|
2677
|
+
deserialize(params) {
|
|
2678
|
+
if (!params) {
|
|
2679
|
+
return;
|
|
2680
|
+
}
|
|
2681
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2682
|
+
this.DisableStatistics = 'DisableStatistics' in params ? params.DisableStatistics : null;
|
|
2683
|
+
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2617
2687
|
/**
|
|
2618
2688
|
* Combination of instance object dimensions
|
|
2619
2689
|
* @class
|
|
@@ -3229,6 +3299,42 @@ class Instance extends AbstractModel {
|
|
|
3229
3299
|
}
|
|
3230
3300
|
}
|
|
3231
3301
|
|
|
3302
|
+
/**
|
|
3303
|
+
* DescribePrometheusAgentInstances response structure.
|
|
3304
|
+
* @class
|
|
3305
|
+
*/
|
|
3306
|
+
class DescribePrometheusAgentInstancesResponse extends AbstractModel {
|
|
3307
|
+
constructor(){
|
|
3308
|
+
super();
|
|
3309
|
+
|
|
3310
|
+
/**
|
|
3311
|
+
* List of instances associated with the cluster
|
|
3312
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3313
|
+
* @type {Array.<string> || null}
|
|
3314
|
+
*/
|
|
3315
|
+
this.Instances = null;
|
|
3316
|
+
|
|
3317
|
+
/**
|
|
3318
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
3319
|
+
* @type {string || null}
|
|
3320
|
+
*/
|
|
3321
|
+
this.RequestId = null;
|
|
3322
|
+
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3325
|
+
/**
|
|
3326
|
+
* @private
|
|
3327
|
+
*/
|
|
3328
|
+
deserialize(params) {
|
|
3329
|
+
if (!params) {
|
|
3330
|
+
return;
|
|
3331
|
+
}
|
|
3332
|
+
this.Instances = 'Instances' in params ? params.Instances : null;
|
|
3333
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3334
|
+
|
|
3335
|
+
}
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3232
3338
|
/**
|
|
3233
3339
|
* DescribeAlarmNotices response structure.
|
|
3234
3340
|
* @class
|
|
@@ -4091,6 +4197,128 @@ class DescribeExporterIntegrationsResponse extends AbstractModel {
|
|
|
4091
4197
|
}
|
|
4092
4198
|
}
|
|
4093
4199
|
|
|
4200
|
+
/**
|
|
4201
|
+
* CreateOnCallForm request structure.
|
|
4202
|
+
* @class
|
|
4203
|
+
*/
|
|
4204
|
+
class CreateOnCallFormRequest extends AbstractModel {
|
|
4205
|
+
constructor(){
|
|
4206
|
+
super();
|
|
4207
|
+
|
|
4208
|
+
/**
|
|
4209
|
+
* The fixed value is monitor.
|
|
4210
|
+
* @type {string || null}
|
|
4211
|
+
*/
|
|
4212
|
+
this.Module = null;
|
|
4213
|
+
|
|
4214
|
+
/**
|
|
4215
|
+
* On-call schedule name.
|
|
4216
|
+
* @type {string || null}
|
|
4217
|
+
*/
|
|
4218
|
+
this.OnCallFormName = null;
|
|
4219
|
+
|
|
4220
|
+
/**
|
|
4221
|
+
* On-call personnel ID group.
|
|
4222
|
+
* @type {Array.<StaffInfo> || null}
|
|
4223
|
+
*/
|
|
4224
|
+
this.StaffInfos = null;
|
|
4225
|
+
|
|
4226
|
+
/**
|
|
4227
|
+
* Rotation type.
|
|
4228
|
+
* @type {string || null}
|
|
4229
|
+
*/
|
|
4230
|
+
this.RotationType = null;
|
|
4231
|
+
|
|
4232
|
+
/**
|
|
4233
|
+
* Shift change time.
|
|
4234
|
+
* @type {string || null}
|
|
4235
|
+
*/
|
|
4236
|
+
this.ShiftTime = null;
|
|
4237
|
+
|
|
4238
|
+
/**
|
|
4239
|
+
* Effect time. Unit: seconds.
|
|
4240
|
+
* @type {number || null}
|
|
4241
|
+
*/
|
|
4242
|
+
this.EffectiveStartTime = null;
|
|
4243
|
+
|
|
4244
|
+
/**
|
|
4245
|
+
* End time of the validity period (in seconds).
|
|
4246
|
+
* @type {number || null}
|
|
4247
|
+
*/
|
|
4248
|
+
this.EffectiveEndTime = null;
|
|
4249
|
+
|
|
4250
|
+
/**
|
|
4251
|
+
* Time zone (-12 to 12).
|
|
4252
|
+
* @type {number || null}
|
|
4253
|
+
*/
|
|
4254
|
+
this.TimeZone = null;
|
|
4255
|
+
|
|
4256
|
+
/**
|
|
4257
|
+
* Description of the shift schedule.
|
|
4258
|
+
* @type {string || null}
|
|
4259
|
+
*/
|
|
4260
|
+
this.OnCallFormDesc = null;
|
|
4261
|
+
|
|
4262
|
+
/**
|
|
4263
|
+
* Shift information.
|
|
4264
|
+
* @type {Array.<CoverStaffInfo> || null}
|
|
4265
|
+
*/
|
|
4266
|
+
this.CoverStaffInfos = null;
|
|
4267
|
+
|
|
4268
|
+
/**
|
|
4269
|
+
* Tag bound to the template
|
|
4270
|
+
* @type {Array.<Tag> || null}
|
|
4271
|
+
*/
|
|
4272
|
+
this.Tags = null;
|
|
4273
|
+
|
|
4274
|
+
}
|
|
4275
|
+
|
|
4276
|
+
/**
|
|
4277
|
+
* @private
|
|
4278
|
+
*/
|
|
4279
|
+
deserialize(params) {
|
|
4280
|
+
if (!params) {
|
|
4281
|
+
return;
|
|
4282
|
+
}
|
|
4283
|
+
this.Module = 'Module' in params ? params.Module : null;
|
|
4284
|
+
this.OnCallFormName = 'OnCallFormName' in params ? params.OnCallFormName : null;
|
|
4285
|
+
|
|
4286
|
+
if (params.StaffInfos) {
|
|
4287
|
+
this.StaffInfos = new Array();
|
|
4288
|
+
for (let z in params.StaffInfos) {
|
|
4289
|
+
let obj = new StaffInfo();
|
|
4290
|
+
obj.deserialize(params.StaffInfos[z]);
|
|
4291
|
+
this.StaffInfos.push(obj);
|
|
4292
|
+
}
|
|
4293
|
+
}
|
|
4294
|
+
this.RotationType = 'RotationType' in params ? params.RotationType : null;
|
|
4295
|
+
this.ShiftTime = 'ShiftTime' in params ? params.ShiftTime : null;
|
|
4296
|
+
this.EffectiveStartTime = 'EffectiveStartTime' in params ? params.EffectiveStartTime : null;
|
|
4297
|
+
this.EffectiveEndTime = 'EffectiveEndTime' in params ? params.EffectiveEndTime : null;
|
|
4298
|
+
this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
|
|
4299
|
+
this.OnCallFormDesc = 'OnCallFormDesc' in params ? params.OnCallFormDesc : null;
|
|
4300
|
+
|
|
4301
|
+
if (params.CoverStaffInfos) {
|
|
4302
|
+
this.CoverStaffInfos = new Array();
|
|
4303
|
+
for (let z in params.CoverStaffInfos) {
|
|
4304
|
+
let obj = new CoverStaffInfo();
|
|
4305
|
+
obj.deserialize(params.CoverStaffInfos[z]);
|
|
4306
|
+
this.CoverStaffInfos.push(obj);
|
|
4307
|
+
}
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
if (params.Tags) {
|
|
4311
|
+
this.Tags = new Array();
|
|
4312
|
+
for (let z in params.Tags) {
|
|
4313
|
+
let obj = new Tag();
|
|
4314
|
+
obj.deserialize(params.Tags[z]);
|
|
4315
|
+
this.Tags.push(obj);
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
4321
|
+
|
|
4094
4322
|
/**
|
|
4095
4323
|
* UpdateAlertRule response structure.
|
|
4096
4324
|
* @class
|
|
@@ -4320,18 +4548,18 @@ class GrafanaAccountRole extends AbstractModel {
|
|
|
4320
4548
|
}
|
|
4321
4549
|
|
|
4322
4550
|
/**
|
|
4323
|
-
*
|
|
4551
|
+
* DestroyPrometheusInstance request structure.
|
|
4324
4552
|
* @class
|
|
4325
4553
|
*/
|
|
4326
|
-
class
|
|
4554
|
+
class DestroyPrometheusInstanceRequest extends AbstractModel {
|
|
4327
4555
|
constructor(){
|
|
4328
4556
|
super();
|
|
4329
4557
|
|
|
4330
4558
|
/**
|
|
4331
|
-
*
|
|
4559
|
+
* Instance ID. The instance must be terminated first.
|
|
4332
4560
|
* @type {string || null}
|
|
4333
4561
|
*/
|
|
4334
|
-
this.
|
|
4562
|
+
this.InstanceId = null;
|
|
4335
4563
|
|
|
4336
4564
|
}
|
|
4337
4565
|
|
|
@@ -4342,7 +4570,7 @@ class DeleteRecordingRulesResponse extends AbstractModel {
|
|
|
4342
4570
|
if (!params) {
|
|
4343
4571
|
return;
|
|
4344
4572
|
}
|
|
4345
|
-
this.
|
|
4573
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4346
4574
|
|
|
4347
4575
|
}
|
|
4348
4576
|
}
|
|
@@ -4717,19 +4945,18 @@ class DescribeGrafanaInstancesRequest extends AbstractModel {
|
|
|
4717
4945
|
}
|
|
4718
4946
|
|
|
4719
4947
|
/**
|
|
4720
|
-
*
|
|
4948
|
+
* DescribePrometheusTargetsTMP response structure.
|
|
4721
4949
|
* @class
|
|
4722
4950
|
*/
|
|
4723
|
-
class
|
|
4951
|
+
class DescribePrometheusTargetsTMPResponse extends AbstractModel {
|
|
4724
4952
|
constructor(){
|
|
4725
4953
|
super();
|
|
4726
4954
|
|
|
4727
4955
|
/**
|
|
4728
|
-
*
|
|
4729
|
-
|
|
4730
|
-
* @type {Array.<string> || null}
|
|
4956
|
+
* Targets information of all jobs
|
|
4957
|
+
* @type {Array.<PrometheusJobTargets> || null}
|
|
4731
4958
|
*/
|
|
4732
|
-
this.
|
|
4959
|
+
this.Jobs = null;
|
|
4733
4960
|
|
|
4734
4961
|
/**
|
|
4735
4962
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
@@ -4746,7 +4973,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4746
4973
|
if (!params) {
|
|
4747
4974
|
return;
|
|
4748
4975
|
}
|
|
4749
|
-
|
|
4976
|
+
|
|
4977
|
+
if (params.Jobs) {
|
|
4978
|
+
this.Jobs = new Array();
|
|
4979
|
+
for (let z in params.Jobs) {
|
|
4980
|
+
let obj = new PrometheusJobTargets();
|
|
4981
|
+
obj.deserialize(params.Jobs[z]);
|
|
4982
|
+
this.Jobs.push(obj);
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4750
4985
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4751
4986
|
|
|
4752
4987
|
}
|
|
@@ -5572,6 +5807,115 @@ class CleanGrafanaInstanceRequest extends AbstractModel {
|
|
|
5572
5807
|
}
|
|
5573
5808
|
}
|
|
5574
5809
|
|
|
5810
|
+
/**
|
|
5811
|
+
* Shift information
|
|
5812
|
+
* @class
|
|
5813
|
+
*/
|
|
5814
|
+
class OnCallForm extends AbstractModel {
|
|
5815
|
+
constructor(){
|
|
5816
|
+
super();
|
|
5817
|
+
|
|
5818
|
+
/**
|
|
5819
|
+
* Schedule ID.
|
|
5820
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5821
|
+
* @type {string || null}
|
|
5822
|
+
*/
|
|
5823
|
+
this.OnCallFormID = null;
|
|
5824
|
+
|
|
5825
|
+
/**
|
|
5826
|
+
* Shift name
|
|
5827
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5828
|
+
* @type {string || null}
|
|
5829
|
+
*/
|
|
5830
|
+
this.OnCallFormName = null;
|
|
5831
|
+
|
|
5832
|
+
/**
|
|
5833
|
+
* Schedule description
|
|
5834
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5835
|
+
* @type {string || null}
|
|
5836
|
+
*/
|
|
5837
|
+
this.OnCallFormDesc = null;
|
|
5838
|
+
|
|
5839
|
+
/**
|
|
5840
|
+
* Rotation type.
|
|
5841
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5842
|
+
* @type {string || null}
|
|
5843
|
+
*/
|
|
5844
|
+
this.RotationType = null;
|
|
5845
|
+
|
|
5846
|
+
/**
|
|
5847
|
+
* Shift change time.
|
|
5848
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5849
|
+
* @type {string || null}
|
|
5850
|
+
*/
|
|
5851
|
+
this.ShiftTime = null;
|
|
5852
|
+
|
|
5853
|
+
/**
|
|
5854
|
+
* Validity start time
|
|
5855
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5856
|
+
* @type {number || null}
|
|
5857
|
+
*/
|
|
5858
|
+
this.EffectiveStartTime = null;
|
|
5859
|
+
|
|
5860
|
+
/**
|
|
5861
|
+
* Validity end time
|
|
5862
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5863
|
+
* @type {number || null}
|
|
5864
|
+
*/
|
|
5865
|
+
this.EffectiveEndTime = null;
|
|
5866
|
+
|
|
5867
|
+
/**
|
|
5868
|
+
* Time zone
|
|
5869
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5870
|
+
* @type {number || null}
|
|
5871
|
+
*/
|
|
5872
|
+
this.TimeZone = null;
|
|
5873
|
+
|
|
5874
|
+
/**
|
|
5875
|
+
* Current on-duty personnel
|
|
5876
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5877
|
+
* @type {Array.<string> || null}
|
|
5878
|
+
*/
|
|
5879
|
+
this.CurrOnCallStaffs = null;
|
|
5880
|
+
|
|
5881
|
+
/**
|
|
5882
|
+
* Tag bound to the template
|
|
5883
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
5884
|
+
* @type {Array.<Tag> || null}
|
|
5885
|
+
*/
|
|
5886
|
+
this.Tags = null;
|
|
5887
|
+
|
|
5888
|
+
}
|
|
5889
|
+
|
|
5890
|
+
/**
|
|
5891
|
+
* @private
|
|
5892
|
+
*/
|
|
5893
|
+
deserialize(params) {
|
|
5894
|
+
if (!params) {
|
|
5895
|
+
return;
|
|
5896
|
+
}
|
|
5897
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
5898
|
+
this.OnCallFormName = 'OnCallFormName' in params ? params.OnCallFormName : null;
|
|
5899
|
+
this.OnCallFormDesc = 'OnCallFormDesc' in params ? params.OnCallFormDesc : null;
|
|
5900
|
+
this.RotationType = 'RotationType' in params ? params.RotationType : null;
|
|
5901
|
+
this.ShiftTime = 'ShiftTime' in params ? params.ShiftTime : null;
|
|
5902
|
+
this.EffectiveStartTime = 'EffectiveStartTime' in params ? params.EffectiveStartTime : null;
|
|
5903
|
+
this.EffectiveEndTime = 'EffectiveEndTime' in params ? params.EffectiveEndTime : null;
|
|
5904
|
+
this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
|
|
5905
|
+
this.CurrOnCallStaffs = 'CurrOnCallStaffs' in params ? params.CurrOnCallStaffs : null;
|
|
5906
|
+
|
|
5907
|
+
if (params.Tags) {
|
|
5908
|
+
this.Tags = new Array();
|
|
5909
|
+
for (let z in params.Tags) {
|
|
5910
|
+
let obj = new Tag();
|
|
5911
|
+
obj.deserialize(params.Tags[z]);
|
|
5912
|
+
this.Tags.push(obj);
|
|
5913
|
+
}
|
|
5914
|
+
}
|
|
5915
|
+
|
|
5916
|
+
}
|
|
5917
|
+
}
|
|
5918
|
+
|
|
5575
5919
|
/**
|
|
5576
5920
|
* DescribeSSOAccount request structure.
|
|
5577
5921
|
* @class
|
|
@@ -5980,48 +6324,60 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5980
6324
|
}
|
|
5981
6325
|
|
|
5982
6326
|
/**
|
|
5983
|
-
*
|
|
6327
|
+
* Modification of the metric threshold condition passed in by the alarm policy group.
|
|
5984
6328
|
* @class
|
|
5985
6329
|
*/
|
|
5986
|
-
class
|
|
6330
|
+
class ModifyPolicyGroupCondition extends AbstractModel {
|
|
5987
6331
|
constructor(){
|
|
5988
6332
|
super();
|
|
5989
6333
|
|
|
5990
6334
|
/**
|
|
5991
|
-
*
|
|
6335
|
+
* Metric ID.
|
|
6336
|
+
* @type {number || null}
|
|
6337
|
+
*/
|
|
6338
|
+
this.MetricId = null;
|
|
6339
|
+
|
|
6340
|
+
/**
|
|
6341
|
+
* Comparative type. The value 1 indicates greater than. The value 2 indicates greater than or equal to. The value 3 indicates smaller than. The value 4 indicates smaller than or equal to. The value 5 indicates equal to. The value 6 indicates not equal to.
|
|
6342
|
+
* @type {number || null}
|
|
6343
|
+
*/
|
|
6344
|
+
this.CalcType = null;
|
|
6345
|
+
|
|
6346
|
+
/**
|
|
6347
|
+
* Threshold.
|
|
5992
6348
|
* @type {string || null}
|
|
5993
6349
|
*/
|
|
5994
|
-
this.
|
|
6350
|
+
this.CalcValue = null;
|
|
5995
6351
|
|
|
5996
6352
|
/**
|
|
5997
|
-
*
|
|
6353
|
+
* Data period of the detected metric.
|
|
5998
6354
|
* @type {number || null}
|
|
5999
6355
|
*/
|
|
6000
|
-
this.
|
|
6356
|
+
this.CalcPeriod = null;
|
|
6001
6357
|
|
|
6002
6358
|
/**
|
|
6003
|
-
* Number of
|
|
6359
|
+
* Number of consecutive periods.
|
|
6004
6360
|
* @type {number || null}
|
|
6005
6361
|
*/
|
|
6006
|
-
this.
|
|
6362
|
+
this.ContinuePeriod = null;
|
|
6007
6363
|
|
|
6008
6364
|
/**
|
|
6009
|
-
*
|
|
6010
|
-
* @type {
|
|
6365
|
+
* Alarm sending and convergence type. The value 0 indicates that alarms are sent consecutively. The value 1 indicates that alarms are sent exponentially.
|
|
6366
|
+
* @type {number || null}
|
|
6011
6367
|
*/
|
|
6012
|
-
this.
|
|
6368
|
+
this.AlarmNotifyType = null;
|
|
6013
6369
|
|
|
6014
6370
|
/**
|
|
6015
|
-
*
|
|
6016
|
-
* @type {
|
|
6371
|
+
* Alarm sending period in seconds. If the value is less than 0, no alarm will be triggered. If the value is 0, an alarm will be triggered only once. If the value is greater than 0, an alarm will be triggered at the interval of triggerTime.
|
|
6372
|
+
* @type {number || null}
|
|
6017
6373
|
*/
|
|
6018
|
-
this.
|
|
6374
|
+
this.AlarmNotifyPeriod = null;
|
|
6019
6375
|
|
|
6020
6376
|
/**
|
|
6021
|
-
*
|
|
6377
|
+
* Rule ID. No filling means new addition while filling in ruleId means to modify existing rules.
|
|
6022
6378
|
* @type {number || null}
|
|
6023
6379
|
*/
|
|
6024
|
-
this.
|
|
6380
|
+
this.RuleId = null;
|
|
6025
6381
|
|
|
6026
6382
|
}
|
|
6027
6383
|
|
|
@@ -6032,12 +6388,14 @@ class DescribeGrafanaChannelsRequest extends AbstractModel {
|
|
|
6032
6388
|
if (!params) {
|
|
6033
6389
|
return;
|
|
6034
6390
|
}
|
|
6035
|
-
this.
|
|
6036
|
-
this.
|
|
6037
|
-
this.
|
|
6038
|
-
this.
|
|
6039
|
-
this.
|
|
6040
|
-
this.
|
|
6391
|
+
this.MetricId = 'MetricId' in params ? params.MetricId : null;
|
|
6392
|
+
this.CalcType = 'CalcType' in params ? params.CalcType : null;
|
|
6393
|
+
this.CalcValue = 'CalcValue' in params ? params.CalcValue : null;
|
|
6394
|
+
this.CalcPeriod = 'CalcPeriod' in params ? params.CalcPeriod : null;
|
|
6395
|
+
this.ContinuePeriod = 'ContinuePeriod' in params ? params.ContinuePeriod : null;
|
|
6396
|
+
this.AlarmNotifyType = 'AlarmNotifyType' in params ? params.AlarmNotifyType : null;
|
|
6397
|
+
this.AlarmNotifyPeriod = 'AlarmNotifyPeriod' in params ? params.AlarmNotifyPeriod : null;
|
|
6398
|
+
this.RuleId = 'RuleId' in params ? params.RuleId : null;
|
|
6041
6399
|
|
|
6042
6400
|
}
|
|
6043
6401
|
}
|
|
@@ -7652,6 +8010,41 @@ class ModifyPrometheusInstanceAttributesResponse extends AbstractModel {
|
|
|
7652
8010
|
}
|
|
7653
8011
|
}
|
|
7654
8012
|
|
|
8013
|
+
/**
|
|
8014
|
+
* UpdateOnCallForm response structure.
|
|
8015
|
+
* @class
|
|
8016
|
+
*/
|
|
8017
|
+
class UpdateOnCallFormResponse extends AbstractModel {
|
|
8018
|
+
constructor(){
|
|
8019
|
+
super();
|
|
8020
|
+
|
|
8021
|
+
/**
|
|
8022
|
+
* On-call schedule ID.
|
|
8023
|
+
* @type {string || null}
|
|
8024
|
+
*/
|
|
8025
|
+
this.OnCallFormID = null;
|
|
8026
|
+
|
|
8027
|
+
/**
|
|
8028
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8029
|
+
* @type {string || null}
|
|
8030
|
+
*/
|
|
8031
|
+
this.RequestId = null;
|
|
8032
|
+
|
|
8033
|
+
}
|
|
8034
|
+
|
|
8035
|
+
/**
|
|
8036
|
+
* @private
|
|
8037
|
+
*/
|
|
8038
|
+
deserialize(params) {
|
|
8039
|
+
if (!params) {
|
|
8040
|
+
return;
|
|
8041
|
+
}
|
|
8042
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
8043
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8044
|
+
|
|
8045
|
+
}
|
|
8046
|
+
}
|
|
8047
|
+
|
|
7655
8048
|
/**
|
|
7656
8049
|
* Sync target of the TMP template
|
|
7657
8050
|
* @class
|
|
@@ -9182,21 +9575,27 @@ class CreateGrafanaNotificationChannelRequest extends AbstractModel {
|
|
|
9182
9575
|
}
|
|
9183
9576
|
|
|
9184
9577
|
/**
|
|
9185
|
-
*
|
|
9578
|
+
* DeleteOnCallForms response structure.
|
|
9186
9579
|
* @class
|
|
9187
9580
|
*/
|
|
9188
|
-
class
|
|
9581
|
+
class DeleteOnCallFormsResponse extends AbstractModel {
|
|
9189
9582
|
constructor(){
|
|
9190
9583
|
super();
|
|
9191
9584
|
|
|
9192
9585
|
/**
|
|
9193
|
-
*
|
|
9194
|
-
* @type {Array.<
|
|
9586
|
+
* On-call schedule IDs failed to be deleted.
|
|
9587
|
+
* @type {Array.<string> || null}
|
|
9195
9588
|
*/
|
|
9196
|
-
this.
|
|
9589
|
+
this.FailedOnCallFormIDs = null;
|
|
9197
9590
|
|
|
9198
9591
|
/**
|
|
9199
|
-
*
|
|
9592
|
+
* On-call schedule IDs deleted successfully.
|
|
9593
|
+
* @type {Array.<string> || null}
|
|
9594
|
+
*/
|
|
9595
|
+
this.SuccessOnCallFormIDs = null;
|
|
9596
|
+
|
|
9597
|
+
/**
|
|
9598
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9200
9599
|
* @type {string || null}
|
|
9201
9600
|
*/
|
|
9202
9601
|
this.RequestId = null;
|
|
@@ -9210,15 +9609,8 @@ class DescribePrometheusTargetsTMPResponse extends AbstractModel {
|
|
|
9210
9609
|
if (!params) {
|
|
9211
9610
|
return;
|
|
9212
9611
|
}
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
this.Jobs = new Array();
|
|
9216
|
-
for (let z in params.Jobs) {
|
|
9217
|
-
let obj = new PrometheusJobTargets();
|
|
9218
|
-
obj.deserialize(params.Jobs[z]);
|
|
9219
|
-
this.Jobs.push(obj);
|
|
9220
|
-
}
|
|
9221
|
-
}
|
|
9612
|
+
this.FailedOnCallFormIDs = 'FailedOnCallFormIDs' in params ? params.FailedOnCallFormIDs : null;
|
|
9613
|
+
this.SuccessOnCallFormIDs = 'SuccessOnCallFormIDs' in params ? params.SuccessOnCallFormIDs : null;
|
|
9222
9614
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9223
9615
|
|
|
9224
9616
|
}
|
|
@@ -9804,71 +10196,204 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9804
10196
|
}
|
|
9805
10197
|
|
|
9806
10198
|
/**
|
|
9807
|
-
*
|
|
10199
|
+
* Shift details
|
|
9808
10200
|
* @class
|
|
9809
10201
|
*/
|
|
9810
|
-
class
|
|
10202
|
+
class OneOnCallForm extends AbstractModel {
|
|
9811
10203
|
constructor(){
|
|
9812
10204
|
super();
|
|
9813
10205
|
|
|
9814
10206
|
/**
|
|
9815
|
-
* ID
|
|
10207
|
+
* Duty ID.
|
|
10208
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9816
10209
|
* @type {string || null}
|
|
9817
10210
|
*/
|
|
9818
|
-
this.
|
|
10211
|
+
this.OnCallFormID = null;
|
|
9819
10212
|
|
|
9820
10213
|
/**
|
|
9821
|
-
*
|
|
10214
|
+
* On-call name
|
|
10215
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9822
10216
|
* @type {string || null}
|
|
9823
10217
|
*/
|
|
9824
|
-
this.
|
|
10218
|
+
this.OnCallFormName = null;
|
|
9825
10219
|
|
|
9826
|
-
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
|
|
9831
|
-
|
|
9832
|
-
if (!params) {
|
|
9833
|
-
return;
|
|
9834
|
-
}
|
|
9835
|
-
this.AgentId = 'AgentId' in params ? params.AgentId : null;
|
|
9836
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10220
|
+
/**
|
|
10221
|
+
* Shift description
|
|
10222
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10223
|
+
* @type {string || null}
|
|
10224
|
+
*/
|
|
10225
|
+
this.OnCallFormDesc = null;
|
|
9837
10226
|
|
|
9838
|
-
|
|
9839
|
-
|
|
10227
|
+
/**
|
|
10228
|
+
* On-duty personnel
|
|
10229
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10230
|
+
* @type {Array.<StaffInfo> || null}
|
|
10231
|
+
*/
|
|
10232
|
+
this.StaffInfos = null;
|
|
9840
10233
|
|
|
9841
|
-
/**
|
|
9842
|
-
|
|
9843
|
-
|
|
9844
|
-
|
|
9845
|
-
|
|
9846
|
-
|
|
9847
|
-
super();
|
|
10234
|
+
/**
|
|
10235
|
+
* Rotation type
|
|
10236
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10237
|
+
* @type {string || null}
|
|
10238
|
+
*/
|
|
10239
|
+
this.RotationType = null;
|
|
9848
10240
|
|
|
9849
10241
|
/**
|
|
9850
|
-
*
|
|
10242
|
+
* Shift change time.
|
|
10243
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9851
10244
|
* @type {string || null}
|
|
9852
10245
|
*/
|
|
9853
|
-
this.
|
|
10246
|
+
this.ShiftTime = null;
|
|
9854
10247
|
|
|
9855
10248
|
/**
|
|
9856
|
-
*
|
|
10249
|
+
* Start time of the on-call validity period
|
|
10250
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9857
10251
|
* @type {number || null}
|
|
9858
10252
|
*/
|
|
9859
|
-
this.
|
|
10253
|
+
this.EffectiveStartTime = null;
|
|
9860
10254
|
|
|
9861
10255
|
/**
|
|
9862
|
-
*
|
|
10256
|
+
* End time of the on-call validity period
|
|
10257
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9863
10258
|
* @type {number || null}
|
|
9864
10259
|
*/
|
|
9865
|
-
this.
|
|
10260
|
+
this.EffectiveEndTime = null;
|
|
9866
10261
|
|
|
9867
10262
|
/**
|
|
9868
|
-
*
|
|
9869
|
-
|
|
9870
|
-
* @type {
|
|
9871
|
-
*/
|
|
10263
|
+
* Time zone
|
|
10264
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10265
|
+
* @type {number || null}
|
|
10266
|
+
*/
|
|
10267
|
+
this.TimeZone = null;
|
|
10268
|
+
|
|
10269
|
+
/**
|
|
10270
|
+
* Shift information.
|
|
10271
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10272
|
+
* @type {Array.<CoverStaffInfo> || null}
|
|
10273
|
+
*/
|
|
10274
|
+
this.CoverStaffInfos = null;
|
|
10275
|
+
|
|
10276
|
+
/**
|
|
10277
|
+
* Tag bound to the template
|
|
10278
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10279
|
+
* @type {Array.<Tag> || null}
|
|
10280
|
+
*/
|
|
10281
|
+
this.Tags = null;
|
|
10282
|
+
|
|
10283
|
+
}
|
|
10284
|
+
|
|
10285
|
+
/**
|
|
10286
|
+
* @private
|
|
10287
|
+
*/
|
|
10288
|
+
deserialize(params) {
|
|
10289
|
+
if (!params) {
|
|
10290
|
+
return;
|
|
10291
|
+
}
|
|
10292
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
10293
|
+
this.OnCallFormName = 'OnCallFormName' in params ? params.OnCallFormName : null;
|
|
10294
|
+
this.OnCallFormDesc = 'OnCallFormDesc' in params ? params.OnCallFormDesc : null;
|
|
10295
|
+
|
|
10296
|
+
if (params.StaffInfos) {
|
|
10297
|
+
this.StaffInfos = new Array();
|
|
10298
|
+
for (let z in params.StaffInfos) {
|
|
10299
|
+
let obj = new StaffInfo();
|
|
10300
|
+
obj.deserialize(params.StaffInfos[z]);
|
|
10301
|
+
this.StaffInfos.push(obj);
|
|
10302
|
+
}
|
|
10303
|
+
}
|
|
10304
|
+
this.RotationType = 'RotationType' in params ? params.RotationType : null;
|
|
10305
|
+
this.ShiftTime = 'ShiftTime' in params ? params.ShiftTime : null;
|
|
10306
|
+
this.EffectiveStartTime = 'EffectiveStartTime' in params ? params.EffectiveStartTime : null;
|
|
10307
|
+
this.EffectiveEndTime = 'EffectiveEndTime' in params ? params.EffectiveEndTime : null;
|
|
10308
|
+
this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
|
|
10309
|
+
|
|
10310
|
+
if (params.CoverStaffInfos) {
|
|
10311
|
+
this.CoverStaffInfos = new Array();
|
|
10312
|
+
for (let z in params.CoverStaffInfos) {
|
|
10313
|
+
let obj = new CoverStaffInfo();
|
|
10314
|
+
obj.deserialize(params.CoverStaffInfos[z]);
|
|
10315
|
+
this.CoverStaffInfos.push(obj);
|
|
10316
|
+
}
|
|
10317
|
+
}
|
|
10318
|
+
|
|
10319
|
+
if (params.Tags) {
|
|
10320
|
+
this.Tags = new Array();
|
|
10321
|
+
for (let z in params.Tags) {
|
|
10322
|
+
let obj = new Tag();
|
|
10323
|
+
obj.deserialize(params.Tags[z]);
|
|
10324
|
+
this.Tags.push(obj);
|
|
10325
|
+
}
|
|
10326
|
+
}
|
|
10327
|
+
|
|
10328
|
+
}
|
|
10329
|
+
}
|
|
10330
|
+
|
|
10331
|
+
/**
|
|
10332
|
+
* CreatePrometheusAgent response structure.
|
|
10333
|
+
* @class
|
|
10334
|
+
*/
|
|
10335
|
+
class CreatePrometheusAgentResponse extends AbstractModel {
|
|
10336
|
+
constructor(){
|
|
10337
|
+
super();
|
|
10338
|
+
|
|
10339
|
+
/**
|
|
10340
|
+
* ID of a successfully created agent.
|
|
10341
|
+
* @type {string || null}
|
|
10342
|
+
*/
|
|
10343
|
+
this.AgentId = null;
|
|
10344
|
+
|
|
10345
|
+
/**
|
|
10346
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10347
|
+
* @type {string || null}
|
|
10348
|
+
*/
|
|
10349
|
+
this.RequestId = null;
|
|
10350
|
+
|
|
10351
|
+
}
|
|
10352
|
+
|
|
10353
|
+
/**
|
|
10354
|
+
* @private
|
|
10355
|
+
*/
|
|
10356
|
+
deserialize(params) {
|
|
10357
|
+
if (!params) {
|
|
10358
|
+
return;
|
|
10359
|
+
}
|
|
10360
|
+
this.AgentId = 'AgentId' in params ? params.AgentId : null;
|
|
10361
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10362
|
+
|
|
10363
|
+
}
|
|
10364
|
+
}
|
|
10365
|
+
|
|
10366
|
+
/**
|
|
10367
|
+
* DescribePrometheusAlertPolicy request structure.
|
|
10368
|
+
* @class
|
|
10369
|
+
*/
|
|
10370
|
+
class DescribePrometheusAlertPolicyRequest extends AbstractModel {
|
|
10371
|
+
constructor(){
|
|
10372
|
+
super();
|
|
10373
|
+
|
|
10374
|
+
/**
|
|
10375
|
+
* Instance ID
|
|
10376
|
+
* @type {string || null}
|
|
10377
|
+
*/
|
|
10378
|
+
this.InstanceId = null;
|
|
10379
|
+
|
|
10380
|
+
/**
|
|
10381
|
+
* Page offset
|
|
10382
|
+
* @type {number || null}
|
|
10383
|
+
*/
|
|
10384
|
+
this.Offset = null;
|
|
10385
|
+
|
|
10386
|
+
/**
|
|
10387
|
+
* Number of results per page
|
|
10388
|
+
* @type {number || null}
|
|
10389
|
+
*/
|
|
10390
|
+
this.Limit = null;
|
|
10391
|
+
|
|
10392
|
+
/**
|
|
10393
|
+
* Filter
|
|
10394
|
+
Valid values: `ID`, `Name`.
|
|
10395
|
+
* @type {Array.<Filter> || null}
|
|
10396
|
+
*/
|
|
9872
10397
|
this.Filters = null;
|
|
9873
10398
|
|
|
9874
10399
|
}
|
|
@@ -10534,6 +11059,35 @@ class CreatePrometheusConfigResponse extends AbstractModel {
|
|
|
10534
11059
|
}
|
|
10535
11060
|
}
|
|
10536
11061
|
|
|
11062
|
+
/**
|
|
11063
|
+
* On-duty personnel ID group.
|
|
11064
|
+
* @class
|
|
11065
|
+
*/
|
|
11066
|
+
class StaffInfo extends AbstractModel {
|
|
11067
|
+
constructor(){
|
|
11068
|
+
super();
|
|
11069
|
+
|
|
11070
|
+
/**
|
|
11071
|
+
* On-duty personnel ID group.
|
|
11072
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
11073
|
+
* @type {Array.<string> || null}
|
|
11074
|
+
*/
|
|
11075
|
+
this.StaffIDs = null;
|
|
11076
|
+
|
|
11077
|
+
}
|
|
11078
|
+
|
|
11079
|
+
/**
|
|
11080
|
+
* @private
|
|
11081
|
+
*/
|
|
11082
|
+
deserialize(params) {
|
|
11083
|
+
if (!params) {
|
|
11084
|
+
return;
|
|
11085
|
+
}
|
|
11086
|
+
this.StaffIDs = 'StaffIDs' in params ? params.StaffIDs : null;
|
|
11087
|
+
|
|
11088
|
+
}
|
|
11089
|
+
}
|
|
11090
|
+
|
|
10537
11091
|
/**
|
|
10538
11092
|
* UpdateDNSConfig request structure.
|
|
10539
11093
|
* @class
|
|
@@ -10632,34 +11186,6 @@ class DescribeDNSConfigResponse extends AbstractModel {
|
|
|
10632
11186
|
}
|
|
10633
11187
|
}
|
|
10634
11188
|
|
|
10635
|
-
/**
|
|
10636
|
-
* DestroyPrometheusInstance request structure.
|
|
10637
|
-
* @class
|
|
10638
|
-
*/
|
|
10639
|
-
class DestroyPrometheusInstanceRequest extends AbstractModel {
|
|
10640
|
-
constructor(){
|
|
10641
|
-
super();
|
|
10642
|
-
|
|
10643
|
-
/**
|
|
10644
|
-
* Instance ID. The instance must be terminated first.
|
|
10645
|
-
* @type {string || null}
|
|
10646
|
-
*/
|
|
10647
|
-
this.InstanceId = null;
|
|
10648
|
-
|
|
10649
|
-
}
|
|
10650
|
-
|
|
10651
|
-
/**
|
|
10652
|
-
* @private
|
|
10653
|
-
*/
|
|
10654
|
-
deserialize(params) {
|
|
10655
|
-
if (!params) {
|
|
10656
|
-
return;
|
|
10657
|
-
}
|
|
10658
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
10659
|
-
|
|
10660
|
-
}
|
|
10661
|
-
}
|
|
10662
|
-
|
|
10663
11189
|
/**
|
|
10664
11190
|
* DeleteRecordingRules request structure.
|
|
10665
11191
|
* @class
|
|
@@ -11976,6 +12502,69 @@ class LogFilterInfo extends AbstractModel {
|
|
|
11976
12502
|
}
|
|
11977
12503
|
}
|
|
11978
12504
|
|
|
12505
|
+
/**
|
|
12506
|
+
* DescribeGrafanaChannels request structure.
|
|
12507
|
+
* @class
|
|
12508
|
+
*/
|
|
12509
|
+
class DescribeGrafanaChannelsRequest extends AbstractModel {
|
|
12510
|
+
constructor(){
|
|
12511
|
+
super();
|
|
12512
|
+
|
|
12513
|
+
/**
|
|
12514
|
+
* TCMG instance ID, such as “grafana-12345678”.
|
|
12515
|
+
* @type {string || null}
|
|
12516
|
+
*/
|
|
12517
|
+
this.InstanceId = null;
|
|
12518
|
+
|
|
12519
|
+
/**
|
|
12520
|
+
* Offset.
|
|
12521
|
+
* @type {number || null}
|
|
12522
|
+
*/
|
|
12523
|
+
this.Offset = null;
|
|
12524
|
+
|
|
12525
|
+
/**
|
|
12526
|
+
* Number of items to be queried
|
|
12527
|
+
* @type {number || null}
|
|
12528
|
+
*/
|
|
12529
|
+
this.Limit = null;
|
|
12530
|
+
|
|
12531
|
+
/**
|
|
12532
|
+
* Alert channel name, such as “test”.
|
|
12533
|
+
* @type {string || null}
|
|
12534
|
+
*/
|
|
12535
|
+
this.ChannelName = null;
|
|
12536
|
+
|
|
12537
|
+
/**
|
|
12538
|
+
* Alert channel ID, such as “nchannel-abcd1234”.
|
|
12539
|
+
* @type {Array.<string> || null}
|
|
12540
|
+
*/
|
|
12541
|
+
this.ChannelIds = null;
|
|
12542
|
+
|
|
12543
|
+
/**
|
|
12544
|
+
* Alert channel status
|
|
12545
|
+
* @type {number || null}
|
|
12546
|
+
*/
|
|
12547
|
+
this.ChannelState = null;
|
|
12548
|
+
|
|
12549
|
+
}
|
|
12550
|
+
|
|
12551
|
+
/**
|
|
12552
|
+
* @private
|
|
12553
|
+
*/
|
|
12554
|
+
deserialize(params) {
|
|
12555
|
+
if (!params) {
|
|
12556
|
+
return;
|
|
12557
|
+
}
|
|
12558
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
12559
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
12560
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
12561
|
+
this.ChannelName = 'ChannelName' in params ? params.ChannelName : null;
|
|
12562
|
+
this.ChannelIds = 'ChannelIds' in params ? params.ChannelIds : null;
|
|
12563
|
+
this.ChannelState = 'ChannelState' in params ? params.ChannelState : null;
|
|
12564
|
+
|
|
12565
|
+
}
|
|
12566
|
+
}
|
|
12567
|
+
|
|
11979
12568
|
/**
|
|
11980
12569
|
* CreateExporterIntegration request structure.
|
|
11981
12570
|
* @class
|
|
@@ -17118,6 +17707,41 @@ class DescribeGrafanaIntegrationsRequest extends AbstractModel {
|
|
|
17118
17707
|
}
|
|
17119
17708
|
}
|
|
17120
17709
|
|
|
17710
|
+
/**
|
|
17711
|
+
* CreateOnCallForm response structure.
|
|
17712
|
+
* @class
|
|
17713
|
+
*/
|
|
17714
|
+
class CreateOnCallFormResponse extends AbstractModel {
|
|
17715
|
+
constructor(){
|
|
17716
|
+
super();
|
|
17717
|
+
|
|
17718
|
+
/**
|
|
17719
|
+
* On-call schedule ID.
|
|
17720
|
+
* @type {string || null}
|
|
17721
|
+
*/
|
|
17722
|
+
this.OnCallFormID = null;
|
|
17723
|
+
|
|
17724
|
+
/**
|
|
17725
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
17726
|
+
* @type {string || null}
|
|
17727
|
+
*/
|
|
17728
|
+
this.RequestId = null;
|
|
17729
|
+
|
|
17730
|
+
}
|
|
17731
|
+
|
|
17732
|
+
/**
|
|
17733
|
+
* @private
|
|
17734
|
+
*/
|
|
17735
|
+
deserialize(params) {
|
|
17736
|
+
if (!params) {
|
|
17737
|
+
return;
|
|
17738
|
+
}
|
|
17739
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
17740
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
17741
|
+
|
|
17742
|
+
}
|
|
17743
|
+
}
|
|
17744
|
+
|
|
17121
17745
|
/**
|
|
17122
17746
|
* Alarm record data
|
|
17123
17747
|
* @class
|
|
@@ -17544,16 +18168,66 @@ class CreatePolicyGroupRequest extends AbstractModel {
|
|
|
17544
18168
|
}
|
|
17545
18169
|
|
|
17546
18170
|
/**
|
|
17547
|
-
*
|
|
18171
|
+
* DescribeOnCallForms response structure.
|
|
17548
18172
|
* @class
|
|
17549
18173
|
*/
|
|
17550
|
-
class
|
|
18174
|
+
class DescribeOnCallFormsResponse extends AbstractModel {
|
|
17551
18175
|
constructor(){
|
|
17552
18176
|
super();
|
|
17553
18177
|
|
|
17554
18178
|
/**
|
|
17555
|
-
*
|
|
17556
|
-
* @type {
|
|
18179
|
+
* On-call schedule information
|
|
18180
|
+
* @type {Array.<OnCallForm> || null}
|
|
18181
|
+
*/
|
|
18182
|
+
this.OnCallForms = null;
|
|
18183
|
+
|
|
18184
|
+
/**
|
|
18185
|
+
* Total number.
|
|
18186
|
+
* @type {number || null}
|
|
18187
|
+
*/
|
|
18188
|
+
this.TotalCount = null;
|
|
18189
|
+
|
|
18190
|
+
/**
|
|
18191
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
18192
|
+
* @type {string || null}
|
|
18193
|
+
*/
|
|
18194
|
+
this.RequestId = null;
|
|
18195
|
+
|
|
18196
|
+
}
|
|
18197
|
+
|
|
18198
|
+
/**
|
|
18199
|
+
* @private
|
|
18200
|
+
*/
|
|
18201
|
+
deserialize(params) {
|
|
18202
|
+
if (!params) {
|
|
18203
|
+
return;
|
|
18204
|
+
}
|
|
18205
|
+
|
|
18206
|
+
if (params.OnCallForms) {
|
|
18207
|
+
this.OnCallForms = new Array();
|
|
18208
|
+
for (let z in params.OnCallForms) {
|
|
18209
|
+
let obj = new OnCallForm();
|
|
18210
|
+
obj.deserialize(params.OnCallForms[z]);
|
|
18211
|
+
this.OnCallForms.push(obj);
|
|
18212
|
+
}
|
|
18213
|
+
}
|
|
18214
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
18215
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
18216
|
+
|
|
18217
|
+
}
|
|
18218
|
+
}
|
|
18219
|
+
|
|
18220
|
+
/**
|
|
18221
|
+
* CreatePrometheusScrapeJob request structure.
|
|
18222
|
+
* @class
|
|
18223
|
+
*/
|
|
18224
|
+
class CreatePrometheusScrapeJobRequest extends AbstractModel {
|
|
18225
|
+
constructor(){
|
|
18226
|
+
super();
|
|
18227
|
+
|
|
18228
|
+
/**
|
|
18229
|
+
* TMP instance ID, such as “prom-abcd1234”.
|
|
18230
|
+
* @type {string || null}
|
|
17557
18231
|
*/
|
|
17558
18232
|
this.InstanceId = null;
|
|
17559
18233
|
|
|
@@ -18341,6 +19015,41 @@ class DescribeRecordingRulesRequest extends AbstractModel {
|
|
|
18341
19015
|
}
|
|
18342
19016
|
}
|
|
18343
19017
|
|
|
19018
|
+
/**
|
|
19019
|
+
* DeleteOnCallForms request structure.
|
|
19020
|
+
* @class
|
|
19021
|
+
*/
|
|
19022
|
+
class DeleteOnCallFormsRequest extends AbstractModel {
|
|
19023
|
+
constructor(){
|
|
19024
|
+
super();
|
|
19025
|
+
|
|
19026
|
+
/**
|
|
19027
|
+
* The fixed value is monitor.
|
|
19028
|
+
* @type {string || null}
|
|
19029
|
+
*/
|
|
19030
|
+
this.Module = null;
|
|
19031
|
+
|
|
19032
|
+
/**
|
|
19033
|
+
* ID of the on-call schedule to be deleted.
|
|
19034
|
+
* @type {Array.<string> || null}
|
|
19035
|
+
*/
|
|
19036
|
+
this.OnCallFormIDs = null;
|
|
19037
|
+
|
|
19038
|
+
}
|
|
19039
|
+
|
|
19040
|
+
/**
|
|
19041
|
+
* @private
|
|
19042
|
+
*/
|
|
19043
|
+
deserialize(params) {
|
|
19044
|
+
if (!params) {
|
|
19045
|
+
return;
|
|
19046
|
+
}
|
|
19047
|
+
this.Module = 'Module' in params ? params.Module : null;
|
|
19048
|
+
this.OnCallFormIDs = 'OnCallFormIDs' in params ? params.OnCallFormIDs : null;
|
|
19049
|
+
|
|
19050
|
+
}
|
|
19051
|
+
}
|
|
19052
|
+
|
|
18344
19053
|
/**
|
|
18345
19054
|
* UpgradeGrafanaDashboard request structure.
|
|
18346
19055
|
* @class
|
|
@@ -18910,6 +19619,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
18910
19619
|
}
|
|
18911
19620
|
}
|
|
18912
19621
|
|
|
19622
|
+
/**
|
|
19623
|
+
* DeleteRecordingRules response structure.
|
|
19624
|
+
* @class
|
|
19625
|
+
*/
|
|
19626
|
+
class DeleteRecordingRulesResponse extends AbstractModel {
|
|
19627
|
+
constructor(){
|
|
19628
|
+
super();
|
|
19629
|
+
|
|
19630
|
+
/**
|
|
19631
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
19632
|
+
* @type {string || null}
|
|
19633
|
+
*/
|
|
19634
|
+
this.RequestId = null;
|
|
19635
|
+
|
|
19636
|
+
}
|
|
19637
|
+
|
|
19638
|
+
/**
|
|
19639
|
+
* @private
|
|
19640
|
+
*/
|
|
19641
|
+
deserialize(params) {
|
|
19642
|
+
if (!params) {
|
|
19643
|
+
return;
|
|
19644
|
+
}
|
|
19645
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
19646
|
+
|
|
19647
|
+
}
|
|
19648
|
+
}
|
|
19649
|
+
|
|
18913
19650
|
/**
|
|
18914
19651
|
* UpdateGrafanaWhiteList request structure.
|
|
18915
19652
|
* @class
|
|
@@ -20693,24 +21430,54 @@ class DeletePrometheusTempSyncRequest extends AbstractModel {
|
|
|
20693
21430
|
}
|
|
20694
21431
|
|
|
20695
21432
|
/**
|
|
20696
|
-
*
|
|
21433
|
+
* DescribeOnCallForms request structure.
|
|
20697
21434
|
* @class
|
|
20698
21435
|
*/
|
|
20699
|
-
class
|
|
21436
|
+
class DescribeOnCallFormsRequest extends AbstractModel {
|
|
20700
21437
|
constructor(){
|
|
20701
21438
|
super();
|
|
20702
21439
|
|
|
20703
21440
|
/**
|
|
20704
|
-
*
|
|
21441
|
+
* The fixed value is monitor.
|
|
20705
21442
|
* @type {string || null}
|
|
20706
21443
|
*/
|
|
20707
|
-
this.
|
|
21444
|
+
this.Module = null;
|
|
20708
21445
|
|
|
20709
21446
|
/**
|
|
20710
|
-
*
|
|
20711
|
-
* @type {
|
|
21447
|
+
* Pagination start offset.
|
|
21448
|
+
* @type {number || null}
|
|
20712
21449
|
*/
|
|
20713
|
-
this.
|
|
21450
|
+
this.Offset = null;
|
|
21451
|
+
|
|
21452
|
+
/**
|
|
21453
|
+
* Number of pages for pagination query.
|
|
21454
|
+
* @type {number || null}
|
|
21455
|
+
*/
|
|
21456
|
+
this.Limit = null;
|
|
21457
|
+
|
|
21458
|
+
/**
|
|
21459
|
+
* Supports searching based on user ID.
|
|
21460
|
+
* @type {Array.<string> || null}
|
|
21461
|
+
*/
|
|
21462
|
+
this.OnCallFormStaffIDs = null;
|
|
21463
|
+
|
|
21464
|
+
/**
|
|
21465
|
+
* Rotation type
|
|
21466
|
+
* @type {string || null}
|
|
21467
|
+
*/
|
|
21468
|
+
this.RotationType = null;
|
|
21469
|
+
|
|
21470
|
+
/**
|
|
21471
|
+
* Sorting method.
|
|
21472
|
+
* @type {string || null}
|
|
21473
|
+
*/
|
|
21474
|
+
this.Order = null;
|
|
21475
|
+
|
|
21476
|
+
/**
|
|
21477
|
+
* Supports searching bay on ID and name.
|
|
21478
|
+
* @type {string || null}
|
|
21479
|
+
*/
|
|
21480
|
+
this.OnCallFormName = null;
|
|
20714
21481
|
|
|
20715
21482
|
}
|
|
20716
21483
|
|
|
@@ -20721,8 +21488,13 @@ class DescribePrometheusGlobalConfigRequest extends AbstractModel {
|
|
|
20721
21488
|
if (!params) {
|
|
20722
21489
|
return;
|
|
20723
21490
|
}
|
|
20724
|
-
this.
|
|
20725
|
-
this.
|
|
21491
|
+
this.Module = 'Module' in params ? params.Module : null;
|
|
21492
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
21493
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
21494
|
+
this.OnCallFormStaffIDs = 'OnCallFormStaffIDs' in params ? params.OnCallFormStaffIDs : null;
|
|
21495
|
+
this.RotationType = 'RotationType' in params ? params.RotationType : null;
|
|
21496
|
+
this.Order = 'Order' in params ? params.Order : null;
|
|
21497
|
+
this.OnCallFormName = 'OnCallFormName' in params ? params.OnCallFormName : null;
|
|
20726
21498
|
|
|
20727
21499
|
}
|
|
20728
21500
|
}
|
|
@@ -20881,83 +21653,6 @@ List alert groups which name contains the given string.
|
|
|
20881
21653
|
}
|
|
20882
21654
|
}
|
|
20883
21655
|
|
|
20884
|
-
/**
|
|
20885
|
-
* Modification of the metric threshold condition passed in by the alarm policy group.
|
|
20886
|
-
* @class
|
|
20887
|
-
*/
|
|
20888
|
-
class ModifyPolicyGroupCondition extends AbstractModel {
|
|
20889
|
-
constructor(){
|
|
20890
|
-
super();
|
|
20891
|
-
|
|
20892
|
-
/**
|
|
20893
|
-
* Metric ID.
|
|
20894
|
-
* @type {number || null}
|
|
20895
|
-
*/
|
|
20896
|
-
this.MetricId = null;
|
|
20897
|
-
|
|
20898
|
-
/**
|
|
20899
|
-
* Comparative type. The value 1 indicates greater than. The value 2 indicates greater than or equal to. The value 3 indicates smaller than. The value 4 indicates smaller than or equal to. The value 5 indicates equal to. The value 6 indicates not equal to.
|
|
20900
|
-
* @type {number || null}
|
|
20901
|
-
*/
|
|
20902
|
-
this.CalcType = null;
|
|
20903
|
-
|
|
20904
|
-
/**
|
|
20905
|
-
* Threshold.
|
|
20906
|
-
* @type {string || null}
|
|
20907
|
-
*/
|
|
20908
|
-
this.CalcValue = null;
|
|
20909
|
-
|
|
20910
|
-
/**
|
|
20911
|
-
* Data period of the detected metric.
|
|
20912
|
-
* @type {number || null}
|
|
20913
|
-
*/
|
|
20914
|
-
this.CalcPeriod = null;
|
|
20915
|
-
|
|
20916
|
-
/**
|
|
20917
|
-
* Number of consecutive periods.
|
|
20918
|
-
* @type {number || null}
|
|
20919
|
-
*/
|
|
20920
|
-
this.ContinuePeriod = null;
|
|
20921
|
-
|
|
20922
|
-
/**
|
|
20923
|
-
* Alarm sending and convergence type. The value 0 indicates that alarms are sent consecutively. The value 1 indicates that alarms are sent exponentially.
|
|
20924
|
-
* @type {number || null}
|
|
20925
|
-
*/
|
|
20926
|
-
this.AlarmNotifyType = null;
|
|
20927
|
-
|
|
20928
|
-
/**
|
|
20929
|
-
* Alarm sending period in seconds. If the value is less than 0, no alarm will be triggered. If the value is 0, an alarm will be triggered only once. If the value is greater than 0, an alarm will be triggered at the interval of triggerTime.
|
|
20930
|
-
* @type {number || null}
|
|
20931
|
-
*/
|
|
20932
|
-
this.AlarmNotifyPeriod = null;
|
|
20933
|
-
|
|
20934
|
-
/**
|
|
20935
|
-
* Rule ID. No filling means new addition while filling in ruleId means to modify existing rules.
|
|
20936
|
-
* @type {number || null}
|
|
20937
|
-
*/
|
|
20938
|
-
this.RuleId = null;
|
|
20939
|
-
|
|
20940
|
-
}
|
|
20941
|
-
|
|
20942
|
-
/**
|
|
20943
|
-
* @private
|
|
20944
|
-
*/
|
|
20945
|
-
deserialize(params) {
|
|
20946
|
-
if (!params) {
|
|
20947
|
-
return;
|
|
20948
|
-
}
|
|
20949
|
-
this.MetricId = 'MetricId' in params ? params.MetricId : null;
|
|
20950
|
-
this.CalcType = 'CalcType' in params ? params.CalcType : null;
|
|
20951
|
-
this.CalcValue = 'CalcValue' in params ? params.CalcValue : null;
|
|
20952
|
-
this.CalcPeriod = 'CalcPeriod' in params ? params.CalcPeriod : null;
|
|
20953
|
-
this.ContinuePeriod = 'ContinuePeriod' in params ? params.ContinuePeriod : null;
|
|
20954
|
-
this.AlarmNotifyType = 'AlarmNotifyType' in params ? params.AlarmNotifyType : null;
|
|
20955
|
-
this.AlarmNotifyPeriod = 'AlarmNotifyPeriod' in params ? params.AlarmNotifyPeriod : null;
|
|
20956
|
-
this.RuleId = 'RuleId' in params ? params.RuleId : null;
|
|
20957
|
-
|
|
20958
|
-
}
|
|
20959
|
-
}
|
|
20960
|
-
|
|
20961
21656
|
/**
|
|
20962
21657
|
* ModifyPolicyGroup request structure.
|
|
20963
21658
|
* @class
|
|
@@ -21093,6 +21788,46 @@ class DescribeBaseMetricsRequest extends AbstractModel {
|
|
|
21093
21788
|
}
|
|
21094
21789
|
}
|
|
21095
21790
|
|
|
21791
|
+
/**
|
|
21792
|
+
* DescribeOnCallForm response structure.
|
|
21793
|
+
* @class
|
|
21794
|
+
*/
|
|
21795
|
+
class DescribeOnCallFormResponse extends AbstractModel {
|
|
21796
|
+
constructor(){
|
|
21797
|
+
super();
|
|
21798
|
+
|
|
21799
|
+
/**
|
|
21800
|
+
* On-call schedule details.
|
|
21801
|
+
* @type {OneOnCallForm || null}
|
|
21802
|
+
*/
|
|
21803
|
+
this.OnCallForm = null;
|
|
21804
|
+
|
|
21805
|
+
/**
|
|
21806
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
21807
|
+
* @type {string || null}
|
|
21808
|
+
*/
|
|
21809
|
+
this.RequestId = null;
|
|
21810
|
+
|
|
21811
|
+
}
|
|
21812
|
+
|
|
21813
|
+
/**
|
|
21814
|
+
* @private
|
|
21815
|
+
*/
|
|
21816
|
+
deserialize(params) {
|
|
21817
|
+
if (!params) {
|
|
21818
|
+
return;
|
|
21819
|
+
}
|
|
21820
|
+
|
|
21821
|
+
if (params.OnCallForm) {
|
|
21822
|
+
let obj = new OneOnCallForm();
|
|
21823
|
+
obj.deserialize(params.OnCallForm)
|
|
21824
|
+
this.OnCallForm = obj;
|
|
21825
|
+
}
|
|
21826
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
21827
|
+
|
|
21828
|
+
}
|
|
21829
|
+
}
|
|
21830
|
+
|
|
21096
21831
|
/**
|
|
21097
21832
|
* DeletePrometheusConfig request structure.
|
|
21098
21833
|
* @class
|
|
@@ -21487,6 +22222,120 @@ class DescribePrometheusTempRequest extends AbstractModel {
|
|
|
21487
22222
|
}
|
|
21488
22223
|
}
|
|
21489
22224
|
|
|
22225
|
+
/**
|
|
22226
|
+
* UpdateOnCallForm request structure.
|
|
22227
|
+
* @class
|
|
22228
|
+
*/
|
|
22229
|
+
class UpdateOnCallFormRequest extends AbstractModel {
|
|
22230
|
+
constructor(){
|
|
22231
|
+
super();
|
|
22232
|
+
|
|
22233
|
+
/**
|
|
22234
|
+
* The fixed value is monitor.
|
|
22235
|
+
* @type {string || null}
|
|
22236
|
+
*/
|
|
22237
|
+
this.Module = null;
|
|
22238
|
+
|
|
22239
|
+
/**
|
|
22240
|
+
* On-call schedule ID.
|
|
22241
|
+
* @type {string || null}
|
|
22242
|
+
*/
|
|
22243
|
+
this.OnCallFormID = null;
|
|
22244
|
+
|
|
22245
|
+
/**
|
|
22246
|
+
* On-call schedule name.
|
|
22247
|
+
* @type {string || null}
|
|
22248
|
+
*/
|
|
22249
|
+
this.OnCallFormName = null;
|
|
22250
|
+
|
|
22251
|
+
/**
|
|
22252
|
+
* On-call personnel ID group.
|
|
22253
|
+
* @type {Array.<StaffInfo> || null}
|
|
22254
|
+
*/
|
|
22255
|
+
this.StaffInfos = null;
|
|
22256
|
+
|
|
22257
|
+
/**
|
|
22258
|
+
* Rotation type.
|
|
22259
|
+
* @type {string || null}
|
|
22260
|
+
*/
|
|
22261
|
+
this.RotationType = null;
|
|
22262
|
+
|
|
22263
|
+
/**
|
|
22264
|
+
* Shift change time.
|
|
22265
|
+
* @type {string || null}
|
|
22266
|
+
*/
|
|
22267
|
+
this.ShiftTime = null;
|
|
22268
|
+
|
|
22269
|
+
/**
|
|
22270
|
+
* Effect time. Unit: seconds.
|
|
22271
|
+
* @type {number || null}
|
|
22272
|
+
*/
|
|
22273
|
+
this.EffectiveStartTime = null;
|
|
22274
|
+
|
|
22275
|
+
/**
|
|
22276
|
+
* End time of the validity period (in seconds).
|
|
22277
|
+
* @type {number || null}
|
|
22278
|
+
*/
|
|
22279
|
+
this.EffectiveEndTime = null;
|
|
22280
|
+
|
|
22281
|
+
/**
|
|
22282
|
+
* Time zone (-12 to 12).
|
|
22283
|
+
* @type {number || null}
|
|
22284
|
+
*/
|
|
22285
|
+
this.TimeZone = null;
|
|
22286
|
+
|
|
22287
|
+
/**
|
|
22288
|
+
* Description of the shift schedule.
|
|
22289
|
+
* @type {string || null}
|
|
22290
|
+
*/
|
|
22291
|
+
this.OnCallFormDesc = null;
|
|
22292
|
+
|
|
22293
|
+
/**
|
|
22294
|
+
* Shift information.
|
|
22295
|
+
* @type {Array.<CoverStaffInfo> || null}
|
|
22296
|
+
*/
|
|
22297
|
+
this.CoverStaffInfos = null;
|
|
22298
|
+
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
/**
|
|
22302
|
+
* @private
|
|
22303
|
+
*/
|
|
22304
|
+
deserialize(params) {
|
|
22305
|
+
if (!params) {
|
|
22306
|
+
return;
|
|
22307
|
+
}
|
|
22308
|
+
this.Module = 'Module' in params ? params.Module : null;
|
|
22309
|
+
this.OnCallFormID = 'OnCallFormID' in params ? params.OnCallFormID : null;
|
|
22310
|
+
this.OnCallFormName = 'OnCallFormName' in params ? params.OnCallFormName : null;
|
|
22311
|
+
|
|
22312
|
+
if (params.StaffInfos) {
|
|
22313
|
+
this.StaffInfos = new Array();
|
|
22314
|
+
for (let z in params.StaffInfos) {
|
|
22315
|
+
let obj = new StaffInfo();
|
|
22316
|
+
obj.deserialize(params.StaffInfos[z]);
|
|
22317
|
+
this.StaffInfos.push(obj);
|
|
22318
|
+
}
|
|
22319
|
+
}
|
|
22320
|
+
this.RotationType = 'RotationType' in params ? params.RotationType : null;
|
|
22321
|
+
this.ShiftTime = 'ShiftTime' in params ? params.ShiftTime : null;
|
|
22322
|
+
this.EffectiveStartTime = 'EffectiveStartTime' in params ? params.EffectiveStartTime : null;
|
|
22323
|
+
this.EffectiveEndTime = 'EffectiveEndTime' in params ? params.EffectiveEndTime : null;
|
|
22324
|
+
this.TimeZone = 'TimeZone' in params ? params.TimeZone : null;
|
|
22325
|
+
this.OnCallFormDesc = 'OnCallFormDesc' in params ? params.OnCallFormDesc : null;
|
|
22326
|
+
|
|
22327
|
+
if (params.CoverStaffInfos) {
|
|
22328
|
+
this.CoverStaffInfos = new Array();
|
|
22329
|
+
for (let z in params.CoverStaffInfos) {
|
|
22330
|
+
let obj = new CoverStaffInfo();
|
|
22331
|
+
obj.deserialize(params.CoverStaffInfos[z]);
|
|
22332
|
+
this.CoverStaffInfos.push(obj);
|
|
22333
|
+
}
|
|
22334
|
+
}
|
|
22335
|
+
|
|
22336
|
+
}
|
|
22337
|
+
}
|
|
22338
|
+
|
|
21490
22339
|
/**
|
|
21491
22340
|
* UpdatePrometheusAlertGroupState response structure.
|
|
21492
22341
|
* @class
|
|
@@ -21515,6 +22364,51 @@ class UpdatePrometheusAlertGroupStateResponse extends AbstractModel {
|
|
|
21515
22364
|
}
|
|
21516
22365
|
}
|
|
21517
22366
|
|
|
22367
|
+
/**
|
|
22368
|
+
* Shift personnel group information
|
|
22369
|
+
* @class
|
|
22370
|
+
*/
|
|
22371
|
+
class CoverStaffInfo extends AbstractModel {
|
|
22372
|
+
constructor(){
|
|
22373
|
+
super();
|
|
22374
|
+
|
|
22375
|
+
/**
|
|
22376
|
+
* Shift personnel ID group.
|
|
22377
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
22378
|
+
* @type {Array.<string> || null}
|
|
22379
|
+
*/
|
|
22380
|
+
this.CoverStaffIDs = null;
|
|
22381
|
+
|
|
22382
|
+
/**
|
|
22383
|
+
* Shift start time
|
|
22384
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
22385
|
+
* @type {number || null}
|
|
22386
|
+
*/
|
|
22387
|
+
this.CoverStartTime = null;
|
|
22388
|
+
|
|
22389
|
+
/**
|
|
22390
|
+
* Shift end time
|
|
22391
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
22392
|
+
* @type {number || null}
|
|
22393
|
+
*/
|
|
22394
|
+
this.CoverEndTime = null;
|
|
22395
|
+
|
|
22396
|
+
}
|
|
22397
|
+
|
|
22398
|
+
/**
|
|
22399
|
+
* @private
|
|
22400
|
+
*/
|
|
22401
|
+
deserialize(params) {
|
|
22402
|
+
if (!params) {
|
|
22403
|
+
return;
|
|
22404
|
+
}
|
|
22405
|
+
this.CoverStaffIDs = 'CoverStaffIDs' in params ? params.CoverStaffIDs : null;
|
|
22406
|
+
this.CoverStartTime = 'CoverStartTime' in params ? params.CoverStartTime : null;
|
|
22407
|
+
this.CoverEndTime = 'CoverEndTime' in params ? params.CoverEndTime : null;
|
|
22408
|
+
|
|
22409
|
+
}
|
|
22410
|
+
}
|
|
22411
|
+
|
|
21518
22412
|
/**
|
|
21519
22413
|
* Alarms returned by DescribeBasicAlarmList
|
|
21520
22414
|
* @class
|
|
@@ -23751,7 +24645,7 @@ class BindingPolicyObjectResponse extends AbstractModel {
|
|
|
23751
24645
|
module.exports = {
|
|
23752
24646
|
ModifyAlarmPolicyInfoRequest: ModifyAlarmPolicyInfoRequest,
|
|
23753
24647
|
AlarmPolicyTriggerTask: AlarmPolicyTriggerTask,
|
|
23754
|
-
|
|
24648
|
+
DescribeOnCallFormRequest: DescribeOnCallFormRequest,
|
|
23755
24649
|
DescribePrometheusInstancesOverviewRequest: DescribePrometheusInstancesOverviewRequest,
|
|
23756
24650
|
ModifyGrafanaInstanceResponse: ModifyGrafanaInstanceResponse,
|
|
23757
24651
|
DescribePolicyGroupInfoCallback: DescribePolicyGroupInfoCallback,
|
|
@@ -23778,6 +24672,7 @@ module.exports = {
|
|
|
23778
24672
|
UpdatePrometheusAgentStatusResponse: UpdatePrometheusAgentStatusResponse,
|
|
23779
24673
|
SyncPrometheusTempResponse: SyncPrometheusTempResponse,
|
|
23780
24674
|
UpdateGrafanaWhiteListResponse: UpdateGrafanaWhiteListResponse,
|
|
24675
|
+
DescribePolicyGroupListResponse: DescribePolicyGroupListResponse,
|
|
23781
24676
|
DescribeGrafanaEnvironmentsRequest: DescribeGrafanaEnvironmentsRequest,
|
|
23782
24677
|
PrometheusConfigItem: PrometheusConfigItem,
|
|
23783
24678
|
AlarmPolicy: AlarmPolicy,
|
|
@@ -23789,6 +24684,7 @@ module.exports = {
|
|
|
23789
24684
|
InstallPluginsResponse: InstallPluginsResponse,
|
|
23790
24685
|
AlarmPolicyRule: AlarmPolicyRule,
|
|
23791
24686
|
CreateGrafanaIntegrationRequest: CreateGrafanaIntegrationRequest,
|
|
24687
|
+
DescribePrometheusGlobalConfigRequest: DescribePrometheusGlobalConfigRequest,
|
|
23792
24688
|
Dimension: Dimension,
|
|
23793
24689
|
DescribeBindingPolicyObjectListResponse: DescribeBindingPolicyObjectListResponse,
|
|
23794
24690
|
PrometheusInstancesOverview: PrometheusInstancesOverview,
|
|
@@ -23800,6 +24696,7 @@ module.exports = {
|
|
|
23800
24696
|
DeleteSSOAccountRequest: DeleteSSOAccountRequest,
|
|
23801
24697
|
CreatePrometheusRecordRuleYamlRequest: CreatePrometheusRecordRuleYamlRequest,
|
|
23802
24698
|
Instance: Instance,
|
|
24699
|
+
DescribePrometheusAgentInstancesResponse: DescribePrometheusAgentInstancesResponse,
|
|
23803
24700
|
DescribeAlarmNoticesResponse: DescribeAlarmNoticesResponse,
|
|
23804
24701
|
PrometheusClusterAgentPodConfig: PrometheusClusterAgentPodConfig,
|
|
23805
24702
|
DeletePrometheusAlertGroupsRequest: DeletePrometheusAlertGroupsRequest,
|
|
@@ -23819,18 +24716,19 @@ module.exports = {
|
|
|
23819
24716
|
DescribePrometheusRecordRulesRequest: DescribePrometheusRecordRulesRequest,
|
|
23820
24717
|
ModifyAlarmPolicyStatusResponse: ModifyAlarmPolicyStatusResponse,
|
|
23821
24718
|
DescribeExporterIntegrationsResponse: DescribeExporterIntegrationsResponse,
|
|
24719
|
+
CreateOnCallFormRequest: CreateOnCallFormRequest,
|
|
23822
24720
|
UpdateAlertRuleResponse: UpdateAlertRuleResponse,
|
|
23823
24721
|
InstanceGroup: InstanceGroup,
|
|
23824
24722
|
EnableGrafanaSSORequest: EnableGrafanaSSORequest,
|
|
23825
24723
|
DescribePrometheusScrapeJobsResponse: DescribePrometheusScrapeJobsResponse,
|
|
23826
24724
|
EnableGrafanaInternetRequest: EnableGrafanaInternetRequest,
|
|
23827
24725
|
GrafanaAccountRole: GrafanaAccountRole,
|
|
23828
|
-
|
|
24726
|
+
DestroyPrometheusInstanceRequest: DestroyPrometheusInstanceRequest,
|
|
23829
24727
|
PolicyGroupReceiverInfo: PolicyGroupReceiverInfo,
|
|
23830
24728
|
Metric: Metric,
|
|
23831
24729
|
MidQueryCondition: MidQueryCondition,
|
|
23832
24730
|
DescribeGrafanaInstancesRequest: DescribeGrafanaInstancesRequest,
|
|
23833
|
-
|
|
24731
|
+
DescribePrometheusTargetsTMPResponse: DescribePrometheusTargetsTMPResponse,
|
|
23834
24732
|
URLNotice: URLNotice,
|
|
23835
24733
|
DeletePrometheusTempResponse: DeletePrometheusTempResponse,
|
|
23836
24734
|
CreatePolicyGroupCondition: CreatePolicyGroupCondition,
|
|
@@ -23844,6 +24742,7 @@ module.exports = {
|
|
|
23844
24742
|
CreateGrafanaNotificationChannelResponse: CreateGrafanaNotificationChannelResponse,
|
|
23845
24743
|
DescribeGrafanaNotificationChannelsRequest: DescribeGrafanaNotificationChannelsRequest,
|
|
23846
24744
|
CleanGrafanaInstanceRequest: CleanGrafanaInstanceRequest,
|
|
24745
|
+
OnCallForm: OnCallForm,
|
|
23847
24746
|
DescribeSSOAccountRequest: DescribeSSOAccountRequest,
|
|
23848
24747
|
UpdateExporterIntegrationResponse: UpdateExporterIntegrationResponse,
|
|
23849
24748
|
CreateAlarmNoticeRequest: CreateAlarmNoticeRequest,
|
|
@@ -23853,7 +24752,7 @@ module.exports = {
|
|
|
23853
24752
|
UnBindingAllPolicyObjectRequest: UnBindingAllPolicyObjectRequest,
|
|
23854
24753
|
SendCustomAlarmMsgResponse: SendCustomAlarmMsgResponse,
|
|
23855
24754
|
AlarmPolicyCondition: AlarmPolicyCondition,
|
|
23856
|
-
|
|
24755
|
+
ModifyPolicyGroupCondition: ModifyPolicyGroupCondition,
|
|
23857
24756
|
DescribePolicyGroupListRequest: DescribePolicyGroupListRequest,
|
|
23858
24757
|
DescribeGrafanaConfigRequest: DescribeGrafanaConfigRequest,
|
|
23859
24758
|
UpdateRecordingRuleRequest: UpdateRecordingRuleRequest,
|
|
@@ -23879,6 +24778,7 @@ module.exports = {
|
|
|
23879
24778
|
PrometheusAlertCustomReceiver: PrometheusAlertCustomReceiver,
|
|
23880
24779
|
ModifyPrometheusAlertPolicyRequest: ModifyPrometheusAlertPolicyRequest,
|
|
23881
24780
|
ModifyPrometheusInstanceAttributesResponse: ModifyPrometheusInstanceAttributesResponse,
|
|
24781
|
+
UpdateOnCallFormResponse: UpdateOnCallFormResponse,
|
|
23882
24782
|
PrometheusTemplateSyncTarget: PrometheusTemplateSyncTarget,
|
|
23883
24783
|
DescribePrometheusAlertPolicyResponse: DescribePrometheusAlertPolicyResponse,
|
|
23884
24784
|
UpdateGrafanaEnvironmentsRequest: UpdateGrafanaEnvironmentsRequest,
|
|
@@ -23907,7 +24807,7 @@ module.exports = {
|
|
|
23907
24807
|
Point: Point,
|
|
23908
24808
|
ModifyPolicyGroupEventCondition: ModifyPolicyGroupEventCondition,
|
|
23909
24809
|
CreateGrafanaNotificationChannelRequest: CreateGrafanaNotificationChannelRequest,
|
|
23910
|
-
|
|
24810
|
+
DeleteOnCallFormsResponse: DeleteOnCallFormsResponse,
|
|
23911
24811
|
DescribePrometheusClusterAgentsResponse: DescribePrometheusClusterAgentsResponse,
|
|
23912
24812
|
UpdatePrometheusScrapeJobRequest: UpdatePrometheusScrapeJobRequest,
|
|
23913
24813
|
PrometheusAgentInfo: PrometheusAgentInfo,
|
|
@@ -23922,6 +24822,7 @@ module.exports = {
|
|
|
23922
24822
|
DescribePrometheusGlobalNotificationRequest: DescribePrometheusGlobalNotificationRequest,
|
|
23923
24823
|
DeleteExporterIntegrationResponse: DeleteExporterIntegrationResponse,
|
|
23924
24824
|
UpdateRecordingRuleResponse: UpdateRecordingRuleResponse,
|
|
24825
|
+
OneOnCallForm: OneOnCallForm,
|
|
23925
24826
|
CreatePrometheusAgentResponse: CreatePrometheusAgentResponse,
|
|
23926
24827
|
DescribePrometheusAlertPolicyRequest: DescribePrometheusAlertPolicyRequest,
|
|
23927
24828
|
DescribeAlarmMetricsResponse: DescribeAlarmMetricsResponse,
|
|
@@ -23938,10 +24839,10 @@ module.exports = {
|
|
|
23938
24839
|
DescribeAccidentEventListResponse: DescribeAccidentEventListResponse,
|
|
23939
24840
|
DescribePrometheusTempSyncResponse: DescribePrometheusTempSyncResponse,
|
|
23940
24841
|
CreatePrometheusConfigResponse: CreatePrometheusConfigResponse,
|
|
24842
|
+
StaffInfo: StaffInfo,
|
|
23941
24843
|
UpdateDNSConfigRequest: UpdateDNSConfigRequest,
|
|
23942
24844
|
DeletePrometheusClusterAgentResponse: DeletePrometheusClusterAgentResponse,
|
|
23943
24845
|
DescribeDNSConfigResponse: DescribeDNSConfigResponse,
|
|
23944
|
-
DestroyPrometheusInstanceRequest: DestroyPrometheusInstanceRequest,
|
|
23945
24846
|
DeleteRecordingRulesRequest: DeleteRecordingRulesRequest,
|
|
23946
24847
|
MonitorTypeNamespace: MonitorTypeNamespace,
|
|
23947
24848
|
UninstallGrafanaPluginsRequest: UninstallGrafanaPluginsRequest,
|
|
@@ -23967,6 +24868,7 @@ module.exports = {
|
|
|
23967
24868
|
DescribeAlertRulesRequest: DescribeAlertRulesRequest,
|
|
23968
24869
|
DescribePrometheusInstancesResponse: DescribePrometheusInstancesResponse,
|
|
23969
24870
|
LogFilterInfo: LogFilterInfo,
|
|
24871
|
+
DescribeGrafanaChannelsRequest: DescribeGrafanaChannelsRequest,
|
|
23970
24872
|
CreateExporterIntegrationRequest: CreateExporterIntegrationRequest,
|
|
23971
24873
|
ModifyPrometheusConfigResponse: ModifyPrometheusConfigResponse,
|
|
23972
24874
|
PrometheusAgent: PrometheusAgent,
|
|
@@ -24054,9 +24956,11 @@ module.exports = {
|
|
|
24054
24956
|
PrometheusJobTargets: PrometheusJobTargets,
|
|
24055
24957
|
UpdateGrafanaConfigRequest: UpdateGrafanaConfigRequest,
|
|
24056
24958
|
DescribeGrafanaIntegrationsRequest: DescribeGrafanaIntegrationsRequest,
|
|
24959
|
+
CreateOnCallFormResponse: CreateOnCallFormResponse,
|
|
24057
24960
|
AlarmHistory: AlarmHistory,
|
|
24058
24961
|
PrometheusClusterAgentBasic: PrometheusClusterAgentBasic,
|
|
24059
24962
|
CreatePolicyGroupRequest: CreatePolicyGroupRequest,
|
|
24963
|
+
DescribeOnCallFormsResponse: DescribeOnCallFormsResponse,
|
|
24060
24964
|
CreatePrometheusScrapeJobRequest: CreatePrometheusScrapeJobRequest,
|
|
24061
24965
|
CreateExporterIntegrationResponse: CreateExporterIntegrationResponse,
|
|
24062
24966
|
DescribePolicyConditionListEventMetric: DescribePolicyConditionListEventMetric,
|
|
@@ -24072,6 +24976,7 @@ module.exports = {
|
|
|
24072
24976
|
GetMonitorDataResponse: GetMonitorDataResponse,
|
|
24073
24977
|
ReceiverInfo: ReceiverInfo,
|
|
24074
24978
|
DescribeRecordingRulesRequest: DescribeRecordingRulesRequest,
|
|
24979
|
+
DeleteOnCallFormsRequest: DeleteOnCallFormsRequest,
|
|
24075
24980
|
UpgradeGrafanaDashboardRequest: UpgradeGrafanaDashboardRequest,
|
|
24076
24981
|
DeleteAlarmPolicyResponse: DeleteAlarmPolicyResponse,
|
|
24077
24982
|
DescribeInstalledPluginsResponse: DescribeInstalledPluginsResponse,
|
|
@@ -24083,6 +24988,7 @@ module.exports = {
|
|
|
24083
24988
|
CreatePrometheusGlobalNotificationRequest: CreatePrometheusGlobalNotificationRequest,
|
|
24084
24989
|
ModifyPrometheusTempResponse: ModifyPrometheusTempResponse,
|
|
24085
24990
|
DescribeRecordingRulesResponse: DescribeRecordingRulesResponse,
|
|
24991
|
+
DeleteRecordingRulesResponse: DeleteRecordingRulesResponse,
|
|
24086
24992
|
UpdateGrafanaWhiteListRequest: UpdateGrafanaWhiteListRequest,
|
|
24087
24993
|
UpdatePrometheusAgentStatusRequest: UpdatePrometheusAgentStatusRequest,
|
|
24088
24994
|
DescribeGrafanaInstancesResponse: DescribeGrafanaInstancesResponse,
|
|
@@ -24121,13 +25027,13 @@ module.exports = {
|
|
|
24121
25027
|
CreatePrometheusAgentRequest: CreatePrometheusAgentRequest,
|
|
24122
25028
|
DeleteAlarmNoticesResponse: DeleteAlarmNoticesResponse,
|
|
24123
25029
|
DeletePrometheusTempSyncRequest: DeletePrometheusTempSyncRequest,
|
|
24124
|
-
|
|
25030
|
+
DescribeOnCallFormsRequest: DescribeOnCallFormsRequest,
|
|
24125
25031
|
PrometheusInstanceTenantUsage: PrometheusInstanceTenantUsage,
|
|
24126
25032
|
DescribePrometheusZonesRequest: DescribePrometheusZonesRequest,
|
|
24127
25033
|
DescribePrometheusAlertGroupsRequest: DescribePrometheusAlertGroupsRequest,
|
|
24128
|
-
ModifyPolicyGroupCondition: ModifyPolicyGroupCondition,
|
|
24129
25034
|
ModifyPolicyGroupRequest: ModifyPolicyGroupRequest,
|
|
24130
25035
|
DescribeBaseMetricsRequest: DescribeBaseMetricsRequest,
|
|
25036
|
+
DescribeOnCallFormResponse: DescribeOnCallFormResponse,
|
|
24131
25037
|
DeletePrometheusConfigRequest: DeletePrometheusConfigRequest,
|
|
24132
25038
|
PrometheusAlertPolicyItem: PrometheusAlertPolicyItem,
|
|
24133
25039
|
ModifyPrometheusAgentExternalLabelsRequest: ModifyPrometheusAgentExternalLabelsRequest,
|
|
@@ -24135,7 +25041,9 @@ module.exports = {
|
|
|
24135
25041
|
AlarmHierarchicalNotice: AlarmHierarchicalNotice,
|
|
24136
25042
|
BindingPolicyObjectDimension: BindingPolicyObjectDimension,
|
|
24137
25043
|
DescribePrometheusTempRequest: DescribePrometheusTempRequest,
|
|
25044
|
+
UpdateOnCallFormRequest: UpdateOnCallFormRequest,
|
|
24138
25045
|
UpdatePrometheusAlertGroupStateResponse: UpdatePrometheusAlertGroupStateResponse,
|
|
25046
|
+
CoverStaffInfo: CoverStaffInfo,
|
|
24139
25047
|
DescribeBasicAlarmListAlarms: DescribeBasicAlarmListAlarms,
|
|
24140
25048
|
CreateAlarmNoticeResponse: CreateAlarmNoticeResponse,
|
|
24141
25049
|
Condition: Condition,
|