tencentcloud-sdk-cls 3.0.925 → 3.0.927
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/client.rb +2 -1
- data/lib/v20201016/models.rb +38 -9
- 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: 58bea89268177be87e0f20ecd597a128eae57585
|
4
|
+
data.tar.gz: aa720cec779ac5f4cde2a3ff6307486e90968df7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18f5786c1f33656b64592458e691ec35822daeea8cd710c4c8d38a3a12ccfacf1d5e9f6af50333f94faadfbec40a212ece5fd9af7ffb48ea21c678f11e210eeb
|
7
|
+
data.tar.gz: 4d414b158b697412c68f77a9a1a0df5fc9c4244ac3e49bab406187ae4236b342eced3096cab4ff9d5e996df9ee11b4090d577a7085ff8ad9a65c840db0bc560b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.927
|
data/lib/v20201016/client.rb
CHANGED
@@ -2358,7 +2358,8 @@ module TencentCloud
|
|
2358
2358
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2359
2359
|
end
|
2360
2360
|
|
2361
|
-
#
|
2361
|
+
# 查询指定时刻指标的最新值。
|
2362
|
+
# 如果该时刻向前推5分钟内均无指标数据,则无相应的查询结果。
|
2362
2363
|
|
2363
2364
|
# @param request: Request instance for QueryMetric.
|
2364
2365
|
# @type request: :class:`Tencentcloud::cls::V20201016::QueryMetricRequest`
|
data/lib/v20201016/models.rb
CHANGED
@@ -9214,10 +9214,12 @@ module TencentCloud
|
|
9214
9214
|
# @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
|
9215
9215
|
# @param PartitionCount: 日志主题分区数量
|
9216
9216
|
# @type PartitionCount: Integer
|
9217
|
+
# @param CancelTopicAsyncTaskID: 取消切换存储任务的id
|
9218
|
+
# @type CancelTopicAsyncTaskID: String
|
9217
9219
|
|
9218
|
-
attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount
|
9220
|
+
attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod, :IsWebTracking, :Extends, :PartitionCount, :CancelTopicAsyncTaskID
|
9219
9221
|
|
9220
|
-
def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil, partitioncount=nil)
|
9222
|
+
def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil, iswebtracking=nil, extends=nil, partitioncount=nil, canceltopicasynctaskid=nil)
|
9221
9223
|
@TopicId = topicid
|
9222
9224
|
@TopicName = topicname
|
9223
9225
|
@Tags = tags
|
@@ -9230,6 +9232,7 @@ module TencentCloud
|
|
9230
9232
|
@IsWebTracking = iswebtracking
|
9231
9233
|
@Extends = extends
|
9232
9234
|
@PartitionCount = partitioncount
|
9235
|
+
@CancelTopicAsyncTaskID = canceltopicasynctaskid
|
9233
9236
|
end
|
9234
9237
|
|
9235
9238
|
def deserialize(params)
|
@@ -9255,6 +9258,7 @@ module TencentCloud
|
|
9255
9258
|
@Extends.deserialize(params['Extends'])
|
9256
9259
|
end
|
9257
9260
|
@PartitionCount = params['PartitionCount']
|
9261
|
+
@CancelTopicAsyncTaskID = params['CancelTopicAsyncTaskID']
|
9258
9262
|
end
|
9259
9263
|
end
|
9260
9264
|
|
@@ -9900,7 +9904,7 @@ module TencentCloud
|
|
9900
9904
|
# @type Query: String
|
9901
9905
|
# @param TopicId: 指标主题ID
|
9902
9906
|
# @type TopicId: String
|
9903
|
-
# @param Time: 查询时间,秒级Unix
|
9907
|
+
# @param Time: 查询时间,秒级Unix时间戳。为空时代表当前时间戳。
|
9904
9908
|
# @type Time: Integer
|
9905
9909
|
|
9906
9910
|
attr_accessor :Query, :TopicId, :Time
|
@@ -11054,10 +11058,19 @@ module TencentCloud
|
|
11054
11058
|
# @param Extends: 日志主题扩展信息
|
11055
11059
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11056
11060
|
# @type Extends: :class:`Tencentcloud::Cls.v20201016.models.TopicExtendInfo`
|
11061
|
+
# @param TopicAsyncTaskID: 异步迁移任务ID
|
11062
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11063
|
+
# @type TopicAsyncTaskID: String
|
11064
|
+
# @param MigrationStatus: 异步迁移状态
|
11065
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11066
|
+
# @type MigrationStatus: Integer
|
11067
|
+
# @param EffectiveDate: 异步迁移完成后,预计生效日期
|
11068
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11069
|
+
# @type EffectiveDate: String
|
11057
11070
|
|
11058
|
-
attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends
|
11071
|
+
attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking, :Extends, :TopicAsyncTaskID, :MigrationStatus, :EffectiveDate
|
11059
11072
|
|
11060
|
-
def initialize(logsetid=nil, topicid=nil, topicname=nil, partitioncount=nil, index=nil, assumername=nil, createtime=nil, status=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, subassumername=nil, describes=nil, hotperiod=nil, biztype=nil, iswebtracking=nil, extends=nil)
|
11073
|
+
def initialize(logsetid=nil, topicid=nil, topicname=nil, partitioncount=nil, index=nil, assumername=nil, createtime=nil, status=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, subassumername=nil, describes=nil, hotperiod=nil, biztype=nil, iswebtracking=nil, extends=nil, topicasynctaskid=nil, migrationstatus=nil, effectivedate=nil)
|
11061
11074
|
@LogsetId = logsetid
|
11062
11075
|
@TopicId = topicid
|
11063
11076
|
@TopicName = topicname
|
@@ -11077,6 +11090,9 @@ module TencentCloud
|
|
11077
11090
|
@BizType = biztype
|
11078
11091
|
@IsWebTracking = iswebtracking
|
11079
11092
|
@Extends = extends
|
11093
|
+
@TopicAsyncTaskID = topicasynctaskid
|
11094
|
+
@MigrationStatus = migrationstatus
|
11095
|
+
@EffectiveDate = effectivedate
|
11080
11096
|
end
|
11081
11097
|
|
11082
11098
|
def deserialize(params)
|
@@ -11109,6 +11125,9 @@ module TencentCloud
|
|
11109
11125
|
@Extends = TopicExtendInfo.new
|
11110
11126
|
@Extends.deserialize(params['Extends'])
|
11111
11127
|
end
|
11128
|
+
@TopicAsyncTaskID = params['TopicAsyncTaskID']
|
11129
|
+
@MigrationStatus = params['MigrationStatus']
|
11130
|
+
@EffectiveDate = params['EffectiveDate']
|
11112
11131
|
end
|
11113
11132
|
end
|
11114
11133
|
|
@@ -11206,27 +11225,35 @@ module TencentCloud
|
|
11206
11225
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11207
11226
|
# @type Method: String
|
11208
11227
|
# @param Headers: 请求头。
|
11209
|
-
#
|
11228
|
+
# 注意:该参数已废弃,请使用NoticeContentId。
|
11210
11229
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11211
11230
|
# @type Headers: Array
|
11212
11231
|
# @param Body: 请求内容。
|
11213
|
-
#
|
11232
|
+
# 注意:该参数已废弃,请使用NoticeContentId。
|
11214
11233
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11215
11234
|
# @type Body: String
|
11216
11235
|
# @param Index: 序号。
|
11217
11236
|
# - 入参无效。
|
11218
11237
|
# - 出参有效。
|
11219
11238
|
# @type Index: Integer
|
11239
|
+
# @param NoticeContentId: 通知内容模板ID。
|
11240
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11241
|
+
# @type NoticeContentId: String
|
11242
|
+
# @param WebCallbackId: 集成配置ID。
|
11243
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11244
|
+
# @type WebCallbackId: String
|
11220
11245
|
|
11221
|
-
attr_accessor :Url, :CallbackType, :Method, :Headers, :Body, :Index
|
11246
|
+
attr_accessor :Url, :CallbackType, :Method, :Headers, :Body, :Index, :NoticeContentId, :WebCallbackId
|
11222
11247
|
|
11223
|
-
def initialize(url=nil, callbacktype=nil, method=nil, headers=nil, body=nil, index=nil)
|
11248
|
+
def initialize(url=nil, callbacktype=nil, method=nil, headers=nil, body=nil, index=nil, noticecontentid=nil, webcallbackid=nil)
|
11224
11249
|
@Url = url
|
11225
11250
|
@CallbackType = callbacktype
|
11226
11251
|
@Method = method
|
11227
11252
|
@Headers = headers
|
11228
11253
|
@Body = body
|
11229
11254
|
@Index = index
|
11255
|
+
@NoticeContentId = noticecontentid
|
11256
|
+
@WebCallbackId = webcallbackid
|
11230
11257
|
end
|
11231
11258
|
|
11232
11259
|
def deserialize(params)
|
@@ -11236,6 +11263,8 @@ module TencentCloud
|
|
11236
11263
|
@Headers = params['Headers']
|
11237
11264
|
@Body = params['Body']
|
11238
11265
|
@Index = params['Index']
|
11266
|
+
@NoticeContentId = params['NoticeContentId']
|
11267
|
+
@WebCallbackId = params['WebCallbackId']
|
11239
11268
|
end
|
11240
11269
|
end
|
11241
11270
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.927
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|