tencentcloud-sdk-tke 3.0.601 → 3.0.603

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/v20180525/models.rb +55 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e6bdd7a61fad81a3e703b66c1088a28e620b496
4
- data.tar.gz: bacf13df048fab517fe92d42e08cc2587d8e5706
3
+ metadata.gz: 7587d90f2e5dd322b1d2ad00979a03643a561876
4
+ data.tar.gz: 4f0b52cc262c7ca59e1a9d2eecdf653815c52700
5
5
  SHA512:
6
- metadata.gz: 24455faf7e9298c8d587f60161afe579446a3fc89ada24244b7287e6cf328ee4076028c3c0d6966e3967f241689abf3718973f744e3d608739606fbaddfb3bac
7
- data.tar.gz: 20eb863ad259e83e580d6861868ae6854e5c5c760c67861a09596c23056bf211aaa395a4dd392de0b1dae7239040818c036e963244fcb9515eb2fc30be42ad9a
6
+ metadata.gz: d78af5116fcc9e4a02b13a9eba9f77a7e467caa1d332748416023d6c5600afd3da3b5fcb166df230b988ce0a899faf81bddf7bb220bf6b0d5f0942ea54782c5f
7
+ data.tar.gz: 2cf52fc8cca719b6a840ed094d7e31c83dc1be6fd006a97d362756b9fa40d07b5c2b39393559e6fd8821ea70e7cf344c57b68d82685ab2f28ff3bbb9e565de66
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.601
1
+ 3.0.603
@@ -7294,27 +7294,40 @@ module TencentCloud
7294
7294
 
7295
7295
  # DescribeEncryptionStatus请求参数结构体
7296
7296
  class DescribeEncryptionStatusRequest < TencentCloud::Common::AbstractModel
7297
+ # @param ClusterId: 集群id
7298
+ # @type ClusterId: String
7297
7299
 
7300
+ attr_accessor :ClusterId
7298
7301
 
7299
- def initialize()
7302
+ def initialize(clusterid=nil)
7303
+ @ClusterId = clusterid
7300
7304
  end
7301
7305
 
7302
7306
  def deserialize(params)
7307
+ @ClusterId = params['ClusterId']
7303
7308
  end
7304
7309
  end
7305
7310
 
7306
7311
  # DescribeEncryptionStatus返回参数结构体
7307
7312
  class DescribeEncryptionStatusResponse < TencentCloud::Common::AbstractModel
7313
+ # @param Status: 加密状态
7314
+ # @type Status: String
7315
+ # @param ErrorMsg: 加密错误信息
7316
+ # @type ErrorMsg: String
7308
7317
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7309
7318
  # @type RequestId: String
7310
7319
 
7311
- attr_accessor :RequestId
7320
+ attr_accessor :Status, :ErrorMsg, :RequestId
7312
7321
 
7313
- def initialize(requestid=nil)
7322
+ def initialize(status=nil, errormsg=nil, requestid=nil)
7323
+ @Status = status
7324
+ @ErrorMsg = errormsg
7314
7325
  @RequestId = requestid
7315
7326
  end
7316
7327
 
7317
7328
  def deserialize(params)
7329
+ @Status = params['Status']
7330
+ @ErrorMsg = params['ErrorMsg']
7318
7331
  @RequestId = params['RequestId']
7319
7332
  end
7320
7333
  end
@@ -9340,12 +9353,17 @@ module TencentCloud
9340
9353
 
9341
9354
  # DisableEncryptionProtection请求参数结构体
9342
9355
  class DisableEncryptionProtectionRequest < TencentCloud::Common::AbstractModel
9356
+ # @param ClusterId: 集群ID
9357
+ # @type ClusterId: String
9343
9358
 
9359
+ attr_accessor :ClusterId
9344
9360
 
9345
- def initialize()
9361
+ def initialize(clusterid=nil)
9362
+ @ClusterId = clusterid
9346
9363
  end
9347
9364
 
9348
9365
  def deserialize(params)
9366
+ @ClusterId = params['ClusterId']
9349
9367
  end
9350
9368
  end
9351
9369
 
@@ -10281,12 +10299,24 @@ module TencentCloud
10281
10299
 
10282
10300
  # EnableEncryptionProtection请求参数结构体
10283
10301
  class EnableEncryptionProtectionRequest < TencentCloud::Common::AbstractModel
10302
+ # @param ClusterId: 集群ID
10303
+ # @type ClusterId: String
10304
+ # @param KMSConfiguration: kms加密配置
10305
+ # @type KMSConfiguration: :class:`Tencentcloud::Tke.v20180525.models.KMSConfiguration`
10284
10306
 
10307
+ attr_accessor :ClusterId, :KMSConfiguration
10285
10308
 
10286
- def initialize()
10309
+ def initialize(clusterid=nil, kmsconfiguration=nil)
10310
+ @ClusterId = clusterid
10311
+ @KMSConfiguration = kmsconfiguration
10287
10312
  end
10288
10313
 
10289
10314
  def deserialize(params)
10315
+ @ClusterId = params['ClusterId']
10316
+ unless params['KMSConfiguration'].nil?
10317
+ @KMSConfiguration = KMSConfiguration.new
10318
+ @KMSConfiguration.deserialize(params['KMSConfiguration'])
10319
+ end
10290
10320
  end
10291
10321
  end
10292
10322
 
@@ -11767,6 +11797,26 @@ module TencentCloud
11767
11797
  end
11768
11798
  end
11769
11799
 
11800
+ # kms加密参数
11801
+ class KMSConfiguration < TencentCloud::Common::AbstractModel
11802
+ # @param KeyId: kms id
11803
+ # @type KeyId: String
11804
+ # @param KmsRegion: kms 地域
11805
+ # @type KmsRegion: String
11806
+
11807
+ attr_accessor :KeyId, :KmsRegion
11808
+
11809
+ def initialize(keyid=nil, kmsregion=nil)
11810
+ @KeyId = keyid
11811
+ @KmsRegion = kmsregion
11812
+ end
11813
+
11814
+ def deserialize(params)
11815
+ @KeyId = params['KeyId']
11816
+ @KmsRegion = params['KmsRegion']
11817
+ end
11818
+ end
11819
+
11770
11820
  # 集群巡检诊断的默认目录类型
11771
11821
  class KubeJarvisStateCatalogue < TencentCloud::Common::AbstractModel
11772
11822
  # @param CatalogueLevel: 目录级别,支持参数:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.601
4
+ version: 3.0.603
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-06-28 00:00:00.000000000 Z
11
+ date: 2023-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common