tencentcloud-sdk-dc 3.0.977 → 3.0.978

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/v20180410/models.rb +19 -65
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f255616371b10ce8a52b813b99c6786b9d16cdc
4
- data.tar.gz: dd9a12f1a34f00f80924e29e228447ccd168f040
3
+ metadata.gz: 3641b8285c0a508fb5811c678b36f0d6ea49422b
4
+ data.tar.gz: 8a3abe5eb4bb42238381736fa7d8fee5b0b4b787
5
5
  SHA512:
6
- metadata.gz: 3818004ac17689585c6e7839a2857a9d72cd17af35f6f9899f1ff641dc9001b365cef3d70d29bdcc770771b96a48fa5a292c7fb406afaae9733eee9b30add11b
7
- data.tar.gz: fa822a2c4aac7893dce9653ed8b7f7243975b85280e15c386333472f49ce06e584a9241bf68855863431d7764d3020522e6183e3984e98f027cda7c54c9ff7f6
6
+ metadata.gz: 48343613d02949fc00e7d0a89e2bec77ac240310a2183bc0fb7f4c0b8abc7ba0136851307e1bfb16aa49a2e987aa0bbb4cee51739b2c3f475a619d9aa292a893
7
+ data.tar.gz: 25e6bc923579ddd41dc9ae8e8fef06dbde98a7a15d53a91fe37e23cadc20490e4858bb6132a36b7ea7cb21c387e9e9f7d3ed60c2a62ec5ad0b6bcebba1efda7b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.977
1
+ 3.0.978
@@ -208,23 +208,25 @@ module TencentCloud
208
208
  end
209
209
  end
210
210
 
211
- # bgp参数,包括Asn,AuthKey
211
+ # bgp参数,包括CloudAsn,Asn,AuthKey
212
212
  class BgpPeer < TencentCloud::Common::AbstractModel
213
+ # @param CloudAsn: 腾讯侧BGP ASN
214
+ # @type CloudAsn: String
213
215
  # @param Asn: 用户侧BGP ASN
214
- # 注意:此字段可能返回 null,表示取不到有效值。
215
216
  # @type Asn: Integer
216
217
  # @param AuthKey: 用户侧BGP密钥
217
- # 注意:此字段可能返回 null,表示取不到有效值。
218
218
  # @type AuthKey: String
219
219
 
220
- attr_accessor :Asn, :AuthKey
220
+ attr_accessor :CloudAsn, :Asn, :AuthKey
221
221
 
222
- def initialize(asn=nil, authkey=nil)
222
+ def initialize(cloudasn=nil, asn=nil, authkey=nil)
223
+ @CloudAsn = cloudasn
223
224
  @Asn = asn
224
225
  @AuthKey = authkey
225
226
  end
226
227
 
227
228
  def deserialize(params)
229
+ @CloudAsn = params['CloudAsn']
228
230
  @Asn = params['Asn']
229
231
  @AuthKey = params['AuthKey']
230
232
  end
@@ -1263,74 +1265,52 @@ module TencentCloud
1263
1265
  # @param PortType: 用户侧物理专线接入端口类型,取值:100Base-T:百兆电口,1000Base-T(默认值):千兆电口,1000Base-LX:千兆单模光口(10千米),10GBase-T:万兆电口10GBase-LR:万兆单模光口(10千米),默认值,千兆单模光口(10千米)
1264
1266
  # @type PortType: String
1265
1267
  # @param CircuitCode: 运营商或者服务商为物理专线提供的电路编码。
1266
- # 注意:此字段可能返回 null,表示取不到有效值。
1267
1268
  # @type CircuitCode: String
1268
1269
  # @param RedundantDirectConnectId: 冗余物理专线的ID。
1269
1270
  # @type RedundantDirectConnectId: String
1270
1271
  # @param Vlan: 物理专线调试VLAN。默认开启VLAN,自动分配VLAN。
1271
- # 注意:此字段可能返回 null,表示取不到有效值。
1272
1272
  # @type Vlan: Integer
1273
1273
  # @param TencentAddress: 物理专线调试腾讯侧互联IP。
1274
- # 注意:此字段可能返回 null,表示取不到有效值。
1275
1274
  # @type TencentAddress: String
1276
1275
  # @param CustomerAddress: 物理专线调试用户侧互联IP。
1277
- # 注意:此字段可能返回 null,表示取不到有效值。
1278
1276
  # @type CustomerAddress: String
1279
1277
  # @param CustomerName: 物理专线申请者姓名。默认从账户体系获取。
1280
- # 注意:此字段可能返回 null,表示取不到有效值。
1281
1278
  # @type CustomerName: String
1282
1279
  # @param CustomerContactMail: 物理专线申请者联系邮箱。默认从账户体系获取。
1283
- # 注意:此字段可能返回 null,表示取不到有效值。
1284
1280
  # @type CustomerContactMail: String
1285
1281
  # @param CustomerContactNumber: 物理专线申请者联系号码。默认从账户体系获取。
1286
- # 注意:此字段可能返回 null,表示取不到有效值。
1287
1282
  # @type CustomerContactNumber: String
1288
1283
  # @param ExpiredTime: 物理专线的过期时间。
1289
- # 注意:此字段可能返回 null,表示取不到有效值。
1290
1284
  # @type ExpiredTime: String
1291
1285
  # @param ChargeType: 物理专线计费类型。 NON_RECURRING_CHARGE:一次性接入费用;PREPAID_BY_YEAR:按年预付费。
1292
- # 注意:此字段可能返回 null,表示取不到有效值。
1293
1286
  # @type ChargeType: String
1294
1287
  # @param FaultReportContactPerson: 报障联系人。
1295
- # 注意:此字段可能返回 null,表示取不到有效值。
1296
1288
  # @type FaultReportContactPerson: String
1297
1289
  # @param FaultReportContactNumber: 报障联系电话。
1298
- # 注意:此字段可能返回 null,表示取不到有效值。
1299
1290
  # @type FaultReportContactNumber: String
1300
1291
  # @param TagSet: 标签键值对
1301
- # 注意:此字段可能返回 null,表示取不到有效值。
1302
1292
  # @type TagSet: Array
1303
1293
  # @param AccessPointType: 物理专线的接入点类型。
1304
1294
  # @type AccessPointType: String
1305
1295
  # @param IdcCity: IDC所在城市
1306
- # 注意:此字段可能返回 null,表示取不到有效值。
1307
1296
  # @type IdcCity: String
1308
1297
  # @param ChargeState: 计费状态
1309
- # 注意:此字段可能返回 null,表示取不到有效值。
1310
1298
  # @type ChargeState: String
1311
1299
  # @param StartTime: 物理专线开通时间
1312
- # 注意:此字段可能返回 null,表示取不到有效值。
1313
1300
  # @type StartTime: String
1314
1301
  # @param SignLaw: 物理专线是否已签署用户协议
1315
- # 注意:此字段可能返回 null,表示取不到有效值。
1316
1302
  # @type SignLaw: Boolean
1317
1303
  # @param LocalZone: 物理专线是否为LocalZone
1318
- # 注意:此字段可能返回 null,表示取不到有效值。
1319
1304
  # @type LocalZone: Boolean
1320
1305
  # @param VlanZeroDirectConnectTunnelCount: 该物理专线下vlan 0的专用通道数量
1321
- # 注意:此字段可能返回 null,表示取不到有效值。
1322
1306
  # @type VlanZeroDirectConnectTunnelCount: Integer
1323
1307
  # @param OtherVlanDirectConnectTunnelCount: 该物理专线下非vlan 0的专用通道数量
1324
- # 注意:此字段可能返回 null,表示取不到有效值。
1325
1308
  # @type OtherVlanDirectConnectTunnelCount: Integer
1326
1309
  # @param MinBandwidth: 物理专线最小带宽
1327
- # 注意:此字段可能返回 null,表示取不到有效值。
1328
1310
  # @type MinBandwidth: Integer
1329
1311
  # @param Construct: 建设模式
1330
- # 注意:此字段可能返回 null,表示取不到有效值。
1331
1312
  # @type Construct: Integer
1332
1313
  # @param AccessPointName: 物理专线的接入点名称
1333
- # 注意:此字段可能返回 null,表示取不到有效值。
1334
1314
  # @type AccessPointName: String
1335
1315
 
1336
1316
  attr_accessor :DirectConnectId, :DirectConnectName, :AccessPointId, :State, :CreatedTime, :EnabledTime, :LineOperator, :Location, :Bandwidth, :PortType, :CircuitCode, :RedundantDirectConnectId, :Vlan, :TencentAddress, :CustomerAddress, :CustomerName, :CustomerContactMail, :CustomerContactNumber, :ExpiredTime, :ChargeType, :FaultReportContactPerson, :FaultReportContactNumber, :TagSet, :AccessPointType, :IdcCity, :ChargeState, :StartTime, :SignLaw, :LocalZone, :VlanZeroDirectConnectTunnelCount, :OtherVlanDirectConnectTunnelCount, :MinBandwidth, :Construct, :AccessPointName
@@ -1449,7 +1429,7 @@ module TencentCloud
1449
1429
  # @type DirectConnectGatewayId: String
1450
1430
  # @param RouteType: BGP :BGP路由 STATIC:静态 默认为 BGP 路由
1451
1431
  # @type RouteType: String
1452
- # @param BgpPeer: 用户侧BGP,Asn,AuthKey
1432
+ # @param BgpPeer: 用户侧BGP,包括: CloudAsn,Asn,AuthKey
1453
1433
  # @type BgpPeer: :class:`Tencentcloud::Dc.v20180410.models.BgpPeer`
1454
1434
  # @param RouteFilterPrefixes: 用户侧网段地址
1455
1435
  # @type RouteFilterPrefixes: Array
@@ -1468,40 +1448,28 @@ module TencentCloud
1468
1448
  # @param TagSet: 专用通道标签值
1469
1449
  # @type TagSet: Array
1470
1450
  # @param NetDetectId: 关联的网络自定义探测ID
1471
- # 注意:此字段可能返回 null,表示取不到有效值。
1472
1451
  # @type NetDetectId: String
1473
1452
  # @param EnableBGPCommunity: BGP community开关
1474
- # 注意:此字段可能返回 null,表示取不到有效值。
1475
1453
  # @type EnableBGPCommunity: Boolean
1476
1454
  # @param NatType: 是否为Nat通道
1477
- # 注意:此字段可能返回 null,表示取不到有效值。
1478
1455
  # @type NatType: Integer
1479
1456
  # @param VpcRegion: VPC地域简码,如gz、cd
1480
- # 注意:此字段可能返回 null,表示取不到有效值。
1481
1457
  # @type VpcRegion: String
1482
1458
  # @param BfdEnable: 是否开启BFD
1483
- # 注意:此字段可能返回 null,表示取不到有效值。
1484
1459
  # @type BfdEnable: Integer
1485
1460
  # @param AccessPointType: 专用通道接入点类型
1486
- # 注意:此字段可能返回 null,表示取不到有效值。
1487
1461
  # @type AccessPointType: String
1488
1462
  # @param DirectConnectGatewayName: 专线网关名称
1489
- # 注意:此字段可能返回 null,表示取不到有效值。
1490
1463
  # @type DirectConnectGatewayName: String
1491
1464
  # @param VpcName: VPC名称
1492
- # 注意:此字段可能返回 null,表示取不到有效值。
1493
1465
  # @type VpcName: String
1494
1466
  # @param TencentBackupAddress: TencentBackupAddress,腾讯侧备用互联 IP
1495
- # 注意:此字段可能返回 null,表示取不到有效值。
1496
1467
  # @type TencentBackupAddress: String
1497
1468
  # @param SignLaw: 专用通道关联的物理专线是否签署了用户协议
1498
- # 注意:此字段可能返回 null,表示取不到有效值。
1499
1469
  # @type SignLaw: Boolean
1500
1470
  # @param CloudAttachId: 高速上云服务ID
1501
- # 注意:此字段可能返回 null,表示取不到有效值。
1502
1471
  # @type CloudAttachId: String
1503
1472
  # @param ShareOrNot: 是否共享通道
1504
- # 注意:此字段可能返回 null,表示取不到有效值。
1505
1473
  # @type ShareOrNot: Integer
1506
1474
 
1507
1475
  attr_accessor :DirectConnectTunnelId, :DirectConnectId, :State, :DirectConnectOwnerAccount, :OwnerAccount, :NetworkType, :NetworkRegion, :VpcId, :DirectConnectGatewayId, :RouteType, :BgpPeer, :RouteFilterPrefixes, :Vlan, :TencentAddress, :CustomerAddress, :DirectConnectTunnelName, :CreatedTime, :Bandwidth, :TagSet, :NetDetectId, :EnableBGPCommunity, :NatType, :VpcRegion, :BfdEnable, :AccessPointType, :DirectConnectGatewayName, :VpcName, :TencentBackupAddress, :SignLaw, :CloudAttachId, :ShareOrNot
@@ -1671,25 +1639,18 @@ module TencentCloud
1671
1639
  # @param BgpStatus: BGP状态
1672
1640
  # @type BgpStatus: :class:`Tencentcloud::Dc.v20180410.models.BGPStatus`
1673
1641
  # @param IPv6Enable: 是否开启IPv6
1674
- # 注意:此字段可能返回 null,表示取不到有效值。
1675
1642
  # @type IPv6Enable: Integer
1676
1643
  # @param TencentIPv6Address: 腾讯侧互联IPv6地址
1677
- # 注意:此字段可能返回 null,表示取不到有效值。
1678
1644
  # @type TencentIPv6Address: String
1679
1645
  # @param TencentBackupIPv6Address: 腾讯侧备用互联IPv6地址
1680
- # 注意:此字段可能返回 null,表示取不到有效值。
1681
1646
  # @type TencentBackupIPv6Address: String
1682
1647
  # @param BgpIPv6Status: BGPv6状态
1683
- # 注意:此字段可能返回 null,表示取不到有效值。
1684
1648
  # @type BgpIPv6Status: :class:`Tencentcloud::Dc.v20180410.models.BGPStatus`
1685
1649
  # @param CustomerIPv6Address: 用户侧互联IPv6地址
1686
- # 注意:此字段可能返回 null,表示取不到有效值。
1687
1650
  # @type CustomerIPv6Address: String
1688
1651
  # @param JumboEnable: 专用通道是否支持巨帧。1 支持,0 不支持
1689
- # 注意:此字段可能返回 null,表示取不到有效值。
1690
1652
  # @type JumboEnable: Integer
1691
1653
  # @param HighPrecisionBFDEnable: 专用通道是否支持高精度BFD。1支持,0不支持
1692
- # 注意:此字段可能返回 null,表示取不到有效值。
1693
1654
  # @type HighPrecisionBFDEnable: Integer
1694
1655
 
1695
1656
  attr_accessor :DirectConnectTunnelId, :DirectConnectId, :State, :DirectConnectOwnerAccount, :OwnerAccount, :NetworkType, :NetworkRegion, :VpcId, :DirectConnectGatewayId, :RouteType, :BgpPeer, :RouteFilterPrefixes, :PublicAddresses, :Vlan, :TencentAddress, :TencentBackupAddress, :CustomerAddress, :DirectConnectTunnelName, :CreatedTime, :Bandwidth, :NetDetectId, :EnableBGPCommunity, :NatType, :VpcRegion, :BfdEnable, :NqaEnable, :AccessPointType, :DirectConnectGatewayName, :VpcName, :SignLaw, :BfdInfo, :NqaInfo, :BgpStatus, :IPv6Enable, :TencentIPv6Address, :TencentBackupIPv6Address, :BgpIPv6Status, :CustomerIPv6Address, :JumboEnable, :HighPrecisionBFDEnable
@@ -1824,16 +1785,23 @@ module TencentCloud
1824
1785
  # @type ASPath: Array
1825
1786
  # @param NextHop: 路由下一跳IP
1826
1787
  # @type NextHop: String
1788
+ # @param UpdateTime: 路由更新时间
1789
+ # 注意:此字段可能返回 null,表示取不到有效值。
1790
+ # @type UpdateTime: String
1791
+ # @param ApplyOnTunnelEnable: 是否配置在通道上
1792
+ # @type ApplyOnTunnelEnable: Boolean
1827
1793
 
1828
- attr_accessor :RouteId, :DestinationCidrBlock, :RouteType, :Status, :ASPath, :NextHop
1794
+ attr_accessor :RouteId, :DestinationCidrBlock, :RouteType, :Status, :ASPath, :NextHop, :UpdateTime, :ApplyOnTunnelEnable
1829
1795
 
1830
- def initialize(routeid=nil, destinationcidrblock=nil, routetype=nil, status=nil, aspath=nil, nexthop=nil)
1796
+ def initialize(routeid=nil, destinationcidrblock=nil, routetype=nil, status=nil, aspath=nil, nexthop=nil, updatetime=nil, applyontunnelenable=nil)
1831
1797
  @RouteId = routeid
1832
1798
  @DestinationCidrBlock = destinationcidrblock
1833
1799
  @RouteType = routetype
1834
1800
  @Status = status
1835
1801
  @ASPath = aspath
1836
1802
  @NextHop = nexthop
1803
+ @UpdateTime = updatetime
1804
+ @ApplyOnTunnelEnable = applyontunnelenable
1837
1805
  end
1838
1806
 
1839
1807
  def deserialize(params)
@@ -1843,6 +1811,8 @@ module TencentCloud
1843
1811
  @Status = params['Status']
1844
1812
  @ASPath = params['ASPath']
1845
1813
  @NextHop = params['NextHop']
1814
+ @UpdateTime = params['UpdateTime']
1815
+ @ApplyOnTunnelEnable = params['ApplyOnTunnelEnable']
1846
1816
  end
1847
1817
  end
1848
1818
 
@@ -1933,44 +1903,33 @@ module TencentCloud
1933
1903
  # 互联网地址详细信息
1934
1904
  class InternetAddressDetail < TencentCloud::Common::AbstractModel
1935
1905
  # @param InstanceId: 互联网地址ID
1936
- # 注意:此字段可能返回 null,表示取不到有效值。
1937
1906
  # @type InstanceId: String
1938
1907
  # @param Subnet: 互联网网络地址
1939
- # 注意:此字段可能返回 null,表示取不到有效值。
1940
1908
  # @type Subnet: String
1941
1909
  # @param MaskLen: 网络地址掩码长度
1942
- # 注意:此字段可能返回 null,表示取不到有效值。
1943
1910
  # @type MaskLen: Integer
1944
1911
  # @param AddrType: 0:BGP
1945
1912
  # 1:电信
1946
1913
  # 2:移动
1947
1914
  # 3:联通
1948
- # 注意:此字段可能返回 null,表示取不到有效值。
1949
1915
  # @type AddrType: Integer
1950
1916
  # @param Status: 0:使用中
1951
1917
  # 1:已停用
1952
1918
  # 2:已退还
1953
1919
  # @type Status: Integer
1954
1920
  # @param ApplyTime: 申请时间
1955
- # 注意:此字段可能返回 null,表示取不到有效值。
1956
1921
  # @type ApplyTime: String
1957
1922
  # @param StopTime: 停用时间
1958
- # 注意:此字段可能返回 null,表示取不到有效值。
1959
1923
  # @type StopTime: String
1960
1924
  # @param ReleaseTime: 退还时间
1961
- # 注意:此字段可能返回 null,表示取不到有效值。
1962
1925
  # @type ReleaseTime: String
1963
1926
  # @param Region: 地域信息
1964
- # 注意:此字段可能返回 null,表示取不到有效值。
1965
1927
  # @type Region: String
1966
1928
  # @param AppId: 用户ID
1967
- # 注意:此字段可能返回 null,表示取不到有效值。
1968
1929
  # @type AppId: Integer
1969
1930
  # @param AddrProto: 0:IPv4 1:IPv6
1970
- # 注意:此字段可能返回 null,表示取不到有效值。
1971
1931
  # @type AddrProto: Integer
1972
1932
  # @param ReserveTime: 释放状态的IP地址保留的天数
1973
- # 注意:此字段可能返回 null,表示取不到有效值。
1974
1933
  # @type ReserveTime: Integer
1975
1934
 
1976
1935
  attr_accessor :InstanceId, :Subnet, :MaskLen, :AddrType, :Status, :ApplyTime, :StopTime, :ReleaseTime, :Region, :AppId, :AddrProto, :ReserveTime
@@ -2009,10 +1968,8 @@ module TencentCloud
2009
1968
  # 互联网公网地址统计
2010
1969
  class InternetAddressStatistics < TencentCloud::Common::AbstractModel
2011
1970
  # @param Region: 地域
2012
- # 注意:此字段可能返回 null,表示取不到有效值。
2013
1971
  # @type Region: String
2014
1972
  # @param SubnetNum: 互联网公网地址数量
2015
- # 注意:此字段可能返回 null,表示取不到有效值。
2016
1973
  # @type SubnetNum: Integer
2017
1974
 
2018
1975
  attr_accessor :Region, :SubnetNum
@@ -2416,7 +2373,6 @@ module TencentCloud
2416
2373
  # 用户侧网段地址
2417
2374
  class RouteFilterPrefix < TencentCloud::Common::AbstractModel
2418
2375
  # @param Cidr: 用户侧网段地址
2419
- # 注意:此字段可能返回 null,表示取不到有效值。
2420
2376
  # @type Cidr: String
2421
2377
 
2422
2378
  attr_accessor :Cidr
@@ -2433,10 +2389,8 @@ module TencentCloud
2433
2389
  # 标签键值对
2434
2390
  class Tag < TencentCloud::Common::AbstractModel
2435
2391
  # @param Key: 标签键
2436
- # 注意:此字段可能返回 null,表示取不到有效值。
2437
2392
  # @type Key: String
2438
2393
  # @param Value: 标签值
2439
- # 注意:此字段可能返回 null,表示取不到有效值。
2440
2394
  # @type Value: String
2441
2395
 
2442
2396
  attr_accessor :Key, :Value
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.977
4
+ version: 3.0.978
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-01-07 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common