tencentcloud-sdk-tcm 3.0.460 → 3.0.461
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/v20210413/models.rb +26 -3
- 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: 30bb9e0c7459a3c5224ce32d1eafe44dc20c38d3
|
|
4
|
+
data.tar.gz: cb6554ed4a9a07e596e77ad7f15440b329907a59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76aa3b548da82f9fcdf7ac683d25a5f573a63521541076e6b705ca23e7db15a26bd30a7ea78691611a789435bb926fc8c67ad1ce80e0004f8577eccf9cc676a2
|
|
7
|
+
data.tar.gz: 9442fc0a552e9bd15d5201344e5c038671cd8daf3903ef36205086d3a0f8f2610bbb9cf37c6d9b8682c85caeda0154736c39a126e661345d541c30acda7b1c85
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.461
|
data/lib/v20210413/models.rb
CHANGED
|
@@ -549,19 +549,34 @@ module TencentCloud
|
|
|
549
549
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
550
550
|
# @type SelectedRange: :class:`Tencentcloud::Tcm.v20210413.models.SelectedRange`
|
|
551
551
|
# @param Template: 采用的模板,可取值为"istio, trace,默认为istio
|
|
552
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
553
552
|
# @type Template: String
|
|
553
|
+
# @param CLS: 腾讯云日志服务相关参数
|
|
554
|
+
# @type CLS: :class:`Tencentcloud::Tcm.v20210413.models.CLS`
|
|
555
|
+
# @param Address: GRPC第三方服务器地址
|
|
556
|
+
# @type Address: String
|
|
557
|
+
# @param EnableServer: 是否启用GRPC第三方服务器
|
|
558
|
+
# @type EnableServer: Boolean
|
|
559
|
+
# @param EnableStdout: 是否启用标准输出
|
|
560
|
+
# @type EnableStdout: Boolean
|
|
561
|
+
# @param Enable: 是否启用访问日志采集
|
|
562
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
563
|
+
# @type Enable: Boolean
|
|
554
564
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
555
565
|
# @type RequestId: String
|
|
556
566
|
|
|
557
|
-
attr_accessor :File, :Format, :Encoding, :SelectedRange, :Template, :RequestId
|
|
567
|
+
attr_accessor :File, :Format, :Encoding, :SelectedRange, :Template, :CLS, :Address, :EnableServer, :EnableStdout, :Enable, :RequestId
|
|
558
568
|
|
|
559
|
-
def initialize(file=nil, format=nil, encoding=nil, selectedrange=nil, template=nil, requestid=nil)
|
|
569
|
+
def initialize(file=nil, format=nil, encoding=nil, selectedrange=nil, template=nil, cls=nil, address=nil, enableserver=nil, enablestdout=nil, enable=nil, requestid=nil)
|
|
560
570
|
@File = file
|
|
561
571
|
@Format = format
|
|
562
572
|
@Encoding = encoding
|
|
563
573
|
@SelectedRange = selectedrange
|
|
564
574
|
@Template = template
|
|
575
|
+
@CLS = cls
|
|
576
|
+
@Address = address
|
|
577
|
+
@EnableServer = enableserver
|
|
578
|
+
@EnableStdout = enablestdout
|
|
579
|
+
@Enable = enable
|
|
565
580
|
@RequestId = requestid
|
|
566
581
|
end
|
|
567
582
|
|
|
@@ -574,6 +589,14 @@ module TencentCloud
|
|
|
574
589
|
@SelectedRange.deserialize(params['SelectedRange'])
|
|
575
590
|
end
|
|
576
591
|
@Template = params['Template']
|
|
592
|
+
unless params['CLS'].nil?
|
|
593
|
+
@CLS = CLS.new
|
|
594
|
+
@CLS.deserialize(params['CLS'])
|
|
595
|
+
end
|
|
596
|
+
@Address = params['Address']
|
|
597
|
+
@EnableServer = params['EnableServer']
|
|
598
|
+
@EnableStdout = params['EnableStdout']
|
|
599
|
+
@Enable = params['Enable']
|
|
577
600
|
@RequestId = params['RequestId']
|
|
578
601
|
end
|
|
579
602
|
end
|
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: 3.0.
|
|
4
|
+
version: 3.0.461
|
|
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-11-
|
|
11
|
+
date: 2022-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|