tencentcloud-sdk-privatedns 3.0.752 → 3.0.754
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/v20201028/models.rb +16 -3
- 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: 9de501dd5439cb47c275975a472b1eaae8961050
|
4
|
+
data.tar.gz: 92a90c0a2adc232da508149ee89627f065bc9c09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d6560dfebdba500af6958624096a2129bcf15be142f30b766127f8ec15347317fa05f36ab050b263375e4b91c0404aa3a542d0cd5588418d3acc8b10e5573eb
|
7
|
+
data.tar.gz: 3a82d0fcd6607a558232673f6e76b79817ef1b66b8942035b7571492a71bedfab41cf6637770762789f17020805ddecb61b4bf9079520ab8b6d779884a11ac94
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.754
|
data/lib/v20201028/models.rb
CHANGED
@@ -1588,7 +1588,8 @@ module TencentCloud
|
|
1588
1588
|
# @type Remark: String
|
1589
1589
|
# @param VpcSet: 绑定的Vpc列表
|
1590
1590
|
# @type VpcSet: Array
|
1591
|
-
# @param Status:
|
1591
|
+
# @param Status: 私有域绑定VPC状态,未关联vpc:SUSPEND,已关联VPC:ENABLED
|
1592
|
+
# ,关联VPC失败:FAILED
|
1592
1593
|
# @type Status: String
|
1593
1594
|
# @param DnsForwardStatus: 域名递归解析状态:开通:ENABLED, 关闭,DISABLED
|
1594
1595
|
# @type DnsForwardStatus: String
|
@@ -1614,10 +1615,13 @@ module TencentCloud
|
|
1614
1615
|
# @param EndPointName: 终端节点名称
|
1615
1616
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1616
1617
|
# @type EndPointName: String
|
1618
|
+
# @param DeletedVpcSet: 已删除的vpc
|
1619
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1620
|
+
# @type DeletedVpcSet: Array
|
1617
1621
|
|
1618
|
-
attr_accessor :ZoneId, :OwnerUin, :Domain, :CreatedOn, :UpdatedOn, :RecordCount, :Remark, :VpcSet, :Status, :DnsForwardStatus, :Tags, :AccountVpcSet, :IsCustomTld, :CnameSpeedupStatus, :ForwardRuleName, :ForwardRuleType, :ForwardAddress, :EndPointName
|
1622
|
+
attr_accessor :ZoneId, :OwnerUin, :Domain, :CreatedOn, :UpdatedOn, :RecordCount, :Remark, :VpcSet, :Status, :DnsForwardStatus, :Tags, :AccountVpcSet, :IsCustomTld, :CnameSpeedupStatus, :ForwardRuleName, :ForwardRuleType, :ForwardAddress, :EndPointName, :DeletedVpcSet
|
1619
1623
|
|
1620
|
-
def initialize(zoneid=nil, owneruin=nil, domain=nil, createdon=nil, updatedon=nil, recordcount=nil, remark=nil, vpcset=nil, status=nil, dnsforwardstatus=nil, tags=nil, accountvpcset=nil, iscustomtld=nil, cnamespeedupstatus=nil, forwardrulename=nil, forwardruletype=nil, forwardaddress=nil, endpointname=nil)
|
1624
|
+
def initialize(zoneid=nil, owneruin=nil, domain=nil, createdon=nil, updatedon=nil, recordcount=nil, remark=nil, vpcset=nil, status=nil, dnsforwardstatus=nil, tags=nil, accountvpcset=nil, iscustomtld=nil, cnamespeedupstatus=nil, forwardrulename=nil, forwardruletype=nil, forwardaddress=nil, endpointname=nil, deletedvpcset=nil)
|
1621
1625
|
@ZoneId = zoneid
|
1622
1626
|
@OwnerUin = owneruin
|
1623
1627
|
@Domain = domain
|
@@ -1636,6 +1640,7 @@ module TencentCloud
|
|
1636
1640
|
@ForwardRuleType = forwardruletype
|
1637
1641
|
@ForwardAddress = forwardaddress
|
1638
1642
|
@EndPointName = endpointname
|
1643
|
+
@DeletedVpcSet = deletedvpcset
|
1639
1644
|
end
|
1640
1645
|
|
1641
1646
|
def deserialize(params)
|
@@ -1678,6 +1683,14 @@ module TencentCloud
|
|
1678
1683
|
@ForwardRuleType = params['ForwardRuleType']
|
1679
1684
|
@ForwardAddress = params['ForwardAddress']
|
1680
1685
|
@EndPointName = params['EndPointName']
|
1686
|
+
unless params['DeletedVpcSet'].nil?
|
1687
|
+
@DeletedVpcSet = []
|
1688
|
+
params['DeletedVpcSet'].each do |i|
|
1689
|
+
vpcinfo_tmp = VpcInfo.new
|
1690
|
+
vpcinfo_tmp.deserialize(i)
|
1691
|
+
@DeletedVpcSet << vpcinfo_tmp
|
1692
|
+
end
|
1693
|
+
end
|
1681
1694
|
end
|
1682
1695
|
end
|
1683
1696
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-privatedns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.754
|
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-01-
|
11
|
+
date: 2024-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|