tencentcloud-sdk-tcm 1.0.317 → 1.0.320

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/v20210413/models.rb +25 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca297d8490ecbdfc341bea2267782ce1266285f6
4
- data.tar.gz: 7fdaae1d8f72e30c105f42f6dbf02a59c0b07923
3
+ metadata.gz: f7d6f28247681077b3226b4ed95304f6f7a83301
4
+ data.tar.gz: 9e0703eb7003f1b5ac6fc79eeb08ebd79a17d0cd
5
5
  SHA512:
6
- metadata.gz: 0fa117f376d95f941cc9236110d8faa8752d43ea3019c1ac8d3d01c031f43d1f188af8bc53b4d53a2613dc1a16863b58b864215785cb8261d66b86c4ac683335
7
- data.tar.gz: 8758b344749fc7ced6efc76d5d56b13eebb57e482abcdd7d1df7d91948c2fcd9b5e01690993f71923ac7bb46eac396ffc4b3e6e235d9d06a1299d9a6ec50617f
6
+ metadata.gz: 613c8f87c58e1ced1ae613c461e5b5bab41027932d85ca5f12266086e237aa4cc12c598de2eb9ea8adecf05e190a4ce858fb1658060770b0c4fbf55552ee370b
7
+ data.tar.gz: 784ff7b8aa57d07ce88e4df4e04834256e4a9f57763856be00a47cb26daf0ae6a53e31fccf7189ced3323a6f9c0e09178304ce075e729ea739086848ce2d6681
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.317
1
+ 1.0.320
@@ -1242,13 +1242,16 @@ module TencentCloud
1242
1242
  # @type Enable: Boolean
1243
1243
  # @param APM: 腾讯云 APM 服务相关参数
1244
1244
  # @type APM: :class:`Tencentcloud::Tcm.v20210413.models.APM`
1245
+ # @param Zipkin: 启动第三方服务器的地址
1246
+ # @type Zipkin: :class:`Tencentcloud::Tcm.v20210413.models.TracingZipkin`
1245
1247
 
1246
- attr_accessor :Sampling, :Enable, :APM
1248
+ attr_accessor :Sampling, :Enable, :APM, :Zipkin
1247
1249
 
1248
- def initialize(sampling=nil, enable=nil, apm=nil)
1250
+ def initialize(sampling=nil, enable=nil, apm=nil, zipkin=nil)
1249
1251
  @Sampling = sampling
1250
1252
  @Enable = enable
1251
1253
  @APM = apm
1254
+ @Zipkin = zipkin
1252
1255
  end
1253
1256
 
1254
1257
  def deserialize(params)
@@ -1258,6 +1261,26 @@ module TencentCloud
1258
1261
  @APM = APM.new
1259
1262
  @APM.deserialize(params['APM'])
1260
1263
  end
1264
+ unless params['Zipkin'].nil?
1265
+ @Zipkin = TracingZipkin.new
1266
+ @Zipkin.deserialize(params['Zipkin'])
1267
+ end
1268
+ end
1269
+ end
1270
+
1271
+ # 调用追踪的Zipkin设置
1272
+ class TracingZipkin < TencentCloud::Common::AbstractModel
1273
+ # @param Address: Zipkin调用地址
1274
+ # @type Address: String
1275
+
1276
+ attr_accessor :Address
1277
+
1278
+ def initialize(address=nil)
1279
+ @Address = address
1280
+ end
1281
+
1282
+ def deserialize(params)
1283
+ @Address = params['Address']
1261
1284
  end
1262
1285
  end
1263
1286
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.317
4
+ version: 1.0.320
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-05-22 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common