tencentcloud-sdk-tse 3.0.1094 → 3.0.1101

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8f31837081173701ad6d19c6e5f00df3974b2c2
4
- data.tar.gz: 549d2d2a70cec2cab90186901dd1c66866d9acfe
3
+ metadata.gz: 476dd8c7820cf0ab78fde624cf3fd56543a6e788
4
+ data.tar.gz: a32ef670384ff281c1e2125e9d91519489e26f1a
5
5
  SHA512:
6
- metadata.gz: ec284424d21f0da0841475a26bbfcd0b5498800667ba7b628e32843b9e8e9ca3993688ad4c5ebac1355f5abcb7200fbd59a2ca1ec777148bd81d5300a6b86df5
7
- data.tar.gz: 373ac848e592b427a59dfdf64d9198ca228db0cc878508cad206c791aafeab44808bc53460265173f510f476c41910cc95ac5f56654cfa2644d79ff95853abc1
6
+ metadata.gz: 41f23eaabb7ae89d3ba322c748cddac194d4bcf588bef7c0bbab8b029e8438902485f407ca8070c970bb7e40d2c60450bbb215a4247b7277c46a56c294cdef2e
7
+ data.tar.gz: 72c56a9a9df86de9ae8163b2dace84658da1d03f177d3f043ed0930ade25d26827ab08027458831904a1117eb016184be7dcdbd4e7569d6757eb315b8dace1b4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1101
@@ -1421,6 +1421,30 @@ module TencentCloud
1421
1421
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1422
1422
  end
1423
1423
 
1424
+ # 轻量查询云原生网关服务列表
1425
+
1426
+ # @param request: Request instance for DescribeCloudNativeAPIGatewayServicesLight.
1427
+ # @type request: :class:`Tencentcloud::tse::V20201207::DescribeCloudNativeAPIGatewayServicesLightRequest`
1428
+ # @rtype: :class:`Tencentcloud::tse::V20201207::DescribeCloudNativeAPIGatewayServicesLightResponse`
1429
+ def DescribeCloudNativeAPIGatewayServicesLight(request)
1430
+ body = send_request('DescribeCloudNativeAPIGatewayServicesLight', request.serialize)
1431
+ response = JSON.parse(body)
1432
+ if response['Response'].key?('Error') == false
1433
+ model = DescribeCloudNativeAPIGatewayServicesLightResponse.new
1434
+ model.deserialize(response['Response'])
1435
+ model
1436
+ else
1437
+ code = response['Response']['Error']['Code']
1438
+ message = response['Response']['Error']['Message']
1439
+ reqid = response['Response']['RequestId']
1440
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1441
+ end
1442
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1443
+ raise e
1444
+ rescue StandardError => e
1445
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1446
+ end
1447
+
1424
1448
  # 获取云原生网关服务详情下的Upstream列表
1425
1449
 
1426
1450
  # @param request: Request instance for DescribeCloudNativeAPIGatewayUpstream.
@@ -823,8 +823,8 @@ module TencentCloud
823
823
 
824
824
  attr_accessor :StrategyId, :StrategyName, :CreateTime, :ModifyTime, :Description, :Config, :GatewayId, :CronConfig, :MaxReplicas
825
825
  extend Gem::Deprecate
826
- deprecate :MaxReplicas, :none, 2025, 6
827
- deprecate :MaxReplicas=, :none, 2025, 6
826
+ deprecate :MaxReplicas, :none, 2025, 7
827
+ deprecate :MaxReplicas=, :none, 2025, 7
828
828
 
829
829
  def initialize(strategyid=nil, strategyname=nil, createtime=nil, modifytime=nil, description=nil, config=nil, gatewayid=nil, cronconfig=nil, maxreplicas=nil)
830
830
  @StrategyId = strategyid
@@ -885,16 +885,16 @@ module TencentCloud
885
885
 
886
886
  attr_accessor :MaxReplicas, :Metrics, :Enabled, :CreateTime, :ModifyTime, :StrategyId, :AutoScalerId, :Behavior
887
887
  extend Gem::Deprecate
888
- deprecate :Enabled, :none, 2025, 6
889
- deprecate :Enabled=, :none, 2025, 6
890
- deprecate :CreateTime, :none, 2025, 6
891
- deprecate :CreateTime=, :none, 2025, 6
892
- deprecate :ModifyTime, :none, 2025, 6
893
- deprecate :ModifyTime=, :none, 2025, 6
894
- deprecate :StrategyId, :none, 2025, 6
895
- deprecate :StrategyId=, :none, 2025, 6
896
- deprecate :AutoScalerId, :none, 2025, 6
897
- deprecate :AutoScalerId=, :none, 2025, 6
888
+ deprecate :Enabled, :none, 2025, 7
889
+ deprecate :Enabled=, :none, 2025, 7
890
+ deprecate :CreateTime, :none, 2025, 7
891
+ deprecate :CreateTime=, :none, 2025, 7
892
+ deprecate :ModifyTime, :none, 2025, 7
893
+ deprecate :ModifyTime=, :none, 2025, 7
894
+ deprecate :StrategyId, :none, 2025, 7
895
+ deprecate :StrategyId=, :none, 2025, 7
896
+ deprecate :AutoScalerId, :none, 2025, 7
897
+ deprecate :AutoScalerId=, :none, 2025, 7
898
898
 
899
899
  def initialize(maxreplicas=nil, metrics=nil, enabled=nil, createtime=nil, modifytime=nil, strategyid=nil, autoscalerid=nil, behavior=nil)
900
900
  @MaxReplicas = maxreplicas
@@ -1015,14 +1015,14 @@ module TencentCloud
1015
1015
 
1016
1016
  attr_accessor :Enabled, :Params, :CreateTime, :ModifyTime, :StrategyId
1017
1017
  extend Gem::Deprecate
1018
- deprecate :Enabled, :none, 2025, 6
1019
- deprecate :Enabled=, :none, 2025, 6
1020
- deprecate :CreateTime, :none, 2025, 6
1021
- deprecate :CreateTime=, :none, 2025, 6
1022
- deprecate :ModifyTime, :none, 2025, 6
1023
- deprecate :ModifyTime=, :none, 2025, 6
1024
- deprecate :StrategyId, :none, 2025, 6
1025
- deprecate :StrategyId=, :none, 2025, 6
1018
+ deprecate :Enabled, :none, 2025, 7
1019
+ deprecate :Enabled=, :none, 2025, 7
1020
+ deprecate :CreateTime, :none, 2025, 7
1021
+ deprecate :CreateTime=, :none, 2025, 7
1022
+ deprecate :ModifyTime, :none, 2025, 7
1023
+ deprecate :ModifyTime=, :none, 2025, 7
1024
+ deprecate :StrategyId, :none, 2025, 7
1025
+ deprecate :StrategyId=, :none, 2025, 7
1026
1026
 
1027
1027
  def initialize(enabled=nil, params=nil, createtime=nil, modifytime=nil, strategyid=nil)
1028
1028
  @Enabled = enabled
@@ -1700,10 +1700,10 @@ module TencentCloud
1700
1700
 
1701
1701
  attr_accessor :GatewayId, :StrategyName, :Description, :Config, :CronScalerConfig, :MaxReplicas, :CronConfig
1702
1702
  extend Gem::Deprecate
1703
- deprecate :CronScalerConfig, :none, 2025, 6
1704
- deprecate :CronScalerConfig=, :none, 2025, 6
1705
- deprecate :MaxReplicas, :none, 2025, 6
1706
- deprecate :MaxReplicas=, :none, 2025, 6
1703
+ deprecate :CronScalerConfig, :none, 2025, 7
1704
+ deprecate :CronScalerConfig=, :none, 2025, 7
1705
+ deprecate :MaxReplicas, :none, 2025, 7
1706
+ deprecate :MaxReplicas=, :none, 2025, 7
1707
1707
 
1708
1708
  def initialize(gatewayid=nil, strategyname=nil, description=nil, config=nil, cronscalerconfig=nil, maxreplicas=nil, cronconfig=nil)
1709
1709
  @GatewayId = gatewayid
@@ -1746,8 +1746,8 @@ module TencentCloud
1746
1746
 
1747
1747
  attr_accessor :Result, :StrategyId, :RequestId
1748
1748
  extend Gem::Deprecate
1749
- deprecate :Result, :none, 2025, 6
1750
- deprecate :Result=, :none, 2025, 6
1749
+ deprecate :Result, :none, 2025, 7
1750
+ deprecate :Result=, :none, 2025, 7
1751
1751
 
1752
1752
  def initialize(result=nil, strategyid=nil, requestid=nil)
1753
1753
  @Result = result
@@ -1833,10 +1833,10 @@ module TencentCloud
1833
1833
 
1834
1834
  attr_accessor :GatewayId, :BindDomains, :CertId, :Name, :Key, :Crt
1835
1835
  extend Gem::Deprecate
1836
- deprecate :Key, :none, 2025, 6
1837
- deprecate :Key=, :none, 2025, 6
1838
- deprecate :Crt, :none, 2025, 6
1839
- deprecate :Crt=, :none, 2025, 6
1836
+ deprecate :Key, :none, 2025, 7
1837
+ deprecate :Key=, :none, 2025, 7
1838
+ deprecate :Crt, :none, 2025, 7
1839
+ deprecate :Crt=, :none, 2025, 7
1840
1840
 
1841
1841
  def initialize(gatewayid=nil, binddomains=nil, certid=nil, name=nil, key=nil, crt=nil)
1842
1842
  @GatewayId = gatewayid
@@ -2171,8 +2171,8 @@ module TencentCloud
2171
2171
 
2172
2172
  attr_accessor :GatewayId, :ServiceID, :RouteName, :Methods, :Hosts, :Paths, :Protocols, :PreserveHost, :HttpsRedirectStatusCode, :StripPath, :ForceHttps, :DestinationPorts, :Headers, :RequestBuffering, :ResponseBuffering, :RegexPriority
2173
2173
  extend Gem::Deprecate
2174
- deprecate :ForceHttps, :none, 2025, 6
2175
- deprecate :ForceHttps=, :none, 2025, 6
2174
+ deprecate :ForceHttps, :none, 2025, 7
2175
+ deprecate :ForceHttps=, :none, 2025, 7
2176
2176
 
2177
2177
  def initialize(gatewayid=nil, serviceid=nil, routename=nil, methods=nil, hosts=nil, paths=nil, protocols=nil, preservehost=nil, httpsredirectstatuscode=nil, strippath=nil, forcehttps=nil, destinationports=nil, headers=nil, requestbuffering=nil, responsebuffering=nil, regexpriority=nil)
2178
2178
  @GatewayId = gatewayid
@@ -4941,6 +4941,64 @@ module TencentCloud
4941
4941
  end
4942
4942
  end
4943
4943
 
4944
+ # DescribeCloudNativeAPIGatewayServicesLight请求参数结构体
4945
+ class DescribeCloudNativeAPIGatewayServicesLightRequest < TencentCloud::Common::AbstractModel
4946
+ # @param GatewayId: 网关ID
4947
+ # @type GatewayId: String
4948
+ # @param Limit: 列表数量
4949
+ # @type Limit: Integer
4950
+ # @param Offset: 列表 offset
4951
+ # @type Offset: Integer
4952
+ # @param Filters: 过滤条件,多个过滤条件之间是与的关系,支持 id、name、upstreamType
4953
+ # @type Filters: Array
4954
+
4955
+ attr_accessor :GatewayId, :Limit, :Offset, :Filters
4956
+
4957
+ def initialize(gatewayid=nil, limit=nil, offset=nil, filters=nil)
4958
+ @GatewayId = gatewayid
4959
+ @Limit = limit
4960
+ @Offset = offset
4961
+ @Filters = filters
4962
+ end
4963
+
4964
+ def deserialize(params)
4965
+ @GatewayId = params['GatewayId']
4966
+ @Limit = params['Limit']
4967
+ @Offset = params['Offset']
4968
+ unless params['Filters'].nil?
4969
+ @Filters = []
4970
+ params['Filters'].each do |i|
4971
+ listfilter_tmp = ListFilter.new
4972
+ listfilter_tmp.deserialize(i)
4973
+ @Filters << listfilter_tmp
4974
+ end
4975
+ end
4976
+ end
4977
+ end
4978
+
4979
+ # DescribeCloudNativeAPIGatewayServicesLight返回参数结构体
4980
+ class DescribeCloudNativeAPIGatewayServicesLightResponse < TencentCloud::Common::AbstractModel
4981
+ # @param Result: 无
4982
+ # @type Result: :class:`Tencentcloud::Tse.v20201207.models.GatewayServices`
4983
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4984
+ # @type RequestId: String
4985
+
4986
+ attr_accessor :Result, :RequestId
4987
+
4988
+ def initialize(result=nil, requestid=nil)
4989
+ @Result = result
4990
+ @RequestId = requestid
4991
+ end
4992
+
4993
+ def deserialize(params)
4994
+ unless params['Result'].nil?
4995
+ @Result = GatewayServices.new
4996
+ @Result.deserialize(params['Result'])
4997
+ end
4998
+ @RequestId = params['RequestId']
4999
+ end
5000
+ end
5001
+
4944
5002
  # DescribeCloudNativeAPIGatewayServices请求参数结构体
4945
5003
  class DescribeCloudNativeAPIGatewayServicesRequest < TencentCloud::Common::AbstractModel
4946
5004
  # @param GatewayId: 网关ID
@@ -6997,8 +7055,8 @@ module TencentCloud
6997
7055
 
6998
7056
  attr_accessor :GatewayId, :Type, :TypeList
6999
7057
  extend Gem::Deprecate
7000
- deprecate :Type, :none, 2025, 6
7001
- deprecate :Type=, :none, 2025, 6
7058
+ deprecate :Type, :none, 2025, 7
7059
+ deprecate :Type=, :none, 2025, 7
7002
7060
 
7003
7061
  def initialize(gatewayid=nil, type=nil, typelist=nil)
7004
7062
  @GatewayId = gatewayid
@@ -7442,6 +7500,33 @@ module TencentCloud
7442
7500
  end
7443
7501
  end
7444
7502
 
7503
+ # 轻量查询网关服务列表出参
7504
+ class GatewayServices < TencentCloud::Common::AbstractModel
7505
+ # @param ServiceList: 服务列表
7506
+ # @type ServiceList: Array
7507
+ # @param TotalCount: 结果总数
7508
+ # @type TotalCount: Integer
7509
+
7510
+ attr_accessor :ServiceList, :TotalCount
7511
+
7512
+ def initialize(servicelist=nil, totalcount=nil)
7513
+ @ServiceList = servicelist
7514
+ @TotalCount = totalcount
7515
+ end
7516
+
7517
+ def deserialize(params)
7518
+ unless params['ServiceList'].nil?
7519
+ @ServiceList = []
7520
+ params['ServiceList'].each do |i|
7521
+ kongservicelightpreview_tmp = KongServiceLightPreview.new
7522
+ kongservicelightpreview_tmp.deserialize(i)
7523
+ @ServiceList << kongservicelightpreview_tmp
7524
+ end
7525
+ end
7526
+ @TotalCount = params['TotalCount']
7527
+ end
7528
+ end
7529
+
7445
7530
  # 服务别名结构信息
7446
7531
  class GovernanceAlias < TencentCloud::Common::AbstractModel
7447
7532
  # @param Alias: 服务别名
@@ -8372,8 +8457,8 @@ module TencentCloud
8372
8457
 
8373
8458
  attr_accessor :Total, :CertificatesList, :Pages
8374
8459
  extend Gem::Deprecate
8375
- deprecate :Pages, :none, 2025, 6
8376
- deprecate :Pages=, :none, 2025, 6
8460
+ deprecate :Pages, :none, 2025, 7
8461
+ deprecate :Pages=, :none, 2025, 7
8377
8462
 
8378
8463
  def initialize(total=nil, certificateslist=nil, pages=nil)
8379
8464
  @Total = total
@@ -8514,8 +8599,8 @@ module TencentCloud
8514
8599
 
8515
8600
  attr_accessor :ID, :Name, :Methods, :Paths, :Hosts, :Protocols, :PreserveHost, :HttpsRedirectStatusCode, :StripPath, :CreatedTime, :ForceHttps, :ServiceName, :ServiceID, :DestinationPorts, :Headers, :RequestBuffering, :ResponseBuffering, :RegexPriority
8516
8601
  extend Gem::Deprecate
8517
- deprecate :ForceHttps, :none, 2025, 6
8518
- deprecate :ForceHttps=, :none, 2025, 6
8602
+ deprecate :ForceHttps, :none, 2025, 7
8603
+ deprecate :ForceHttps=, :none, 2025, 7
8519
8604
 
8520
8605
  def initialize(id=nil, name=nil, methods=nil, paths=nil, hosts=nil, protocols=nil, preservehost=nil, httpsredirectstatuscode=nil, strippath=nil, createdtime=nil, forcehttps=nil, servicename=nil, serviceid=nil, destinationports=nil, headers=nil, requestbuffering=nil, responsebuffering=nil, regexpriority=nil)
8521
8606
  @ID = id
@@ -8628,6 +8713,58 @@ module TencentCloud
8628
8713
  end
8629
8714
  end
8630
8715
 
8716
+ # 云原生网关服务简洁预览信息
8717
+ class KongServiceLightPreview < TencentCloud::Common::AbstractModel
8718
+ # @param ID: 服务ID
8719
+ # @type ID: String
8720
+ # @param Name: 服务名字
8721
+ # @type Name: String
8722
+ # @param UpstreamInfo: 后端配置
8723
+ # @type UpstreamInfo: :class:`Tencentcloud::Tse.v20201207.models.KongUpstreamInfo`
8724
+ # @param UpstreamType: 后端类型
8725
+ # @type UpstreamType: String
8726
+ # @param CreatedTime: 创建时间
8727
+ # @type CreatedTime: String
8728
+ # @param Path: 请求路径
8729
+ # 注意:此字段可能返回 null,表示取不到有效值。
8730
+ # @type Path: String
8731
+ # @param Protocol: 后端协议
8732
+ # @type Protocol: String
8733
+ # @param Retries: 重试次数
8734
+ # @type Retries: Integer
8735
+ # @param Timeout: 后端延时,单位ms
8736
+ # @type Timeout: Integer
8737
+
8738
+ attr_accessor :ID, :Name, :UpstreamInfo, :UpstreamType, :CreatedTime, :Path, :Protocol, :Retries, :Timeout
8739
+
8740
+ def initialize(id=nil, name=nil, upstreaminfo=nil, upstreamtype=nil, createdtime=nil, path=nil, protocol=nil, retries=nil, timeout=nil)
8741
+ @ID = id
8742
+ @Name = name
8743
+ @UpstreamInfo = upstreaminfo
8744
+ @UpstreamType = upstreamtype
8745
+ @CreatedTime = createdtime
8746
+ @Path = path
8747
+ @Protocol = protocol
8748
+ @Retries = retries
8749
+ @Timeout = timeout
8750
+ end
8751
+
8752
+ def deserialize(params)
8753
+ @ID = params['ID']
8754
+ @Name = params['Name']
8755
+ unless params['UpstreamInfo'].nil?
8756
+ @UpstreamInfo = KongUpstreamInfo.new
8757
+ @UpstreamInfo.deserialize(params['UpstreamInfo'])
8758
+ end
8759
+ @UpstreamType = params['UpstreamType']
8760
+ @CreatedTime = params['CreatedTime']
8761
+ @Path = params['Path']
8762
+ @Protocol = params['Protocol']
8763
+ @Retries = params['Retries']
8764
+ @Timeout = params['Timeout']
8765
+ end
8766
+ end
8767
+
8631
8768
  # 云原生网关服务预览信息
8632
8769
  class KongServicePreview < TencentCloud::Common::AbstractModel
8633
8770
  # @param ID: 服务ID
@@ -9166,10 +9303,10 @@ module TencentCloud
9166
9303
 
9167
9304
  attr_accessor :GatewayId, :StrategyId, :StrategyName, :Description, :Config, :CronScalerConfig, :MaxReplicas, :CronConfig
9168
9305
  extend Gem::Deprecate
9169
- deprecate :CronScalerConfig, :none, 2025, 6
9170
- deprecate :CronScalerConfig=, :none, 2025, 6
9171
- deprecate :MaxReplicas, :none, 2025, 6
9172
- deprecate :MaxReplicas=, :none, 2025, 6
9306
+ deprecate :CronScalerConfig, :none, 2025, 7
9307
+ deprecate :CronScalerConfig=, :none, 2025, 7
9308
+ deprecate :MaxReplicas, :none, 2025, 7
9309
+ deprecate :MaxReplicas=, :none, 2025, 7
9173
9310
 
9174
9311
  def initialize(gatewayid=nil, strategyid=nil, strategyname=nil, description=nil, config=nil, cronscalerconfig=nil, maxreplicas=nil, cronconfig=nil)
9175
9312
  @GatewayId = gatewayid
@@ -9304,10 +9441,10 @@ module TencentCloud
9304
9441
 
9305
9442
  attr_accessor :GatewayId, :Id, :Name, :Key, :Crt, :BindDomains, :CertId, :CertSource
9306
9443
  extend Gem::Deprecate
9307
- deprecate :Name, :none, 2025, 6
9308
- deprecate :Name=, :none, 2025, 6
9309
- deprecate :BindDomains, :none, 2025, 6
9310
- deprecate :BindDomains=, :none, 2025, 6
9444
+ deprecate :Name, :none, 2025, 7
9445
+ deprecate :Name=, :none, 2025, 7
9446
+ deprecate :BindDomains, :none, 2025, 7
9447
+ deprecate :BindDomains=, :none, 2025, 7
9311
9448
 
9312
9449
  def initialize(gatewayid=nil, id=nil, name=nil, key=nil, crt=nil, binddomains=nil, certid=nil, certsource=nil)
9313
9450
  @GatewayId = gatewayid
@@ -9501,8 +9638,8 @@ module TencentCloud
9501
9638
 
9502
9639
  attr_accessor :GatewayId, :ServiceID, :RouteID, :RouteName, :Methods, :Hosts, :Paths, :Protocols, :PreserveHost, :HttpsRedirectStatusCode, :StripPath, :ForceHttps, :DestinationPorts, :Headers, :RequestBuffering, :ResponseBuffering, :RegexPriority
9503
9640
  extend Gem::Deprecate
9504
- deprecate :ForceHttps, :none, 2025, 6
9505
- deprecate :ForceHttps=, :none, 2025, 6
9641
+ deprecate :ForceHttps, :none, 2025, 7
9642
+ deprecate :ForceHttps=, :none, 2025, 7
9506
9643
 
9507
9644
  def initialize(gatewayid=nil, serviceid=nil, routeid=nil, routename=nil, methods=nil, hosts=nil, paths=nil, protocols=nil, preservehost=nil, httpsredirectstatuscode=nil, strippath=nil, forcehttps=nil, destinationports=nil, headers=nil, requestbuffering=nil, responsebuffering=nil, regexpriority=nil)
9508
9645
  @GatewayId = gatewayid
@@ -11691,8 +11828,8 @@ module TencentCloud
11691
11828
 
11692
11829
  attr_accessor :EnableActiveHealthCheck, :ActiveHealthCheck, :EnablePassiveHealthCheck, :PassiveHealthCheck, :Successes, :Failures, :Timeouts, :HealthyHttpStatuses, :UnhealthyHttpStatuses, :IgnoreZeroWeightNodes, :ZeroWeightHeathCheck
11693
11830
  extend Gem::Deprecate
11694
- deprecate :IgnoreZeroWeightNodes, :none, 2025, 6
11695
- deprecate :IgnoreZeroWeightNodes=, :none, 2025, 6
11831
+ deprecate :IgnoreZeroWeightNodes, :none, 2025, 7
11832
+ deprecate :IgnoreZeroWeightNodes=, :none, 2025, 7
11696
11833
 
11697
11834
  def initialize(enableactivehealthcheck=nil, activehealthcheck=nil, enablepassivehealthcheck=nil, passivehealthcheck=nil, successes=nil, failures=nil, timeouts=nil, healthyhttpstatuses=nil, unhealthyhttpstatuses=nil, ignorezeroweightnodes=nil, zeroweightheathcheck=nil)
11698
11835
  @EnableActiveHealthCheck = enableactivehealthcheck
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tse
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1094
4
+ version: 3.0.1101
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-05 00:00:00.000000000 Z
11
+ date: 2025-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common