tencentcloud-sdk-tke 3.0.555 → 3.0.557

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4cecb84f97607e0e4dacf128b9ec11f25acb5264
4
- data.tar.gz: 0cd9d7009f160ada4fd3968248fed3c432287a4f
3
+ metadata.gz: 4f3958deda1c329c21d95ef7e28f8ad5333fe21d
4
+ data.tar.gz: c5178501599dae45764d595650ac9126098cc815
5
5
  SHA512:
6
- metadata.gz: efb4e593bd34e98e15acfd02020174f65614c997b73102db2268f4a9f8299bb5daec6ef214e59f1fce5b8e8bee4b57f5b56f3a919d3209d4a05de215d99efbef
7
- data.tar.gz: d4d9da93d840df9e2a800e013235a63b783db40ede0e7f5c1d425e0b5b5d21f5163371e7dbb4455fe2aa6dbbc24c0d39894f7b05bccbf8b7cd8d192b58db3062
6
+ metadata.gz: 77298d6f8f45089bec740dc4a1b297e4c4b05f752c338a5c1dce829a650b0e98fd1211469be4ef9b7529226a15d17558d65f57d2053db226d3da74ea795bb370
7
+ data.tar.gz: 67206992916845c072a6c5250e22c5cf26f4de511b3e70859637705a6cdd0cded4e4a23c94ea800337ea343d9298959220e96f3a02e7480c2999647f9c13e85b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.555
1
+ 3.0.557
@@ -221,6 +221,30 @@ module TencentCloud
221
221
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
222
  end
223
223
 
224
+ # 创建备份仓库,指定了存储仓库类型(如COS)、COS桶地区、名称等信息,当前最多允许创建100个仓库, 注意此接口当前是全局接口,多个地域的TKE集群如果要备份到相同的备份仓库中,不需要重复创建备份仓库
225
+
226
+ # @param request: Request instance for CreateBackupStorageLocation.
227
+ # @type request: :class:`Tencentcloud::tke::V20180525::CreateBackupStorageLocationRequest`
228
+ # @rtype: :class:`Tencentcloud::tke::V20180525::CreateBackupStorageLocationResponse`
229
+ def CreateBackupStorageLocation(request)
230
+ body = send_request('CreateBackupStorageLocation', request.serialize)
231
+ response = JSON.parse(body)
232
+ if response['Response'].key?('Error') == false
233
+ model = CreateBackupStorageLocationResponse.new
234
+ model.deserialize(response['Response'])
235
+ model
236
+ else
237
+ code = response['Response']['Error']['Code']
238
+ message = response['Response']['Error']['Message']
239
+ reqid = response['Response']['RequestId']
240
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
241
+ end
242
+ rescue TencentCloud::Common::TencentCloudSDKException => e
243
+ raise e
244
+ rescue StandardError => e
245
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
+ end
247
+
224
248
  # 创建集群
225
249
 
226
250
  # @param request: Request instance for CreateCluster.
@@ -341,7 +365,7 @@ module TencentCloud
341
365
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
366
  end
343
367
 
344
- # 在应用市场中给集群创建应用
368
+ # 集群创建应用
345
369
 
346
370
  # @param request: Request instance for CreateClusterRelease.
347
371
  # @type request: :class:`Tencentcloud::tke::V20180525::CreateClusterReleaseRequest`
@@ -845,6 +869,30 @@ module TencentCloud
845
869
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
846
870
  end
847
871
 
872
+ # 删除备份仓库
873
+
874
+ # @param request: Request instance for DeleteBackupStorageLocation.
875
+ # @type request: :class:`Tencentcloud::tke::V20180525::DeleteBackupStorageLocationRequest`
876
+ # @rtype: :class:`Tencentcloud::tke::V20180525::DeleteBackupStorageLocationResponse`
877
+ def DeleteBackupStorageLocation(request)
878
+ body = send_request('DeleteBackupStorageLocation', request.serialize)
879
+ response = JSON.parse(body)
880
+ if response['Response'].key?('Error') == false
881
+ model = DeleteBackupStorageLocationResponse.new
882
+ model.deserialize(response['Response'])
883
+ model
884
+ else
885
+ code = response['Response']['Error']['Code']
886
+ message = response['Response']['Error']['Message']
887
+ reqid = response['Response']['RequestId']
888
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
889
+ end
890
+ rescue TencentCloud::Common::TencentCloudSDKException => e
891
+ raise e
892
+ rescue StandardError => e
893
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
894
+ end
895
+
848
896
  # 删除集群(YUNAPI V3版本)
849
897
 
850
898
  # @param request: Request instance for DeleteCluster.
@@ -1517,6 +1565,30 @@ module TencentCloud
1517
1565
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1518
1566
  end
1519
1567
 
1568
+ # 查询备份仓库信息
1569
+
1570
+ # @param request: Request instance for DescribeBackupStorageLocations.
1571
+ # @type request: :class:`Tencentcloud::tke::V20180525::DescribeBackupStorageLocationsRequest`
1572
+ # @rtype: :class:`Tencentcloud::tke::V20180525::DescribeBackupStorageLocationsResponse`
1573
+ def DescribeBackupStorageLocations(request)
1574
+ body = send_request('DescribeBackupStorageLocations', request.serialize)
1575
+ response = JSON.parse(body)
1576
+ if response['Response'].key?('Error') == false
1577
+ model = DescribeBackupStorageLocationsResponse.new
1578
+ model.deserialize(response['Response'])
1579
+ model
1580
+ else
1581
+ code = response['Response']['Error']['Code']
1582
+ message = response['Response']['Error']['Message']
1583
+ reqid = response['Response']['RequestId']
1584
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1585
+ end
1586
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1587
+ raise e
1588
+ rescue StandardError => e
1589
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1590
+ end
1591
+
1520
1592
  # 集群弹性伸缩配置
1521
1593
 
1522
1594
  # @param request: Request instance for DescribeClusterAsGroupOption.
@@ -375,6 +375,56 @@ module TencentCloud
375
375
  end
376
376
  end
377
377
 
378
+ # 仓储仓库信息
379
+ class BackupStorageLocation < TencentCloud::Common::AbstractModel
380
+ # @param Name: 备份仓库名称
381
+ # @type Name: String
382
+ # @param StorageRegion: 存储仓库所属地域,比如COS广州(ap-guangzhou)
383
+ # @type StorageRegion: String
384
+ # @param Provider: 存储服务提供方,默认腾讯云
385
+ # 注意:此字段可能返回 null,表示取不到有效值。
386
+ # @type Provider: String
387
+ # @param Bucket: 对象存储桶名称,如果是COS必须是tke-backup-前缀开头
388
+ # 注意:此字段可能返回 null,表示取不到有效值。
389
+ # @type Bucket: String
390
+ # @param Path: 对象存储桶路径
391
+ # 注意:此字段可能返回 null,表示取不到有效值。
392
+ # @type Path: String
393
+ # @param State: 存储仓库状态
394
+ # 注意:此字段可能返回 null,表示取不到有效值。
395
+ # @type State: String
396
+ # @param Message: 详细状态信息
397
+ # 注意:此字段可能返回 null,表示取不到有效值。
398
+ # @type Message: String
399
+ # @param LastValidationTime: 最后一次检查时间
400
+ # 注意:此字段可能返回 null,表示取不到有效值。
401
+ # @type LastValidationTime: String
402
+
403
+ attr_accessor :Name, :StorageRegion, :Provider, :Bucket, :Path, :State, :Message, :LastValidationTime
404
+
405
+ def initialize(name=nil, storageregion=nil, provider=nil, bucket=nil, path=nil, state=nil, message=nil, lastvalidationtime=nil)
406
+ @Name = name
407
+ @StorageRegion = storageregion
408
+ @Provider = provider
409
+ @Bucket = bucket
410
+ @Path = path
411
+ @State = state
412
+ @Message = message
413
+ @LastValidationTime = lastvalidationtime
414
+ end
415
+
416
+ def deserialize(params)
417
+ @Name = params['Name']
418
+ @StorageRegion = params['StorageRegion']
419
+ @Provider = params['Provider']
420
+ @Bucket = params['Bucket']
421
+ @Path = params['Path']
422
+ @State = params['State']
423
+ @Message = params['Message']
424
+ @LastValidationTime = params['LastValidationTime']
425
+ end
426
+ end
427
+
378
428
  # cuDNN的版本信息
379
429
  class CUDNN < TencentCloud::Common::AbstractModel
380
430
  # @param Version: cuDNN的版本
@@ -1714,6 +1764,54 @@ module TencentCloud
1714
1764
  end
1715
1765
  end
1716
1766
 
1767
+ # CreateBackupStorageLocation请求参数结构体
1768
+ class CreateBackupStorageLocationRequest < TencentCloud::Common::AbstractModel
1769
+ # @param StorageRegion: 存储仓库所属地域,比如COS广州(ap-guangzhou)
1770
+ # @type StorageRegion: String
1771
+ # @param Bucket: 对象存储桶名称,如果是COS必须是tke-backup前缀开头
1772
+ # @type Bucket: String
1773
+ # @param Name: 备份仓库名称
1774
+ # @type Name: String
1775
+ # @param Provider: 存储服务提供方,默认腾讯云
1776
+ # @type Provider: String
1777
+ # @param Path: 对象存储桶路径
1778
+ # @type Path: String
1779
+
1780
+ attr_accessor :StorageRegion, :Bucket, :Name, :Provider, :Path
1781
+
1782
+ def initialize(storageregion=nil, bucket=nil, name=nil, provider=nil, path=nil)
1783
+ @StorageRegion = storageregion
1784
+ @Bucket = bucket
1785
+ @Name = name
1786
+ @Provider = provider
1787
+ @Path = path
1788
+ end
1789
+
1790
+ def deserialize(params)
1791
+ @StorageRegion = params['StorageRegion']
1792
+ @Bucket = params['Bucket']
1793
+ @Name = params['Name']
1794
+ @Provider = params['Provider']
1795
+ @Path = params['Path']
1796
+ end
1797
+ end
1798
+
1799
+ # CreateBackupStorageLocation返回参数结构体
1800
+ class CreateBackupStorageLocationResponse < TencentCloud::Common::AbstractModel
1801
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1802
+ # @type RequestId: String
1803
+
1804
+ attr_accessor :RequestId
1805
+
1806
+ def initialize(requestid=nil)
1807
+ @RequestId = requestid
1808
+ end
1809
+
1810
+ def deserialize(params)
1811
+ @RequestId = params['RequestId']
1812
+ end
1813
+ end
1814
+
1717
1815
  # CreateClusterEndpoint请求参数结构体
1718
1816
  class CreateClusterEndpointRequest < TencentCloud::Common::AbstractModel
1719
1817
  # @param ClusterId: 集群ID
@@ -1726,7 +1824,12 @@ module TencentCloud
1726
1824
  # @type Domain: String
1727
1825
  # @param SecurityGroup: 使用的安全组,只有外网访问需要传递(开启外网访问时必传)
1728
1826
  # @type SecurityGroup: String
1729
- # @param ExtensiveParameters: 创建lb参数,只有外网访问需要设置
1827
+ # @param ExtensiveParameters: 创建lb参数,只有外网访问需要设置,是一个json格式化后的字符串:{"InternetAccessible":{"InternetChargeType":"TRAFFIC_POSTPAID_BY_HOUR","InternetMaxBandwidthOut":"200"},"VipIsp":"","BandwidthPackageId":""}。
1828
+ # 各个参数意义:
1829
+ # InternetAccessible.InternetChargeType含义:TRAFFIC_POSTPAID_BY_HOUR按流量按小时后计费;BANDWIDTH_POSTPAID_BY_HOUR 按带宽按小时后计费;InternetAccessible.BANDWIDTH_PACKAGE 按带宽包计费。
1830
+ # InternetMaxBandwidthOut含义:最大出带宽,单位Mbps,范围支持0到2048,默认值10。
1831
+ # VipIsp含义:CMCC | CTCC | CUCC,分别对应 移动 | 电信 | 联通,如果不指定本参数,则默认使用BGP。可通过 DescribeSingleIsp 接口查询一个地域所支持的Isp。如果指定运营商,则网络计费式只能使用按带宽包计费(BANDWIDTH_PACKAGE)。
1832
+ # BandwidthPackageId含义:带宽包ID,指定此参数时,网络计费方式(InternetAccessible.InternetChargeType)只支持按带宽包计费(BANDWIDTH_PACKAGE。
1730
1833
  # @type ExtensiveParameters: String
1731
1834
 
1732
1835
  attr_accessor :ClusterId, :SubnetId, :IsExtranet, :Domain, :SecurityGroup, :ExtensiveParameters
@@ -1981,7 +2084,7 @@ module TencentCloud
1981
2084
  # @type Chart: String
1982
2085
  # @param Values: 自定义参数
1983
2086
  # @type Values: :class:`Tencentcloud::Tke.v20180525.models.ReleaseValues`
1984
- # @param ChartFrom: 制品来源,范围:tke 应用市场/第三方chart
2087
+ # @param ChartFrom: 制品来源,范围:tke-market 或 other
1985
2088
  # @type ChartFrom: String
1986
2089
  # @param ChartVersion: 制品版本
1987
2090
  # @type ChartVersion: String
@@ -3548,6 +3651,38 @@ module TencentCloud
3548
3651
  end
3549
3652
  end
3550
3653
 
3654
+ # DeleteBackupStorageLocation请求参数结构体
3655
+ class DeleteBackupStorageLocationRequest < TencentCloud::Common::AbstractModel
3656
+ # @param Name: 备份仓库名称
3657
+ # @type Name: String
3658
+
3659
+ attr_accessor :Name
3660
+
3661
+ def initialize(name=nil)
3662
+ @Name = name
3663
+ end
3664
+
3665
+ def deserialize(params)
3666
+ @Name = params['Name']
3667
+ end
3668
+ end
3669
+
3670
+ # DeleteBackupStorageLocation返回参数结构体
3671
+ class DeleteBackupStorageLocationResponse < TencentCloud::Common::AbstractModel
3672
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3673
+ # @type RequestId: String
3674
+
3675
+ attr_accessor :RequestId
3676
+
3677
+ def initialize(requestid=nil)
3678
+ @RequestId = requestid
3679
+ end
3680
+
3681
+ def deserialize(params)
3682
+ @RequestId = params['RequestId']
3683
+ end
3684
+ end
3685
+
3551
3686
  # DeleteClusterAsGroups请求参数结构体
3552
3687
  class DeleteClusterAsGroupsRequest < TencentCloud::Common::AbstractModel
3553
3688
  # @param ClusterId: 集群ID,通过[DescribeClusters](https://cloud.tencent.com/document/api/457/31862)接口获取。
@@ -4650,6 +4785,50 @@ module TencentCloud
4650
4785
  end
4651
4786
  end
4652
4787
 
4788
+ # DescribeBackupStorageLocations请求参数结构体
4789
+ class DescribeBackupStorageLocationsRequest < TencentCloud::Common::AbstractModel
4790
+ # @param Names: 多个备份仓库名称,如果不填写,默认返回当前地域所有存储仓库名称
4791
+ # @type Names: Array
4792
+
4793
+ attr_accessor :Names
4794
+
4795
+ def initialize(names=nil)
4796
+ @Names = names
4797
+ end
4798
+
4799
+ def deserialize(params)
4800
+ @Names = params['Names']
4801
+ end
4802
+ end
4803
+
4804
+ # DescribeBackupStorageLocations返回参数结构体
4805
+ class DescribeBackupStorageLocationsResponse < TencentCloud::Common::AbstractModel
4806
+ # @param BackupStorageLocationSet: 详细备份仓库信息
4807
+ # 注意:此字段可能返回 null,表示取不到有效值。
4808
+ # @type BackupStorageLocationSet: Array
4809
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4810
+ # @type RequestId: String
4811
+
4812
+ attr_accessor :BackupStorageLocationSet, :RequestId
4813
+
4814
+ def initialize(backupstoragelocationset=nil, requestid=nil)
4815
+ @BackupStorageLocationSet = backupstoragelocationset
4816
+ @RequestId = requestid
4817
+ end
4818
+
4819
+ def deserialize(params)
4820
+ unless params['BackupStorageLocationSet'].nil?
4821
+ @BackupStorageLocationSet = []
4822
+ params['BackupStorageLocationSet'].each do |i|
4823
+ backupstoragelocation_tmp = BackupStorageLocation.new
4824
+ backupstoragelocation_tmp.deserialize(i)
4825
+ @BackupStorageLocationSet << backupstoragelocation_tmp
4826
+ end
4827
+ end
4828
+ @RequestId = params['RequestId']
4829
+ end
4830
+ end
4831
+
4653
4832
  # DescribeClusterAsGroupOption请求参数结构体
4654
4833
  class DescribeClusterAsGroupOptionRequest < TencentCloud::Common::AbstractModel
4655
4834
  # @param ClusterId: 集群ID
@@ -9245,10 +9424,13 @@ module TencentCloud
9245
9424
  # @param ChargeType: 集群付费模式,支持POSTPAID_BY_HOUR或者PREPAID
9246
9425
  # 注意:此字段可能返回 null,表示取不到有效值。
9247
9426
  # @type ChargeType: String
9427
+ # @param EdgeVersion: 边缘集群组件的版本
9428
+ # 注意:此字段可能返回 null,表示取不到有效值。
9429
+ # @type EdgeVersion: String
9248
9430
 
9249
- attr_accessor :ClusterId, :ClusterName, :VpcId, :PodCIDR, :ServiceCIDR, :K8SVersion, :Status, :ClusterDesc, :CreatedTime, :EdgeClusterVersion, :MaxNodePodNum, :ClusterAdvancedSettings, :Level, :AutoUpgradeClusterLevel, :ChargeType
9431
+ attr_accessor :ClusterId, :ClusterName, :VpcId, :PodCIDR, :ServiceCIDR, :K8SVersion, :Status, :ClusterDesc, :CreatedTime, :EdgeClusterVersion, :MaxNodePodNum, :ClusterAdvancedSettings, :Level, :AutoUpgradeClusterLevel, :ChargeType, :EdgeVersion
9250
9432
 
9251
- def initialize(clusterid=nil, clustername=nil, vpcid=nil, podcidr=nil, servicecidr=nil, k8sversion=nil, status=nil, clusterdesc=nil, createdtime=nil, edgeclusterversion=nil, maxnodepodnum=nil, clusteradvancedsettings=nil, level=nil, autoupgradeclusterlevel=nil, chargetype=nil)
9433
+ def initialize(clusterid=nil, clustername=nil, vpcid=nil, podcidr=nil, servicecidr=nil, k8sversion=nil, status=nil, clusterdesc=nil, createdtime=nil, edgeclusterversion=nil, maxnodepodnum=nil, clusteradvancedsettings=nil, level=nil, autoupgradeclusterlevel=nil, chargetype=nil, edgeversion=nil)
9252
9434
  @ClusterId = clusterid
9253
9435
  @ClusterName = clustername
9254
9436
  @VpcId = vpcid
@@ -9264,6 +9446,7 @@ module TencentCloud
9264
9446
  @Level = level
9265
9447
  @AutoUpgradeClusterLevel = autoupgradeclusterlevel
9266
9448
  @ChargeType = chargetype
9449
+ @EdgeVersion = edgeversion
9267
9450
  end
9268
9451
 
9269
9452
  def deserialize(params)
@@ -9285,6 +9468,7 @@ module TencentCloud
9285
9468
  @Level = params['Level']
9286
9469
  @AutoUpgradeClusterLevel = params['AutoUpgradeClusterLevel']
9287
9470
  @ChargeType = params['ChargeType']
9471
+ @EdgeVersion = params['EdgeVersion']
9288
9472
  end
9289
9473
  end
9290
9474
 
@@ -9838,15 +10022,18 @@ module TencentCloud
9838
10022
  # @type Subnets: Array
9839
10023
  # @param ExpiredSeconds: 在固定IP模式下,Pod销毁后退还IP的时间,传参必须大于300;不传默认IP永不销毁。
9840
10024
  # @type ExpiredSeconds: Integer
10025
+ # @param SkipAddingNonMasqueradeCIDRs: 是否同步添加 vpc 网段到 ip-masq-agent-config 的 NonMasqueradeCIDRs 字段,默认 false 会同步添加
10026
+ # @type SkipAddingNonMasqueradeCIDRs: Boolean
9841
10027
 
9842
- attr_accessor :ClusterId, :VpcCniType, :EnableStaticIp, :Subnets, :ExpiredSeconds
10028
+ attr_accessor :ClusterId, :VpcCniType, :EnableStaticIp, :Subnets, :ExpiredSeconds, :SkipAddingNonMasqueradeCIDRs
9843
10029
 
9844
- def initialize(clusterid=nil, vpccnitype=nil, enablestaticip=nil, subnets=nil, expiredseconds=nil)
10030
+ def initialize(clusterid=nil, vpccnitype=nil, enablestaticip=nil, subnets=nil, expiredseconds=nil, skipaddingnonmasqueradecidrs=nil)
9845
10031
  @ClusterId = clusterid
9846
10032
  @VpcCniType = vpccnitype
9847
10033
  @EnableStaticIp = enablestaticip
9848
10034
  @Subnets = subnets
9849
10035
  @ExpiredSeconds = expiredseconds
10036
+ @SkipAddingNonMasqueradeCIDRs = skipaddingnonmasqueradecidrs
9850
10037
  end
9851
10038
 
9852
10039
  def deserialize(params)
@@ -9855,6 +10042,7 @@ module TencentCloud
9855
10042
  @EnableStaticIp = params['EnableStaticIp']
9856
10043
  @Subnets = params['Subnets']
9857
10044
  @ExpiredSeconds = params['ExpiredSeconds']
10045
+ @SkipAddingNonMasqueradeCIDRs = params['SkipAddingNonMasqueradeCIDRs']
9858
10046
  end
9859
10047
  end
9860
10048
 
@@ -15809,7 +15997,7 @@ module TencentCloud
15809
15997
  # @type Chart: String
15810
15998
  # @param Values: 自定义参数,覆盖chart 中values.yaml 中的参数
15811
15999
  # @type Values: :class:`Tencentcloud::Tke.v20180525.models.ReleaseValues`
15812
- # @param ChartFrom: 制品来源,范围:tke-market/tcr/other
16000
+ # @param ChartFrom: 制品来源,范围:tke-marketother
15813
16001
  # @type ChartFrom: String
15814
16002
  # @param ChartVersion: 制品版本( 从第三安装时,不传这个参数)
15815
16003
  # @type ChartVersion: String
@@ -16036,17 +16224,28 @@ module TencentCloud
16036
16224
  # @type DisplayName: String
16037
16225
  # @param SubnetId: 子网ID
16038
16226
  # @type SubnetId: String
16227
+ # @param Tags: 腾讯云标签
16228
+ # @type Tags: Array
16039
16229
 
16040
- attr_accessor :DisplayName, :SubnetId
16230
+ attr_accessor :DisplayName, :SubnetId, :Tags
16041
16231
 
16042
- def initialize(displayname=nil, subnetid=nil)
16232
+ def initialize(displayname=nil, subnetid=nil, tags=nil)
16043
16233
  @DisplayName = displayname
16044
16234
  @SubnetId = subnetid
16235
+ @Tags = tags
16045
16236
  end
16046
16237
 
16047
16238
  def deserialize(params)
16048
16239
  @DisplayName = params['DisplayName']
16049
16240
  @SubnetId = params['SubnetId']
16241
+ unless params['Tags'].nil?
16242
+ @Tags = []
16243
+ params['Tags'].each do |i|
16244
+ tag_tmp = Tag.new
16245
+ tag_tmp.deserialize(i)
16246
+ @Tags << tag_tmp
16247
+ end
16248
+ end
16050
16249
  end
16051
16250
  end
16052
16251
 
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.555
4
+ version: 3.0.557
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-04-19 00:00:00.000000000 Z
11
+ date: 2023-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common