tencentcloud-sdk-tke 3.0.429 → 3.0.431

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: 21cad32844fc3b5e642d842d7df30c98f2f7ccee
4
- data.tar.gz: ccaedbf328d1cdb4bb5fc38731167c6898d7eb93
3
+ metadata.gz: 9d52410cfe9e05e311cd46c552912a814ff21945
4
+ data.tar.gz: db4dfb195925bac2084d74799d7d1ea1e5bcfd06
5
5
  SHA512:
6
- metadata.gz: fa15c0f7d99db57bbce7c9fb3044939e1a4866337e4bb186f4a395e69964f4fdaa710cda3d97a010c3919107c043c7b3d54539554df7e130b27e0045468738a9
7
- data.tar.gz: 3147562f24b42d9b2de8f170833baabdb73e63fc38dfe6c4dacf480b2b9eddac2a81c4845e90efe55d73f796ad87d461949640a97f748d1234654f9d2ab65735
6
+ metadata.gz: 1666715762772e2f173d2004308378ccf06d88c9b58272767c69d51e17b8f20bb789f9242c9a7e1c990de7e8646c10449103ccc6071e2f868544ccb48b71d539
7
+ data.tar.gz: 9dd9721b59fdbf7b503c4f8733bd1a86646c915c30f12bea384fd1cf83ecf42cf976b1f18d6ece4d9c96f064b2018f73b9dbfadc2a8a12b5f401f4ef554487c1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.429
1
+ 3.0.431
@@ -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.429
4
+ version: 3.0.431
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-16 00:00:00.000000000 Z
11
+ date: 2022-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common