tencentcloud-sdk-tcm 1.0.317 → 1.0.318

Sign up to get free protection for your applications and to get access to all the features.
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: 5c485cf717b5b213e492ed5805b4e64807f90a0e
4
+ data.tar.gz: 2781d5656c174bc92f0edff7a414f8211de8f480
5
5
  SHA512:
6
- metadata.gz: 0fa117f376d95f941cc9236110d8faa8752d43ea3019c1ac8d3d01c031f43d1f188af8bc53b4d53a2613dc1a16863b58b864215785cb8261d66b86c4ac683335
7
- data.tar.gz: 8758b344749fc7ced6efc76d5d56b13eebb57e482abcdd7d1df7d91948c2fcd9b5e01690993f71923ac7bb46eac396ffc4b3e6e235d9d06a1299d9a6ec50617f
6
+ metadata.gz: 0bef17ae9f2ea9ce213ffdc1d92929ec6c766b8ccfdbab2550cb5ff27622ac9c71910b4fb4271b0e7128483ece1c2d0ec6909ccf64265682bb600e01de6d29c1
7
+ data.tar.gz: 38b8dd25150b1e33f7cb00554ebbc2ba938c50295626a82a0bdc5218aa0d1015a8ae7c309e917429fd0f176e798ae595bfe45e31a4497dc1e3f5f0d8004432b7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.317
1
+ 1.0.318
@@ -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.318
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-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common