tencentcloud-sdk-tem 1.0.350 → 1.0.353
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/v20210701/models.rb +9 -4
- 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: 83ee66b8044a2de4aab9668e109a479d4a18023d
|
|
4
|
+
data.tar.gz: d973d9cb0c030cd9f5f9bcd56f0e6f59d8d52e2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0fd376a37f05eccca102a12abca99217c7f98a3ef2d5dddb7d0d7dfa54f5aa7a9c73001663f8947bc20956f94be5651183d802a1e59552df57ee7eb0128e95a
|
|
7
|
+
data.tar.gz: 4c7b1afc0552c8fab9c4a5b86bd3820e55ce13cc5852d66172caa46b0d078335e166cc4fb18f1bd63e0c0ce312d1ee347515c49e292d4353668c86ffb4d3b9f8
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.353
|
data/lib/v20210701/models.rb
CHANGED
|
@@ -590,7 +590,8 @@ module TencentCloud
|
|
|
590
590
|
# @type OsFlavour: String
|
|
591
591
|
# @param EnablePrometheusConf: 是否开启prometheus 业务指标监控
|
|
592
592
|
# @type EnablePrometheusConf: :class:`Tencentcloud::Tem.v20210701.models.EnablePrometheusConf`
|
|
593
|
-
# @param EnableTracing: 1:开始apm
|
|
593
|
+
# @param EnableTracing: 1:开始apm采集(skywalking);
|
|
594
|
+
# 0:关闭apm采集;
|
|
594
595
|
# @type EnableTracing: Integer
|
|
595
596
|
|
|
596
597
|
attr_accessor :ApplicationId, :InitPodNum, :CpuSpec, :MemorySpec, :EnvironmentId, :ImgRepo, :VersionDesc, :JvmOpts, :EsInfo, :EnvConf, :LogConfs, :StorageConfs, :StorageMountConfs, :DeployMode, :DeployVersion, :PkgName, :JdkVersion, :SecurityGroupIds, :LogOutputConf, :SourceChannel, :Description, :ImageCommand, :ImageArgs, :UseRegistryDefaultConfig, :SettingConfs, :Service, :VersionId, :PostStart, :PreStop, :Liveness, :Readiness, :DeployStrategyConf, :HorizontalAutoscaler, :CronHorizontalAutoscaler, :LogEnable, :ConfEdited, :SpeedUp, :StartupProbe, :OsFlavour, :EnablePrometheusConf, :EnableTracing
|
|
@@ -1821,7 +1822,7 @@ module TencentCloud
|
|
|
1821
1822
|
# @type Description: String
|
|
1822
1823
|
# @param SourceChannel: 来源渠道
|
|
1823
1824
|
# @type SourceChannel: Integer
|
|
1824
|
-
# @param EnableTracing:
|
|
1825
|
+
# @param EnableTracing: 是否开启调用链,(此参数已弃用)
|
|
1825
1826
|
# @type EnableTracing: Integer
|
|
1826
1827
|
|
|
1827
1828
|
attr_accessor :ApplicationId, :Description, :SourceChannel, :EnableTracing
|
|
@@ -2120,19 +2121,23 @@ module TencentCloud
|
|
|
2120
2121
|
# @type TargetPort: Integer
|
|
2121
2122
|
# @param Protocol: 协议栈 TCP/UDP
|
|
2122
2123
|
# @type Protocol: String
|
|
2124
|
+
# @param ServiceName: k8s service名称
|
|
2125
|
+
# @type ServiceName: String
|
|
2123
2126
|
|
|
2124
|
-
attr_accessor :Port, :TargetPort, :Protocol
|
|
2127
|
+
attr_accessor :Port, :TargetPort, :Protocol, :ServiceName
|
|
2125
2128
|
|
|
2126
|
-
def initialize(port=nil, targetport=nil, protocol=nil)
|
|
2129
|
+
def initialize(port=nil, targetport=nil, protocol=nil, servicename=nil)
|
|
2127
2130
|
@Port = port
|
|
2128
2131
|
@TargetPort = targetport
|
|
2129
2132
|
@Protocol = protocol
|
|
2133
|
+
@ServiceName = servicename
|
|
2130
2134
|
end
|
|
2131
2135
|
|
|
2132
2136
|
def deserialize(params)
|
|
2133
2137
|
@Port = params['Port']
|
|
2134
2138
|
@TargetPort = params['TargetPort']
|
|
2135
2139
|
@Protocol = params['Protocol']
|
|
2140
|
+
@ServiceName = params['ServiceName']
|
|
2136
2141
|
end
|
|
2137
2142
|
end
|
|
2138
2143
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.353
|
|
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-07-
|
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|