tencentcloud-sdk-vpc 3.0.888 → 3.0.890
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +146 -22
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9bbe545e41e7a90e630f4b6aefbb8e4cd69b049
|
4
|
+
data.tar.gz: ea7a07a3746971b2a690d3efd633ced6fe4e5735
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ff541dfac47b9c9c8748ecacbd053823701f98ffdd6280e1b0abc5394d2605337edbf085368767b2df6e3c4485214f330621e46400832521f31fe766ada2861
|
7
|
+
data.tar.gz: 653d62a5daabd5d9faf115e478edadcc1e0e28deb4a46925703e13805d1d41c8fb7a7d8db269e3790c8de0b46a398fe8ceb4daf8274418dffb918af3a5946f11
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.890
|
data/lib/v20170312/models.rb
CHANGED
@@ -484,15 +484,19 @@ module TencentCloud
|
|
484
484
|
# @type CreatedTime: String
|
485
485
|
# @param AddressExtraSet: 带备注的IP地址信息。
|
486
486
|
# @type AddressExtraSet: Array
|
487
|
+
# @param TagSet: 标签键值对。
|
488
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
489
|
+
# @type TagSet: Array
|
487
490
|
|
488
|
-
attr_accessor :AddressTemplateName, :AddressTemplateId, :AddressSet, :CreatedTime, :AddressExtraSet
|
491
|
+
attr_accessor :AddressTemplateName, :AddressTemplateId, :AddressSet, :CreatedTime, :AddressExtraSet, :TagSet
|
489
492
|
|
490
|
-
def initialize(addresstemplatename=nil, addresstemplateid=nil, addressset=nil, createdtime=nil, addressextraset=nil)
|
493
|
+
def initialize(addresstemplatename=nil, addresstemplateid=nil, addressset=nil, createdtime=nil, addressextraset=nil, tagset=nil)
|
491
494
|
@AddressTemplateName = addresstemplatename
|
492
495
|
@AddressTemplateId = addresstemplateid
|
493
496
|
@AddressSet = addressset
|
494
497
|
@CreatedTime = createdtime
|
495
498
|
@AddressExtraSet = addressextraset
|
499
|
+
@TagSet = tagset
|
496
500
|
end
|
497
501
|
|
498
502
|
def deserialize(params)
|
@@ -508,6 +512,14 @@ module TencentCloud
|
|
508
512
|
@AddressExtraSet << addressinfo_tmp
|
509
513
|
end
|
510
514
|
end
|
515
|
+
unless params['TagSet'].nil?
|
516
|
+
@TagSet = []
|
517
|
+
params['TagSet'].each do |i|
|
518
|
+
tag_tmp = Tag.new
|
519
|
+
tag_tmp.deserialize(i)
|
520
|
+
@TagSet << tag_tmp
|
521
|
+
end
|
522
|
+
end
|
511
523
|
end
|
512
524
|
end
|
513
525
|
|
@@ -523,15 +535,19 @@ module TencentCloud
|
|
523
535
|
# @type CreatedTime: String
|
524
536
|
# @param AddressTemplateSet: IP地址模板实例。
|
525
537
|
# @type AddressTemplateSet: Array
|
538
|
+
# @param TagSet: 标签键值对。
|
539
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
540
|
+
# @type TagSet: Array
|
526
541
|
|
527
|
-
attr_accessor :AddressTemplateGroupName, :AddressTemplateGroupId, :AddressTemplateIdSet, :CreatedTime, :AddressTemplateSet
|
542
|
+
attr_accessor :AddressTemplateGroupName, :AddressTemplateGroupId, :AddressTemplateIdSet, :CreatedTime, :AddressTemplateSet, :TagSet
|
528
543
|
|
529
|
-
def initialize(addresstemplategroupname=nil, addresstemplategroupid=nil, addresstemplateidset=nil, createdtime=nil, addresstemplateset=nil)
|
544
|
+
def initialize(addresstemplategroupname=nil, addresstemplategroupid=nil, addresstemplateidset=nil, createdtime=nil, addresstemplateset=nil, tagset=nil)
|
530
545
|
@AddressTemplateGroupName = addresstemplategroupname
|
531
546
|
@AddressTemplateGroupId = addresstemplategroupid
|
532
547
|
@AddressTemplateIdSet = addresstemplateidset
|
533
548
|
@CreatedTime = createdtime
|
534
549
|
@AddressTemplateSet = addresstemplateset
|
550
|
+
@TagSet = tagset
|
535
551
|
end
|
536
552
|
|
537
553
|
def deserialize(params)
|
@@ -547,6 +563,14 @@ module TencentCloud
|
|
547
563
|
@AddressTemplateSet << addresstemplateitem_tmp
|
548
564
|
end
|
549
565
|
end
|
566
|
+
unless params['TagSet'].nil?
|
567
|
+
@TagSet = []
|
568
|
+
params['TagSet'].each do |i|
|
569
|
+
tag_tmp = Tag.new
|
570
|
+
tag_tmp.deserialize(i)
|
571
|
+
@TagSet << tag_tmp
|
572
|
+
end
|
573
|
+
end
|
550
574
|
end
|
551
575
|
end
|
552
576
|
|
@@ -15432,10 +15456,13 @@ module TencentCloud
|
|
15432
15456
|
# @param ServiceName: 终端节点服务名称。
|
15433
15457
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15434
15458
|
# @type ServiceName: String
|
15459
|
+
# @param TagSet: 标签键值对。
|
15460
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15461
|
+
# @type TagSet: Array
|
15435
15462
|
|
15436
|
-
attr_accessor :EndPointId, :VpcId, :SubnetId, :EndPointOwner, :EndPointName, :ServiceVpcId, :ServiceVip, :EndPointServiceId, :EndPointVip, :State, :CreateTime, :GroupSet, :ServiceName
|
15463
|
+
attr_accessor :EndPointId, :VpcId, :SubnetId, :EndPointOwner, :EndPointName, :ServiceVpcId, :ServiceVip, :EndPointServiceId, :EndPointVip, :State, :CreateTime, :GroupSet, :ServiceName, :TagSet
|
15437
15464
|
|
15438
|
-
def initialize(endpointid=nil, vpcid=nil, subnetid=nil, endpointowner=nil, endpointname=nil, servicevpcid=nil, servicevip=nil, endpointserviceid=nil, endpointvip=nil, state=nil, createtime=nil, groupset=nil, servicename=nil)
|
15465
|
+
def initialize(endpointid=nil, vpcid=nil, subnetid=nil, endpointowner=nil, endpointname=nil, servicevpcid=nil, servicevip=nil, endpointserviceid=nil, endpointvip=nil, state=nil, createtime=nil, groupset=nil, servicename=nil, tagset=nil)
|
15439
15466
|
@EndPointId = endpointid
|
15440
15467
|
@VpcId = vpcid
|
15441
15468
|
@SubnetId = subnetid
|
@@ -15449,6 +15476,7 @@ module TencentCloud
|
|
15449
15476
|
@CreateTime = createtime
|
15450
15477
|
@GroupSet = groupset
|
15451
15478
|
@ServiceName = servicename
|
15479
|
+
@TagSet = tagset
|
15452
15480
|
end
|
15453
15481
|
|
15454
15482
|
def deserialize(params)
|
@@ -15465,6 +15493,14 @@ module TencentCloud
|
|
15465
15493
|
@CreateTime = params['CreateTime']
|
15466
15494
|
@GroupSet = params['GroupSet']
|
15467
15495
|
@ServiceName = params['ServiceName']
|
15496
|
+
unless params['TagSet'].nil?
|
15497
|
+
@TagSet = []
|
15498
|
+
params['TagSet'].each do |i|
|
15499
|
+
tag_tmp = Tag.new
|
15500
|
+
tag_tmp.deserialize(i)
|
15501
|
+
@TagSet << tag_tmp
|
15502
|
+
end
|
15503
|
+
end
|
15468
15504
|
end
|
15469
15505
|
end
|
15470
15506
|
|
@@ -15500,10 +15536,13 @@ module TencentCloud
|
|
15500
15536
|
# @param BusinessIpType: 服务IP类型
|
15501
15537
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15502
15538
|
# @type BusinessIpType: Integer
|
15539
|
+
# @param TagSet: 标签键值对。
|
15540
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15541
|
+
# @type TagSet: Array
|
15503
15542
|
|
15504
|
-
attr_accessor :EndPointServiceId, :VpcId, :ServiceOwner, :ServiceName, :ServiceVip, :ServiceInstanceId, :AutoAcceptFlag, :EndPointCount, :EndPointSet, :CreateTime, :ServiceType, :ServiceUin, :BusinessIpType
|
15543
|
+
attr_accessor :EndPointServiceId, :VpcId, :ServiceOwner, :ServiceName, :ServiceVip, :ServiceInstanceId, :AutoAcceptFlag, :EndPointCount, :EndPointSet, :CreateTime, :ServiceType, :ServiceUin, :BusinessIpType, :TagSet
|
15505
15544
|
|
15506
|
-
def initialize(endpointserviceid=nil, vpcid=nil, serviceowner=nil, servicename=nil, servicevip=nil, serviceinstanceid=nil, autoacceptflag=nil, endpointcount=nil, endpointset=nil, createtime=nil, servicetype=nil, serviceuin=nil, businessiptype=nil)
|
15545
|
+
def initialize(endpointserviceid=nil, vpcid=nil, serviceowner=nil, servicename=nil, servicevip=nil, serviceinstanceid=nil, autoacceptflag=nil, endpointcount=nil, endpointset=nil, createtime=nil, servicetype=nil, serviceuin=nil, businessiptype=nil, tagset=nil)
|
15507
15546
|
@EndPointServiceId = endpointserviceid
|
15508
15547
|
@VpcId = vpcid
|
15509
15548
|
@ServiceOwner = serviceowner
|
@@ -15517,6 +15556,7 @@ module TencentCloud
|
|
15517
15556
|
@ServiceType = servicetype
|
15518
15557
|
@ServiceUin = serviceuin
|
15519
15558
|
@BusinessIpType = businessiptype
|
15559
|
+
@TagSet = tagset
|
15520
15560
|
end
|
15521
15561
|
|
15522
15562
|
def deserialize(params)
|
@@ -15540,6 +15580,14 @@ module TencentCloud
|
|
15540
15580
|
@ServiceType = params['ServiceType']
|
15541
15581
|
@ServiceUin = params['ServiceUin']
|
15542
15582
|
@BusinessIpType = params['BusinessIpType']
|
15583
|
+
unless params['TagSet'].nil?
|
15584
|
+
@TagSet = []
|
15585
|
+
params['TagSet'].each do |i|
|
15586
|
+
tag_tmp = Tag.new
|
15587
|
+
tag_tmp.deserialize(i)
|
15588
|
+
@TagSet << tag_tmp
|
15589
|
+
end
|
15590
|
+
end
|
15543
15591
|
end
|
15544
15592
|
end
|
15545
15593
|
|
@@ -15910,10 +15958,13 @@ module TencentCloud
|
|
15910
15958
|
# @param FlushedTime: HAVIP 刷新时间。该参数只作为出参数。以下场景会触发 FlushTime 被刷新:1)子机发出免费 ARP 触发 HAVIP 漂移;2)手动HAVIP解绑网卡; 没有更新时默认值:0000-00-00 00:00:00
|
15911
15959
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
15912
15960
|
# @type FlushedTime: String
|
15961
|
+
# @param TagSet: 标签键值对。
|
15962
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15963
|
+
# @type TagSet: Array
|
15913
15964
|
|
15914
|
-
attr_accessor :HaVipId, :HaVipName, :Vip, :VpcId, :SubnetId, :NetworkInterfaceId, :InstanceId, :AddressIp, :State, :CreatedTime, :Business, :HaVipAssociationSet, :CheckAssociate, :FlushedTime
|
15965
|
+
attr_accessor :HaVipId, :HaVipName, :Vip, :VpcId, :SubnetId, :NetworkInterfaceId, :InstanceId, :AddressIp, :State, :CreatedTime, :Business, :HaVipAssociationSet, :CheckAssociate, :FlushedTime, :TagSet
|
15915
15966
|
|
15916
|
-
def initialize(havipid=nil, havipname=nil, vip=nil, vpcid=nil, subnetid=nil, networkinterfaceid=nil, instanceid=nil, addressip=nil, state=nil, createdtime=nil, business=nil, havipassociationset=nil, checkassociate=nil, flushedtime=nil)
|
15967
|
+
def initialize(havipid=nil, havipname=nil, vip=nil, vpcid=nil, subnetid=nil, networkinterfaceid=nil, instanceid=nil, addressip=nil, state=nil, createdtime=nil, business=nil, havipassociationset=nil, checkassociate=nil, flushedtime=nil, tagset=nil)
|
15917
15968
|
@HaVipId = havipid
|
15918
15969
|
@HaVipName = havipname
|
15919
15970
|
@Vip = vip
|
@@ -15928,6 +15979,7 @@ module TencentCloud
|
|
15928
15979
|
@HaVipAssociationSet = havipassociationset
|
15929
15980
|
@CheckAssociate = checkassociate
|
15930
15981
|
@FlushedTime = flushedtime
|
15982
|
+
@TagSet = tagset
|
15931
15983
|
end
|
15932
15984
|
|
15933
15985
|
def deserialize(params)
|
@@ -15952,6 +16004,14 @@ module TencentCloud
|
|
15952
16004
|
end
|
15953
16005
|
@CheckAssociate = params['CheckAssociate']
|
15954
16006
|
@FlushedTime = params['FlushedTime']
|
16007
|
+
unless params['TagSet'].nil?
|
16008
|
+
@TagSet = []
|
16009
|
+
params['TagSet'].each do |i|
|
16010
|
+
tag_tmp = Tag.new
|
16011
|
+
tag_tmp.deserialize(i)
|
16012
|
+
@TagSet << tag_tmp
|
16013
|
+
end
|
16014
|
+
end
|
15955
16015
|
end
|
15956
16016
|
end
|
15957
16017
|
|
@@ -16870,7 +16930,7 @@ module TencentCloud
|
|
16870
16930
|
# @type CdcId: String
|
16871
16931
|
# @param VpcId: VPC实例ID
|
16872
16932
|
# @type VpcId: String
|
16873
|
-
# @param UniqLocalGwId: 本地网关实例ID
|
16933
|
+
# @param UniqLocalGwId: 本地网关实例ID(计划弃用)
|
16874
16934
|
# @type UniqLocalGwId: String
|
16875
16935
|
# @param LocalGatewayName: 本地网关名称
|
16876
16936
|
# @type LocalGatewayName: String
|
@@ -16878,16 +16938,23 @@ module TencentCloud
|
|
16878
16938
|
# @type LocalGwIp: String
|
16879
16939
|
# @param CreateTime: 本地网关创建时间
|
16880
16940
|
# @type CreateTime: String
|
16941
|
+
# @param TagSet: 标签键值对。
|
16942
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16943
|
+
# @type TagSet: Array
|
16944
|
+
# @param LocalGatewayId: 本地网关实例ID(计划起用)
|
16945
|
+
# @type LocalGatewayId: String
|
16881
16946
|
|
16882
|
-
attr_accessor :CdcId, :VpcId, :UniqLocalGwId, :LocalGatewayName, :LocalGwIp, :CreateTime
|
16947
|
+
attr_accessor :CdcId, :VpcId, :UniqLocalGwId, :LocalGatewayName, :LocalGwIp, :CreateTime, :TagSet, :LocalGatewayId
|
16883
16948
|
|
16884
|
-
def initialize(cdcid=nil, vpcid=nil, uniqlocalgwid=nil, localgatewayname=nil, localgwip=nil, createtime=nil)
|
16949
|
+
def initialize(cdcid=nil, vpcid=nil, uniqlocalgwid=nil, localgatewayname=nil, localgwip=nil, createtime=nil, tagset=nil, localgatewayid=nil)
|
16885
16950
|
@CdcId = cdcid
|
16886
16951
|
@VpcId = vpcid
|
16887
16952
|
@UniqLocalGwId = uniqlocalgwid
|
16888
16953
|
@LocalGatewayName = localgatewayname
|
16889
16954
|
@LocalGwIp = localgwip
|
16890
16955
|
@CreateTime = createtime
|
16956
|
+
@TagSet = tagset
|
16957
|
+
@LocalGatewayId = localgatewayid
|
16891
16958
|
end
|
16892
16959
|
|
16893
16960
|
def deserialize(params)
|
@@ -16897,6 +16964,15 @@ module TencentCloud
|
|
16897
16964
|
@LocalGatewayName = params['LocalGatewayName']
|
16898
16965
|
@LocalGwIp = params['LocalGwIp']
|
16899
16966
|
@CreateTime = params['CreateTime']
|
16967
|
+
unless params['TagSet'].nil?
|
16968
|
+
@TagSet = []
|
16969
|
+
params['TagSet'].each do |i|
|
16970
|
+
tag_tmp = Tag.new
|
16971
|
+
tag_tmp.deserialize(i)
|
16972
|
+
@TagSet << tag_tmp
|
16973
|
+
end
|
16974
|
+
end
|
16975
|
+
@LocalGatewayId = params['LocalGatewayId']
|
16900
16976
|
end
|
16901
16977
|
end
|
16902
16978
|
|
@@ -19957,10 +20033,13 @@ module TencentCloud
|
|
19957
20033
|
# @param CreateTime: 创建时间。
|
19958
20034
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
19959
20035
|
# @type CreateTime: String
|
20036
|
+
# @param TagSet: 标签键值对。
|
20037
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
20038
|
+
# @type TagSet: Array
|
19960
20039
|
|
19961
|
-
attr_accessor :VpcId, :VpcName, :SubnetId, :SubnetName, :NetDetectId, :NetDetectName, :DetectDestinationIp, :DetectSourceIp, :NextHopType, :NextHopDestination, :NextHopName, :NetDetectDescription, :CreateTime
|
20040
|
+
attr_accessor :VpcId, :VpcName, :SubnetId, :SubnetName, :NetDetectId, :NetDetectName, :DetectDestinationIp, :DetectSourceIp, :NextHopType, :NextHopDestination, :NextHopName, :NetDetectDescription, :CreateTime, :TagSet
|
19962
20041
|
|
19963
|
-
def initialize(vpcid=nil, vpcname=nil, subnetid=nil, subnetname=nil, netdetectid=nil, netdetectname=nil, detectdestinationip=nil, detectsourceip=nil, nexthoptype=nil, nexthopdestination=nil, nexthopname=nil, netdetectdescription=nil, createtime=nil)
|
20042
|
+
def initialize(vpcid=nil, vpcname=nil, subnetid=nil, subnetname=nil, netdetectid=nil, netdetectname=nil, detectdestinationip=nil, detectsourceip=nil, nexthoptype=nil, nexthopdestination=nil, nexthopname=nil, netdetectdescription=nil, createtime=nil, tagset=nil)
|
19964
20043
|
@VpcId = vpcid
|
19965
20044
|
@VpcName = vpcname
|
19966
20045
|
@SubnetId = subnetid
|
@@ -19974,6 +20053,7 @@ module TencentCloud
|
|
19974
20053
|
@NextHopName = nexthopname
|
19975
20054
|
@NetDetectDescription = netdetectdescription
|
19976
20055
|
@CreateTime = createtime
|
20056
|
+
@TagSet = tagset
|
19977
20057
|
end
|
19978
20058
|
|
19979
20059
|
def deserialize(params)
|
@@ -19990,6 +20070,14 @@ module TencentCloud
|
|
19990
20070
|
@NextHopName = params['NextHopName']
|
19991
20071
|
@NetDetectDescription = params['NetDetectDescription']
|
19992
20072
|
@CreateTime = params['CreateTime']
|
20073
|
+
unless params['TagSet'].nil?
|
20074
|
+
@TagSet = []
|
20075
|
+
params['TagSet'].each do |i|
|
20076
|
+
tag_tmp = Tag.new
|
20077
|
+
tag_tmp.deserialize(i)
|
20078
|
+
@TagSet << tag_tmp
|
20079
|
+
end
|
20080
|
+
end
|
19993
20081
|
end
|
19994
20082
|
end
|
19995
20083
|
|
@@ -22736,15 +22824,19 @@ module TencentCloud
|
|
22736
22824
|
# @type CreatedTime: String
|
22737
22825
|
# @param ServiceExtraSet: 带备注的协议端口信息。
|
22738
22826
|
# @type ServiceExtraSet: Array
|
22827
|
+
# @param TagSet: 标签键值对。
|
22828
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22829
|
+
# @type TagSet: Array
|
22739
22830
|
|
22740
|
-
attr_accessor :ServiceTemplateId, :ServiceTemplateName, :ServiceSet, :CreatedTime, :ServiceExtraSet
|
22831
|
+
attr_accessor :ServiceTemplateId, :ServiceTemplateName, :ServiceSet, :CreatedTime, :ServiceExtraSet, :TagSet
|
22741
22832
|
|
22742
|
-
def initialize(servicetemplateid=nil, servicetemplatename=nil, serviceset=nil, createdtime=nil, serviceextraset=nil)
|
22833
|
+
def initialize(servicetemplateid=nil, servicetemplatename=nil, serviceset=nil, createdtime=nil, serviceextraset=nil, tagset=nil)
|
22743
22834
|
@ServiceTemplateId = servicetemplateid
|
22744
22835
|
@ServiceTemplateName = servicetemplatename
|
22745
22836
|
@ServiceSet = serviceset
|
22746
22837
|
@CreatedTime = createdtime
|
22747
22838
|
@ServiceExtraSet = serviceextraset
|
22839
|
+
@TagSet = tagset
|
22748
22840
|
end
|
22749
22841
|
|
22750
22842
|
def deserialize(params)
|
@@ -22760,6 +22852,14 @@ module TencentCloud
|
|
22760
22852
|
@ServiceExtraSet << servicesinfo_tmp
|
22761
22853
|
end
|
22762
22854
|
end
|
22855
|
+
unless params['TagSet'].nil?
|
22856
|
+
@TagSet = []
|
22857
|
+
params['TagSet'].each do |i|
|
22858
|
+
tag_tmp = Tag.new
|
22859
|
+
tag_tmp.deserialize(i)
|
22860
|
+
@TagSet << tag_tmp
|
22861
|
+
end
|
22862
|
+
end
|
22763
22863
|
end
|
22764
22864
|
end
|
22765
22865
|
|
@@ -22775,15 +22875,19 @@ module TencentCloud
|
|
22775
22875
|
# @type CreatedTime: String
|
22776
22876
|
# @param ServiceTemplateSet: 协议端口模板实例信息。
|
22777
22877
|
# @type ServiceTemplateSet: Array
|
22878
|
+
# @param TagSet: 标签键值对。
|
22879
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
22880
|
+
# @type TagSet: Array
|
22778
22881
|
|
22779
|
-
attr_accessor :ServiceTemplateGroupId, :ServiceTemplateGroupName, :ServiceTemplateIdSet, :CreatedTime, :ServiceTemplateSet
|
22882
|
+
attr_accessor :ServiceTemplateGroupId, :ServiceTemplateGroupName, :ServiceTemplateIdSet, :CreatedTime, :ServiceTemplateSet, :TagSet
|
22780
22883
|
|
22781
|
-
def initialize(servicetemplategroupid=nil, servicetemplategroupname=nil, servicetemplateidset=nil, createdtime=nil, servicetemplateset=nil)
|
22884
|
+
def initialize(servicetemplategroupid=nil, servicetemplategroupname=nil, servicetemplateidset=nil, createdtime=nil, servicetemplateset=nil, tagset=nil)
|
22782
22885
|
@ServiceTemplateGroupId = servicetemplategroupid
|
22783
22886
|
@ServiceTemplateGroupName = servicetemplategroupname
|
22784
22887
|
@ServiceTemplateIdSet = servicetemplateidset
|
22785
22888
|
@CreatedTime = createdtime
|
22786
22889
|
@ServiceTemplateSet = servicetemplateset
|
22890
|
+
@TagSet = tagset
|
22787
22891
|
end
|
22788
22892
|
|
22789
22893
|
def deserialize(params)
|
@@ -22799,6 +22903,14 @@ module TencentCloud
|
|
22799
22903
|
@ServiceTemplateSet << servicetemplate_tmp
|
22800
22904
|
end
|
22801
22905
|
end
|
22906
|
+
unless params['TagSet'].nil?
|
22907
|
+
@TagSet = []
|
22908
|
+
params['TagSet'].each do |i|
|
22909
|
+
tag_tmp = Tag.new
|
22910
|
+
tag_tmp.deserialize(i)
|
22911
|
+
@TagSet << tag_tmp
|
22912
|
+
end
|
22913
|
+
end
|
22802
22914
|
end
|
22803
22915
|
end
|
22804
22916
|
|
@@ -23020,10 +23132,13 @@ module TencentCloud
|
|
23020
23132
|
# @param CreateTime: 创建时间。
|
23021
23133
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
23022
23134
|
# @type CreateTime: String
|
23135
|
+
# @param TagSet: 标签键值对。
|
23136
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
23137
|
+
# @type TagSet: Array
|
23023
23138
|
|
23024
|
-
attr_accessor :SnapshotPolicyName, :BackupType, :KeepTime, :CreateNewCos, :CosRegion, :CosBucket, :SnapshotPolicyId, :BackupPolicies, :Enable, :CreateTime
|
23139
|
+
attr_accessor :SnapshotPolicyName, :BackupType, :KeepTime, :CreateNewCos, :CosRegion, :CosBucket, :SnapshotPolicyId, :BackupPolicies, :Enable, :CreateTime, :TagSet
|
23025
23140
|
|
23026
|
-
def initialize(snapshotpolicyname=nil, backuptype=nil, keeptime=nil, createnewcos=nil, cosregion=nil, cosbucket=nil, snapshotpolicyid=nil, backuppolicies=nil, enable=nil, createtime=nil)
|
23141
|
+
def initialize(snapshotpolicyname=nil, backuptype=nil, keeptime=nil, createnewcos=nil, cosregion=nil, cosbucket=nil, snapshotpolicyid=nil, backuppolicies=nil, enable=nil, createtime=nil, tagset=nil)
|
23027
23142
|
@SnapshotPolicyName = snapshotpolicyname
|
23028
23143
|
@BackupType = backuptype
|
23029
23144
|
@KeepTime = keeptime
|
@@ -23034,6 +23149,7 @@ module TencentCloud
|
|
23034
23149
|
@BackupPolicies = backuppolicies
|
23035
23150
|
@Enable = enable
|
23036
23151
|
@CreateTime = createtime
|
23152
|
+
@TagSet = tagset
|
23037
23153
|
end
|
23038
23154
|
|
23039
23155
|
def deserialize(params)
|
@@ -23054,12 +23170,20 @@ module TencentCloud
|
|
23054
23170
|
end
|
23055
23171
|
@Enable = params['Enable']
|
23056
23172
|
@CreateTime = params['CreateTime']
|
23173
|
+
unless params['TagSet'].nil?
|
23174
|
+
@TagSet = []
|
23175
|
+
params['TagSet'].each do |i|
|
23176
|
+
tag_tmp = Tag.new
|
23177
|
+
tag_tmp.deserialize(i)
|
23178
|
+
@TagSet << tag_tmp
|
23179
|
+
end
|
23180
|
+
end
|
23057
23181
|
end
|
23058
23182
|
end
|
23059
23183
|
|
23060
23184
|
# NAT的SNAT规则
|
23061
23185
|
class SourceIpTranslationNatRule < TencentCloud::Common::AbstractModel
|
23062
|
-
# @param ResourceId: 资源ID,如果ResourceType为USERDEFINED
|
23186
|
+
# @param ResourceId: 资源ID,如果ResourceType为USERDEFINED,可以为空字符串
|
23063
23187
|
# @type ResourceId: String
|
23064
23188
|
# @param ResourceType: 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
|
23065
23189
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-vpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.890
|
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-
|
11
|
+
date: 2024-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|