tencentcloud-sdk-clb 3.0.893 → 3.0.895

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/v20180317/models.rb +44 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c892e4c1cee547daf64c56f4ec2c2079af6df8d7
4
- data.tar.gz: c6358791fee4fd924f8c930ff870e68721336a27
3
+ metadata.gz: bdd82b02b1b7728d0a8746608d32e326acdd5105
4
+ data.tar.gz: 65da0b18ca788ebbbbb410ce47c064ffd153419a
5
5
  SHA512:
6
- metadata.gz: a817942c172360b521e3a60af8ac07db611a659a391ff111b2931060a18a05d6f2a7380196faf4237c5bcbfbb52c6f1e9697e35ab673871df564afc78298ea30
7
- data.tar.gz: 96e590ed6ad177dc10db0e49ebc29082d6f207d1c8e7dcb80c9eb67d05f269a0e7109d4bf1348f06282b65083c1c15979db4eb9f613234b70064db638f71819e
6
+ metadata.gz: 48cb7378b7643db84ac60da1c219e7e5e85882bce855d7d5f9709a63a6503a00a27548394f8912afd151f14d61ee12f154b3fa1916625ad8f161f0346e022d12
7
+ data.tar.gz: fe98e9f0ec8082d3aa5dd8ccd6b85431edcb5fac83de60966cdefd860aab15b360d2ad92f7954e414bc0491dac70e8a08629d87f959d991dce8b2885ff53b1bd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.893
1
+ 3.0.895
@@ -6307,10 +6307,12 @@ module TencentCloud
6307
6307
  # @type TrpcCallee: String
6308
6308
  # @param TrpcFunc: TRPC调用服务接口,ForwardType为TRPC时必填。目前暂未对外开放。
6309
6309
  # @type TrpcFunc: String
6310
+ # @param OAuth: OAuth配置信息。
6311
+ # @type OAuth: :class:`Tencentcloud::Clb.v20180317.models.OAuth`
6310
6312
 
6311
- attr_accessor :LoadBalancerId, :ListenerId, :LocationId, :Url, :HealthCheck, :Scheduler, :SessionExpireTime, :ForwardType, :TrpcCallee, :TrpcFunc
6313
+ attr_accessor :LoadBalancerId, :ListenerId, :LocationId, :Url, :HealthCheck, :Scheduler, :SessionExpireTime, :ForwardType, :TrpcCallee, :TrpcFunc, :OAuth
6312
6314
 
6313
- def initialize(loadbalancerid=nil, listenerid=nil, locationid=nil, url=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, forwardtype=nil, trpccallee=nil, trpcfunc=nil)
6315
+ def initialize(loadbalancerid=nil, listenerid=nil, locationid=nil, url=nil, healthcheck=nil, scheduler=nil, sessionexpiretime=nil, forwardtype=nil, trpccallee=nil, trpcfunc=nil, oauth=nil)
6314
6316
  @LoadBalancerId = loadbalancerid
6315
6317
  @ListenerId = listenerid
6316
6318
  @LocationId = locationid
@@ -6321,6 +6323,7 @@ module TencentCloud
6321
6323
  @ForwardType = forwardtype
6322
6324
  @TrpcCallee = trpccallee
6323
6325
  @TrpcFunc = trpcfunc
6326
+ @OAuth = oauth
6324
6327
  end
6325
6328
 
6326
6329
  def deserialize(params)
@@ -6337,6 +6340,10 @@ module TencentCloud
6337
6340
  @ForwardType = params['ForwardType']
6338
6341
  @TrpcCallee = params['TrpcCallee']
6339
6342
  @TrpcFunc = params['TrpcFunc']
6343
+ unless params['OAuth'].nil?
6344
+ @OAuth = OAuth.new
6345
+ @OAuth.deserialize(params['OAuth'])
6346
+ end
6340
6347
  end
6341
6348
  end
6342
6349
 
@@ -6635,6 +6642,31 @@ module TencentCloud
6635
6642
  end
6636
6643
  end
6637
6644
 
6645
+ # OAuth配置信息。
6646
+ class OAuth < TencentCloud::Common::AbstractModel
6647
+ # @param OAuthEnable: 开启或关闭鉴权。
6648
+ # True: 开启;
6649
+ # False: 关闭
6650
+ # 注意:此字段可能返回 null,表示取不到有效值。
6651
+ # @type OAuthEnable: Boolean
6652
+ # @param OAuthFailureStatus: IAP全部故障后,拒绝请求还是放行。BYPASS:通过,
6653
+ # REJECT: 拒绝
6654
+ # 注意:此字段可能返回 null,表示取不到有效值。
6655
+ # @type OAuthFailureStatus: String
6656
+
6657
+ attr_accessor :OAuthEnable, :OAuthFailureStatus
6658
+
6659
+ def initialize(oauthenable=nil, oauthfailurestatus=nil)
6660
+ @OAuthEnable = oauthenable
6661
+ @OAuthFailureStatus = oauthfailurestatus
6662
+ end
6663
+
6664
+ def deserialize(params)
6665
+ @OAuthEnable = params['OAuthEnable']
6666
+ @OAuthFailureStatus = params['OAuthFailureStatus']
6667
+ end
6668
+ end
6669
+
6638
6670
  # 表示负载均衡的价格
6639
6671
  class Price < TencentCloud::Common::AbstractModel
6640
6672
  # @param InstancePrice: 描述了实例价格。
@@ -7345,10 +7377,13 @@ module TencentCloud
7345
7377
  # @param TargetGroupList: 绑定的目标组列表
7346
7378
  # 注意:此字段可能返回 null,表示取不到有效值。
7347
7379
  # @type TargetGroupList: Array
7380
+ # @param OAuth: OAuth配置状态信息。
7381
+ # 注意:此字段可能返回 null,表示取不到有效值。
7382
+ # @type OAuth: :class:`Tencentcloud::Clb.v20180317.models.OAuth`
7348
7383
 
7349
- attr_accessor :LocationId, :Domain, :Url, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :ListenerId, :RewriteTarget, :HttpGzip, :BeAutoCreated, :DefaultServer, :Http2, :ForwardType, :CreateTime, :TargetType, :TargetGroup, :WafDomainId, :TrpcCallee, :TrpcFunc, :QuicStatus, :Domains, :TargetGroupList
7384
+ attr_accessor :LocationId, :Domain, :Url, :SessionExpireTime, :HealthCheck, :Certificate, :Scheduler, :ListenerId, :RewriteTarget, :HttpGzip, :BeAutoCreated, :DefaultServer, :Http2, :ForwardType, :CreateTime, :TargetType, :TargetGroup, :WafDomainId, :TrpcCallee, :TrpcFunc, :QuicStatus, :Domains, :TargetGroupList, :OAuth
7350
7385
 
7351
- def initialize(locationid=nil, domain=nil, url=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, listenerid=nil, rewritetarget=nil, httpgzip=nil, beautocreated=nil, defaultserver=nil, http2=nil, forwardtype=nil, createtime=nil, targettype=nil, targetgroup=nil, wafdomainid=nil, trpccallee=nil, trpcfunc=nil, quicstatus=nil, domains=nil, targetgrouplist=nil)
7386
+ def initialize(locationid=nil, domain=nil, url=nil, sessionexpiretime=nil, healthcheck=nil, certificate=nil, scheduler=nil, listenerid=nil, rewritetarget=nil, httpgzip=nil, beautocreated=nil, defaultserver=nil, http2=nil, forwardtype=nil, createtime=nil, targettype=nil, targetgroup=nil, wafdomainid=nil, trpccallee=nil, trpcfunc=nil, quicstatus=nil, domains=nil, targetgrouplist=nil, oauth=nil)
7352
7387
  @LocationId = locationid
7353
7388
  @Domain = domain
7354
7389
  @Url = url
@@ -7372,6 +7407,7 @@ module TencentCloud
7372
7407
  @QuicStatus = quicstatus
7373
7408
  @Domains = domains
7374
7409
  @TargetGroupList = targetgrouplist
7410
+ @OAuth = oauth
7375
7411
  end
7376
7412
 
7377
7413
  def deserialize(params)
@@ -7417,6 +7453,10 @@ module TencentCloud
7417
7453
  @TargetGroupList << basictargetgroupinfo_tmp
7418
7454
  end
7419
7455
  end
7456
+ unless params['OAuth'].nil?
7457
+ @OAuth = OAuth.new
7458
+ @OAuth.deserialize(params['OAuth'])
7459
+ end
7420
7460
  end
7421
7461
  end
7422
7462
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-clb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.893
4
+ version: 3.0.895
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-25 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common