tencentcloud-sdk-vpc 3.0.1140 → 3.0.1152

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: 2ac6419a7bbcbf1376c84ad20ccb9ba5ec415233
4
- data.tar.gz: b67e8a99dd3c9dfe1e1656f4dcf4f497130316aa
3
+ metadata.gz: cfb1a88192f6efef9572b913c0feb860f1165472
4
+ data.tar.gz: 667b4bb1607b97494bc23997a1907c1031c39495
5
5
  SHA512:
6
- metadata.gz: 346639559625f62f23ac53eca4f637233b958f5eab624c98192f0e87f01fe8c800d878e9a79566b342fb96633933218a93a4ba657aa21393945170c557c629bf
7
- data.tar.gz: ab7c7a7ee688f701578cceb81dc99399937a05f4cf54c135e4d2d2350f7cc4755356d9d57fbde35ef99485d332b5c17ecbd7ffae88735ebeb79113c260a9fbb6
6
+ metadata.gz: ec6503f2c3b5497e7a950b37a88617ae1a2fe55628a361f6953f5480bd6b5b321475f8c8ad56384ab6ef878c8aff970a603676980f20430542c3b7ec6a17803a
7
+ data.tar.gz: 5ce244f5788d9dfc507c5df813994118bf6574c3c55f3b5143450b4b537ae93dc34853c863c052bd5cfa7a9ffc5ba3291a8ef66b8100a22755732eecc11241b4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1140
1
+ 3.0.1152
@@ -371,7 +371,6 @@ module TencentCloud
371
371
  # * 将 EIP 绑定到实例(CVM)上,其本质是将 EIP 绑定到实例上主网卡的主内网 IP 上。
372
372
  # * 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。
373
373
  # * 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。
374
- # * 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。
375
374
  # * 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)。
376
375
  # * EIP 如果欠费或被封堵,则不能被绑定。
377
376
  # * 只有状态为 UNBIND 的 EIP 才能够被绑定。
@@ -3728,6 +3727,30 @@ module TencentCloud
3728
3727
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3729
3728
  end
3730
3729
 
3730
+ # 本接口(DescribeAddressTemplateGroupInstances)用于查询参数模板IP地址组口关联的实例列表。本接口不会返回查询的结果,需要根据返回的RequestId调用DescribeVpcTaskResult接口获取结果。
3731
+
3732
+ # @param request: Request instance for DescribeAddressTemplateGroupInstances.
3733
+ # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeAddressTemplateGroupInstancesRequest`
3734
+ # @rtype: :class:`Tencentcloud::vpc::V20170312::DescribeAddressTemplateGroupInstancesResponse`
3735
+ def DescribeAddressTemplateGroupInstances(request)
3736
+ body = send_request('DescribeAddressTemplateGroupInstances', request.serialize)
3737
+ response = JSON.parse(body)
3738
+ if response['Response'].key?('Error') == false
3739
+ model = DescribeAddressTemplateGroupInstancesResponse.new
3740
+ model.deserialize(response['Response'])
3741
+ model
3742
+ else
3743
+ code = response['Response']['Error']['Code']
3744
+ message = response['Response']['Error']['Message']
3745
+ reqid = response['Response']['RequestId']
3746
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3747
+ end
3748
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3749
+ raise e
3750
+ rescue StandardError => e
3751
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3752
+ end
3753
+
3731
3754
  # 本接口(DescribeAddressTemplateGroups)用于查询IP地址模板集合。
3732
3755
 
3733
3756
  # @param request: Request instance for DescribeAddressTemplateGroups.
@@ -3752,6 +3775,30 @@ module TencentCloud
3752
3775
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3753
3776
  end
3754
3777
 
3778
+ # 本接口(DescribeAddressTemplateInstances)用于查询参数模板IP地址关联的实例列表。本接口不会返回查询的结果,需要根据返回的RequestId调用DescribeVpcTaskResult接口获取结果。
3779
+
3780
+ # @param request: Request instance for DescribeAddressTemplateInstances.
3781
+ # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeAddressTemplateInstancesRequest`
3782
+ # @rtype: :class:`Tencentcloud::vpc::V20170312::DescribeAddressTemplateInstancesResponse`
3783
+ def DescribeAddressTemplateInstances(request)
3784
+ body = send_request('DescribeAddressTemplateInstances', request.serialize)
3785
+ response = JSON.parse(body)
3786
+ if response['Response'].key?('Error') == false
3787
+ model = DescribeAddressTemplateInstancesResponse.new
3788
+ model.deserialize(response['Response'])
3789
+ model
3790
+ else
3791
+ code = response['Response']['Error']['Code']
3792
+ message = response['Response']['Error']['Message']
3793
+ reqid = response['Response']['RequestId']
3794
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3795
+ end
3796
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3797
+ raise e
3798
+ rescue StandardError => e
3799
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3800
+ end
3801
+
3755
3802
  # 本接口(DescribeAddressTemplates)用于查询IP地址模板。
3756
3803
 
3757
3804
  # @param request: Request instance for DescribeAddressTemplates.
@@ -5547,6 +5594,30 @@ module TencentCloud
5547
5594
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5548
5595
  end
5549
5596
 
5597
+ # 本接口(DescribeServiceTemplateGroupInstances)用于查询参数模板协议端口组关联的实例列表。本接口不会返回查询的结果,需要根据返回的RequestId调用DescribeVpcTaskResult接口获取结果。
5598
+
5599
+ # @param request: Request instance for DescribeServiceTemplateGroupInstances.
5600
+ # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeServiceTemplateGroupInstancesRequest`
5601
+ # @rtype: :class:`Tencentcloud::vpc::V20170312::DescribeServiceTemplateGroupInstancesResponse`
5602
+ def DescribeServiceTemplateGroupInstances(request)
5603
+ body = send_request('DescribeServiceTemplateGroupInstances', request.serialize)
5604
+ response = JSON.parse(body)
5605
+ if response['Response'].key?('Error') == false
5606
+ model = DescribeServiceTemplateGroupInstancesResponse.new
5607
+ model.deserialize(response['Response'])
5608
+ model
5609
+ else
5610
+ code = response['Response']['Error']['Code']
5611
+ message = response['Response']['Error']['Message']
5612
+ reqid = response['Response']['RequestId']
5613
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5614
+ end
5615
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5616
+ raise e
5617
+ rescue StandardError => e
5618
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5619
+ end
5620
+
5550
5621
  # 本接口(DescribeServiceTemplateGroups)用于查询协议端口模板集合。
5551
5622
 
5552
5623
  # @param request: Request instance for DescribeServiceTemplateGroups.
@@ -5571,6 +5642,30 @@ module TencentCloud
5571
5642
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5572
5643
  end
5573
5644
 
5645
+ # 本接口(DescribeServiceTemplateInstances)用于查询参数模板协议端口关联的实例列表。本接口不会返回查询的结果,需要根据返回的RequestId调用DescribeVpcTaskResult接口获取结果。
5646
+
5647
+ # @param request: Request instance for DescribeServiceTemplateInstances.
5648
+ # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeServiceTemplateInstancesRequest`
5649
+ # @rtype: :class:`Tencentcloud::vpc::V20170312::DescribeServiceTemplateInstancesResponse`
5650
+ def DescribeServiceTemplateInstances(request)
5651
+ body = send_request('DescribeServiceTemplateInstances', request.serialize)
5652
+ response = JSON.parse(body)
5653
+ if response['Response'].key?('Error') == false
5654
+ model = DescribeServiceTemplateInstancesResponse.new
5655
+ model.deserialize(response['Response'])
5656
+ model
5657
+ else
5658
+ code = response['Response']['Error']['Code']
5659
+ message = response['Response']['Error']['Message']
5660
+ reqid = response['Response']['RequestId']
5661
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5662
+ end
5663
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5664
+ raise e
5665
+ rescue StandardError => e
5666
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5667
+ end
5668
+
5574
5669
  # 本接口(DescribeServiceTemplates)用于查询协议端口模板。
5575
5670
 
5576
5671
  # @param request: Request instance for DescribeServiceTemplates.
@@ -793,8 +793,8 @@ module TencentCloud
793
793
 
794
794
  attr_accessor :AddressCount, :InternetServiceProvider, :InternetChargeType, :InternetMaxBandwidthOut, :AddressChargePrepaid, :AddressType, :AnycastZone, :VipCluster, :ApplicableForCLB, :Tags, :BandwidthPackageId, :AddressName, :DedicatedClusterId, :IsDedicatedAddressPool, :Egress, :AntiDDoSPackageId, :ClientToken
795
795
  extend Gem::Deprecate
796
- deprecate :ApplicableForCLB, :none, 2025, 9
797
- deprecate :ApplicableForCLB=, :none, 2025, 9
796
+ deprecate :ApplicableForCLB, :none, 2025, 10
797
+ deprecate :ApplicableForCLB=, :none, 2025, 10
798
798
 
799
799
  def initialize(addresscount=nil, internetserviceprovider=nil, internetchargetype=nil, internetmaxbandwidthout=nil, addresschargeprepaid=nil, addresstype=nil, anycastzone=nil, vipcluster=nil, applicableforclb=nil, tags=nil, bandwidthpackageid=nil, addressname=nil, dedicatedclusterid=nil, isdedicatedaddresspool=nil, egress=nil, antiddospackageid=nil, clienttoken=nil)
800
800
  @AddressCount = addresscount
@@ -1324,7 +1324,7 @@ module TencentCloud
1324
1324
  # @type NetworkInterfaceId: String
1325
1325
  # @param PrivateIpAddress: 要绑定的内网 IP。如果指定了 `NetworkInterfaceId` 则也必须指定 `PrivateIpAddress` ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 `PrivateIpAddress` 是指定的 `NetworkInterfaceId` 上的一个内网 IP。指定弹性网卡的内网 IP 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的`privateIpAddress`获取。
1326
1326
  # @type PrivateIpAddress: String
1327
- # @param EipDirectConnection: 指定绑定时是否设置直通。弹性公网 IP 直通请参见 [EIP 直通](https://cloud.tencent.com/document/product/1199/41709)。取值:TrueFalse,默认值为 False。当绑定 CVM 实例、EKS 弹性集群时,可设定此参数为 True。此参数目前处于内测中,如需使用,请提交 [工单申请](https://console.cloud.tencent.com/workorder/category?level1_id=6&level2_id=163&source=0&data_title=%E8%B4%9F%E8%BD%BD%E5%9D%87%E8%A1%A1%20CLB&level3_id=1071&queue=96&scene_code=34639&step=2)。
1327
+ # @param EipDirectConnection: 指定绑定时是否设置直通。弹性公网 IP 直通请参见 [EIP 直通](https://cloud.tencent.com/document/product/1199/41709)。取值:truefalse,默认值为 false。当绑定 CVM 实例、EKS 弹性集群时,可设定此参数为 true。此参数目前处于内测中,如需使用,请提交 [工单申请](https://console.cloud.tencent.com/workorder/category?level1_id=6&level2_id=163&source=0&data_title=%E8%B4%9F%E8%BD%BD%E5%9D%87%E8%A1%A1%20CLB&level3_id=1071&queue=96&scene_code=34639&step=2)。
1328
1328
  # @type EipDirectConnection: Boolean
1329
1329
  # @param InstanceRegion: 要绑定的实例所在地域。默认无需填写,仅限GAAP特殊场景需指定实例所在地域。
1330
1330
  # @type InstanceRegion: String
@@ -4821,8 +4821,8 @@ module TencentCloud
4821
4821
 
4822
4822
  attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut, :PublicIpFromSameZone, :NatProductVersion, :DeletionProtectionEnabled
4823
4823
  extend Gem::Deprecate
4824
- deprecate :SubnetId, :none, 2025, 9
4825
- deprecate :SubnetId=, :none, 2025, 9
4824
+ deprecate :SubnetId, :none, 2025, 10
4825
+ deprecate :SubnetId=, :none, 2025, 10
4826
4826
 
4827
4827
  def initialize(natgatewayname=nil, vpcid=nil, internetmaxbandwidthout=nil, maxconcurrentconnection=nil, addresscount=nil, publicipaddresses=nil, zone=nil, tags=nil, subnetid=nil, stockpublicipaddressesbandwidthout=nil, publicipaddressesbandwidthout=nil, publicipfromsamezone=nil, natproductversion=nil, deletionprotectionenabled=nil)
4828
4828
  @NatGatewayName = natgatewayname
@@ -9402,6 +9402,46 @@ module TencentCloud
9402
9402
  end
9403
9403
  end
9404
9404
 
9405
+ # DescribeAddressTemplateGroupInstances请求参数结构体
9406
+ class DescribeAddressTemplateGroupInstancesRequest < TencentCloud::Common::AbstractModel
9407
+ # @param AddressTemplateGroupId: IP地址组实例ID。例如:ipmg-12345678。
9408
+ # @type AddressTemplateGroupId: String
9409
+ # @param Offset: 偏移量,默认为0。
9410
+ # @type Offset: Integer
9411
+ # @param Limit: 返回数量,默认为20,最大值为100。
9412
+ # @type Limit: Integer
9413
+
9414
+ attr_accessor :AddressTemplateGroupId, :Offset, :Limit
9415
+
9416
+ def initialize(addresstemplategroupid=nil, offset=nil, limit=nil)
9417
+ @AddressTemplateGroupId = addresstemplategroupid
9418
+ @Offset = offset
9419
+ @Limit = limit
9420
+ end
9421
+
9422
+ def deserialize(params)
9423
+ @AddressTemplateGroupId = params['AddressTemplateGroupId']
9424
+ @Offset = params['Offset']
9425
+ @Limit = params['Limit']
9426
+ end
9427
+ end
9428
+
9429
+ # DescribeAddressTemplateGroupInstances返回参数结构体
9430
+ class DescribeAddressTemplateGroupInstancesResponse < TencentCloud::Common::AbstractModel
9431
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9432
+ # @type RequestId: String
9433
+
9434
+ attr_accessor :RequestId
9435
+
9436
+ def initialize(requestid=nil)
9437
+ @RequestId = requestid
9438
+ end
9439
+
9440
+ def deserialize(params)
9441
+ @RequestId = params['RequestId']
9442
+ end
9443
+ end
9444
+
9405
9445
  # DescribeAddressTemplateGroups请求参数结构体
9406
9446
  class DescribeAddressTemplateGroupsRequest < TencentCloud::Common::AbstractModel
9407
9447
  # @param Filters: 过滤条件。
@@ -9486,6 +9526,46 @@ module TencentCloud
9486
9526
  end
9487
9527
  end
9488
9528
 
9529
+ # DescribeAddressTemplateInstances请求参数结构体
9530
+ class DescribeAddressTemplateInstancesRequest < TencentCloud::Common::AbstractModel
9531
+ # @param AddressTemplateId: IP地址实例ID。例如:ipm-12345678。
9532
+ # @type AddressTemplateId: String
9533
+ # @param Offset: 偏移量,默认为0。
9534
+ # @type Offset: Integer
9535
+ # @param Limit: 返回数量,默认为20,最大值为100。
9536
+ # @type Limit: Integer
9537
+
9538
+ attr_accessor :AddressTemplateId, :Offset, :Limit
9539
+
9540
+ def initialize(addresstemplateid=nil, offset=nil, limit=nil)
9541
+ @AddressTemplateId = addresstemplateid
9542
+ @Offset = offset
9543
+ @Limit = limit
9544
+ end
9545
+
9546
+ def deserialize(params)
9547
+ @AddressTemplateId = params['AddressTemplateId']
9548
+ @Offset = params['Offset']
9549
+ @Limit = params['Limit']
9550
+ end
9551
+ end
9552
+
9553
+ # DescribeAddressTemplateInstances返回参数结构体
9554
+ class DescribeAddressTemplateInstancesResponse < TencentCloud::Common::AbstractModel
9555
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9556
+ # @type RequestId: String
9557
+
9558
+ attr_accessor :RequestId
9559
+
9560
+ def initialize(requestid=nil)
9561
+ @RequestId = requestid
9562
+ end
9563
+
9564
+ def deserialize(params)
9565
+ @RequestId = params['RequestId']
9566
+ end
9567
+ end
9568
+
9489
9569
  # DescribeAddressTemplates请求参数结构体
9490
9570
  class DescribeAddressTemplatesRequest < TencentCloud::Common::AbstractModel
9491
9571
  # @param Filters: 过滤条件。
@@ -14211,6 +14291,46 @@ module TencentCloud
14211
14291
  end
14212
14292
  end
14213
14293
 
14294
+ # DescribeServiceTemplateGroupInstances请求参数结构体
14295
+ class DescribeServiceTemplateGroupInstancesRequest < TencentCloud::Common::AbstractModel
14296
+ # @param ServiceTemplateGroupId: 协议端口实例ID。例如:ppmg-12345678。
14297
+ # @type ServiceTemplateGroupId: String
14298
+ # @param Offset: 偏移量,默认为0。
14299
+ # @type Offset: Integer
14300
+ # @param Limit: 返回数量,默认为20,最大值为100。
14301
+ # @type Limit: Integer
14302
+
14303
+ attr_accessor :ServiceTemplateGroupId, :Offset, :Limit
14304
+
14305
+ def initialize(servicetemplategroupid=nil, offset=nil, limit=nil)
14306
+ @ServiceTemplateGroupId = servicetemplategroupid
14307
+ @Offset = offset
14308
+ @Limit = limit
14309
+ end
14310
+
14311
+ def deserialize(params)
14312
+ @ServiceTemplateGroupId = params['ServiceTemplateGroupId']
14313
+ @Offset = params['Offset']
14314
+ @Limit = params['Limit']
14315
+ end
14316
+ end
14317
+
14318
+ # DescribeServiceTemplateGroupInstances返回参数结构体
14319
+ class DescribeServiceTemplateGroupInstancesResponse < TencentCloud::Common::AbstractModel
14320
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14321
+ # @type RequestId: String
14322
+
14323
+ attr_accessor :RequestId
14324
+
14325
+ def initialize(requestid=nil)
14326
+ @RequestId = requestid
14327
+ end
14328
+
14329
+ def deserialize(params)
14330
+ @RequestId = params['RequestId']
14331
+ end
14332
+ end
14333
+
14214
14334
  # DescribeServiceTemplateGroups请求参数结构体
14215
14335
  class DescribeServiceTemplateGroupsRequest < TencentCloud::Common::AbstractModel
14216
14336
  # @param Filters: 过滤条件。
@@ -14295,6 +14415,46 @@ module TencentCloud
14295
14415
  end
14296
14416
  end
14297
14417
 
14418
+ # DescribeServiceTemplateInstances请求参数结构体
14419
+ class DescribeServiceTemplateInstancesRequest < TencentCloud::Common::AbstractModel
14420
+ # @param ServiceTemplateId: 协议端口实例ID。例如:ppm-12345678。
14421
+ # @type ServiceTemplateId: String
14422
+ # @param Offset: 偏移量,默认为0。
14423
+ # @type Offset: Integer
14424
+ # @param Limit: 返回数量,默认为20,最大值为100。
14425
+ # @type Limit: Integer
14426
+
14427
+ attr_accessor :ServiceTemplateId, :Offset, :Limit
14428
+
14429
+ def initialize(servicetemplateid=nil, offset=nil, limit=nil)
14430
+ @ServiceTemplateId = servicetemplateid
14431
+ @Offset = offset
14432
+ @Limit = limit
14433
+ end
14434
+
14435
+ def deserialize(params)
14436
+ @ServiceTemplateId = params['ServiceTemplateId']
14437
+ @Offset = params['Offset']
14438
+ @Limit = params['Limit']
14439
+ end
14440
+ end
14441
+
14442
+ # DescribeServiceTemplateInstances返回参数结构体
14443
+ class DescribeServiceTemplateInstancesResponse < TencentCloud::Common::AbstractModel
14444
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14445
+ # @type RequestId: String
14446
+
14447
+ attr_accessor :RequestId
14448
+
14449
+ def initialize(requestid=nil)
14450
+ @RequestId = requestid
14451
+ end
14452
+
14453
+ def deserialize(params)
14454
+ @RequestId = params['RequestId']
14455
+ end
14456
+ end
14457
+
14298
14458
  # DescribeServiceTemplates请求参数结构体
14299
14459
  class DescribeServiceTemplatesRequest < TencentCloud::Common::AbstractModel
14300
14460
  # @param Filters: 过滤条件。
@@ -15759,7 +15919,7 @@ module TencentCloud
15759
15919
  class DescribeVpcPrivateIpAddressesRequest < TencentCloud::Common::AbstractModel
15760
15920
  # @param VpcId: `VPC`实例`ID`,形如:`vpc-f49l6u0z`。
15761
15921
  # @type VpcId: String
15762
- # @param PrivateIpAddresses: 内网`IP`地址列表,批量查询单次请求最多支持`10`个。
15922
+ # @param PrivateIpAddresses: 内网`IP`地址列表,批量查询单次请求最多支持`100`个。
15763
15923
  # @type PrivateIpAddresses: Array
15764
15924
 
15765
15925
  attr_accessor :VpcId, :PrivateIpAddresses
@@ -18741,8 +18901,8 @@ module TencentCloud
18741
18901
 
18742
18902
  attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
18743
18903
  extend Gem::Deprecate
18744
- deprecate :IntegrityAlgorith, :none, 2025, 9
18745
- deprecate :IntegrityAlgorith=, :none, 2025, 9
18904
+ deprecate :IntegrityAlgorith, :none, 2025, 10
18905
+ deprecate :IntegrityAlgorith=, :none, 2025, 10
18746
18906
 
18747
18907
  def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
18748
18908
  @EncryptAlgorithm = encryptalgorithm
@@ -20129,10 +20289,10 @@ module TencentCloud
20129
20289
 
20130
20290
  attr_accessor :AddressIds, :InternetMaxBandwidthOut, :StartTime, :EndTime
20131
20291
  extend Gem::Deprecate
20132
- deprecate :StartTime, :none, 2025, 9
20133
- deprecate :StartTime=, :none, 2025, 9
20134
- deprecate :EndTime, :none, 2025, 9
20135
- deprecate :EndTime=, :none, 2025, 9
20292
+ deprecate :StartTime, :none, 2025, 10
20293
+ deprecate :StartTime=, :none, 2025, 10
20294
+ deprecate :EndTime, :none, 2025, 10
20295
+ deprecate :EndTime=, :none, 2025, 10
20136
20296
 
20137
20297
  def initialize(addressids=nil, internetmaxbandwidthout=nil, starttime=nil, endtime=nil)
20138
20298
  @AddressIds = addressids
@@ -21766,17 +21926,21 @@ module TencentCloud
21766
21926
  # @type NatGatewayId: String
21767
21927
  # @param NatGatewayName: 私网网关名称,可任意命名,但不得超过60个字符。
21768
21928
  # @type NatGatewayName: String
21929
+ # @param DeletionProtectionEnabled: 私网NAT实例是否开启删除保护
21930
+ # @type DeletionProtectionEnabled: Boolean
21769
21931
 
21770
- attr_accessor :NatGatewayId, :NatGatewayName
21932
+ attr_accessor :NatGatewayId, :NatGatewayName, :DeletionProtectionEnabled
21771
21933
 
21772
- def initialize(natgatewayid=nil, natgatewayname=nil)
21934
+ def initialize(natgatewayid=nil, natgatewayname=nil, deletionprotectionenabled=nil)
21773
21935
  @NatGatewayId = natgatewayid
21774
21936
  @NatGatewayName = natgatewayname
21937
+ @DeletionProtectionEnabled = deletionprotectionenabled
21775
21938
  end
21776
21939
 
21777
21940
  def deserialize(params)
21778
21941
  @NatGatewayId = params['NatGatewayId']
21779
21942
  @NatGatewayName = params['NatGatewayName']
21943
+ @DeletionProtectionEnabled = params['DeletionProtectionEnabled']
21780
21944
  end
21781
21945
  end
21782
21946
 
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.1140
4
+ version: 3.0.1152
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-09-15 00:00:00.000000000 Z
11
+ date: 2025-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-vpc.rb
36
37
  - lib/v20170312/client.rb
37
38
  - lib/v20170312/models.rb
38
- - lib/tencentcloud-sdk-vpc.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: