tencentcloud-sdk-tcss 3.0.578 → 3.0.580

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/v20201101/models.rb +29 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d83fdd6ca6a79135a173b9730ebd7d82c8b5e78
4
- data.tar.gz: a0d5cb1bbea22e1f3bee9740dcbf441e375a9b57
3
+ metadata.gz: f5b6fe3d648ac14f64b2c6f0f23903a1c99b17e4
4
+ data.tar.gz: 8fafeac0205beb54b5162161151255f0c385450a
5
5
  SHA512:
6
- metadata.gz: 96d1996c242f314ca934c0b4568cfda788aa197f44622bbe423be7bae5ba4a3f6a7bae344510dd2e8527620cbdba8ee9e4266c0e35393bae4f0a6b7e01bdeb68
7
- data.tar.gz: e7283929620db3df2a9bc09a7c005dd7b790c8425342c9fa8877d9b788a82e7c0c3b40f155051b41256f8e10ebd9be7d3757bccd8be72e822ec00c042f821374
6
+ metadata.gz: e3e4837baf93ff169b98c4aa86b82b9401b1c6b1ca9c20e69d47f8109bd19c552368a0b0869808abb45cabe32ae98fcf4a22d717a5d8a300a256e0a759c5d81e
7
+ data.tar.gz: b4c1b89da93a55c8c612780617640c0d1dfbf6c9ae6222c99caacb9d69237df06bbf1ddb649e159fbdc67740acae5fa7a8aa2679f07c517016a86d3c227d4cee
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.578
1
+ 3.0.580
@@ -3346,17 +3346,37 @@ module TencentCloud
3346
3346
  # @param Version: 组件版本信息
3347
3347
  # 注意:此字段可能返回 null,表示取不到有效值。
3348
3348
  # @type Version: String
3349
+ # @param FixedVersion: 可修复版本
3350
+ # 注意:此字段可能返回 null,表示取不到有效值。
3351
+ # @type FixedVersion: String
3352
+ # @param Path: 路径
3353
+ # 注意:此字段可能返回 null,表示取不到有效值。
3354
+ # @type Path: String
3355
+ # @param Type: 类型
3356
+ # 注意:此字段可能返回 null,表示取不到有效值。
3357
+ # @type Type: String
3358
+ # @param Name: 组件名称
3359
+ # 注意:此字段可能返回 null,表示取不到有效值。
3360
+ # @type Name: String
3349
3361
 
3350
- attr_accessor :Component, :Version
3362
+ attr_accessor :Component, :Version, :FixedVersion, :Path, :Type, :Name
3351
3363
 
3352
- def initialize(component=nil, version=nil)
3364
+ def initialize(component=nil, version=nil, fixedversion=nil, path=nil, type=nil, name=nil)
3353
3365
  @Component = component
3354
3366
  @Version = version
3367
+ @FixedVersion = fixedversion
3368
+ @Path = path
3369
+ @Type = type
3370
+ @Name = name
3355
3371
  end
3356
3372
 
3357
3373
  def deserialize(params)
3358
3374
  @Component = params['Component']
3359
3375
  @Version = params['Version']
3376
+ @FixedVersion = params['FixedVersion']
3377
+ @Path = params['Path']
3378
+ @Type = params['Type']
3379
+ @Name = params['Name']
3360
3380
  end
3361
3381
  end
3362
3382
 
@@ -23227,10 +23247,13 @@ module TencentCloud
23227
23247
  # @param NetworkPolicyPluginError: 集群网络插件错误信息
23228
23248
  # 注意:此字段可能返回 null,表示取不到有效值。
23229
23249
  # @type NetworkPolicyPluginError: String
23250
+ # @param ClusterNetworkSettings: 容器网络插件
23251
+ # 注意:此字段可能返回 null,表示取不到有效值。
23252
+ # @type ClusterNetworkSettings: String
23230
23253
 
23231
- attr_accessor :ClusterId, :ClusterName, :ClusterVersion, :ClusterOs, :ClusterType, :Region, :NetworkPolicyPlugin, :ClusterStatus, :TotalRuleCount, :EnableRuleCount, :NetworkPolicyPluginStatus, :NetworkPolicyPluginError
23254
+ attr_accessor :ClusterId, :ClusterName, :ClusterVersion, :ClusterOs, :ClusterType, :Region, :NetworkPolicyPlugin, :ClusterStatus, :TotalRuleCount, :EnableRuleCount, :NetworkPolicyPluginStatus, :NetworkPolicyPluginError, :ClusterNetworkSettings
23232
23255
 
23233
- def initialize(clusterid=nil, clustername=nil, clusterversion=nil, clusteros=nil, clustertype=nil, region=nil, networkpolicyplugin=nil, clusterstatus=nil, totalrulecount=nil, enablerulecount=nil, networkpolicypluginstatus=nil, networkpolicypluginerror=nil)
23256
+ def initialize(clusterid=nil, clustername=nil, clusterversion=nil, clusteros=nil, clustertype=nil, region=nil, networkpolicyplugin=nil, clusterstatus=nil, totalrulecount=nil, enablerulecount=nil, networkpolicypluginstatus=nil, networkpolicypluginerror=nil, clusternetworksettings=nil)
23234
23257
  @ClusterId = clusterid
23235
23258
  @ClusterName = clustername
23236
23259
  @ClusterVersion = clusterversion
@@ -23243,6 +23266,7 @@ module TencentCloud
23243
23266
  @EnableRuleCount = enablerulecount
23244
23267
  @NetworkPolicyPluginStatus = networkpolicypluginstatus
23245
23268
  @NetworkPolicyPluginError = networkpolicypluginerror
23269
+ @ClusterNetworkSettings = clusternetworksettings
23246
23270
  end
23247
23271
 
23248
23272
  def deserialize(params)
@@ -23258,6 +23282,7 @@ module TencentCloud
23258
23282
  @EnableRuleCount = params['EnableRuleCount']
23259
23283
  @NetworkPolicyPluginStatus = params['NetworkPolicyPluginStatus']
23260
23284
  @NetworkPolicyPluginError = params['NetworkPolicyPluginError']
23285
+ @ClusterNetworkSettings = params['ClusterNetworkSettings']
23261
23286
  end
23262
23287
  end
23263
23288
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.578
4
+ version: 3.0.580
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-26 00:00:00.000000000 Z
11
+ date: 2023-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common