tencentcloud-sdk-tke 3.0.428 → 3.0.430

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 +46 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85fd83fc3374aeef0fb7a7cac7153d61dea78f5f
4
- data.tar.gz: 673daf77afbde5212988c86744c849f575682a3a
3
+ metadata.gz: 10bcd275eb98a5c0b0f8b86985dd02f4fcaa2b39
4
+ data.tar.gz: 8555810d89378f6cc76bc407218b32923664084d
5
5
  SHA512:
6
- metadata.gz: 8fb3f86982ea5612d591713e9e5a741109094ea0ee385ee39532118ee1293a78350e5b1338ae0c6c353f5b5d889e796e2cc730c383b6e13c4544e6eebe0f3608
7
- data.tar.gz: 12246235425c4e16239c0ed58c3a88f203708fef59fe9c961727f47b296a5ab81f90fee8b2f52df9e89c410fee36ff3166c33c1daa7796d02a235bcff658c8f6
6
+ metadata.gz: 294feacda369cb9cab3f6344f9f0095d601c161fb33e7a65fd877cb26062a3762d1b744dd3aff4915e57f6605999580ba78bc3da62a158d5995eeeee4d6bf2ce
7
+ data.tar.gz: b845f1bd3bb88b067163a128d7e896e21db5893f603bb7cd64fd640e71c3a6bda21da5a85826512d3a640059fbc72997ca2dd8fae7966e264a15339978aea015
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.428
1
+ 3.0.430
@@ -4408,14 +4408,18 @@ module TencentCloud
4408
4408
  # @param LatestOperationState: 最近一次修改操作结果,返回值可能为:Updating,Success,Failed,TimeOut
4409
4409
  # 注意:此字段可能返回 null,表示取不到有效值。
4410
4410
  # @type LatestOperationState: String
4411
+ # @param OIDCConfig: OIDC认证配置
4412
+ # 注意:此字段可能返回 null,表示取不到有效值。
4413
+ # @type OIDCConfig: :class:`Tencentcloud::Tke.v20180525.models.OIDCConfigAuthenticationOptions`
4411
4414
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4412
4415
  # @type RequestId: String
4413
4416
 
4414
- attr_accessor :ServiceAccounts, :LatestOperationState, :RequestId
4417
+ attr_accessor :ServiceAccounts, :LatestOperationState, :OIDCConfig, :RequestId
4415
4418
 
4416
- def initialize(serviceaccounts=nil, latestoperationstate=nil, requestid=nil)
4419
+ def initialize(serviceaccounts=nil, latestoperationstate=nil, oidcconfig=nil, requestid=nil)
4417
4420
  @ServiceAccounts = serviceaccounts
4418
4421
  @LatestOperationState = latestoperationstate
4422
+ @OIDCConfig = oidcconfig
4419
4423
  @RequestId = requestid
4420
4424
  end
4421
4425
 
@@ -4425,6 +4429,10 @@ module TencentCloud
4425
4429
  @ServiceAccounts.deserialize(params['ServiceAccounts'])
4426
4430
  end
4427
4431
  @LatestOperationState = params['LatestOperationState']
4432
+ unless params['OIDCConfig'].nil?
4433
+ @OIDCConfig = OIDCConfigAuthenticationOptions.new
4434
+ @OIDCConfig.deserialize(params['OIDCConfig'])
4435
+ end
4428
4436
  @RequestId = params['RequestId']
4429
4437
  end
4430
4438
  end
@@ -10647,12 +10655,15 @@ module TencentCloud
10647
10655
  # @type ClusterId: String
10648
10656
  # @param ServiceAccounts: ServiceAccount认证配置
10649
10657
  # @type ServiceAccounts: :class:`Tencentcloud::Tke.v20180525.models.ServiceAccountAuthenticationOptions`
10658
+ # @param OIDCConfig: OIDC认证配置
10659
+ # @type OIDCConfig: :class:`Tencentcloud::Tke.v20180525.models.OIDCConfigAuthenticationOptions`
10650
10660
 
10651
- attr_accessor :ClusterId, :ServiceAccounts
10661
+ attr_accessor :ClusterId, :ServiceAccounts, :OIDCConfig
10652
10662
 
10653
- def initialize(clusterid=nil, serviceaccounts=nil)
10663
+ def initialize(clusterid=nil, serviceaccounts=nil, oidcconfig=nil)
10654
10664
  @ClusterId = clusterid
10655
10665
  @ServiceAccounts = serviceaccounts
10666
+ @OIDCConfig = oidcconfig
10656
10667
  end
10657
10668
 
10658
10669
  def deserialize(params)
@@ -10661,6 +10672,10 @@ module TencentCloud
10661
10672
  @ServiceAccounts = ServiceAccountAuthenticationOptions.new
10662
10673
  @ServiceAccounts.deserialize(params['ServiceAccounts'])
10663
10674
  end
10675
+ unless params['OIDCConfig'].nil?
10676
+ @OIDCConfig = OIDCConfigAuthenticationOptions.new
10677
+ @OIDCConfig.deserialize(params['OIDCConfig'])
10678
+ end
10664
10679
  end
10665
10680
  end
10666
10681
 
@@ -11470,6 +11485,33 @@ module TencentCloud
11470
11485
  end
11471
11486
  end
11472
11487
 
11488
+ # OIDC认证相关配置
11489
+ class OIDCConfigAuthenticationOptions < TencentCloud::Common::AbstractModel
11490
+ # @param AutoCreateOIDCConfig: 创建身份提供商
11491
+ # 注意:此字段可能返回 null,表示取不到有效值。
11492
+ # @type AutoCreateOIDCConfig: Boolean
11493
+ # @param AutoCreateClientId: 创建身份提供商的ClientId
11494
+ # 注意:此字段可能返回 null,表示取不到有效值。
11495
+ # @type AutoCreateClientId: Array
11496
+ # @param AutoInstallPodIdentityWebhookAddon: 创建PodIdentityWebhook组件
11497
+ # 注意:此字段可能返回 null,表示取不到有效值。
11498
+ # @type AutoInstallPodIdentityWebhookAddon: Boolean
11499
+
11500
+ attr_accessor :AutoCreateOIDCConfig, :AutoCreateClientId, :AutoInstallPodIdentityWebhookAddon
11501
+
11502
+ def initialize(autocreateoidcconfig=nil, autocreateclientid=nil, autoinstallpodidentitywebhookaddon=nil)
11503
+ @AutoCreateOIDCConfig = autocreateoidcconfig
11504
+ @AutoCreateClientId = autocreateclientid
11505
+ @AutoInstallPodIdentityWebhookAddon = autoinstallpodidentitywebhookaddon
11506
+ end
11507
+
11508
+ def deserialize(params)
11509
+ @AutoCreateOIDCConfig = params['AutoCreateOIDCConfig']
11510
+ @AutoCreateClientId = params['AutoCreateClientId']
11511
+ @AutoInstallPodIdentityWebhookAddon = params['AutoInstallPodIdentityWebhookAddon']
11512
+ end
11513
+ end
11514
+
11473
11515
  # 某机型可支持的最大 VPC-CNI 模式的 Pod 数量
11474
11516
  class PodLimitsByType < TencentCloud::Common::AbstractModel
11475
11517
  # @param TKERouteENINonStaticIP: TKE共享网卡非固定IP模式可支持的Pod数量
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.428
4
+ version: 3.0.430
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-14 00:00:00.000000000 Z
11
+ date: 2022-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common