tencentcloud-sdk-vpc 3.0.878 → 3.0.880

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 785176cdddf698ebe39f794f7a72893a1039206e
4
- data.tar.gz: 0c6c60c9c5404a92fc10c04576ee4076865da1e9
3
+ metadata.gz: 2d03dc5de58e3494d39e9a92d4ea7b8b5d15a92a
4
+ data.tar.gz: bc8f45b9ef722def5f3b34037c9932a691056d4e
5
5
  SHA512:
6
- metadata.gz: d0b18f6bb1aafa027cd0387b13ae5d29e2bfe644fd3c1c1d5c025728f21cac07bc7e97804e5bae896b1e7e29d2f537cfb36b6e1162c56197418a70edb797bab1
7
- data.tar.gz: ea149dca6efac9f7295b61f64f7e73e3627dd4c84fed195d6e9599ca3e33f35923ab193b10091dae1cb6c0fcd2beaa1a2b8b7c0bc598f4c25b9d9c2e73e11594
6
+ metadata.gz: c19746943e9a938e0f38541ff38ac463b7d38c36eec37f02a7e1141fdae6f12552fd821c4f741dfae7d490a7c37f062c2d29cb6b61cb4e18eb1d48071fb5a4b0
7
+ data.tar.gz: acdad6de561b1f598d2896cea69cc477c625eabde29e406d150ea45bf804893f3e22f543c3c84208a5051f7e40271e57e834fc42f1ecceda9a410c7ad9455054
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.878
1
+ 3.0.880
@@ -3067,6 +3067,8 @@ module TencentCloud
3067
3067
  end
3068
3068
 
3069
3069
  # 本接口(DeleteVpnConnection)用于删除VPN通道。
3070
+ # >?本接口为异步接口
3071
+ # >
3070
3072
 
3071
3073
  # @param request: Request instance for DeleteVpnConnection.
3072
3074
  # @type request: :class:`Tencentcloud::vpc::V20170312::DeleteVpnConnectionRequest`
@@ -840,13 +840,16 @@ module TencentCloud
840
840
  # @type Ipv6Addresses: Array
841
841
  # @param Ipv6AddressCount: 自动分配`IPv6`地址个数,内网IP地址个数总和不能超过配额数。与入参`Ipv6Addresses`合并计算配额。与Ipv6Addresses必填一个。
842
842
  # @type Ipv6AddressCount: Integer
843
+ # @param ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
844
+ # @type ClientToken: String
843
845
 
844
- attr_accessor :NetworkInterfaceId, :Ipv6Addresses, :Ipv6AddressCount
846
+ attr_accessor :NetworkInterfaceId, :Ipv6Addresses, :Ipv6AddressCount, :ClientToken
845
847
 
846
- def initialize(networkinterfaceid=nil, ipv6addresses=nil, ipv6addresscount=nil)
848
+ def initialize(networkinterfaceid=nil, ipv6addresses=nil, ipv6addresscount=nil, clienttoken=nil)
847
849
  @NetworkInterfaceId = networkinterfaceid
848
850
  @Ipv6Addresses = ipv6addresses
849
851
  @Ipv6AddressCount = ipv6addresscount
852
+ @ClientToken = clienttoken
850
853
  end
851
854
 
852
855
  def deserialize(params)
@@ -860,6 +863,7 @@ module TencentCloud
860
863
  end
861
864
  end
862
865
  @Ipv6AddressCount = params['Ipv6AddressCount']
866
+ @ClientToken = params['ClientToken']
863
867
  end
864
868
  end
865
869
 
@@ -16118,8 +16122,8 @@ module TencentCloud
16118
16122
 
16119
16123
  attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
16120
16124
  extend Gem::Deprecate
16121
- deprecate :IntegrityAlgorith, :none, 2024, 7
16122
- deprecate :IntegrityAlgorith=, :none, 2024, 7
16125
+ deprecate :IntegrityAlgorith, :none, 2024, 8
16126
+ deprecate :IntegrityAlgorith=, :none, 2024, 8
16123
16127
 
16124
16128
  def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
16125
16129
  @EncryptAlgorithm = encryptalgorithm
@@ -20646,6 +20650,33 @@ module TencentCloud
20646
20650
  end
20647
20651
  end
20648
20652
 
20653
+ # 私网NAT网关跨域信息
20654
+ class PrivateNatCrossDomainInfo < TencentCloud::Common::AbstractModel
20655
+ # @param CcnId: 跨域私网NAT关联的云联网ID
20656
+ # 注意:此字段可能返回 null,表示取不到有效值。
20657
+ # @type CcnId: String
20658
+ # @param LocalVpcId: 跨域私网NAT本端Vpc
20659
+ # 注意:此字段可能返回 null,表示取不到有效值。
20660
+ # @type LocalVpcId: String
20661
+ # @param PeerVpcId: 跨域私网NAT对端Vpc
20662
+ # 注意:此字段可能返回 null,表示取不到有效值。
20663
+ # @type PeerVpcId: String
20664
+
20665
+ attr_accessor :CcnId, :LocalVpcId, :PeerVpcId
20666
+
20667
+ def initialize(ccnid=nil, localvpcid=nil, peervpcid=nil)
20668
+ @CcnId = ccnid
20669
+ @LocalVpcId = localvpcid
20670
+ @PeerVpcId = peervpcid
20671
+ end
20672
+
20673
+ def deserialize(params)
20674
+ @CcnId = params['CcnId']
20675
+ @LocalVpcId = params['LocalVpcId']
20676
+ @PeerVpcId = params['PeerVpcId']
20677
+ end
20678
+ end
20679
+
20649
20680
  # 本端目的IP端口转换复杂结构
20650
20681
  class PrivateNatDestinationIpPortTranslationNatRule < TencentCloud::Common::AbstractModel
20651
20682
  # @param Protocol: 协议
@@ -20708,10 +20739,25 @@ module TencentCloud
20708
20739
  # @param TagSet: 标签键值对。
20709
20740
  # 注意:此字段可能返回 null,表示取不到有效值。
20710
20741
  # @type TagSet: Array
20742
+ # @param DirectConnectGatewayIds: 专线网关唯一`ID`
20743
+ # 注意:此字段可能返回 null,表示取不到有效值。
20744
+ # @type DirectConnectGatewayIds: Array
20745
+ # @param NatType: 私网网关类型
20746
+ # 注意:此字段可能返回 null,表示取不到有效值。
20747
+ # @type NatType: String
20748
+ # @param CrossDomainInfo: 私网NAT跨域信息
20749
+ # 注意:此字段可能返回 null,表示取不到有效值。
20750
+ # @type CrossDomainInfo: :class:`Tencentcloud::Vpc.v20170312.models.PrivateNatCrossDomainInfo`
20751
+ # @param VpcType: 是否VPC型私网网关
20752
+ # 注意:此字段可能返回 null,表示取不到有效值。
20753
+ # @type VpcType: Boolean
20754
+ # @param CcnId: 跨域私网NAT关联的云联网ID
20755
+ # 注意:此字段可能返回 null,表示取不到有效值。
20756
+ # @type CcnId: String
20711
20757
 
20712
- attr_accessor :NatGatewayId, :NatGatewayName, :VpcId, :Status, :CrossDomain, :CreatedTime, :TagSet
20758
+ attr_accessor :NatGatewayId, :NatGatewayName, :VpcId, :Status, :CrossDomain, :CreatedTime, :TagSet, :DirectConnectGatewayIds, :NatType, :CrossDomainInfo, :VpcType, :CcnId
20713
20759
 
20714
- def initialize(natgatewayid=nil, natgatewayname=nil, vpcid=nil, status=nil, crossdomain=nil, createdtime=nil, tagset=nil)
20760
+ def initialize(natgatewayid=nil, natgatewayname=nil, vpcid=nil, status=nil, crossdomain=nil, createdtime=nil, tagset=nil, directconnectgatewayids=nil, nattype=nil, crossdomaininfo=nil, vpctype=nil, ccnid=nil)
20715
20761
  @NatGatewayId = natgatewayid
20716
20762
  @NatGatewayName = natgatewayname
20717
20763
  @VpcId = vpcid
@@ -20719,6 +20765,11 @@ module TencentCloud
20719
20765
  @CrossDomain = crossdomain
20720
20766
  @CreatedTime = createdtime
20721
20767
  @TagSet = tagset
20768
+ @DirectConnectGatewayIds = directconnectgatewayids
20769
+ @NatType = nattype
20770
+ @CrossDomainInfo = crossdomaininfo
20771
+ @VpcType = vpctype
20772
+ @CcnId = ccnid
20722
20773
  end
20723
20774
 
20724
20775
  def deserialize(params)
@@ -20736,6 +20787,14 @@ module TencentCloud
20736
20787
  @TagSet << tag_tmp
20737
20788
  end
20738
20789
  end
20790
+ @DirectConnectGatewayIds = params['DirectConnectGatewayIds']
20791
+ @NatType = params['NatType']
20792
+ unless params['CrossDomainInfo'].nil?
20793
+ @CrossDomainInfo = PrivateNatCrossDomainInfo.new
20794
+ @CrossDomainInfo.deserialize(params['CrossDomainInfo'])
20795
+ end
20796
+ @VpcType = params['VpcType']
20797
+ @CcnId = params['CcnId']
20739
20798
  end
20740
20799
  end
20741
20800
 
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.878
4
+ version: 3.0.880
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-04 00:00:00.000000000 Z
11
+ date: 2024-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common