tencentcloud-sdk-monitor 3.0.405 → 3.0.406
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180724/client.rb +3 -0
- data/lib/v20180724/models.rb +32 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10c4da17b8ecc4038d3a78a8569f0b01a9844a30
|
4
|
+
data.tar.gz: e52a660e60102adda8c6bc3370670c3b92669e14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c467b60321717d2647046a79b4f01bf39c3fb7f252695db03b6d84c75ccb05aea23da574b508c76a9b8e0792983c8d7b0314697a2d9f986b19aa142e4704aa9f
|
7
|
+
data.tar.gz: c3513131be186beb08893d03f5e9f651afeb58e04b12ebecdc23a63ef64ca522d4b99144e0e332fa4b3bd77651e89fa552470d24c8cddb19f9692fcf54d4c71e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.406
|
data/lib/v20180724/client.rb
CHANGED
@@ -1776,6 +1776,9 @@ module TencentCloud
|
|
1776
1776
|
# 接口调用频率限制为:20次/秒,1200次/分钟。单请求最多可支持批量拉取10个实例的监控数据,单请求的数据点数限制为1440个。
|
1777
1777
|
# 若您需要调用的指标、对象较多,可能存在因限频出现拉取失败的情况,建议尽量将请求按时间维度均摊。
|
1778
1778
|
|
1779
|
+
# >?
|
1780
|
+
# >- 2022年9月1日起,云监控开始对GetMonitorData接口计费。每个主账号每月可获得100万次免费请求额度,超过免费额度后如需继续调用接口需要开通 [API请求按量付费](https://buy.cloud.tencent.com/APIRequestBuy)。计费规则可查看[API计费文档](https://cloud.tencent.com/document/product/248/77914)。
|
1781
|
+
|
1779
1782
|
# @param request: Request instance for GetMonitorData.
|
1780
1783
|
# @type request: :class:`Tencentcloud::monitor::V20180724::GetMonitorDataRequest`
|
1781
1784
|
# @rtype: :class:`Tencentcloud::monitor::V20180724::GetMonitorDataResponse`
|
data/lib/v20180724/models.rb
CHANGED
@@ -1534,16 +1534,21 @@ module TencentCloud
|
|
1534
1534
|
|
1535
1535
|
# CreateGrafanaIntegration返回参数结构体
|
1536
1536
|
class CreateGrafanaIntegrationResponse < TencentCloud::Common::AbstractModel
|
1537
|
+
# @param IntegrationId: 集成 ID
|
1538
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1539
|
+
# @type IntegrationId: String
|
1537
1540
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1538
1541
|
# @type RequestId: String
|
1539
1542
|
|
1540
|
-
attr_accessor :RequestId
|
1543
|
+
attr_accessor :IntegrationId, :RequestId
|
1541
1544
|
|
1542
|
-
def initialize(requestid=nil)
|
1545
|
+
def initialize(integrationid=nil, requestid=nil)
|
1546
|
+
@IntegrationId = integrationid
|
1543
1547
|
@RequestId = requestid
|
1544
1548
|
end
|
1545
1549
|
|
1546
1550
|
def deserialize(params)
|
1551
|
+
@IntegrationId = params['IntegrationId']
|
1547
1552
|
@RequestId = params['RequestId']
|
1548
1553
|
end
|
1549
1554
|
end
|
@@ -1554,21 +1559,24 @@ module TencentCloud
|
|
1554
1559
|
# @type InstanceId: String
|
1555
1560
|
# @param ChannelName: 渠道名
|
1556
1561
|
# @type ChannelName: String
|
1557
|
-
# @param OrgId:
|
1562
|
+
# @param OrgId: 默认为1,已废弃,请使用 OrganizationIds
|
1558
1563
|
# @type OrgId: Integer
|
1559
1564
|
# @param Receivers: 接受告警通道 ID 数组
|
1560
1565
|
# @type Receivers: Array
|
1561
|
-
# @param ExtraOrgIds: 额外组织 ID
|
1566
|
+
# @param ExtraOrgIds: 额外组织 ID 数组,已废弃,请使用 OrganizationIds
|
1562
1567
|
# @type ExtraOrgIds: Array
|
1568
|
+
# @param OrganizationIds: 生效的所有组织 ID 数组,默认为 ["1"]
|
1569
|
+
# @type OrganizationIds: Array
|
1563
1570
|
|
1564
|
-
attr_accessor :InstanceId, :ChannelName, :OrgId, :Receivers, :ExtraOrgIds
|
1571
|
+
attr_accessor :InstanceId, :ChannelName, :OrgId, :Receivers, :ExtraOrgIds, :OrganizationIds
|
1565
1572
|
|
1566
|
-
def initialize(instanceid=nil, channelname=nil, orgid=nil, receivers=nil, extraorgids=nil)
|
1573
|
+
def initialize(instanceid=nil, channelname=nil, orgid=nil, receivers=nil, extraorgids=nil, organizationids=nil)
|
1567
1574
|
@InstanceId = instanceid
|
1568
1575
|
@ChannelName = channelname
|
1569
1576
|
@OrgId = orgid
|
1570
1577
|
@Receivers = receivers
|
1571
1578
|
@ExtraOrgIds = extraorgids
|
1579
|
+
@OrganizationIds = organizationids
|
1572
1580
|
end
|
1573
1581
|
|
1574
1582
|
def deserialize(params)
|
@@ -1577,6 +1585,7 @@ module TencentCloud
|
|
1577
1585
|
@OrgId = params['OrgId']
|
1578
1586
|
@Receivers = params['Receivers']
|
1579
1587
|
@ExtraOrgIds = params['ExtraOrgIds']
|
1588
|
+
@OrganizationIds = params['OrganizationIds']
|
1580
1589
|
end
|
1581
1590
|
end
|
1582
1591
|
|
@@ -7116,18 +7125,21 @@ module TencentCloud
|
|
7116
7125
|
# @type CreatedAt: String
|
7117
7126
|
# @param UpdatedAt: 更新时间
|
7118
7127
|
# @type UpdatedAt: String
|
7119
|
-
# @param OrgId:
|
7128
|
+
# @param OrgId: 默认生效组织,已废弃,请使用 OrganizationIds
|
7120
7129
|
# @type OrgId: String
|
7121
|
-
# @param ExtraOrgIds:
|
7130
|
+
# @param ExtraOrgIds: 额外生效组织,已废弃,请使用 OrganizationIds
|
7122
7131
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7123
7132
|
# @type ExtraOrgIds: Array
|
7124
|
-
# @param OrgIds:
|
7133
|
+
# @param OrgIds: 生效组织,已废弃,请使用 OrganizationIds
|
7125
7134
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7126
7135
|
# @type OrgIds: String
|
7136
|
+
# @param OrganizationIds: 告警渠道的所有生效组织
|
7137
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7138
|
+
# @type OrganizationIds: String
|
7127
7139
|
|
7128
|
-
attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt, :OrgId, :ExtraOrgIds, :OrgIds
|
7140
|
+
attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt, :OrgId, :ExtraOrgIds, :OrgIds, :OrganizationIds
|
7129
7141
|
|
7130
|
-
def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil, orgid=nil, extraorgids=nil, orgids=nil)
|
7142
|
+
def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil, orgid=nil, extraorgids=nil, orgids=nil, organizationids=nil)
|
7131
7143
|
@ChannelId = channelid
|
7132
7144
|
@ChannelName = channelname
|
7133
7145
|
@Receivers = receivers
|
@@ -7136,6 +7148,7 @@ module TencentCloud
|
|
7136
7148
|
@OrgId = orgid
|
7137
7149
|
@ExtraOrgIds = extraorgids
|
7138
7150
|
@OrgIds = orgids
|
7151
|
+
@OrganizationIds = organizationids
|
7139
7152
|
end
|
7140
7153
|
|
7141
7154
|
def deserialize(params)
|
@@ -7147,6 +7160,7 @@ module TencentCloud
|
|
7147
7160
|
@OrgId = params['OrgId']
|
7148
7161
|
@ExtraOrgIds = params['ExtraOrgIds']
|
7149
7162
|
@OrgIds = params['OrgIds']
|
7163
|
+
@OrganizationIds = params['OrganizationIds']
|
7150
7164
|
end
|
7151
7165
|
end
|
7152
7166
|
|
@@ -10059,17 +10073,20 @@ module TencentCloud
|
|
10059
10073
|
# @type ChannelName: String
|
10060
10074
|
# @param Receivers: 接受告警通道 ID 数组
|
10061
10075
|
# @type Receivers: Array
|
10062
|
-
# @param ExtraOrgIds:
|
10076
|
+
# @param ExtraOrgIds: 已废弃,请使用 OrganizationIds
|
10063
10077
|
# @type ExtraOrgIds: Array
|
10078
|
+
# @param OrganizationIds: 生效的组织 ID 数组
|
10079
|
+
# @type OrganizationIds: Array
|
10064
10080
|
|
10065
|
-
attr_accessor :ChannelId, :InstanceId, :ChannelName, :Receivers, :ExtraOrgIds
|
10081
|
+
attr_accessor :ChannelId, :InstanceId, :ChannelName, :Receivers, :ExtraOrgIds, :OrganizationIds
|
10066
10082
|
|
10067
|
-
def initialize(channelid=nil, instanceid=nil, channelname=nil, receivers=nil, extraorgids=nil)
|
10083
|
+
def initialize(channelid=nil, instanceid=nil, channelname=nil, receivers=nil, extraorgids=nil, organizationids=nil)
|
10068
10084
|
@ChannelId = channelid
|
10069
10085
|
@InstanceId = instanceid
|
10070
10086
|
@ChannelName = channelname
|
10071
10087
|
@Receivers = receivers
|
10072
10088
|
@ExtraOrgIds = extraorgids
|
10089
|
+
@OrganizationIds = organizationids
|
10073
10090
|
end
|
10074
10091
|
|
10075
10092
|
def deserialize(params)
|
@@ -10078,6 +10095,7 @@ module TencentCloud
|
|
10078
10095
|
@ChannelName = params['ChannelName']
|
10079
10096
|
@Receivers = params['Receivers']
|
10080
10097
|
@ExtraOrgIds = params['ExtraOrgIds']
|
10098
|
+
@OrganizationIds = params['OrganizationIds']
|
10081
10099
|
end
|
10082
10100
|
end
|
10083
10101
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.406
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|