tencentcloud-sdk-tcm 3.0.432 → 3.0.433
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210413/models.rb +60 -6
- 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: 2a2f47d4a9836b3e2a15e8b6e05944e767d34825
|
4
|
+
data.tar.gz: 87870edffb375f30b63b462ed85ffaee1fc10607
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3ebf67bfce36565afd117934ff009bbd69cd8681c1a399ca7bb47a6843f1d7618b03f684ef9aa3e352219036e38f6bdfd10125a506232c2e5b487215cd45aaf
|
7
|
+
data.tar.gz: eefd8ef04b755c8f46a7845f469517a3fdab4c71e99cfa958ccfa3b4726569e4e77e669ec16db1276b7015597e102cc229d79b1ff1571d168a218b9d18d03ecb
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.433
|
data/lib/v20210413/models.rb
CHANGED
@@ -631,13 +631,16 @@ module TencentCloud
|
|
631
631
|
# @type Namespace: String
|
632
632
|
# @param Workload: 工作负载配置
|
633
633
|
# @type Workload: :class:`Tencentcloud::Tcm.v20210413.models.WorkloadConfig`
|
634
|
+
# @param Status: 工作负载的状态
|
635
|
+
# @type Status: :class:`Tencentcloud::Tcm.v20210413.models.EgressGatewayStatus`
|
634
636
|
|
635
|
-
attr_accessor :Name, :Namespace, :Workload
|
637
|
+
attr_accessor :Name, :Namespace, :Workload, :Status
|
636
638
|
|
637
|
-
def initialize(name=nil, namespace=nil, workload=nil)
|
639
|
+
def initialize(name=nil, namespace=nil, workload=nil, status=nil)
|
638
640
|
@Name = name
|
639
641
|
@Namespace = namespace
|
640
642
|
@Workload = workload
|
643
|
+
@Status = status
|
641
644
|
end
|
642
645
|
|
643
646
|
def deserialize(params)
|
@@ -647,6 +650,34 @@ module TencentCloud
|
|
647
650
|
@Workload = WorkloadConfig.new
|
648
651
|
@Workload.deserialize(params['Workload'])
|
649
652
|
end
|
653
|
+
unless params['Status'].nil?
|
654
|
+
@Status = EgressGatewayStatus.new
|
655
|
+
@Status.deserialize(params['Status'])
|
656
|
+
end
|
657
|
+
end
|
658
|
+
end
|
659
|
+
|
660
|
+
# egress gateway 的状态
|
661
|
+
class EgressGatewayStatus < TencentCloud::Common::AbstractModel
|
662
|
+
# @param CurrentVersion: egress gateway的当前版本
|
663
|
+
# @type CurrentVersion: String
|
664
|
+
# @param DesiredVersion: egress gateway的目标版本
|
665
|
+
# @type DesiredVersion: String
|
666
|
+
# @param State: egress gateway的状态,取值:running,upgrading,rollbacking
|
667
|
+
# @type State: String
|
668
|
+
|
669
|
+
attr_accessor :CurrentVersion, :DesiredVersion, :State
|
670
|
+
|
671
|
+
def initialize(currentversion=nil, desiredversion=nil, state=nil)
|
672
|
+
@CurrentVersion = currentversion
|
673
|
+
@DesiredVersion = desiredversion
|
674
|
+
@State = state
|
675
|
+
end
|
676
|
+
|
677
|
+
def deserialize(params)
|
678
|
+
@CurrentVersion = params['CurrentVersion']
|
679
|
+
@DesiredVersion = params['DesiredVersion']
|
680
|
+
@State = params['State']
|
650
681
|
end
|
651
682
|
end
|
652
683
|
|
@@ -855,11 +886,20 @@ module TencentCloud
|
|
855
886
|
class IngressGatewayStatus < TencentCloud::Common::AbstractModel
|
856
887
|
# @param LoadBalancer: 负载均衡实例状态
|
857
888
|
# @type LoadBalancer: :class:`Tencentcloud::Tcm.v20210413.models.LoadBalancerStatus`
|
889
|
+
# @param CurrentVersion: ingress gateway 当前的版本
|
890
|
+
# @type CurrentVersion: String
|
891
|
+
# @param DesiredVersion: ingress gateway 目标的版本
|
892
|
+
# @type DesiredVersion: String
|
893
|
+
# @param State: ingress gateway的状态,取值running, upgrading, rollbacking
|
894
|
+
# @type State: String
|
858
895
|
|
859
|
-
attr_accessor :LoadBalancer
|
896
|
+
attr_accessor :LoadBalancer, :CurrentVersion, :DesiredVersion, :State
|
860
897
|
|
861
|
-
def initialize(loadbalancer=nil)
|
898
|
+
def initialize(loadbalancer=nil, currentversion=nil, desiredversion=nil, state=nil)
|
862
899
|
@LoadBalancer = loadbalancer
|
900
|
+
@CurrentVersion = currentversion
|
901
|
+
@DesiredVersion = desiredversion
|
902
|
+
@State = state
|
863
903
|
end
|
864
904
|
|
865
905
|
def deserialize(params)
|
@@ -867,6 +907,9 @@ module TencentCloud
|
|
867
907
|
@LoadBalancer = LoadBalancerStatus.new
|
868
908
|
@LoadBalancer.deserialize(params['LoadBalancer'])
|
869
909
|
end
|
910
|
+
@CurrentVersion = params['CurrentVersion']
|
911
|
+
@DesiredVersion = params['DesiredVersion']
|
912
|
+
@State = params['State']
|
870
913
|
end
|
871
914
|
end
|
872
915
|
|
@@ -1146,10 +1189,12 @@ module TencentCloud
|
|
1146
1189
|
# @type Config: :class:`Tencentcloud::Tcm.v20210413.models.MeshConfig`
|
1147
1190
|
# @param Status: Mesh详细状态
|
1148
1191
|
# @type Status: :class:`Tencentcloud::Tcm.v20210413.models.MeshStatus`
|
1192
|
+
# @param TagList: 标签列表
|
1193
|
+
# @type TagList: Array
|
1149
1194
|
|
1150
|
-
attr_accessor :MeshId, :DisplayName, :Type, :Region, :Version, :State, :CreatedTime, :UpdatedTime, :ClusterList, :Config, :Status
|
1195
|
+
attr_accessor :MeshId, :DisplayName, :Type, :Region, :Version, :State, :CreatedTime, :UpdatedTime, :ClusterList, :Config, :Status, :TagList
|
1151
1196
|
|
1152
|
-
def initialize(meshid=nil, displayname=nil, type=nil, region=nil, version=nil, state=nil, createdtime=nil, updatedtime=nil, clusterlist=nil, config=nil, status=nil)
|
1197
|
+
def initialize(meshid=nil, displayname=nil, type=nil, region=nil, version=nil, state=nil, createdtime=nil, updatedtime=nil, clusterlist=nil, config=nil, status=nil, taglist=nil)
|
1153
1198
|
@MeshId = meshid
|
1154
1199
|
@DisplayName = displayname
|
1155
1200
|
@Type = type
|
@@ -1161,6 +1206,7 @@ module TencentCloud
|
|
1161
1206
|
@ClusterList = clusterlist
|
1162
1207
|
@Config = config
|
1163
1208
|
@Status = status
|
1209
|
+
@TagList = taglist
|
1164
1210
|
end
|
1165
1211
|
|
1166
1212
|
def deserialize(params)
|
@@ -1188,6 +1234,14 @@ module TencentCloud
|
|
1188
1234
|
@Status = MeshStatus.new
|
1189
1235
|
@Status.deserialize(params['Status'])
|
1190
1236
|
end
|
1237
|
+
unless params['TagList'].nil?
|
1238
|
+
@TagList = []
|
1239
|
+
params['TagList'].each do |i|
|
1240
|
+
tag_tmp = Tag.new
|
1241
|
+
tag_tmp.deserialize(i)
|
1242
|
+
@TagList << tag_tmp
|
1243
|
+
end
|
1244
|
+
end
|
1191
1245
|
end
|
1192
1246
|
end
|
1193
1247
|
|
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.433
|
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-10-
|
11
|
+
date: 2022-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|