tencentcloud-sdk-bh 3.0.1068 → 3.0.1069

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230418/models.rb +104 -20
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d008bba2f28109c1d82f4f56e3a351ac7f4a830e
4
- data.tar.gz: c49fedf9b47744c462ee688e70c40b7f7731e631
3
+ metadata.gz: a09c27872b8117738c268837ddf921a4e57d6f1f
4
+ data.tar.gz: ac680f070775f4bb39b1a2038cf7079e2f81e6de
5
5
  SHA512:
6
- metadata.gz: 7e6c63d54aee1ec3b72f296659fe1344b188391d9f6d15232027a6805d7812f963c8e656e62402914021750976d7309c982d386499d6fcc769a044a00f6cbb00
7
- data.tar.gz: 62ac94fa37f10ea7353cd4c4dab9d1afe73e7e54b586bb569999d7414d004b3e9a943888bbaf33e70223701c58de713e9d1de6a892b094c23a86eb622e166f3d
6
+ metadata.gz: 1957bf3e9c3248cb342e18618ce7a71eb635f1d81da499fa74d74865d884662eabc8bd9e6411c1e69556b44b8f5498e288e2f27927f10e181c86b43433c3060e
7
+ data.tar.gz: 2afd79a5188318eca30171d511ffdb31905900f522bb51f453cb44dbe41d2ee7d883f45bd4a3d7c1d6373e47203d2a8d32b94d2f3d0b00628d08025e20e4af02
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1068
1
+ 3.0.1069
@@ -676,19 +676,43 @@ module TencentCloud
676
676
  # @type ResourceId: String
677
677
  # @param DomainId: 网络域ID
678
678
  # @type DomainId: String
679
-
680
- attr_accessor :DeviceIdSet, :ResourceId, :DomainId
681
-
682
- def initialize(deviceidset=nil, resourceid=nil, domainid=nil)
679
+ # @param ManageDimension: K8S集群托管账号维度。1-集群,2-命名空间,3-工作负载
680
+ # @type ManageDimension: Integer
681
+ # @param ManageAccountId: K8S集群托管账号id
682
+ # @type ManageAccountId: Integer
683
+ # @param ManageAccount: K8S集群托管账号名称
684
+ # @type ManageAccount: String
685
+ # @param ManageKubeconfig: K8S集群托管账号凭证
686
+ # @type ManageKubeconfig: String
687
+ # @param Namespace: K8S集群托管的namespace
688
+ # @type Namespace: String
689
+ # @param Workload: K8S集群托管的workload
690
+ # @type Workload: String
691
+
692
+ attr_accessor :DeviceIdSet, :ResourceId, :DomainId, :ManageDimension, :ManageAccountId, :ManageAccount, :ManageKubeconfig, :Namespace, :Workload
693
+
694
+ def initialize(deviceidset=nil, resourceid=nil, domainid=nil, managedimension=nil, manageaccountid=nil, manageaccount=nil, managekubeconfig=nil, namespace=nil, workload=nil)
683
695
  @DeviceIdSet = deviceidset
684
696
  @ResourceId = resourceid
685
697
  @DomainId = domainid
698
+ @ManageDimension = managedimension
699
+ @ManageAccountId = manageaccountid
700
+ @ManageAccount = manageaccount
701
+ @ManageKubeconfig = managekubeconfig
702
+ @Namespace = namespace
703
+ @Workload = workload
686
704
  end
687
705
 
688
706
  def deserialize(params)
689
707
  @DeviceIdSet = params['DeviceIdSet']
690
708
  @ResourceId = params['ResourceId']
691
709
  @DomainId = params['DomainId']
710
+ @ManageDimension = params['ManageDimension']
711
+ @ManageAccountId = params['ManageAccountId']
712
+ @ManageAccount = params['ManageAccount']
713
+ @ManageKubeconfig = params['ManageKubeconfig']
714
+ @Namespace = params['Namespace']
715
+ @Workload = params['Workload']
692
716
  end
693
717
  end
694
718
 
@@ -1432,10 +1456,12 @@ module TencentCloud
1432
1456
  # @type DeployZone: String
1433
1457
  # @param Trial: 0非试用版,1试用版
1434
1458
  # @type Trial: Integer
1459
+ # @param ShareClb: 是否共享clb,0:不共享,1:共享
1460
+ # @type ShareClb: Integer
1435
1461
 
1436
- attr_accessor :DeployRegion, :VpcId, :SubnetId, :ResourceEdition, :ResourceNode, :TimeUnit, :TimeSpan, :PayMode, :AutoRenewFlag, :DeployZone, :Trial
1462
+ attr_accessor :DeployRegion, :VpcId, :SubnetId, :ResourceEdition, :ResourceNode, :TimeUnit, :TimeSpan, :PayMode, :AutoRenewFlag, :DeployZone, :Trial, :ShareClb
1437
1463
 
1438
- def initialize(deployregion=nil, vpcid=nil, subnetid=nil, resourceedition=nil, resourcenode=nil, timeunit=nil, timespan=nil, paymode=nil, autorenewflag=nil, deployzone=nil, trial=nil)
1464
+ def initialize(deployregion=nil, vpcid=nil, subnetid=nil, resourceedition=nil, resourcenode=nil, timeunit=nil, timespan=nil, paymode=nil, autorenewflag=nil, deployzone=nil, trial=nil, shareclb=nil)
1439
1465
  @DeployRegion = deployregion
1440
1466
  @VpcId = vpcid
1441
1467
  @SubnetId = subnetid
@@ -1447,6 +1473,7 @@ module TencentCloud
1447
1473
  @AutoRenewFlag = autorenewflag
1448
1474
  @DeployZone = deployzone
1449
1475
  @Trial = trial
1476
+ @ShareClb = shareclb
1450
1477
  end
1451
1478
 
1452
1479
  def deserialize(params)
@@ -1461,6 +1488,7 @@ module TencentCloud
1461
1488
  @AutoRenewFlag = params['AutoRenewFlag']
1462
1489
  @DeployZone = params['DeployZone']
1463
1490
  @Trial = params['Trial']
1491
+ @ShareClb = params['ShareClb']
1464
1492
  end
1465
1493
  end
1466
1494
 
@@ -3489,10 +3517,22 @@ module TencentCloud
3489
3517
  # @type SSLCertName: String
3490
3518
  # @param IOAId: IOA侧的资源ID
3491
3519
  # @type IOAId: Integer
3492
-
3493
- attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName, :IOAId
3494
-
3495
- def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil, domainid=nil, domainname=nil, enablessl=nil, sslcertname=nil, ioaid=nil)
3520
+ # @param ManageDimension: K8S集群托管维度。1-集群,2-命名空间,3-工作负载
3521
+ # @type ManageDimension: Integer
3522
+ # @param ManageAccountId: K8S集群托管账号id
3523
+ # @type ManageAccountId: Integer
3524
+ # @param Namespace: K8S集群命名空间
3525
+ # @type Namespace: String
3526
+ # @param Workload: K8S集群工作负载
3527
+ # @type Workload: String
3528
+ # @param SyncPodCount: K8S集群pod已同步数量
3529
+ # @type SyncPodCount: Integer
3530
+ # @param TotalPodCount: K8S集群pod总数量
3531
+ # @type TotalPodCount: Integer
3532
+
3533
+ attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName, :IOAId, :ManageDimension, :ManageAccountId, :Namespace, :Workload, :SyncPodCount, :TotalPodCount
3534
+
3535
+ def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil, domainid=nil, domainname=nil, enablessl=nil, sslcertname=nil, ioaid=nil, managedimension=nil, manageaccountid=nil, namespace=nil, workload=nil, syncpodcount=nil, totalpodcount=nil)
3496
3536
  @Id = id
3497
3537
  @InstanceId = instanceid
3498
3538
  @Name = name
@@ -3514,6 +3554,12 @@ module TencentCloud
3514
3554
  @EnableSSL = enablessl
3515
3555
  @SSLCertName = sslcertname
3516
3556
  @IOAId = ioaid
3557
+ @ManageDimension = managedimension
3558
+ @ManageAccountId = manageaccountid
3559
+ @Namespace = namespace
3560
+ @Workload = workload
3561
+ @SyncPodCount = syncpodcount
3562
+ @TotalPodCount = totalpodcount
3517
3563
  end
3518
3564
 
3519
3565
  def deserialize(params)
@@ -3551,6 +3597,12 @@ module TencentCloud
3551
3597
  @EnableSSL = params['EnableSSL']
3552
3598
  @SSLCertName = params['SSLCertName']
3553
3599
  @IOAId = params['IOAId']
3600
+ @ManageDimension = params['ManageDimension']
3601
+ @ManageAccountId = params['ManageAccountId']
3602
+ @Namespace = params['Namespace']
3603
+ @Workload = params['Workload']
3604
+ @SyncPodCount = params['SyncPodCount']
3605
+ @TotalPodCount = params['TotalPodCount']
3554
3606
  end
3555
3607
  end
3556
3608
 
@@ -3566,15 +3618,21 @@ module TencentCloud
3566
3618
  # @type BoundPassword: Boolean
3567
3619
  # @param BoundPrivateKey: true-已托管私钥,false-未托管私钥
3568
3620
  # @type BoundPrivateKey: Boolean
3621
+ # @param BoundKubeconfig: 是否托管凭证, true-托管,false-未托管
3622
+ # @type BoundKubeconfig: Boolean
3623
+ # @param IsK8SManageAccount: 是否为k8s资产管理账号
3624
+ # @type IsK8SManageAccount: Boolean
3569
3625
 
3570
- attr_accessor :Id, :DeviceId, :Account, :BoundPassword, :BoundPrivateKey
3626
+ attr_accessor :Id, :DeviceId, :Account, :BoundPassword, :BoundPrivateKey, :BoundKubeconfig, :IsK8SManageAccount
3571
3627
 
3572
- def initialize(id=nil, deviceid=nil, account=nil, boundpassword=nil, boundprivatekey=nil)
3628
+ def initialize(id=nil, deviceid=nil, account=nil, boundpassword=nil, boundprivatekey=nil, boundkubeconfig=nil, isk8smanageaccount=nil)
3573
3629
  @Id = id
3574
3630
  @DeviceId = deviceid
3575
3631
  @Account = account
3576
3632
  @BoundPassword = boundpassword
3577
3633
  @BoundPrivateKey = boundprivatekey
3634
+ @BoundKubeconfig = boundkubeconfig
3635
+ @IsK8SManageAccount = isk8smanageaccount
3578
3636
  end
3579
3637
 
3580
3638
  def deserialize(params)
@@ -3583,6 +3641,8 @@ module TencentCloud
3583
3641
  @Account = params['Account']
3584
3642
  @BoundPassword = params['BoundPassword']
3585
3643
  @BoundPrivateKey = params['BoundPrivateKey']
3644
+ @BoundKubeconfig = params['BoundKubeconfig']
3645
+ @IsK8SManageAccount = params['IsK8SManageAccount']
3586
3646
  end
3587
3647
  end
3588
3648
 
@@ -4838,10 +4898,12 @@ module TencentCloud
4838
4898
  # @type PackageIOAUserCount: Integer
4839
4899
  # @param PackageIOABandwidth: 零信任堡垒机带宽扩展包个数。一个扩展包表示4M带宽
4840
4900
  # @type PackageIOABandwidth: Integer
4901
+ # @param IOAResourceId: 堡垒机实例对应的零信任实例id
4902
+ # @type IOAResourceId: String
4841
4903
 
4842
- attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial, :LogDelivery, :CdcClusterId, :DeployModel, :IntranetAccess, :IntranetPrivateIpSet, :IntranetVpcId, :IntranetVpcCidr, :ShareClb, :OpenClbId, :LbVipIsp, :TUICmdPort, :TUIDirectPort, :WebAccess, :ClientAccess, :ExternalAccess, :IOAResource, :PackageIOAUserCount, :PackageIOABandwidth
4904
+ attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial, :LogDelivery, :CdcClusterId, :DeployModel, :IntranetAccess, :IntranetPrivateIpSet, :IntranetVpcId, :IntranetVpcCidr, :ShareClb, :OpenClbId, :LbVipIsp, :TUICmdPort, :TUIDirectPort, :WebAccess, :ClientAccess, :ExternalAccess, :IOAResource, :PackageIOAUserCount, :PackageIOABandwidth, :IOAResourceId
4843
4905
 
4844
- def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil, logdelivery=nil, cdcclusterid=nil, deploymodel=nil, intranetaccess=nil, intranetprivateipset=nil, intranetvpcid=nil, intranetvpccidr=nil, shareclb=nil, openclbid=nil, lbvipisp=nil, tuicmdport=nil, tuidirectport=nil, webaccess=nil, clientaccess=nil, externalaccess=nil, ioaresource=nil, packageioausercount=nil, packageioabandwidth=nil)
4906
+ def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil, logdelivery=nil, cdcclusterid=nil, deploymodel=nil, intranetaccess=nil, intranetprivateipset=nil, intranetvpcid=nil, intranetvpccidr=nil, shareclb=nil, openclbid=nil, lbvipisp=nil, tuicmdport=nil, tuidirectport=nil, webaccess=nil, clientaccess=nil, externalaccess=nil, ioaresource=nil, packageioausercount=nil, packageioabandwidth=nil, ioaresourceid=nil)
4845
4907
  @ResourceId = resourceid
4846
4908
  @ApCode = apcode
4847
4909
  @SvArgs = svargs
@@ -4893,6 +4955,7 @@ module TencentCloud
4893
4955
  @IOAResource = ioaresource
4894
4956
  @PackageIOAUserCount = packageioausercount
4895
4957
  @PackageIOABandwidth = packageioabandwidth
4958
+ @IOAResourceId = ioaresourceid
4896
4959
  end
4897
4960
 
4898
4961
  def deserialize(params)
@@ -4954,6 +5017,7 @@ module TencentCloud
4954
5017
  @IOAResource = params['IOAResource']
4955
5018
  @PackageIOAUserCount = params['PackageIOAUserCount']
4956
5019
  @PackageIOABandwidth = params['PackageIOABandwidth']
5020
+ @IOAResourceId = params['IOAResourceId']
4957
5021
  end
4958
5022
  end
4959
5023
 
@@ -5303,10 +5367,12 @@ module TencentCloud
5303
5367
  # @type Size: Integer
5304
5368
  # @param SignValue: 签名值
5305
5369
  # @type SignValue: String
5370
+ # @param DeviceKind: 资产类型
5371
+ # @type DeviceKind: String
5306
5372
 
5307
- attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size, :SignValue
5373
+ attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size, :SignValue, :DeviceKind
5308
5374
 
5309
- def initialize(time=nil, username=nil, realname=nil, instanceid=nil, devicename=nil, publicip=nil, privateip=nil, cmd=nil, action=nil, sid=nil, timeoffset=nil, account=nil, fromip=nil, sessiontime=nil, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil, size=nil, signvalue=nil)
5375
+ def initialize(time=nil, username=nil, realname=nil, instanceid=nil, devicename=nil, publicip=nil, privateip=nil, cmd=nil, action=nil, sid=nil, timeoffset=nil, account=nil, fromip=nil, sessiontime=nil, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil, size=nil, signvalue=nil, devicekind=nil)
5310
5376
  @Time = time
5311
5377
  @UserName = username
5312
5378
  @RealName = realname
@@ -5329,6 +5395,7 @@ module TencentCloud
5329
5395
  @DeviceDepartmentName = devicedepartmentname
5330
5396
  @Size = size
5331
5397
  @SignValue = signvalue
5398
+ @DeviceKind = devicekind
5332
5399
  end
5333
5400
 
5334
5401
  def deserialize(params)
@@ -5354,6 +5421,7 @@ module TencentCloud
5354
5421
  @DeviceDepartmentName = params['DeviceDepartmentName']
5355
5422
  @Size = params['Size']
5356
5423
  @SignValue = params['SignValue']
5424
+ @DeviceKind = params['DeviceKind']
5357
5425
  end
5358
5426
  end
5359
5427
 
@@ -6076,10 +6144,18 @@ module TencentCloud
6076
6144
  # @type AppAssetUrl: String
6077
6145
  # @param ReplayType: 回放类型 默认0, 1-rfb 2-mp4 3-ssh
6078
6146
  # @type ReplayType: Integer
6079
-
6080
- attr_accessor :UserName, :RealName, :Account, :StartTime, :EndTime, :Size, :InstanceId, :DeviceName, :PrivateIp, :PublicIp, :FromIp, :Duration, :Count, :DangerCount, :Status, :Id, :ApCode, :Protocol, :AppAssetKind, :AppAssetUrl, :ReplayType
6081
-
6082
- def initialize(username=nil, realname=nil, account=nil, starttime=nil, endtime=nil, size=nil, instanceid=nil, devicename=nil, privateip=nil, publicip=nil, fromip=nil, duration=nil, count=nil, dangercount=nil, status=nil, id=nil, apcode=nil, protocol=nil, appassetkind=nil, appasseturl=nil, replaytype=nil)
6147
+ # @param DeviceKind: 会话资产类型
6148
+ # @type DeviceKind: String
6149
+ # @param Namespace: K8S集群命名空间
6150
+ # @type Namespace: String
6151
+ # @param Workload: K8S集群工作负载
6152
+ # @type Workload: String
6153
+ # @param PodName: K8S集群容器名称
6154
+ # @type PodName: String
6155
+
6156
+ attr_accessor :UserName, :RealName, :Account, :StartTime, :EndTime, :Size, :InstanceId, :DeviceName, :PrivateIp, :PublicIp, :FromIp, :Duration, :Count, :DangerCount, :Status, :Id, :ApCode, :Protocol, :AppAssetKind, :AppAssetUrl, :ReplayType, :DeviceKind, :Namespace, :Workload, :PodName
6157
+
6158
+ def initialize(username=nil, realname=nil, account=nil, starttime=nil, endtime=nil, size=nil, instanceid=nil, devicename=nil, privateip=nil, publicip=nil, fromip=nil, duration=nil, count=nil, dangercount=nil, status=nil, id=nil, apcode=nil, protocol=nil, appassetkind=nil, appasseturl=nil, replaytype=nil, devicekind=nil, namespace=nil, workload=nil, podname=nil)
6083
6159
  @UserName = username
6084
6160
  @RealName = realname
6085
6161
  @Account = account
@@ -6101,6 +6177,10 @@ module TencentCloud
6101
6177
  @AppAssetKind = appassetkind
6102
6178
  @AppAssetUrl = appasseturl
6103
6179
  @ReplayType = replaytype
6180
+ @DeviceKind = devicekind
6181
+ @Namespace = namespace
6182
+ @Workload = workload
6183
+ @PodName = podname
6104
6184
  end
6105
6185
 
6106
6186
  def deserialize(params)
@@ -6125,6 +6205,10 @@ module TencentCloud
6125
6205
  @AppAssetKind = params['AppAssetKind']
6126
6206
  @AppAssetUrl = params['AppAssetUrl']
6127
6207
  @ReplayType = params['ReplayType']
6208
+ @DeviceKind = params['DeviceKind']
6209
+ @Namespace = params['Namespace']
6210
+ @Workload = params['Workload']
6211
+ @PodName = params['PodName']
6128
6212
  end
6129
6213
  end
6130
6214
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-bh
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1068
4
+ version: 3.0.1069
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-05-26 00:00:00.000000000 Z
11
+ date: 2025-05-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common