tencentcloud-sdk-vpc 3.0.959 → 3.0.961
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 +23 -4
- 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: 169f03085609a02f079dd83775217000535aedc7
|
4
|
+
data.tar.gz: 846059fb16da276cd18cbca85d2b6f7a36f85007
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8376af3514723c257605132831e43e8559dd0dbecf5535163a8463e689bb6bb29700d8260a4f57a9a8c3fb656c7b6d76769dda2da9930d3924f926ca80d3f79
|
7
|
+
data.tar.gz: f56493bca37fb870ab809ec0299c6fe18a404733184b206a7b74a1733c6adda7f3261018250596347b994daa44e79ae3316bfada837ab52cda00f517f5d632fa
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.961
|
data/lib/v20170312/models.rb
CHANGED
@@ -740,6 +740,12 @@ module TencentCloud
|
|
740
740
|
# @type AddressName: String
|
741
741
|
# @param DedicatedClusterId: CDC唯一ID
|
742
742
|
# @type DedicatedClusterId: String
|
743
|
+
# @param IsDedicatedAddressPool: 是否使用独占资源池,默认值:True
|
744
|
+
# - True:表示使用独占资源池
|
745
|
+
# - False:表示使用共享资源池
|
746
|
+
|
747
|
+
# 说明:如需使用独占资源池,请 提交工单(https://console.cloud.tencent.com/workorder/category) 咨询,具体费用请咨询商务经理。
|
748
|
+
# @type IsDedicatedAddressPool: Boolean
|
743
749
|
# @param Egress: 网络出口,当前仅支持精品BGP、静态单线,这2种IP 地址类型的指定出口传入,默认值:center_egress1,其它可选值:center_egress2、center_egress3
|
744
750
|
# @type Egress: String
|
745
751
|
# @param AntiDDoSPackageId: 高防包ID, 申请高防IP时,该字段必传。
|
@@ -747,9 +753,9 @@ module TencentCloud
|
|
747
753
|
# @param ClientToken: 保证请求幂等性。从您的客户端生成一个参数值,确保不同请求间该参数值唯一。ClientToken只支持ASCII字符,且不能超过64个字符。
|
748
754
|
# @type ClientToken: String
|
749
755
|
|
750
|
-
attr_accessor :AddressCount, :InternetServiceProvider, :InternetChargeType, :InternetMaxBandwidthOut, :AddressChargePrepaid, :AddressType, :AnycastZone, :VipCluster, :ApplicableForCLB, :Tags, :BandwidthPackageId, :AddressName, :DedicatedClusterId, :Egress, :AntiDDoSPackageId, :ClientToken
|
756
|
+
attr_accessor :AddressCount, :InternetServiceProvider, :InternetChargeType, :InternetMaxBandwidthOut, :AddressChargePrepaid, :AddressType, :AnycastZone, :VipCluster, :ApplicableForCLB, :Tags, :BandwidthPackageId, :AddressName, :DedicatedClusterId, :IsDedicatedAddressPool, :Egress, :AntiDDoSPackageId, :ClientToken
|
751
757
|
|
752
|
-
def initialize(addresscount=nil, internetserviceprovider=nil, internetchargetype=nil, internetmaxbandwidthout=nil, addresschargeprepaid=nil, addresstype=nil, anycastzone=nil, vipcluster=nil, applicableforclb=nil, tags=nil, bandwidthpackageid=nil, addressname=nil, dedicatedclusterid=nil, egress=nil, antiddospackageid=nil, clienttoken=nil)
|
758
|
+
def initialize(addresscount=nil, internetserviceprovider=nil, internetchargetype=nil, internetmaxbandwidthout=nil, addresschargeprepaid=nil, addresstype=nil, anycastzone=nil, vipcluster=nil, applicableforclb=nil, tags=nil, bandwidthpackageid=nil, addressname=nil, dedicatedclusterid=nil, isdedicatedaddresspool=nil, egress=nil, antiddospackageid=nil, clienttoken=nil)
|
753
759
|
@AddressCount = addresscount
|
754
760
|
@InternetServiceProvider = internetserviceprovider
|
755
761
|
@InternetChargeType = internetchargetype
|
@@ -763,6 +769,7 @@ module TencentCloud
|
|
763
769
|
@BandwidthPackageId = bandwidthpackageid
|
764
770
|
@AddressName = addressname
|
765
771
|
@DedicatedClusterId = dedicatedclusterid
|
772
|
+
@IsDedicatedAddressPool = isdedicatedaddresspool
|
766
773
|
@Egress = egress
|
767
774
|
@AntiDDoSPackageId = antiddospackageid
|
768
775
|
@ClientToken = clienttoken
|
@@ -792,6 +799,7 @@ module TencentCloud
|
|
792
799
|
@BandwidthPackageId = params['BandwidthPackageId']
|
793
800
|
@AddressName = params['AddressName']
|
794
801
|
@DedicatedClusterId = params['DedicatedClusterId']
|
802
|
+
@IsDedicatedAddressPool = params['IsDedicatedAddressPool']
|
795
803
|
@Egress = params['Egress']
|
796
804
|
@AntiDDoSPackageId = params['AntiDDoSPackageId']
|
797
805
|
@ClientToken = params['ClientToken']
|
@@ -5673,11 +5681,14 @@ module TencentCloud
|
|
5673
5681
|
class CreateSnapshotPoliciesRequest < TencentCloud::Common::AbstractModel
|
5674
5682
|
# @param SnapshotPolicies: 快照策略详情。
|
5675
5683
|
# @type SnapshotPolicies: Array
|
5684
|
+
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
5685
|
+
# @type Tags: Array
|
5676
5686
|
|
5677
|
-
attr_accessor :SnapshotPolicies
|
5687
|
+
attr_accessor :SnapshotPolicies, :Tags
|
5678
5688
|
|
5679
|
-
def initialize(snapshotpolicies=nil)
|
5689
|
+
def initialize(snapshotpolicies=nil, tags=nil)
|
5680
5690
|
@SnapshotPolicies = snapshotpolicies
|
5691
|
+
@Tags = tags
|
5681
5692
|
end
|
5682
5693
|
|
5683
5694
|
def deserialize(params)
|
@@ -5689,6 +5700,14 @@ module TencentCloud
|
|
5689
5700
|
@SnapshotPolicies << snapshotpolicy_tmp
|
5690
5701
|
end
|
5691
5702
|
end
|
5703
|
+
unless params['Tags'].nil?
|
5704
|
+
@Tags = []
|
5705
|
+
params['Tags'].each do |i|
|
5706
|
+
tag_tmp = Tag.new
|
5707
|
+
tag_tmp.deserialize(i)
|
5708
|
+
@Tags << tag_tmp
|
5709
|
+
end
|
5710
|
+
end
|
5692
5711
|
end
|
5693
5712
|
end
|
5694
5713
|
|
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.961
|
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-12-
|
11
|
+
date: 2024-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|