tencentcloud-sdk-monitor 3.0.404 → 3.0.405
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/models.rb +48 -12
- 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: 4a75829f80b35b25c991bc0c4f6e17f5582968f6
|
4
|
+
data.tar.gz: 2443ccee297be62c735c19e0ce06d62bcea5d03f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e9dab598faa17a0583672f9dfd9b0a48139f963941a24126fc2c9d3d0f1d9f17a1e06cc449ad30c070389e660793eab3c0d2af21ae56067a7a73581d57ab441
|
7
|
+
data.tar.gz: daf2c5bd219751368e15a6b704a4a2e7618ef992193e9f8ef01576e149007c6fbcd18491377498e278ea7cb72b7be4712930597c772275baa4981a5888d86546
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.405
|
data/lib/v20180724/models.rb
CHANGED
@@ -1582,16 +1582,21 @@ module TencentCloud
|
|
1582
1582
|
|
1583
1583
|
# CreateGrafanaNotificationChannel返回参数结构体
|
1584
1584
|
class CreateGrafanaNotificationChannelResponse < TencentCloud::Common::AbstractModel
|
1585
|
+
# @param ChannelId: 通道 ID
|
1586
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1587
|
+
# @type ChannelId: String
|
1585
1588
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1586
1589
|
# @type RequestId: String
|
1587
1590
|
|
1588
|
-
attr_accessor :RequestId
|
1591
|
+
attr_accessor :ChannelId, :RequestId
|
1589
1592
|
|
1590
|
-
def initialize(requestid=nil)
|
1593
|
+
def initialize(channelid=nil, requestid=nil)
|
1594
|
+
@ChannelId = channelid
|
1591
1595
|
@RequestId = requestid
|
1592
1596
|
end
|
1593
1597
|
|
1594
1598
|
def deserialize(params)
|
1599
|
+
@ChannelId = params['ChannelId']
|
1595
1600
|
@RequestId = params['RequestId']
|
1596
1601
|
end
|
1597
1602
|
end
|
@@ -2003,16 +2008,20 @@ module TencentCloud
|
|
2003
2008
|
|
2004
2009
|
# CreateSSOAccount返回参数结构体
|
2005
2010
|
class CreateSSOAccountResponse < TencentCloud::Common::AbstractModel
|
2011
|
+
# @param UserId: 已添加的用户 UIN
|
2012
|
+
# @type UserId: String
|
2006
2013
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2007
2014
|
# @type RequestId: String
|
2008
2015
|
|
2009
|
-
attr_accessor :RequestId
|
2016
|
+
attr_accessor :UserId, :RequestId
|
2010
2017
|
|
2011
|
-
def initialize(requestid=nil)
|
2018
|
+
def initialize(userid=nil, requestid=nil)
|
2019
|
+
@UserId = userid
|
2012
2020
|
@RequestId = requestid
|
2013
2021
|
end
|
2014
2022
|
|
2015
2023
|
def deserialize(params)
|
2024
|
+
@UserId = params['UserId']
|
2016
2025
|
@RequestId = params['RequestId']
|
2017
2026
|
end
|
2018
2027
|
end
|
@@ -4409,15 +4418,19 @@ module TencentCloud
|
|
4409
4418
|
class DescribeInstalledPluginsRequest < TencentCloud::Common::AbstractModel
|
4410
4419
|
# @param InstanceId: 实例 ID
|
4411
4420
|
# @type InstanceId: String
|
4421
|
+
# @param PluginId: 按插件 ID 过滤
|
4422
|
+
# @type PluginId: String
|
4412
4423
|
|
4413
|
-
attr_accessor :InstanceId
|
4424
|
+
attr_accessor :InstanceId, :PluginId
|
4414
4425
|
|
4415
|
-
def initialize(instanceid=nil)
|
4426
|
+
def initialize(instanceid=nil, pluginid=nil)
|
4416
4427
|
@InstanceId = instanceid
|
4428
|
+
@PluginId = pluginid
|
4417
4429
|
end
|
4418
4430
|
|
4419
4431
|
def deserialize(params)
|
4420
4432
|
@InstanceId = params['InstanceId']
|
4433
|
+
@PluginId = params['PluginId']
|
4421
4434
|
end
|
4422
4435
|
end
|
4423
4436
|
|
@@ -6313,15 +6326,19 @@ module TencentCloud
|
|
6313
6326
|
class DescribeSSOAccountRequest < TencentCloud::Common::AbstractModel
|
6314
6327
|
# @param InstanceId: 实例ID
|
6315
6328
|
# @type InstanceId: String
|
6329
|
+
# @param UserId: 按账号 UIN 进行过滤
|
6330
|
+
# @type UserId: String
|
6316
6331
|
|
6317
|
-
attr_accessor :InstanceId
|
6332
|
+
attr_accessor :InstanceId, :UserId
|
6318
6333
|
|
6319
|
-
def initialize(instanceid=nil)
|
6334
|
+
def initialize(instanceid=nil, userid=nil)
|
6320
6335
|
@InstanceId = instanceid
|
6336
|
+
@UserId = userid
|
6321
6337
|
end
|
6322
6338
|
|
6323
6339
|
def deserialize(params)
|
6324
6340
|
@InstanceId = params['InstanceId']
|
6341
|
+
@UserId = params['UserId']
|
6325
6342
|
end
|
6326
6343
|
end
|
6327
6344
|
|
@@ -7099,15 +7116,26 @@ module TencentCloud
|
|
7099
7116
|
# @type CreatedAt: String
|
7100
7117
|
# @param UpdatedAt: 更新时间
|
7101
7118
|
# @type UpdatedAt: String
|
7119
|
+
# @param OrgId: 默认生效组织
|
7120
|
+
# @type OrgId: String
|
7121
|
+
# @param ExtraOrgIds: 额外生效组织
|
7122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7123
|
+
# @type ExtraOrgIds: Array
|
7124
|
+
# @param OrgIds: 生效组织
|
7125
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7126
|
+
# @type OrgIds: String
|
7102
7127
|
|
7103
|
-
attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt
|
7128
|
+
attr_accessor :ChannelId, :ChannelName, :Receivers, :CreatedAt, :UpdatedAt, :OrgId, :ExtraOrgIds, :OrgIds
|
7104
7129
|
|
7105
|
-
def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil)
|
7130
|
+
def initialize(channelid=nil, channelname=nil, receivers=nil, createdat=nil, updatedat=nil, orgid=nil, extraorgids=nil, orgids=nil)
|
7106
7131
|
@ChannelId = channelid
|
7107
7132
|
@ChannelName = channelname
|
7108
7133
|
@Receivers = receivers
|
7109
7134
|
@CreatedAt = createdat
|
7110
7135
|
@UpdatedAt = updatedat
|
7136
|
+
@OrgId = orgid
|
7137
|
+
@ExtraOrgIds = extraorgids
|
7138
|
+
@OrgIds = orgids
|
7111
7139
|
end
|
7112
7140
|
|
7113
7141
|
def deserialize(params)
|
@@ -7116,6 +7144,9 @@ module TencentCloud
|
|
7116
7144
|
@Receivers = params['Receivers']
|
7117
7145
|
@CreatedAt = params['CreatedAt']
|
7118
7146
|
@UpdatedAt = params['UpdatedAt']
|
7147
|
+
@OrgId = params['OrgId']
|
7148
|
+
@ExtraOrgIds = params['ExtraOrgIds']
|
7149
|
+
@OrgIds = params['OrgIds']
|
7119
7150
|
end
|
7120
7151
|
end
|
7121
7152
|
|
@@ -7169,16 +7200,21 @@ module TencentCloud
|
|
7169
7200
|
|
7170
7201
|
# InstallPlugins返回参数结构体
|
7171
7202
|
class InstallPluginsResponse < TencentCloud::Common::AbstractModel
|
7203
|
+
# @param PluginIds: 已安装插件 ID
|
7204
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7205
|
+
# @type PluginIds: Array
|
7172
7206
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7173
7207
|
# @type RequestId: String
|
7174
7208
|
|
7175
|
-
attr_accessor :RequestId
|
7209
|
+
attr_accessor :PluginIds, :RequestId
|
7176
7210
|
|
7177
|
-
def initialize(requestid=nil)
|
7211
|
+
def initialize(pluginids=nil, requestid=nil)
|
7212
|
+
@PluginIds = pluginids
|
7178
7213
|
@RequestId = requestid
|
7179
7214
|
end
|
7180
7215
|
|
7181
7216
|
def deserialize(params)
|
7217
|
+
@PluginIds = params['PluginIds']
|
7182
7218
|
@RequestId = params['RequestId']
|
7183
7219
|
end
|
7184
7220
|
end
|
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.405
|
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-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|