tencentcloud-sdk-tcm 1.0.204 → 1.0.205
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 +39 -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: 4348ebea155ff8157da865389b3939a508fe6d03
|
4
|
+
data.tar.gz: a6e1391db03b6408111311b6c8b2b9cc7dc9b950
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80e8fc403110ffffcf7bc2223460976eded3f93d607910aec32887bb5bba712ce0e3e93102bf48fb379cec484a8ee9b5307ca41c4c6df325b35eabb23192e9df
|
7
|
+
data.tar.gz: a67c190322fe2a80add455ce0e7852576927f5596e5ee10374c9daebb1094a3a07b86b5bf61a5db5e0e025f4c8e7b71ec6fa978d9643842bee2947c654933149
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.205
|
data/lib/v20210413/models.rb
CHANGED
@@ -589,18 +589,44 @@ module TencentCloud
|
|
589
589
|
end
|
590
590
|
end
|
591
591
|
|
592
|
+
# 自动注入配置
|
593
|
+
class InjectConfig < TencentCloud::Common::AbstractModel
|
594
|
+
# @param ExcludeIPRanges: 不需要进行代理的 ip 地址范围
|
595
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
596
|
+
# @type ExcludeIPRanges: Array
|
597
|
+
# @param HoldApplicationUntilProxyStarts: 是否等待sidecar启动
|
598
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
599
|
+
# @type HoldApplicationUntilProxyStarts: Boolean
|
600
|
+
|
601
|
+
attr_accessor :ExcludeIPRanges, :HoldApplicationUntilProxyStarts
|
602
|
+
|
603
|
+
def initialize(excludeipranges=nil, holdapplicationuntilproxystarts=nil)
|
604
|
+
@ExcludeIPRanges = excludeipranges
|
605
|
+
@HoldApplicationUntilProxyStarts = holdapplicationuntilproxystarts
|
606
|
+
end
|
607
|
+
|
608
|
+
def deserialize(params)
|
609
|
+
@ExcludeIPRanges = params['ExcludeIPRanges']
|
610
|
+
@HoldApplicationUntilProxyStarts = params['HoldApplicationUntilProxyStarts']
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
592
614
|
# Istio配置
|
593
615
|
class IstioConfig < TencentCloud::Common::AbstractModel
|
594
616
|
# @param OutboundTrafficPolicy: 外部流量策略
|
595
617
|
# @type OutboundTrafficPolicy: String
|
596
618
|
# @param Tracing: 调用链配置
|
597
619
|
# @type Tracing: :class:`Tencentcloud::Tcm.v20210413.models.TracingConfig`
|
620
|
+
# @param DisablePolicyChecks: 禁用策略检查功能
|
621
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
622
|
+
# @type DisablePolicyChecks: Boolean
|
598
623
|
|
599
|
-
attr_accessor :OutboundTrafficPolicy, :Tracing
|
624
|
+
attr_accessor :OutboundTrafficPolicy, :Tracing, :DisablePolicyChecks
|
600
625
|
|
601
|
-
def initialize(outboundtrafficpolicy=nil, tracing=nil)
|
626
|
+
def initialize(outboundtrafficpolicy=nil, tracing=nil, disablepolicychecks=nil)
|
602
627
|
@OutboundTrafficPolicy = outboundtrafficpolicy
|
603
628
|
@Tracing = tracing
|
629
|
+
@DisablePolicyChecks = disablepolicychecks
|
604
630
|
end
|
605
631
|
|
606
632
|
def deserialize(params)
|
@@ -609,6 +635,7 @@ module TencentCloud
|
|
609
635
|
@Tracing = TracingConfig.new
|
610
636
|
@Tracing.deserialize(params['Tracing'])
|
611
637
|
end
|
638
|
+
@DisablePolicyChecks = params['DisablePolicyChecks']
|
612
639
|
end
|
613
640
|
end
|
614
641
|
|
@@ -777,13 +804,17 @@ module TencentCloud
|
|
777
804
|
# @type AccessLog: :class:`Tencentcloud::Tcm.v20210413.models.AccessLogConfig`
|
778
805
|
# @param Prometheus: Prometheus配置
|
779
806
|
# @type Prometheus: :class:`Tencentcloud::Tcm.v20210413.models.PrometheusConfig`
|
807
|
+
# @param Inject: 自动注入配置
|
808
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
809
|
+
# @type Inject: :class:`Tencentcloud::Tcm.v20210413.models.InjectConfig`
|
780
810
|
|
781
|
-
attr_accessor :Istio, :AccessLog, :Prometheus
|
811
|
+
attr_accessor :Istio, :AccessLog, :Prometheus, :Inject
|
782
812
|
|
783
|
-
def initialize(istio=nil, accesslog=nil, prometheus=nil)
|
813
|
+
def initialize(istio=nil, accesslog=nil, prometheus=nil, inject=nil)
|
784
814
|
@Istio = istio
|
785
815
|
@AccessLog = accesslog
|
786
816
|
@Prometheus = prometheus
|
817
|
+
@Inject = inject
|
787
818
|
end
|
788
819
|
|
789
820
|
def deserialize(params)
|
@@ -799,6 +830,10 @@ module TencentCloud
|
|
799
830
|
@Prometheus = PrometheusConfig.new
|
800
831
|
@Prometheus.deserialize(params['Prometheus'])
|
801
832
|
end
|
833
|
+
unless params['Inject'].nil?
|
834
|
+
@Inject = InjectConfig.new
|
835
|
+
@Inject.deserialize(params['Inject'])
|
836
|
+
end
|
802
837
|
end
|
803
838
|
end
|
804
839
|
|
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.
|
4
|
+
version: 1.0.205
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|