tencentcloud-sdk-vpc 3.0.865 → 3.0.867

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +81 -19
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ed290fac8bd4286dfc54dfcb23119b10ac429d5
4
- data.tar.gz: c2ce5ae4992fa5250246ca640e6a2aa6fae0e4dc
3
+ metadata.gz: c6dc9344d9602f03a5e90723f05c21593ed7e007
4
+ data.tar.gz: aab01345c0c2589889add642daca701a65f4ea4e
5
5
  SHA512:
6
- metadata.gz: 0323053eabb75f9eb473de8ca8d99df877e73cd9154bc9172b3abe79838225b71b0c0011c633b01db89df1ceefb050f7cefbcd2abedf7c4627779b3cddd534ac
7
- data.tar.gz: 007fed8c7cb4a4f9389d82e8ccaf015dd187029b16bd7d7c130744d7317ebf7dc3bdf582fc8ac95f23cdf4e21264159eab86f094a8325fd9481c73c24c71640e
6
+ metadata.gz: 936f1ccb4b14e5137e4332cc06ce501756f4d759fbd9eb04b19c4099206859c71c355aab1eb7fde76c187f86de79c1f289b3d59ba7a649d65c1815cb433f4265
7
+ data.tar.gz: 20a48f554fe68c252e2eb99c5946002f65f923119384d8d1078fc102130880f946307128cd85ca04a8fa34d9f6cbd26e9ea3a43eb0140ebda3930e2c3da75278
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.865
1
+ 3.0.867
@@ -2160,15 +2160,19 @@ module TencentCloud
2160
2160
  # @param RouteTableId: 实例关联的路由表ID。
2161
2161
  # 注意:此字段可能返回 null,表示取不到有效值。
2162
2162
  # @type RouteTableId: String
2163
+ # @param OrderType: 实例付费方式
2164
+ # 注意:此字段可能返回 null,表示取不到有效值。
2165
+ # @type OrderType: String
2163
2166
 
2164
- attr_accessor :InstanceId, :InstanceRegion, :InstanceType, :Description, :RouteTableId
2167
+ attr_accessor :InstanceId, :InstanceRegion, :InstanceType, :Description, :RouteTableId, :OrderType
2165
2168
 
2166
- def initialize(instanceid=nil, instanceregion=nil, instancetype=nil, description=nil, routetableid=nil)
2169
+ def initialize(instanceid=nil, instanceregion=nil, instancetype=nil, description=nil, routetableid=nil, ordertype=nil)
2167
2170
  @InstanceId = instanceid
2168
2171
  @InstanceRegion = instanceregion
2169
2172
  @InstanceType = instancetype
2170
2173
  @Description = description
2171
2174
  @RouteTableId = routetableid
2175
+ @OrderType = ordertype
2172
2176
  end
2173
2177
 
2174
2178
  def deserialize(params)
@@ -2177,6 +2181,7 @@ module TencentCloud
2177
2181
  @InstanceType = params['InstanceType']
2178
2182
  @Description = params['Description']
2179
2183
  @RouteTableId = params['RouteTableId']
2184
+ @OrderType = params['OrderType']
2180
2185
  end
2181
2186
  end
2182
2187
 
@@ -3778,31 +3783,35 @@ module TencentCloud
3778
3783
  class CreateHaVipRequest < TencentCloud::Common::AbstractModel
3779
3784
  # @param VpcId: `HAVIP`所在私有网络`ID`。
3780
3785
  # @type VpcId: String
3781
- # @param SubnetId: `HAVIP`所在子网`ID`。
3782
- # @type SubnetId: String
3783
3786
  # @param HaVipName: `HAVIP`名称。
3784
3787
  # @type HaVipName: String
3788
+ # @param SubnetId: `HAVIP`所在子网`ID`。
3789
+ # @type SubnetId: String
3785
3790
  # @param Vip: 指定虚拟IP地址,必须在`VPC`网段内且未被占用。不指定则自动分配。
3786
3791
  # @type Vip: String
3787
3792
  # @param NetworkInterfaceId: `HAVIP`所在弹性网卡`ID`。
3788
3793
  # @type NetworkInterfaceId: String
3794
+ # @param CheckAssociate: 是否开启`HAVIP`漂移时子机或网卡范围的校验。默认不开启。
3795
+ # @type CheckAssociate: Boolean
3789
3796
 
3790
- attr_accessor :VpcId, :SubnetId, :HaVipName, :Vip, :NetworkInterfaceId
3797
+ attr_accessor :VpcId, :HaVipName, :SubnetId, :Vip, :NetworkInterfaceId, :CheckAssociate
3791
3798
 
3792
- def initialize(vpcid=nil, subnetid=nil, havipname=nil, vip=nil, networkinterfaceid=nil)
3799
+ def initialize(vpcid=nil, havipname=nil, subnetid=nil, vip=nil, networkinterfaceid=nil, checkassociate=nil)
3793
3800
  @VpcId = vpcid
3794
- @SubnetId = subnetid
3795
3801
  @HaVipName = havipname
3802
+ @SubnetId = subnetid
3796
3803
  @Vip = vip
3797
3804
  @NetworkInterfaceId = networkinterfaceid
3805
+ @CheckAssociate = checkassociate
3798
3806
  end
3799
3807
 
3800
3808
  def deserialize(params)
3801
3809
  @VpcId = params['VpcId']
3802
- @SubnetId = params['SubnetId']
3803
3810
  @HaVipName = params['HaVipName']
3811
+ @SubnetId = params['SubnetId']
3804
3812
  @Vip = params['Vip']
3805
3813
  @NetworkInterfaceId = params['NetworkInterfaceId']
3814
+ @CheckAssociate = params['CheckAssociate']
3806
3815
  end
3807
3816
  end
3808
3817
 
@@ -6015,10 +6024,16 @@ module TencentCloud
6015
6024
  # @type State: String
6016
6025
  # @param CreatedTime: 审批单创建时间。
6017
6026
  # @type CreatedTime: String
6027
+ # @param LegalPersonId: 法定代表人身份证号。
6028
+ # 注意:此字段可能返回 null,表示取不到有效值。
6029
+ # @type LegalPersonId: String
6030
+ # @param LegalPersonIdCard: 法定代表人身份证。
6031
+ # 注意:此字段可能返回 null,表示取不到有效值。
6032
+ # @type LegalPersonIdCard: String
6018
6033
 
6019
- attr_accessor :ServiceProvider, :ComplianceId, :Company, :UniformSocialCreditCode, :LegalPerson, :IssuingAuthority, :BusinessLicense, :BusinessAddress, :PostCode, :Manager, :ManagerId, :ManagerIdCard, :ManagerAddress, :ManagerTelephone, :Email, :ServiceHandlingForm, :AuthorizationLetter, :SafetyCommitment, :ServiceStartDate, :ServiceEndDate, :State, :CreatedTime
6034
+ attr_accessor :ServiceProvider, :ComplianceId, :Company, :UniformSocialCreditCode, :LegalPerson, :IssuingAuthority, :BusinessLicense, :BusinessAddress, :PostCode, :Manager, :ManagerId, :ManagerIdCard, :ManagerAddress, :ManagerTelephone, :Email, :ServiceHandlingForm, :AuthorizationLetter, :SafetyCommitment, :ServiceStartDate, :ServiceEndDate, :State, :CreatedTime, :LegalPersonId, :LegalPersonIdCard
6020
6035
 
6021
- def initialize(serviceprovider=nil, complianceid=nil, company=nil, uniformsocialcreditcode=nil, legalperson=nil, issuingauthority=nil, businesslicense=nil, businessaddress=nil, postcode=nil, manager=nil, managerid=nil, manageridcard=nil, manageraddress=nil, managertelephone=nil, email=nil, servicehandlingform=nil, authorizationletter=nil, safetycommitment=nil, servicestartdate=nil, serviceenddate=nil, state=nil, createdtime=nil)
6036
+ def initialize(serviceprovider=nil, complianceid=nil, company=nil, uniformsocialcreditcode=nil, legalperson=nil, issuingauthority=nil, businesslicense=nil, businessaddress=nil, postcode=nil, manager=nil, managerid=nil, manageridcard=nil, manageraddress=nil, managertelephone=nil, email=nil, servicehandlingform=nil, authorizationletter=nil, safetycommitment=nil, servicestartdate=nil, serviceenddate=nil, state=nil, createdtime=nil, legalpersonid=nil, legalpersonidcard=nil)
6022
6037
  @ServiceProvider = serviceprovider
6023
6038
  @ComplianceId = complianceid
6024
6039
  @Company = company
@@ -6041,6 +6056,8 @@ module TencentCloud
6041
6056
  @ServiceEndDate = serviceenddate
6042
6057
  @State = state
6043
6058
  @CreatedTime = createdtime
6059
+ @LegalPersonId = legalpersonid
6060
+ @LegalPersonIdCard = legalpersonidcard
6044
6061
  end
6045
6062
 
6046
6063
  def deserialize(params)
@@ -6066,6 +6083,8 @@ module TencentCloud
6066
6083
  @ServiceEndDate = params['ServiceEndDate']
6067
6084
  @State = params['State']
6068
6085
  @CreatedTime = params['CreatedTime']
6086
+ @LegalPersonId = params['LegalPersonId']
6087
+ @LegalPersonIdCard = params['LegalPersonIdCard']
6069
6088
  end
6070
6089
  end
6071
6090
 
@@ -9841,13 +9860,7 @@ module TencentCloud
9841
9860
  class DescribeHaVipsRequest < TencentCloud::Common::AbstractModel
9842
9861
  # @param HaVipIds: `HAVIP`唯一`ID`,形如:`havip-9o233uri`。
9843
9862
  # @type HaVipIds: Array
9844
- # @param Filters: 过滤条件,参数不支持同时指定`HaVipIds`和`Filters`。
9845
- # <li>havip-id - String - `HAVIP`唯一`ID`,形如:`havip-9o233uri`。</li>
9846
- # <li>havip-name - String - `HAVIP`名称。</li>
9847
- # <li>vpc-id - String - `HAVIP`所在私有网络`ID`。</li>
9848
- # <li>subnet-id - String - `HAVIP`所在子网`ID`。</li>
9849
- # <li>vip - String - `HAVIP`的地址`VIP`。</li>
9850
- # <li>address-ip - String - `HAVIP`绑定的弹性公网`IP`。</li>
9863
+ # @param Filters: 过滤条件,参数不支持同时指定`HaVipIds`和`Filters`。<li>havip-id - String - `HAVIP`唯一`ID`,形如:`havip-9o233uri`。</li><li>havip-name - String - `HAVIP`名称。</li><li>vpc-id - String - `HAVIP`所在私有网络`ID`。</li><li>subnet-id - String - `HAVIP`所在子网`ID`。</li><li>vip - String - `HAVIP`的地址`VIP`。</li><li>address-ip - String - `HAVIP`绑定的弹性公网`IP`。</li><li>havip-association.instance-id - String - `HAVIP`绑定的子机或网卡。</li><li>havip-association.instance-type - String - `HAVIP`绑定的类型,取值:CVM, ENI。</li><li>check-associate - Bool - 是否开启HaVip飘移时校验绑定的子机或网卡。</li><li>cdc-id - String - CDC实例ID。</li>
9851
9864
  # @type Filters: Array
9852
9865
  # @param Offset: 偏移量,默认为0。
9853
9866
  # @type Offset: Integer
@@ -15803,10 +15816,19 @@ module TencentCloud
15803
15816
  # @type CreatedTime: String
15804
15817
  # @param Business: 使用havip的业务标识。
15805
15818
  # @type Business: String
15819
+ # @param HaVipAssociationSet: `HAVIP`的飘移范围。
15820
+ # 注意:此字段可能返回 null,表示取不到有效值。
15821
+ # @type HaVipAssociationSet: Array
15822
+ # @param CheckAssociate: 是否开启`HAVIP`的飘移范围校验。
15823
+ # 注意:此字段可能返回 null,表示取不到有效值。
15824
+ # @type CheckAssociate: Boolean
15825
+ # @param FlushedTime: HAVIP 刷新时间。该参数只作为出参数。以下场景会触发 FlushTime 被刷新:1)子机发出免费 ARP 触发 HAVIP 漂移;2)手动HAVIP解绑网卡; 没有更新时默认值:0000-00-00 00:00:00
15826
+ # 注意:此字段可能返回 null,表示取不到有效值。
15827
+ # @type FlushedTime: String
15806
15828
 
15807
- attr_accessor :HaVipId, :HaVipName, :Vip, :VpcId, :SubnetId, :NetworkInterfaceId, :InstanceId, :AddressIp, :State, :CreatedTime, :Business
15829
+ attr_accessor :HaVipId, :HaVipName, :Vip, :VpcId, :SubnetId, :NetworkInterfaceId, :InstanceId, :AddressIp, :State, :CreatedTime, :Business, :HaVipAssociationSet, :CheckAssociate, :FlushedTime
15808
15830
 
15809
- def initialize(havipid=nil, havipname=nil, vip=nil, vpcid=nil, subnetid=nil, networkinterfaceid=nil, instanceid=nil, addressip=nil, state=nil, createdtime=nil, business=nil)
15831
+ 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)
15810
15832
  @HaVipId = havipid
15811
15833
  @HaVipName = havipname
15812
15834
  @Vip = vip
@@ -15818,6 +15840,9 @@ module TencentCloud
15818
15840
  @State = state
15819
15841
  @CreatedTime = createdtime
15820
15842
  @Business = business
15843
+ @HaVipAssociationSet = havipassociationset
15844
+ @CheckAssociate = checkassociate
15845
+ @FlushedTime = flushedtime
15821
15846
  end
15822
15847
 
15823
15848
  def deserialize(params)
@@ -15832,6 +15857,16 @@ module TencentCloud
15832
15857
  @State = params['State']
15833
15858
  @CreatedTime = params['CreatedTime']
15834
15859
  @Business = params['Business']
15860
+ unless params['HaVipAssociationSet'].nil?
15861
+ @HaVipAssociationSet = []
15862
+ params['HaVipAssociationSet'].each do |i|
15863
+ havipassociation_tmp = HaVipAssociation.new
15864
+ havipassociation_tmp.deserialize(i)
15865
+ @HaVipAssociationSet << havipassociation_tmp
15866
+ end
15867
+ end
15868
+ @CheckAssociate = params['CheckAssociate']
15869
+ @FlushedTime = params['FlushedTime']
15835
15870
  end
15836
15871
  end
15837
15872
 
@@ -15871,6 +15906,33 @@ module TencentCloud
15871
15906
  end
15872
15907
  end
15873
15908
 
15909
+ # HaVip绑定的子机/网卡(用于限制HaVip飘移的范围,并不是真正的飘移动作)。
15910
+ class HaVipAssociation < TencentCloud::Common::AbstractModel
15911
+ # @param HaVipId: HaVip实例唯一ID。
15912
+ # 注意:此字段可能返回 null,表示取不到有效值。
15913
+ # @type HaVipId: String
15914
+ # @param InstanceId: HaVip绑定的子机或网卡唯一ID。
15915
+ # 注意:此字段可能返回 null,表示取不到有效值。
15916
+ # @type InstanceId: String
15917
+ # @param InstanceType: HaVip绑定的类型。取值:CVM, ENI。
15918
+ # 注意:此字段可能返回 null,表示取不到有效值。
15919
+ # @type InstanceType: String
15920
+
15921
+ attr_accessor :HaVipId, :InstanceId, :InstanceType
15922
+
15923
+ def initialize(havipid=nil, instanceid=nil, instancetype=nil)
15924
+ @HaVipId = havipid
15925
+ @InstanceId = instanceid
15926
+ @InstanceType = instancetype
15927
+ end
15928
+
15929
+ def deserialize(params)
15930
+ @HaVipId = params['HaVipId']
15931
+ @InstanceId = params['InstanceId']
15932
+ @InstanceType = params['InstanceType']
15933
+ end
15934
+ end
15935
+
15874
15936
  # HaVipDisassociateAddressIp请求参数结构体
15875
15937
  class HaVipDisassociateAddressIpRequest < TencentCloud::Common::AbstractModel
15876
15938
  # @param HaVipId: `HAVIP`唯一`ID`,形如:`havip-9o233uri`。必须是已绑定`EIP`的`HAVIP`。
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.865
4
+ version: 3.0.867
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-07-15 00:00:00.000000000 Z
11
+ date: 2024-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common