tencentcloud-sdk-monitor 3.0.403 → 3.0.406

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a2151bbb5e8c7b973c31418b242877e23b4ce8a
4
- data.tar.gz: 0c35c18962289ce6d317e76e3e4f8a55c268034e
3
+ metadata.gz: 10c4da17b8ecc4038d3a78a8569f0b01a9844a30
4
+ data.tar.gz: e52a660e60102adda8c6bc3370670c3b92669e14
5
5
  SHA512:
6
- metadata.gz: 50d890b1ee40b2c4f4d37e556d789920c30abc540ba0602903ece536b9f63fd84880add3fb976520967485d04309f6dd05f9c3b4123600b3ced16220d165f991
7
- data.tar.gz: 1ee1b9269c392f577c72f3844290a4f1bf15b621b908fb38d6b7c247087c9bb527ff2c93c8eb8f095440a68639a5a8311340455174d4fef2bc9e9657f2080346
6
+ metadata.gz: c467b60321717d2647046a79b4f01bf39c3fb7f252695db03b6d84c75ccb05aea23da574b508c76a9b8e0792983c8d7b0314697a2d9f986b19aa142e4704aa9f
7
+ data.tar.gz: c3513131be186beb08893d03f5e9f651afeb58e04b12ebecdc23a63ef64ca522d4b99144e0e332fa4b3bd77651e89fa552470d24c8cddb19f9692fcf54d4c71e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.403
1
+ 3.0.406
@@ -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`
@@ -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: 组织 ID
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,21 +1585,27 @@ 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
 
1583
1592
  # CreateGrafanaNotificationChannel返回参数结构体
1584
1593
  class CreateGrafanaNotificationChannelResponse < TencentCloud::Common::AbstractModel
1594
+ # @param ChannelId: 通道 ID
1595
+ # 注意:此字段可能返回 null,表示取不到有效值。
1596
+ # @type ChannelId: String
1585
1597
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1586
1598
  # @type RequestId: String
1587
1599
 
1588
- attr_accessor :RequestId
1600
+ attr_accessor :ChannelId, :RequestId
1589
1601
 
1590
- def initialize(requestid=nil)
1602
+ def initialize(channelid=nil, requestid=nil)
1603
+ @ChannelId = channelid
1591
1604
  @RequestId = requestid
1592
1605
  end
1593
1606
 
1594
1607
  def deserialize(params)
1608
+ @ChannelId = params['ChannelId']
1595
1609
  @RequestId = params['RequestId']
1596
1610
  end
1597
1611
  end
@@ -2003,16 +2017,20 @@ module TencentCloud
2003
2017
 
2004
2018
  # CreateSSOAccount返回参数结构体
2005
2019
  class CreateSSOAccountResponse < TencentCloud::Common::AbstractModel
2020
+ # @param UserId: 已添加的用户 UIN
2021
+ # @type UserId: String
2006
2022
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2007
2023
  # @type RequestId: String
2008
2024
 
2009
- attr_accessor :RequestId
2025
+ attr_accessor :UserId, :RequestId
2010
2026
 
2011
- def initialize(requestid=nil)
2027
+ def initialize(userid=nil, requestid=nil)
2028
+ @UserId = userid
2012
2029
  @RequestId = requestid
2013
2030
  end
2014
2031
 
2015
2032
  def deserialize(params)
2033
+ @UserId = params['UserId']
2016
2034
  @RequestId = params['RequestId']
2017
2035
  end
2018
2036
  end
@@ -4409,15 +4427,19 @@ module TencentCloud
4409
4427
  class DescribeInstalledPluginsRequest < TencentCloud::Common::AbstractModel
4410
4428
  # @param InstanceId: 实例 ID
4411
4429
  # @type InstanceId: String
4430
+ # @param PluginId: 按插件 ID 过滤
4431
+ # @type PluginId: String
4412
4432
 
4413
- attr_accessor :InstanceId
4433
+ attr_accessor :InstanceId, :PluginId
4414
4434
 
4415
- def initialize(instanceid=nil)
4435
+ def initialize(instanceid=nil, pluginid=nil)
4416
4436
  @InstanceId = instanceid
4437
+ @PluginId = pluginid
4417
4438
  end
4418
4439
 
4419
4440
  def deserialize(params)
4420
4441
  @InstanceId = params['InstanceId']
4442
+ @PluginId = params['PluginId']
4421
4443
  end
4422
4444
  end
4423
4445
 
@@ -6313,15 +6335,19 @@ module TencentCloud
6313
6335
  class DescribeSSOAccountRequest < TencentCloud::Common::AbstractModel
6314
6336
  # @param InstanceId: 实例ID
6315
6337
  # @type InstanceId: String
6338
+ # @param UserId: 按账号 UIN 进行过滤
6339
+ # @type UserId: String
6316
6340
 
6317
- attr_accessor :InstanceId
6341
+ attr_accessor :InstanceId, :UserId
6318
6342
 
6319
- def initialize(instanceid=nil)
6343
+ def initialize(instanceid=nil, userid=nil)
6320
6344
  @InstanceId = instanceid
6345
+ @UserId = userid
6321
6346
  end
6322
6347
 
6323
6348
  def deserialize(params)
6324
6349
  @InstanceId = params['InstanceId']
6350
+ @UserId = params['UserId']
6325
6351
  end
6326
6352
  end
6327
6353
 
@@ -7099,15 +7125,30 @@ module TencentCloud
7099
7125
  # @type CreatedAt: String
7100
7126
  # @param UpdatedAt: 更新时间
7101
7127
  # @type UpdatedAt: String
7128
+ # @param OrgId: 默认生效组织,已废弃,请使用 OrganizationIds
7129
+ # @type OrgId: String
7130
+ # @param ExtraOrgIds: 额外生效组织,已废弃,请使用 OrganizationIds
7131
+ # 注意:此字段可能返回 null,表示取不到有效值。
7132
+ # @type ExtraOrgIds: Array
7133
+ # @param OrgIds: 生效组织,已废弃,请使用 OrganizationIds
7134
+ # 注意:此字段可能返回 null,表示取不到有效值。
7135
+ # @type OrgIds: String
7136
+ # @param OrganizationIds: 告警渠道的所有生效组织
7137
+ # 注意:此字段可能返回 null,表示取不到有效值。
7138
+ # @type OrganizationIds: String
7102
7139
 
7103
- attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt
7140
+ attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt, :OrgId, :ExtraOrgIds, :OrgIds, :OrganizationIds
7104
7141
 
7105
- def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil)
7142
+ def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil, orgid=nil, extraorgids=nil, orgids=nil, organizationids=nil)
7106
7143
  @ChannelId = channelid
7107
7144
  @ChannelName = channelname
7108
7145
  @Receivers = receivers
7109
7146
  @CreatedAt = createdat
7110
7147
  @UpdatedAt = updatedat
7148
+ @OrgId = orgid
7149
+ @ExtraOrgIds = extraorgids
7150
+ @OrgIds = orgids
7151
+ @OrganizationIds = organizationids
7111
7152
  end
7112
7153
 
7113
7154
  def deserialize(params)
@@ -7116,6 +7157,10 @@ module TencentCloud
7116
7157
  @Receivers = params['Receivers']
7117
7158
  @CreatedAt = params['CreatedAt']
7118
7159
  @UpdatedAt = params['UpdatedAt']
7160
+ @OrgId = params['OrgId']
7161
+ @ExtraOrgIds = params['ExtraOrgIds']
7162
+ @OrgIds = params['OrgIds']
7163
+ @OrganizationIds = params['OrganizationIds']
7119
7164
  end
7120
7165
  end
7121
7166
 
@@ -7169,16 +7214,21 @@ module TencentCloud
7169
7214
 
7170
7215
  # InstallPlugins返回参数结构体
7171
7216
  class InstallPluginsResponse < TencentCloud::Common::AbstractModel
7217
+ # @param PluginIds: 已安装插件 ID
7218
+ # 注意:此字段可能返回 null,表示取不到有效值。
7219
+ # @type PluginIds: Array
7172
7220
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7173
7221
  # @type RequestId: String
7174
7222
 
7175
- attr_accessor :RequestId
7223
+ attr_accessor :PluginIds, :RequestId
7176
7224
 
7177
- def initialize(requestid=nil)
7225
+ def initialize(pluginids=nil, requestid=nil)
7226
+ @PluginIds = pluginids
7178
7227
  @RequestId = requestid
7179
7228
  end
7180
7229
 
7181
7230
  def deserialize(params)
7231
+ @PluginIds = params['PluginIds']
7182
7232
  @RequestId = params['RequestId']
7183
7233
  end
7184
7234
  end
@@ -10023,17 +10073,20 @@ module TencentCloud
10023
10073
  # @type ChannelName: String
10024
10074
  # @param Receivers: 接受告警通道 ID 数组
10025
10075
  # @type Receivers: Array
10026
- # @param ExtraOrgIds: 额外组织 ID 数组
10076
+ # @param ExtraOrgIds: 已废弃,请使用 OrganizationIds
10027
10077
  # @type ExtraOrgIds: Array
10078
+ # @param OrganizationIds: 生效的组织 ID 数组
10079
+ # @type OrganizationIds: Array
10028
10080
 
10029
- attr_accessor :ChannelId, :InstanceId, :ChannelName, :Receivers, :ExtraOrgIds
10081
+ attr_accessor :ChannelId, :InstanceId, :ChannelName, :Receivers, :ExtraOrgIds, :OrganizationIds
10030
10082
 
10031
- 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)
10032
10084
  @ChannelId = channelid
10033
10085
  @InstanceId = instanceid
10034
10086
  @ChannelName = channelname
10035
10087
  @Receivers = receivers
10036
10088
  @ExtraOrgIds = extraorgids
10089
+ @OrganizationIds = organizationids
10037
10090
  end
10038
10091
 
10039
10092
  def deserialize(params)
@@ -10042,6 +10095,7 @@ module TencentCloud
10042
10095
  @ChannelName = params['ChannelName']
10043
10096
  @Receivers = params['Receivers']
10044
10097
  @ExtraOrgIds = params['ExtraOrgIds']
10098
+ @OrganizationIds = params['OrganizationIds']
10045
10099
  end
10046
10100
  end
10047
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.403
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-02 00:00:00.000000000 Z
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