tencentcloud-sdk-eb 3.0.931 → 3.0.932
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/v20210416/models.rb +13 -13
- 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: 22b65d8ce57411577a2754394ac9ece7c8045bde
|
4
|
+
data.tar.gz: aefa2d10c25b9e93a60dc5387563d7563507aab4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 797fc535dfc03759ccaf5d04d1773c0f06be73a6769f13a9dc69ca160599d0052077bc16515e42f6a077e8d5b8b657c4045acde00fa30b5e4e09b0090952d714
|
7
|
+
data.tar.gz: 37d796ffdc8f4c74e88a7e2d158d3ff6e05eb841df3de7fe5b2037fc1b425edb68daa725114a7dde82494bdd4bf28fe5545ba38723e4ddb305053b7585a4ccee
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.932
|
data/lib/v20210416/models.rb
CHANGED
@@ -369,9 +369,9 @@ module TencentCloud
|
|
369
369
|
|
370
370
|
# CreateEventBus请求参数结构体
|
371
371
|
class CreateEventBusRequest < TencentCloud::Common::AbstractModel
|
372
|
-
# @param EventBusName:
|
372
|
+
# @param EventBusName: 事件集名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符
|
373
373
|
# @type EventBusName: String
|
374
|
-
# @param Description:
|
374
|
+
# @param Description: 事件集描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
375
375
|
# @type Description: String
|
376
376
|
# @param SaveDays: EB存储时长
|
377
377
|
# @type SaveDays: Integer
|
@@ -419,13 +419,13 @@ module TencentCloud
|
|
419
419
|
class CreateRuleRequest < TencentCloud::Common::AbstractModel
|
420
420
|
# @param EventPattern: 参考:[事件模式](https://cloud.tencent.com/document/product/1359/56084)
|
421
421
|
# @type EventPattern: String
|
422
|
-
# @param EventBusId: 事件集ID
|
422
|
+
# @param EventBusId: 事件集ID
|
423
423
|
# @type EventBusId: String
|
424
|
-
# @param RuleName:
|
424
|
+
# @param RuleName: 事件集名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符
|
425
425
|
# @type RuleName: String
|
426
426
|
# @param Enable: 使能开关。
|
427
427
|
# @type Enable: Boolean
|
428
|
-
# @param Description:
|
428
|
+
# @param Description: 事件集描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
429
429
|
# @type Description: String
|
430
430
|
|
431
431
|
attr_accessor :EventPattern, :EventBusId, :RuleName, :Enable, :Description
|
@@ -1679,10 +1679,10 @@ module TencentCloud
|
|
1679
1679
|
class ListTargetsRequest < TencentCloud::Common::AbstractModel
|
1680
1680
|
# @param EventBusId: 事件集ID
|
1681
1681
|
# @type EventBusId: String
|
1682
|
-
# @param OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间)
|
1683
|
-
# @type OrderBy: String
|
1684
1682
|
# @param RuleId: 事件规则ID
|
1685
1683
|
# @type RuleId: String
|
1684
|
+
# @param OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间)
|
1685
|
+
# @type OrderBy: String
|
1686
1686
|
# @param Limit: 返回数量,默认为20,最大值为100。
|
1687
1687
|
# @type Limit: Integer
|
1688
1688
|
# @param Offset: 分页偏移量,默认为0。
|
@@ -1690,12 +1690,12 @@ module TencentCloud
|
|
1690
1690
|
# @param Order: 以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序)
|
1691
1691
|
# @type Order: String
|
1692
1692
|
|
1693
|
-
attr_accessor :EventBusId, :
|
1693
|
+
attr_accessor :EventBusId, :RuleId, :OrderBy, :Limit, :Offset, :Order
|
1694
1694
|
|
1695
|
-
def initialize(eventbusid=nil,
|
1695
|
+
def initialize(eventbusid=nil, ruleid=nil, orderby=nil, limit=nil, offset=nil, order=nil)
|
1696
1696
|
@EventBusId = eventbusid
|
1697
|
-
@OrderBy = orderby
|
1698
1697
|
@RuleId = ruleid
|
1698
|
+
@OrderBy = orderby
|
1699
1699
|
@Limit = limit
|
1700
1700
|
@Offset = offset
|
1701
1701
|
@Order = order
|
@@ -1703,8 +1703,8 @@ module TencentCloud
|
|
1703
1703
|
|
1704
1704
|
def deserialize(params)
|
1705
1705
|
@EventBusId = params['EventBusId']
|
1706
|
-
@OrderBy = params['OrderBy']
|
1707
1706
|
@RuleId = params['RuleId']
|
1707
|
+
@OrderBy = params['OrderBy']
|
1708
1708
|
@Limit = params['Limit']
|
1709
1709
|
@Offset = params['Offset']
|
1710
1710
|
@Order = params['Order']
|
@@ -2574,11 +2574,11 @@ module TencentCloud
|
|
2574
2574
|
# @type EventBusId: String
|
2575
2575
|
# @param Enable: 使能开关。
|
2576
2576
|
# @type Enable: Boolean
|
2577
|
-
# @param Description:
|
2577
|
+
# @param Description: 规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
2578
2578
|
# @type Description: String
|
2579
2579
|
# @param EventPattern: 参考:[事件模式](https://cloud.tencent.com/document/product/1359/56084)
|
2580
2580
|
# @type EventPattern: String
|
2581
|
-
# @param RuleName:
|
2581
|
+
# @param RuleName: 事件规则名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符
|
2582
2582
|
# @type RuleName: String
|
2583
2583
|
|
2584
2584
|
attr_accessor :RuleId, :EventBusId, :Enable, :Description, :EventPattern, :RuleName
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-eb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.932
|
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-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|