tencentcloud-sdk-privatedns 3.0.751 → 3.0.753

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201028/models.rb +16 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6e97d0805a03763af1b9ffc888577021309bab22
4
- data.tar.gz: f5e41cb27e9dd7cbe1b6ed0388ef6a8ca52851c4
3
+ metadata.gz: 3f408e27d08dd36ab4b3be9ba0ec7173d3ea68b6
4
+ data.tar.gz: 491660cd8c17215724ac768b9577498d20100fd4
5
5
  SHA512:
6
- metadata.gz: 36f2dcc0d340d0d88835d1c505e39db562c37388bf17d691b9a7b62bb54128d16f97f23611e7bd665b3bb3eb5ca8ec21e1047d72817e723d64153e01d9842339
7
- data.tar.gz: 97f0e6bf094ddf9934b31d2f27ecb67b8a0c3630e19df5dc58392e7eb7f115cb7423ce792b4239c5762b9ff4cec2364715cdd4ed32fa65fa618b0940a72d3b88
6
+ metadata.gz: 00848f4fa00432f099c54761ea48d2e21f55c2d7f989efb04d9c88b724047fc24b775b9bcdbc5b3ef5637964707aa62154d45bf08ecbbcdf3aa63c42552c61bf
7
+ data.tar.gz: 25ac61b05029254670dfb25110d53c064da903e698eff4adabb576e19afb7a944dd23a4a5941fb4ad7f76675c2aa622376a4cb9af13b4f9b7edca20a0865ff04
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.751
1
+ 3.0.753
@@ -1588,7 +1588,8 @@ module TencentCloud
1588
1588
  # @type Remark: String
1589
1589
  # @param VpcSet: 绑定的Vpc列表
1590
1590
  # @type VpcSet: Array
1591
- # @param Status: 私有域状态:正常解析:ENABLED, 暂停解析:SUSPEND, 锁定:FROZEN
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.751
4
+ version: 3.0.753
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-16 00:00:00.000000000 Z
11
+ date: 2024-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common