tencentcloud-sdk-cls 3.0.711 → 3.0.713

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: 082161c61e3f8bad9ccfc6df3c1b1a75eff23ecd
4
- data.tar.gz: 883af844be9502e674872009775a9a6cc450d963
3
+ metadata.gz: 8bf7b2b14fbf55422e350802e415a1ffcb16c513
4
+ data.tar.gz: 557b4c0043c3b3872f5676c9ea1dc50189dbe0ee
5
5
  SHA512:
6
- metadata.gz: 7cfad6bcfbf8dba050096ed0bc6a2c4cd85aa2aee8cd139fe415c1563e11721510289282cc5ef77c7f2fcc29bbade34fe3bf4f44356ac3b235ea58c30ddf4e7a
7
- data.tar.gz: 4ec1f736d32a05bdf0260c4aa48375b181a002022c9d5573791f5640bc98ed37850c9215a6be24c1a46caa7e53bcda6ff44738cc55523a84732abb57df85e924
6
+ metadata.gz: 731922e631c516c428231d138f241fb9d62bbf082657ada2571486e96931b1163bad285058fd62194016375e64719152c1841ec160f2a9caad9752ccfa6fe9f8
7
+ data.tar.gz: 88ca8780a9ff42d35669f9efc221eb0a96337002705720bf2a1339b8511e8ab2d8156b28f70160e835bb8fdb159a6cce068138adfa86391725d5ad82421ca4bc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.711
1
+ 3.0.713
@@ -317,6 +317,30 @@ module TencentCloud
317
317
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
318
318
  end
319
319
 
320
+ # 本接口用于创建投递SCF任务
321
+
322
+ # @param request: Request instance for CreateDeliverCloudFunction.
323
+ # @type request: :class:`Tencentcloud::cls::V20201016::CreateDeliverCloudFunctionRequest`
324
+ # @rtype: :class:`Tencentcloud::cls::V20201016::CreateDeliverCloudFunctionResponse`
325
+ def CreateDeliverCloudFunction(request)
326
+ body = send_request('CreateDeliverCloudFunction', request.serialize)
327
+ response = JSON.parse(body)
328
+ if response['Response'].key?('Error') == false
329
+ model = CreateDeliverCloudFunctionResponse.new
330
+ model.deserialize(response['Response'])
331
+ model
332
+ else
333
+ code = response['Response']['Error']['Code']
334
+ message = response['Response']['Error']['Message']
335
+ reqid = response['Response']['RequestId']
336
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
337
+ end
338
+ rescue TencentCloud::Common::TencentCloudSDKException => e
339
+ raise e
340
+ rescue StandardError => e
341
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
+ end
343
+
320
344
  # 本接口仅创建下载任务,任务返回的下载地址,请用户调用DescribeExports查看任务列表。其中有下载地址CosPath参数。参考文档https://cloud.tencent.com/document/product/614/56449
321
345
 
322
346
  # @param request: Request instance for CreateExport.
@@ -79,6 +79,26 @@ module TencentCloud
79
79
  end
80
80
  end
81
81
 
82
+ # 告警分类信息
83
+ class AlarmClassification < TencentCloud::Common::AbstractModel
84
+ # @param Key: 分类键
85
+ # @type Key: String
86
+ # @param Value: 分类值
87
+ # @type Value: String
88
+
89
+ attr_accessor :Key, :Value
90
+
91
+ def initialize(key=nil, value=nil)
92
+ @Key = key
93
+ @Value = value
94
+ end
95
+
96
+ def deserialize(params)
97
+ @Key = params['Key']
98
+ @Value = params['Value']
99
+ end
100
+ end
101
+
82
102
  # 告警策略描述
83
103
  class AlarmInfo < TencentCloud::Common::AbstractModel
84
104
  # @param Name: 告警策略名称。
@@ -1448,6 +1468,8 @@ module TencentCloud
1448
1468
 
1449
1469
  # 默认值为true
1450
1470
  # @type Status: Boolean
1471
+ # @param Enable: 是否开启告警策略。默认值为true
1472
+ # @type Enable: Boolean
1451
1473
  # @param MessageTemplate: 用户自定义告警内容
1452
1474
  # @type MessageTemplate: String
1453
1475
  # @param CallBack: 用户自定义回调
@@ -1470,10 +1492,18 @@ module TencentCloud
1470
1492
 
1471
1493
  # 当值为1时,AlarmTargets元素个数不能超过10个,AlarmTargets中的Number必须是从1开始的连续正整数,不能重复。
1472
1494
  # @type MonitorObjectType: Integer
1495
+ # @param Classifications: 告警附加分类信息列表。
1496
+
1497
+ # Classifications元素个数不能超过20个。
1498
+
1499
+ # Classifications元素的Key不能为空,不能重复,长度不能超过50个字符,字符规则 ^[a-z]([a-z0-9_]{0,49})$。
1500
+
1501
+ # Classifications元素的Value长度不能超过200个字符。
1502
+ # @type Classifications: Array
1473
1503
 
1474
- attr_accessor :Name, :AlarmTargets, :MonitorTime, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :Condition, :AlarmLevel, :MultiConditions, :Status, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType
1504
+ attr_accessor :Name, :AlarmTargets, :MonitorTime, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :Condition, :AlarmLevel, :MultiConditions, :Status, :Enable, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType, :Classifications
1475
1505
 
1476
- def initialize(name=nil, alarmtargets=nil, monitortime=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, condition=nil, alarmlevel=nil, multiconditions=nil, status=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, tags=nil, monitorobjecttype=nil)
1506
+ def initialize(name=nil, alarmtargets=nil, monitortime=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, condition=nil, alarmlevel=nil, multiconditions=nil, status=nil, enable=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, tags=nil, monitorobjecttype=nil, classifications=nil)
1477
1507
  @Name = name
1478
1508
  @AlarmTargets = alarmtargets
1479
1509
  @MonitorTime = monitortime
@@ -1484,6 +1514,7 @@ module TencentCloud
1484
1514
  @AlarmLevel = alarmlevel
1485
1515
  @MultiConditions = multiconditions
1486
1516
  @Status = status
1517
+ @Enable = enable
1487
1518
  @MessageTemplate = messagetemplate
1488
1519
  @CallBack = callback
1489
1520
  @Analysis = analysis
@@ -1491,6 +1522,7 @@ module TencentCloud
1491
1522
  @GroupTriggerCondition = grouptriggercondition
1492
1523
  @Tags = tags
1493
1524
  @MonitorObjectType = monitorobjecttype
1525
+ @Classifications = classifications
1494
1526
  end
1495
1527
 
1496
1528
  def deserialize(params)
@@ -1521,6 +1553,7 @@ module TencentCloud
1521
1553
  end
1522
1554
  end
1523
1555
  @Status = params['Status']
1556
+ @Enable = params['Enable']
1524
1557
  @MessageTemplate = params['MessageTemplate']
1525
1558
  unless params['CallBack'].nil?
1526
1559
  @CallBack = CallBackInfo.new
@@ -1545,6 +1578,14 @@ module TencentCloud
1545
1578
  end
1546
1579
  end
1547
1580
  @MonitorObjectType = params['MonitorObjectType']
1581
+ unless params['Classifications'].nil?
1582
+ @Classifications = []
1583
+ params['Classifications'].each do |i|
1584
+ alarmclassification_tmp = AlarmClassification.new
1585
+ alarmclassification_tmp.deserialize(i)
1586
+ @Classifications << alarmclassification_tmp
1587
+ end
1588
+ end
1548
1589
  end
1549
1590
  end
1550
1591
 
@@ -1978,6 +2019,58 @@ module TencentCloud
1978
2019
  end
1979
2020
  end
1980
2021
 
2022
+ # CreateDeliverCloudFunction请求参数结构体
2023
+ class CreateDeliverCloudFunctionRequest < TencentCloud::Common::AbstractModel
2024
+ # @param TopicId: 投递规则属于的 topic id
2025
+ # @type TopicId: String
2026
+ # @param FunctionName: 投递的云函数名字
2027
+ # @type FunctionName: String
2028
+ # @param Namespace: 命名空间
2029
+ # @type Namespace: String
2030
+ # @param Qualifier: 函数版本
2031
+ # @type Qualifier: String
2032
+ # @param Timeout: 投递最长等待时间,单位:秒
2033
+ # @type Timeout: Integer
2034
+ # @param MaxMsgNum: 投递最大消息数
2035
+ # @type MaxMsgNum: Integer
2036
+
2037
+ attr_accessor :TopicId, :FunctionName, :Namespace, :Qualifier, :Timeout, :MaxMsgNum
2038
+
2039
+ def initialize(topicid=nil, functionname=nil, namespace=nil, qualifier=nil, timeout=nil, maxmsgnum=nil)
2040
+ @TopicId = topicid
2041
+ @FunctionName = functionname
2042
+ @Namespace = namespace
2043
+ @Qualifier = qualifier
2044
+ @Timeout = timeout
2045
+ @MaxMsgNum = maxmsgnum
2046
+ end
2047
+
2048
+ def deserialize(params)
2049
+ @TopicId = params['TopicId']
2050
+ @FunctionName = params['FunctionName']
2051
+ @Namespace = params['Namespace']
2052
+ @Qualifier = params['Qualifier']
2053
+ @Timeout = params['Timeout']
2054
+ @MaxMsgNum = params['MaxMsgNum']
2055
+ end
2056
+ end
2057
+
2058
+ # CreateDeliverCloudFunction返回参数结构体
2059
+ class CreateDeliverCloudFunctionResponse < TencentCloud::Common::AbstractModel
2060
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2061
+ # @type RequestId: String
2062
+
2063
+ attr_accessor :RequestId
2064
+
2065
+ def initialize(requestid=nil)
2066
+ @RequestId = requestid
2067
+ end
2068
+
2069
+ def deserialize(params)
2070
+ @RequestId = params['RequestId']
2071
+ end
2072
+ end
2073
+
1981
2074
  # CreateExport请求参数结构体
1982
2075
  class CreateExportRequest < TencentCloud::Common::AbstractModel
1983
2076
  # @param TopicId: 日志主题ID
@@ -2520,7 +2613,7 @@ module TencentCloud
2520
2613
  # @param HotPeriod: 0:关闭日志沉降。
2521
2614
  # 非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
2522
2615
  # @type HotPeriod: Integer
2523
- # @param IsWebTracking: webtracking开关; false: 关闭 true: 开启
2616
+ # @param IsWebTracking: 免鉴权开关; false: 关闭 true: 开启
2524
2617
  # @type IsWebTracking: Boolean
2525
2618
 
2526
2619
  attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod, :IsWebTracking
@@ -6341,6 +6434,28 @@ module TencentCloud
6341
6434
  end
6342
6435
  end
6343
6436
 
6437
+ # 过滤器
6438
+ class MetricLabel < TencentCloud::Common::AbstractModel
6439
+ # @param Key: 指标名称
6440
+ # 注意:此字段可能返回 null,表示取不到有效值。
6441
+ # @type Key: String
6442
+ # @param Value: 指标内容
6443
+ # 注意:此字段可能返回 null,表示取不到有效值。
6444
+ # @type Value: String
6445
+
6446
+ attr_accessor :Key, :Value
6447
+
6448
+ def initialize(key=nil, value=nil)
6449
+ @Key = key
6450
+ @Value = value
6451
+ end
6452
+
6453
+ def deserialize(params)
6454
+ @Key = params['Key']
6455
+ @Value = params['Value']
6456
+ end
6457
+ end
6458
+
6344
6459
  # ModifyAlarmNotice请求参数结构体
6345
6460
  class ModifyAlarmNoticeRequest < TencentCloud::Common::AbstractModel
6346
6461
  # @param AlarmNoticeId: 通知渠道组ID。
@@ -6457,6 +6572,8 @@ module TencentCloud
6457
6572
  # @type AlarmTargets: Array
6458
6573
  # @param Status: 是否开启告警策略。
6459
6574
  # @type Status: Boolean
6575
+ # @param Enable: 是否开启告警策略。默认值为true
6576
+ # @type Enable: Boolean
6460
6577
  # @param MessageTemplate: 用户自定义告警内容
6461
6578
  # @type MessageTemplate: String
6462
6579
  # @param CallBack: 用户自定义回调
@@ -6467,13 +6584,20 @@ module TencentCloud
6467
6584
  # @type GroupTriggerStatus: Boolean
6468
6585
  # @param GroupTriggerCondition: 分组触发条件。
6469
6586
  # @type GroupTriggerCondition: Array
6587
+ # @param Tags: 标签描述列表,通过指定该参数可以同时绑定标签到相应的告警策略。最大支持10个标签键值对,并且不能有重复的键值对。
6588
+ # @type Tags: Array
6470
6589
  # @param MonitorObjectType: 监控对象类型。0:执行语句共用监控对象; 1:每个执行语句单独选择监控对象。
6471
- # <li> 当值为1时,AlarmTargets元素个数不能超过10个,AlarmTargets中的Number必须是从1开始的连续正整数,不能重复。
6590
+ # 当值为1时,AlarmTargets元素个数不能超过10个,AlarmTargets中的Number必须是从1开始的连续正整数,不能重复。
6472
6591
  # @type MonitorObjectType: Integer
6592
+ # @param Classifications: 告警附加分类信息列表。
6593
+ # Classifications元素个数不能超过20个。
6594
+ # Classifications元素的Key不能为空,不能重复,长度不能超过50个字符,符合正则 `^[a-z]([a-z0-9_]{0,49})$`。
6595
+ # Classifications元素的Value长度不能超过200个字符。
6596
+ # @type Classifications: Array
6473
6597
 
6474
- attr_accessor :AlarmId, :Name, :MonitorTime, :Condition, :AlarmLevel, :MultiConditions, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :AlarmTargets, :Status, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :MonitorObjectType
6598
+ attr_accessor :AlarmId, :Name, :MonitorTime, :Condition, :AlarmLevel, :MultiConditions, :TriggerCount, :AlarmPeriod, :AlarmNoticeIds, :AlarmTargets, :Status, :Enable, :MessageTemplate, :CallBack, :Analysis, :GroupTriggerStatus, :GroupTriggerCondition, :Tags, :MonitorObjectType, :Classifications
6475
6599
 
6476
- def initialize(alarmid=nil, name=nil, monitortime=nil, condition=nil, alarmlevel=nil, multiconditions=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, alarmtargets=nil, status=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, monitorobjecttype=nil)
6600
+ def initialize(alarmid=nil, name=nil, monitortime=nil, condition=nil, alarmlevel=nil, multiconditions=nil, triggercount=nil, alarmperiod=nil, alarmnoticeids=nil, alarmtargets=nil, status=nil, enable=nil, messagetemplate=nil, callback=nil, analysis=nil, grouptriggerstatus=nil, grouptriggercondition=nil, tags=nil, monitorobjecttype=nil, classifications=nil)
6477
6601
  @AlarmId = alarmid
6478
6602
  @Name = name
6479
6603
  @MonitorTime = monitortime
@@ -6485,12 +6609,15 @@ module TencentCloud
6485
6609
  @AlarmNoticeIds = alarmnoticeids
6486
6610
  @AlarmTargets = alarmtargets
6487
6611
  @Status = status
6612
+ @Enable = enable
6488
6613
  @MessageTemplate = messagetemplate
6489
6614
  @CallBack = callback
6490
6615
  @Analysis = analysis
6491
6616
  @GroupTriggerStatus = grouptriggerstatus
6492
6617
  @GroupTriggerCondition = grouptriggercondition
6618
+ @Tags = tags
6493
6619
  @MonitorObjectType = monitorobjecttype
6620
+ @Classifications = classifications
6494
6621
  end
6495
6622
 
6496
6623
  def deserialize(params)
@@ -6522,6 +6649,7 @@ module TencentCloud
6522
6649
  end
6523
6650
  end
6524
6651
  @Status = params['Status']
6652
+ @Enable = params['Enable']
6525
6653
  @MessageTemplate = params['MessageTemplate']
6526
6654
  unless params['CallBack'].nil?
6527
6655
  @CallBack = CallBackInfo.new
@@ -6537,7 +6665,23 @@ module TencentCloud
6537
6665
  end
6538
6666
  @GroupTriggerStatus = params['GroupTriggerStatus']
6539
6667
  @GroupTriggerCondition = params['GroupTriggerCondition']
6668
+ unless params['Tags'].nil?
6669
+ @Tags = []
6670
+ params['Tags'].each do |i|
6671
+ tag_tmp = Tag.new
6672
+ tag_tmp.deserialize(i)
6673
+ @Tags << tag_tmp
6674
+ end
6675
+ end
6540
6676
  @MonitorObjectType = params['MonitorObjectType']
6677
+ unless params['Classifications'].nil?
6678
+ @Classifications = []
6679
+ params['Classifications'].each do |i|
6680
+ alarmclassification_tmp = AlarmClassification.new
6681
+ alarmclassification_tmp.deserialize(i)
6682
+ @Classifications << alarmclassification_tmp
6683
+ end
6684
+ end
6541
6685
  end
6542
6686
  end
6543
6687
 
@@ -8118,14 +8262,27 @@ module TencentCloud
8118
8262
  # @type BizType: Integer
8119
8263
  # @param MetricName: 指标名称
8120
8264
  # @type MetricName: String
8121
-
8122
- attr_accessor :TopicId, :Region, :BizType, :MetricName
8123
-
8124
- def initialize(topicid=nil, region=nil, biztype=nil, metricname=nil)
8265
+ # @param MetricNames: 指标名称
8266
+ # BizType为1时,优先使用MetricNames字段信息。多指标只能填充到MetricNames字段,单指标建议填充到MetricNames字段
8267
+ # @type MetricNames: Array
8268
+ # @param MetricLabels: 指标项
8269
+ # @type MetricLabels: Array
8270
+ # @param CustomTime: 自定义时间
8271
+ # @type CustomTime: String
8272
+ # @param CustomMetricLabels: 自定义标签
8273
+ # @type CustomMetricLabels: Array
8274
+
8275
+ attr_accessor :TopicId, :Region, :BizType, :MetricName, :MetricNames, :MetricLabels, :CustomTime, :CustomMetricLabels
8276
+
8277
+ def initialize(topicid=nil, region=nil, biztype=nil, metricname=nil, metricnames=nil, metriclabels=nil, customtime=nil, custommetriclabels=nil)
8125
8278
  @TopicId = topicid
8126
8279
  @Region = region
8127
8280
  @BizType = biztype
8128
8281
  @MetricName = metricname
8282
+ @MetricNames = metricnames
8283
+ @MetricLabels = metriclabels
8284
+ @CustomTime = customtime
8285
+ @CustomMetricLabels = custommetriclabels
8129
8286
  end
8130
8287
 
8131
8288
  def deserialize(params)
@@ -8133,6 +8290,17 @@ module TencentCloud
8133
8290
  @Region = params['Region']
8134
8291
  @BizType = params['BizType']
8135
8292
  @MetricName = params['MetricName']
8293
+ @MetricNames = params['MetricNames']
8294
+ @MetricLabels = params['MetricLabels']
8295
+ @CustomTime = params['CustomTime']
8296
+ unless params['CustomMetricLabels'].nil?
8297
+ @CustomMetricLabels = []
8298
+ params['CustomMetricLabels'].each do |i|
8299
+ metriclabel_tmp = MetricLabel.new
8300
+ metriclabel_tmp.deserialize(i)
8301
+ @CustomMetricLabels << metriclabel_tmp
8302
+ end
8303
+ end
8136
8304
  end
8137
8305
  end
8138
8306
 
@@ -8878,10 +9046,20 @@ module TencentCloud
8878
9046
  # 热存储为 hotPeriod, 冷存储则为 Period-hotPeriod。
8879
9047
  # 注意:此字段可能返回 null,表示取不到有效值。
8880
9048
  # @type HotPeriod: Integer
9049
+ # @param BizType: 主题类型。
9050
+ # - 0: 日志主题
9051
+ # - 1: 指标主题
9052
+ # 注意:此字段可能返回 null,表示取不到有效值。
9053
+ # @type BizType: Integer
9054
+ # @param IsWebTracking: 免鉴权开关。
9055
+ # - false: 关闭
9056
+ # - true: 开启
9057
+ # 注意:此字段可能返回 null,表示取不到有效值。
9058
+ # @type IsWebTracking: Boolean
8881
9059
 
8882
- attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod
9060
+ attr_accessor :LogsetId, :TopicId, :TopicName, :PartitionCount, :Index, :AssumerName, :CreateTime, :Status, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :SubAssumerName, :Describes, :HotPeriod, :BizType, :IsWebTracking
8883
9061
 
8884
- 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)
9062
+ 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)
8885
9063
  @LogsetId = logsetid
8886
9064
  @TopicId = topicid
8887
9065
  @TopicName = topicname
@@ -8898,6 +9076,8 @@ module TencentCloud
8898
9076
  @SubAssumerName = subassumername
8899
9077
  @Describes = describes
8900
9078
  @HotPeriod = hotperiod
9079
+ @BizType = biztype
9080
+ @IsWebTracking = iswebtracking
8901
9081
  end
8902
9082
 
8903
9083
  def deserialize(params)
@@ -8924,6 +9104,8 @@ module TencentCloud
8924
9104
  @SubAssumerName = params['SubAssumerName']
8925
9105
  @Describes = params['Describes']
8926
9106
  @HotPeriod = params['HotPeriod']
9107
+ @BizType = params['BizType']
9108
+ @IsWebTracking = params['IsWebTracking']
8927
9109
  end
8928
9110
  end
8929
9111
 
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.711
4
+ version: 3.0.713
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-23 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common