tencentcloud-sdk-vpc 3.0.922 → 3.0.924

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: 0d3d57b2f1081a79f7ac7d2d9bd041ae363caaca
4
- data.tar.gz: 6e920eb706c60c73191e6ae5007683fc451dc5bd
3
+ metadata.gz: fa2a3680aacda5777392958abdf8aaf22482aa58
4
+ data.tar.gz: 8c2a222acd6b49cf9a97c46f32dbccb59cf29883
5
5
  SHA512:
6
- metadata.gz: bd470a630e61b2852c1cbfc21f033a3e6c71e6cf0232e086a33cb187ab026121db48b637fd509d752028e105509010fc612dfc0065422a1a1280f020c6d2fd08
7
- data.tar.gz: 0dda4da86d10541ab4244a27cde7904af3dff888162ae22c6f684490df48cd56ad1402b2a029a878e452bdff80bc301961e096eb664458656be07ab55c8a76c4
6
+ metadata.gz: e52c2d69b4e26fb0744725e2b03494b453e057d534be118e7dd0500afed714fb07dab521712cbd7cfb0767861f484c0777ae24961d804cee4117f1f7296d07da
7
+ data.tar.gz: 3df2b03fd808b78f1905996f93c6245412f89c3a545d33d15a6615583d270e010c0d2b60317c52af80574f91e05fd6ec9782f82ccea952d1302cac158833f8c7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.922
1
+ 3.0.924
@@ -8526,7 +8526,7 @@ module TencentCloud
8526
8526
 
8527
8527
  # **路由条件支持以下四种:**
8528
8528
 
8529
- # - 实例类型: `instance-type`,可选值:私有网络 `VPC`、专线网关 `DIRECTCONNECT`、专线网关 `VPNGW`
8529
+ # - 实例类型: `instance-type`,可选值:私有网络 `VPC`、专线网关 `DIRECTCONNECT`、VPN网关 `VPNGW`
8530
8530
  # - 实例ID: `instance-id`,例如:`dcg-8zljkrft`、`vpc-jdevjrup`,暂不支持 `Edge` 实例
8531
8531
  # - 实例地域: `instance-region`,例如:`ap-guangzhou`<br />产品支持的所有地域列表可通过接口 [DescribeRegions](https://cloud.tencent.com/document/product/1596/77930) 查询,其中参数 `Product` 设置为 `ccn`
8532
8532
  # - 路由前缀: `cidr-block`,例如:`10.1.0.0/16`
@@ -1140,15 +1140,18 @@ module TencentCloud
1140
1140
  # @type PrivateIpAddress: String
1141
1141
  # @param EipDirectConnection: 指定绑定时是否设置直通。弹性公网 IP 直通请参见 [EIP 直通](https://cloud.tencent.com/document/product/1199/41709)。取值:True、False,默认值为 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)。
1142
1142
  # @type EipDirectConnection: Boolean
1143
+ # @param InstanceRegion: 要绑定的实例所在的地域
1144
+ # @type InstanceRegion: String
1143
1145
 
1144
- attr_accessor :AddressId, :InstanceId, :NetworkInterfaceId, :PrivateIpAddress, :EipDirectConnection
1146
+ attr_accessor :AddressId, :InstanceId, :NetworkInterfaceId, :PrivateIpAddress, :EipDirectConnection, :InstanceRegion
1145
1147
 
1146
- def initialize(addressid=nil, instanceid=nil, networkinterfaceid=nil, privateipaddress=nil, eipdirectconnection=nil)
1148
+ def initialize(addressid=nil, instanceid=nil, networkinterfaceid=nil, privateipaddress=nil, eipdirectconnection=nil, instanceregion=nil)
1147
1149
  @AddressId = addressid
1148
1150
  @InstanceId = instanceid
1149
1151
  @NetworkInterfaceId = networkinterfaceid
1150
1152
  @PrivateIpAddress = privateipaddress
1151
1153
  @EipDirectConnection = eipdirectconnection
1154
+ @InstanceRegion = instanceregion
1152
1155
  end
1153
1156
 
1154
1157
  def deserialize(params)
@@ -1157,6 +1160,7 @@ module TencentCloud
1157
1160
  @NetworkInterfaceId = params['NetworkInterfaceId']
1158
1161
  @PrivateIpAddress = params['PrivateIpAddress']
1159
1162
  @EipDirectConnection = params['EipDirectConnection']
1163
+ @InstanceRegion = params['InstanceRegion']
1160
1164
  end
1161
1165
  end
1162
1166
 
@@ -15252,7 +15256,7 @@ module TencentCloud
15252
15256
  class DisableCcnRoutesRequest < TencentCloud::Common::AbstractModel
15253
15257
  # @param CcnId: CCN实例ID。形如:ccn-f49l6u0z。
15254
15258
  # @type CcnId: String
15255
- # @param RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z
15259
+ # @param RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z。可通过DescribeCcnRoutes获取。
15256
15260
  # @type RouteIds: Array
15257
15261
 
15258
15262
  attr_accessor :CcnId, :RouteIds
@@ -15837,7 +15841,7 @@ module TencentCloud
15837
15841
  class EnableCcnRoutesRequest < TencentCloud::Common::AbstractModel
15838
15842
  # @param CcnId: CCN实例ID。形如:ccn-f49l6u0z。
15839
15843
  # @type CcnId: String
15840
- # @param RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z
15844
+ # @param RouteIds: CCN路由策略唯一ID。形如:ccnr-f49l6u0z。可通过DescribeCcnRoutes接口获取。
15841
15845
  # @type RouteIds: Array
15842
15846
 
15843
15847
  attr_accessor :CcnId, :RouteIds
@@ -19753,9 +19757,9 @@ module TencentCloud
19753
19757
  class ModifyRouteTableInfo < TencentCloud::Common::AbstractModel
19754
19758
  # @param RouteTableId: 云联网路由表id。
19755
19759
  # @type RouteTableId: String
19756
- # @param Name: 云联网路由表名称。
19760
+ # @param Name: 云联网路由表名称。Name和Description 两者必传一个。
19757
19761
  # @type Name: String
19758
- # @param Description: 云联网路由表描述。
19762
+ # @param Description: 云联网路由表描述。Name和Description 两者必传一个。
19759
19763
  # @type Description: String
19760
19764
 
19761
19765
  attr_accessor :RouteTableId, :Name, :Description
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.922
4
+ version: 3.0.924
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-10-12 00:00:00.000000000 Z
11
+ date: 2024-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common