tencentcloud-sdk-vpc 3.0.1027 → 3.0.1028

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 +54 -18
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50b1e30f236ba78631a837d6c0a4150e6589ce2b
4
- data.tar.gz: 0187f82283d9098dfac73e2ca2c583ec1dcd0fb7
3
+ metadata.gz: 59738f055f291d767fd045fd56d2df8afb62c632
4
+ data.tar.gz: 4023d99560d5466f9a5cfc798a9aa8f83937e01b
5
5
  SHA512:
6
- metadata.gz: d597095e9739c1cb799ecba17ba811fe3cf809904232621d5a8f8311d21f12a9d191f64b2a7baee833b720ce0c9b8f0a6131a571d3f02df5127d47c51a2186ee
7
- data.tar.gz: 1fd052aa9950d9d5d31546f249f0fce01ffab87e3074ff8b0cb2385316db0fe5209b079f040f4965909601bcc21b7f6185c2b8401a8fd7adea5439bd0f26f8ba
6
+ metadata.gz: 886b76a58a872b0b1f3b1e871a02ffb99bfb9150a1314dc0ae93fe8b34257458828f678eb016a6f5f48be9b527289bad86b5cbde302f31dc1a37ca884f156208
7
+ data.tar.gz: e00ce43e2e21f005e8feeda1c054bc2473a59b72b3e350eb38cb8fb9a0b62febe0ea30eaa8006aa23f999cfa9d6255ec8441724ddb44af0093326adba33a804e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1027
1
+ 3.0.1028
@@ -6166,10 +6166,12 @@ module TencentCloud
6166
6166
  # @type SecurityGroupId: String
6167
6167
  # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
6168
6168
  # @type Tags: Array
6169
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4
6170
+ # @type IpAddressType: String
6169
6171
 
6170
- attr_accessor :VpcId, :SubnetId, :EndPointName, :EndPointServiceId, :EndPointVip, :SecurityGroupId, :Tags
6172
+ attr_accessor :VpcId, :SubnetId, :EndPointName, :EndPointServiceId, :EndPointVip, :SecurityGroupId, :Tags, :IpAddressType
6171
6173
 
6172
- def initialize(vpcid=nil, subnetid=nil, endpointname=nil, endpointserviceid=nil, endpointvip=nil, securitygroupid=nil, tags=nil)
6174
+ def initialize(vpcid=nil, subnetid=nil, endpointname=nil, endpointserviceid=nil, endpointvip=nil, securitygroupid=nil, tags=nil, ipaddresstype=nil)
6173
6175
  @VpcId = vpcid
6174
6176
  @SubnetId = subnetid
6175
6177
  @EndPointName = endpointname
@@ -6177,6 +6179,7 @@ module TencentCloud
6177
6179
  @EndPointVip = endpointvip
6178
6180
  @SecurityGroupId = securitygroupid
6179
6181
  @Tags = tags
6182
+ @IpAddressType = ipaddresstype
6180
6183
  end
6181
6184
 
6182
6185
  def deserialize(params)
@@ -6194,6 +6197,7 @@ module TencentCloud
6194
6197
  @Tags << tag_tmp
6195
6198
  end
6196
6199
  end
6200
+ @IpAddressType = params['IpAddressType']
6197
6201
  end
6198
6202
  end
6199
6203
 
@@ -6236,10 +6240,12 @@ module TencentCloud
6236
6240
  # @type ServiceType: String
6237
6241
  # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
6238
6242
  # @type Tags: Array
6243
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
6244
+ # @type IpAddressType: String
6239
6245
 
6240
- attr_accessor :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId, :IsPassService, :ServiceType, :Tags
6246
+ attr_accessor :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId, :IsPassService, :ServiceType, :Tags, :IpAddressType
6241
6247
 
6242
- def initialize(vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil, ispassservice=nil, servicetype=nil, tags=nil)
6248
+ def initialize(vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil, ispassservice=nil, servicetype=nil, tags=nil, ipaddresstype=nil)
6243
6249
  @VpcId = vpcid
6244
6250
  @EndPointServiceName = endpointservicename
6245
6251
  @AutoAcceptFlag = autoacceptflag
@@ -6247,6 +6253,7 @@ module TencentCloud
6247
6253
  @IsPassService = ispassservice
6248
6254
  @ServiceType = servicetype
6249
6255
  @Tags = tags
6256
+ @IpAddressType = ipaddresstype
6250
6257
  end
6251
6258
 
6252
6259
  def deserialize(params)
@@ -6264,6 +6271,7 @@ module TencentCloud
6264
6271
  @Tags << tag_tmp
6265
6272
  end
6266
6273
  end
6274
+ @IpAddressType = params['IpAddressType']
6267
6275
  end
6268
6276
  end
6269
6277
 
@@ -8721,15 +8729,19 @@ module TencentCloud
8721
8729
  class DeleteVpcEndPointRequest < TencentCloud::Common::AbstractModel
8722
8730
  # @param EndPointId: 终端节点ID。
8723
8731
  # @type EndPointId: String
8732
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
8733
+ # @type IpAddressType: String
8724
8734
 
8725
- attr_accessor :EndPointId
8735
+ attr_accessor :EndPointId, :IpAddressType
8726
8736
 
8727
- def initialize(endpointid=nil)
8737
+ def initialize(endpointid=nil, ipaddresstype=nil)
8728
8738
  @EndPointId = endpointid
8739
+ @IpAddressType = ipaddresstype
8729
8740
  end
8730
8741
 
8731
8742
  def deserialize(params)
8732
8743
  @EndPointId = params['EndPointId']
8744
+ @IpAddressType = params['IpAddressType']
8733
8745
  end
8734
8746
  end
8735
8747
 
@@ -8753,15 +8765,19 @@ module TencentCloud
8753
8765
  class DeleteVpcEndPointServiceRequest < TencentCloud::Common::AbstractModel
8754
8766
  # @param EndPointServiceId: 终端节点ID。
8755
8767
  # @type EndPointServiceId: String
8768
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
8769
+ # @type IpAddressType: String
8756
8770
 
8757
- attr_accessor :EndPointServiceId
8771
+ attr_accessor :EndPointServiceId, :IpAddressType
8758
8772
 
8759
- def initialize(endpointserviceid=nil)
8773
+ def initialize(endpointserviceid=nil, ipaddresstype=nil)
8760
8774
  @EndPointServiceId = endpointserviceid
8775
+ @IpAddressType = ipaddresstype
8761
8776
  end
8762
8777
 
8763
8778
  def deserialize(params)
8764
8779
  @EndPointServiceId = params['EndPointServiceId']
8780
+ @IpAddressType = params['IpAddressType']
8765
8781
  end
8766
8782
  end
8767
8783
 
@@ -14857,14 +14873,17 @@ module TencentCloud
14857
14873
  # @type Limit: Integer
14858
14874
  # @param EndPointId: 终端节点ID列表。
14859
14875
  # @type EndPointId: Array
14876
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
14877
+ # @type IpAddressType: String
14860
14878
 
14861
- attr_accessor :Filters, :Offset, :Limit, :EndPointId
14879
+ attr_accessor :Filters, :Offset, :Limit, :EndPointId, :IpAddressType
14862
14880
 
14863
- def initialize(filters=nil, offset=nil, limit=nil, endpointid=nil)
14881
+ def initialize(filters=nil, offset=nil, limit=nil, endpointid=nil, ipaddresstype=nil)
14864
14882
  @Filters = filters
14865
14883
  @Offset = offset
14866
14884
  @Limit = limit
14867
14885
  @EndPointId = endpointid
14886
+ @IpAddressType = ipaddresstype
14868
14887
  end
14869
14888
 
14870
14889
  def deserialize(params)
@@ -14879,6 +14898,7 @@ module TencentCloud
14879
14898
  @Offset = params['Offset']
14880
14899
  @Limit = params['Limit']
14881
14900
  @EndPointId = params['EndPointId']
14901
+ @IpAddressType = params['IpAddressType']
14882
14902
  end
14883
14903
  end
14884
14904
 
@@ -14929,15 +14949,18 @@ module TencentCloud
14929
14949
  # @type EndPointServiceIds: Array
14930
14950
  # @param IsListAuthorizedEndPointService: <li>不支持同时传入参数 Filters 。</li> <li>列出授权给当前账号的终端节点服务信息。可以配合EndPointServiceIds参数进行过滤,哪些终端节点服务授权了该账户。</li>
14931
14951
  # @type IsListAuthorizedEndPointService: Boolean
14952
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
14953
+ # @type IpAddressType: String
14932
14954
 
14933
- attr_accessor :Filters, :Offset, :Limit, :EndPointServiceIds, :IsListAuthorizedEndPointService
14955
+ attr_accessor :Filters, :Offset, :Limit, :EndPointServiceIds, :IsListAuthorizedEndPointService, :IpAddressType
14934
14956
 
14935
- def initialize(filters=nil, offset=nil, limit=nil, endpointserviceids=nil, islistauthorizedendpointservice=nil)
14957
+ def initialize(filters=nil, offset=nil, limit=nil, endpointserviceids=nil, islistauthorizedendpointservice=nil, ipaddresstype=nil)
14936
14958
  @Filters = filters
14937
14959
  @Offset = offset
14938
14960
  @Limit = limit
14939
14961
  @EndPointServiceIds = endpointserviceids
14940
14962
  @IsListAuthorizedEndPointService = islistauthorizedendpointservice
14963
+ @IpAddressType = ipaddresstype
14941
14964
  end
14942
14965
 
14943
14966
  def deserialize(params)
@@ -14953,6 +14976,7 @@ module TencentCloud
14953
14976
  @Limit = params['Limit']
14954
14977
  @EndPointServiceIds = params['EndPointServiceIds']
14955
14978
  @IsListAuthorizedEndPointService = params['IsListAuthorizedEndPointService']
14979
+ @IpAddressType = params['IpAddressType']
14956
14980
  end
14957
14981
  end
14958
14982
 
@@ -17233,19 +17257,23 @@ module TencentCloud
17233
17257
  # @param AcceptFlag: 是否接受终端节点连接请求。
17234
17258
  # <li> true:自动接受。</li> <li> false:不自动接受。</li>
17235
17259
  # @type AcceptFlag: Boolean
17260
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
17261
+ # @type IpAddressType: String
17236
17262
 
17237
- attr_accessor :EndPointServiceId, :EndPointId, :AcceptFlag
17263
+ attr_accessor :EndPointServiceId, :EndPointId, :AcceptFlag, :IpAddressType
17238
17264
 
17239
- def initialize(endpointserviceid=nil, endpointid=nil, acceptflag=nil)
17265
+ def initialize(endpointserviceid=nil, endpointid=nil, acceptflag=nil, ipaddresstype=nil)
17240
17266
  @EndPointServiceId = endpointserviceid
17241
17267
  @EndPointId = endpointid
17242
17268
  @AcceptFlag = acceptflag
17269
+ @IpAddressType = ipaddresstype
17243
17270
  end
17244
17271
 
17245
17272
  def deserialize(params)
17246
17273
  @EndPointServiceId = params['EndPointServiceId']
17247
17274
  @EndPointId = params['EndPointId']
17248
17275
  @AcceptFlag = params['AcceptFlag']
17276
+ @IpAddressType = params['IpAddressType']
17249
17277
  end
17250
17278
  end
17251
17279
 
@@ -21813,19 +21841,23 @@ module TencentCloud
21813
21841
  # @type EndPointName: String
21814
21842
  # @param SecurityGroupIds: 安全组ID列表。
21815
21843
  # @type SecurityGroupIds: Array
21844
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
21845
+ # @type IpAddressType: String
21816
21846
 
21817
- attr_accessor :EndPointId, :EndPointName, :SecurityGroupIds
21847
+ attr_accessor :EndPointId, :EndPointName, :SecurityGroupIds, :IpAddressType
21818
21848
 
21819
- def initialize(endpointid=nil, endpointname=nil, securitygroupids=nil)
21849
+ def initialize(endpointid=nil, endpointname=nil, securitygroupids=nil, ipaddresstype=nil)
21820
21850
  @EndPointId = endpointid
21821
21851
  @EndPointName = endpointname
21822
21852
  @SecurityGroupIds = securitygroupids
21853
+ @IpAddressType = ipaddresstype
21823
21854
  end
21824
21855
 
21825
21856
  def deserialize(params)
21826
21857
  @EndPointId = params['EndPointId']
21827
21858
  @EndPointName = params['EndPointName']
21828
21859
  @SecurityGroupIds = params['SecurityGroupIds']
21860
+ @IpAddressType = params['IpAddressType']
21829
21861
  end
21830
21862
  end
21831
21863
 
@@ -21857,15 +21889,18 @@ module TencentCloud
21857
21889
  # @type AutoAcceptFlag: Boolean
21858
21890
  # @param ServiceInstanceId: 后端服务的ID,比如lb-xxx。
21859
21891
  # @type ServiceInstanceId: String
21892
+ # @param IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
21893
+ # @type IpAddressType: String
21860
21894
 
21861
- attr_accessor :EndPointServiceId, :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId
21895
+ attr_accessor :EndPointServiceId, :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId, :IpAddressType
21862
21896
 
21863
- def initialize(endpointserviceid=nil, vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil)
21897
+ def initialize(endpointserviceid=nil, vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil, ipaddresstype=nil)
21864
21898
  @EndPointServiceId = endpointserviceid
21865
21899
  @VpcId = vpcid
21866
21900
  @EndPointServiceName = endpointservicename
21867
21901
  @AutoAcceptFlag = autoacceptflag
21868
21902
  @ServiceInstanceId = serviceinstanceid
21903
+ @IpAddressType = ipaddresstype
21869
21904
  end
21870
21905
 
21871
21906
  def deserialize(params)
@@ -21874,6 +21909,7 @@ module TencentCloud
21874
21909
  @EndPointServiceName = params['EndPointServiceName']
21875
21910
  @AutoAcceptFlag = params['AutoAcceptFlag']
21876
21911
  @ServiceInstanceId = params['ServiceInstanceId']
21912
+ @IpAddressType = params['IpAddressType']
21877
21913
  end
21878
21914
  end
21879
21915
 
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.1027
4
+ version: 3.0.1028
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common