tencentcloud-sdk-tke 3.0.601 → 3.0.602

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180525/models.rb +46 -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: a184873df4fd1a70a191a10c4617e30d3b4ca9c9
4
+ data.tar.gz: 690767f80bb77131f4b0ca1930e333e3c01b145d
5
5
  SHA512:
6
- metadata.gz: 24455faf7e9298c8d587f60161afe579446a3fc89ada24244b7287e6cf328ee4076028c3c0d6966e3967f241689abf3718973f744e3d608739606fbaddfb3bac
7
- data.tar.gz: 20eb863ad259e83e580d6861868ae6854e5c5c760c67861a09596c23056bf211aaa395a4dd392de0b1dae7239040818c036e963244fcb9515eb2fc30be42ad9a
6
+ metadata.gz: 4be8154e54640b580a52ffa076803f1e2ee7d7ebf49189704da301ab5c2b382bec6f6b2867bee1e5af89956cea302581ea9583610ae77cb90fa73b2d78faa654
7
+ data.tar.gz: 8abe6c37bdd4da3e4e7d2728a4abcc9768b6e8f8f6a39e514387cf21f931281a9b2bfb1b0f4b0bfca089c812e3444ecf7b64362478ff64211ac1076f360807f9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.601
1
+ 3.0.602
@@ -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,17 @@ module TencentCloud
11767
11797
  end
11768
11798
  end
11769
11799
 
11800
+ # kms加密参数
11801
+ class KMSConfiguration < TencentCloud::Common::AbstractModel
11802
+
11803
+
11804
+ def initialize()
11805
+ end
11806
+
11807
+ def deserialize(params)
11808
+ end
11809
+ end
11810
+
11770
11811
  # 集群巡检诊断的默认目录类型
11771
11812
  class KubeJarvisStateCatalogue < TencentCloud::Common::AbstractModel
11772
11813
  # @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.602
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-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common