tencentcloud-sdk-eb 3.0.804 → 3.0.805

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210416/models.rb +45 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f34ad5c6ca85188ac304da60798d6f4cfacdae45
4
- data.tar.gz: 10b9c6d5c51a701da8098e3f68bf57f2b67782ca
3
+ metadata.gz: be0dd86e8a0a5fd6d1dd25420f6a5de2265a3960
4
+ data.tar.gz: 3921329ef6b1dee418b808f5dde87e0f6fe5b42d
5
5
  SHA512:
6
- metadata.gz: c0e42ce0e408a4002900abb3689449354cb74fcd4091e3f9db61c139583df4b565d0d8cdb46e0275fcc0877fde234324b10d1b61897fd04849cf491aa634c1b1
7
- data.tar.gz: 98d0cef3d70119962faf8ef4639edb637a1f80b7d35f2e07221d7d0840a1e2c90b4e4e66cf7e721663a8024133372acafa1a9b529b171da0422ca17887a4bf9e
6
+ metadata.gz: d0afdaacaa7fccecfba83288c5245c549842f07f993931652590c85175bc42728f15a15c9d0564d8a400607f79797d8df41eecb10b6232659700c9d6c4344e8f
7
+ data.tar.gz: 90ae104abced9cbfeff5dafc4da5d042dddedbe8dc0d6cec7845d6bcdb1e0e346b0d657dcc5359b9c4d20d716e43c0dbf7aa97d42a42f7a0d78eca1121f6d766
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.804
1
+ 3.0.805
@@ -944,15 +944,27 @@ module TencentCloud
944
944
  # @param Time: 事件发生的毫秒时间戳,
945
945
  # time.Now().UnixNano()/1e6
946
946
  # @type Time: Integer
947
+ # @param Region: 事件的地域信息,没有则默认是EB所在的地域信息
948
+ # @type Region: String
949
+ # @param Status: 用于描述事件状态,非必须,默认是""
950
+ # @type Status: String
951
+ # @param Id: 事件的唯一id,用户侧主动上传则需要保证风格一致
952
+ # @type Id: String
953
+ # @param TagList: 标签列表
954
+ # @type TagList: Array
947
955
 
948
- attr_accessor :Source, :Data, :Type, :Subject, :Time
956
+ attr_accessor :Source, :Data, :Type, :Subject, :Time, :Region, :Status, :Id, :TagList
949
957
 
950
- def initialize(source=nil, data=nil, type=nil, subject=nil, time=nil)
958
+ def initialize(source=nil, data=nil, type=nil, subject=nil, time=nil, region=nil, status=nil, id=nil, taglist=nil)
951
959
  @Source = source
952
960
  @Data = data
953
961
  @Type = type
954
962
  @Subject = subject
955
963
  @Time = time
964
+ @Region = region
965
+ @Status = status
966
+ @Id = id
967
+ @TagList = taglist
956
968
  end
957
969
 
958
970
  def deserialize(params)
@@ -961,6 +973,17 @@ module TencentCloud
961
973
  @Type = params['Type']
962
974
  @Subject = params['Subject']
963
975
  @Time = params['Time']
976
+ @Region = params['Region']
977
+ @Status = params['Status']
978
+ @Id = params['Id']
979
+ unless params['TagList'].nil?
980
+ @TagList = []
981
+ params['TagList'].each do |i|
982
+ tag_tmp = Tag.new
983
+ tag_tmp.deserialize(i)
984
+ @TagList << tag_tmp
985
+ end
986
+ end
964
987
  end
965
988
  end
966
989
 
@@ -2226,6 +2249,26 @@ module TencentCloud
2226
2249
  end
2227
2250
  end
2228
2251
 
2252
+ # 事件总线资源标签
2253
+ class Tag < TencentCloud::Common::AbstractModel
2254
+ # @param Key: 标签名称
2255
+ # @type Key: String
2256
+ # @param Value: 标签值
2257
+ # @type Value: String
2258
+
2259
+ attr_accessor :Key, :Value
2260
+
2261
+ def initialize(key=nil, value=nil)
2262
+ @Key = key
2263
+ @Value = value
2264
+ end
2265
+
2266
+ def deserialize(params)
2267
+ @Key = params['Key']
2268
+ @Value = params['Value']
2269
+ end
2270
+ end
2271
+
2229
2272
  # Target信息
2230
2273
  class Target < TencentCloud::Common::AbstractModel
2231
2274
  # @param Type: 目标类型
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.804
4
+ version: 3.0.805
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-04-15 00:00:00.000000000 Z
11
+ date: 2024-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common