tencentcloud-sdk-tcm 1.0.264 → 1.0.265

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 +40 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5e5039b5ad8685d4386c6b1a8a56a30fa63871c
4
- data.tar.gz: 8c66b6a53e850ef22c2eaff380a42b54f1e42c7f
3
+ metadata.gz: 5c8e109f01ff1d1d0ee3dabfae758b9b5fcf0fb3
4
+ data.tar.gz: 4d39c961410d1c9030b37502615bed4587794558
5
5
  SHA512:
6
- metadata.gz: 76939c5ab1e0467066b14c77af7e2a62354f18531338ffd8e3e7bb7c844df9f09cd909acf7b1b1ab67904c72d9a7804244ecaf053c20d15c43055050c28196fa
7
- data.tar.gz: e2ac01526bd396a583401a3ff69cb8a7210b363e8521e76e4eae64391d09ca8b642071b2a0307f57ccc1f6c88232b21095c77fd0d2327dcbacd48989e788a5f2
6
+ metadata.gz: 5e0bdb315116a53b105526d16709c694f13c83fc81d023f7b4785c34e84502403d8c646e233f28efaccbe5e4d4ff874cca1057e5fe80dafbcfc24140a4a6c970
7
+ data.tar.gz: 1eced0fefbcdc597ea75a33c1a4ed9a4cb4f7fd06878edf94ba8394db199387f00c05090c494cd7356cdcbf4190e9aac91f9e1ab0ccb7432e59271cdbb44a45d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.264
1
+ 1.0.265
@@ -17,6 +17,32 @@
17
17
  module TencentCloud
18
18
  module Tcm
19
19
  module V20210413
20
+ # 腾讯云应用性能管理服务参数
21
+ class APM < TencentCloud::Common::AbstractModel
22
+ # @param Enable: 是否启用
23
+ # @type Enable: Boolean
24
+ # @param Region: 地域
25
+ # 注意:此字段可能返回 null,表示取不到有效值。
26
+ # @type Region: String
27
+ # @param InstanceId: APM 实例,如果创建时传入的参数为空,则表示自动创建 APM 实例。
28
+ # 注意:此字段可能返回 null,表示取不到有效值。
29
+ # @type InstanceId: String
30
+
31
+ attr_accessor :Enable, :Region, :InstanceId
32
+
33
+ def initialize(enable=nil, region=nil, instanceid=nil)
34
+ @Enable = enable
35
+ @Region = region
36
+ @InstanceId = instanceid
37
+ end
38
+
39
+ def deserialize(params)
40
+ @Enable = params['Enable']
41
+ @Region = params['Region']
42
+ @InstanceId = params['InstanceId']
43
+ end
44
+ end
45
+
20
46
  # AccessLog 配置
21
47
  class AccessLogConfig < TencentCloud::Common::AbstractModel
22
48
  # @param Enable: 是否启用
@@ -623,7 +649,7 @@ module TencentCloud
623
649
  class IstioConfig < TencentCloud::Common::AbstractModel
624
650
  # @param OutboundTrafficPolicy: 外部流量策略
625
651
  # @type OutboundTrafficPolicy: String
626
- # @param Tracing: 调用链配置
652
+ # @param Tracing: 调用链配置(Deprecated,请使用 MeshConfig.Tracing 进行配置)
627
653
  # @type Tracing: :class:`Tencentcloud::Tcm.v20210413.models.TracingConfig`
628
654
  # @param DisablePolicyChecks: 禁用策略检查功能
629
655
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1186,15 +1212,26 @@ module TencentCloud
1186
1212
  class TracingConfig < TencentCloud::Common::AbstractModel
1187
1213
  # @param Sampling: 调用链采样率,百分比
1188
1214
  # @type Sampling: Float
1215
+ # @param Enable: 是否启用调用跟踪
1216
+ # @type Enable: Boolean
1217
+ # @param APM: 腾讯云 APM 服务相关参数
1218
+ # @type APM: :class:`Tencentcloud::Tcm.v20210413.models.APM`
1189
1219
 
1190
- attr_accessor :Sampling
1220
+ attr_accessor :Sampling, :Enable, :APM
1191
1221
 
1192
- def initialize(sampling=nil)
1222
+ def initialize(sampling=nil, enable=nil, apm=nil)
1193
1223
  @Sampling = sampling
1224
+ @Enable = enable
1225
+ @APM = apm
1194
1226
  end
1195
1227
 
1196
1228
  def deserialize(params)
1197
1229
  @Sampling = params['Sampling']
1230
+ @Enable = params['Enable']
1231
+ unless params['APM'].nil?
1232
+ @APM = APM.new
1233
+ @APM.deserialize(params['APM'])
1234
+ end
1198
1235
  end
1199
1236
  end
1200
1237
 
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.264
4
+ version: 1.0.265
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-02-24 00:00:00.000000000 Z
11
+ date: 2022-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common