tencentcloud-sdk-dc 3.0.968 → 3.0.969
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180410/models.rb +54 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58a6cc47aa547927d6a2d1891173c99b84c816dd
|
4
|
+
data.tar.gz: a386aaf54cb2e228341d2c01b103e44126d22836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 369918b8e8522ee6f1ec2a1a50fc8730628022881b20b788e8021169b5bfb8470a1cb769beb5769bbd2a598b604294ced6495dca2da9cba142d39bac9c928b5e
|
7
|
+
data.tar.gz: b4819bfac69560335df2f880371961eda6048e9a3f9032b57c141296799fe63e0fa62ff24e6d68f4609cf7ac4637490ce57ded6f3a984f80ab6178dd69ddf1b8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.969
|
data/lib/v20180410/models.rb
CHANGED
@@ -63,25 +63,22 @@ module TencentCloud
|
|
63
63
|
# @type LineOperator: Array
|
64
64
|
# @param RegionId: 接入点管理的大区ID。
|
65
65
|
# @type RegionId: String
|
66
|
-
# @param AvailablePortType: 接入点可用的端口类型列表。1000BASE-T代表千兆电口,1000BASE-LX代表千兆单模光口10km,1000BASE-ZX代表千兆单模光口80km,10GBASE-LR代表万兆单模光口10km,10GBASE-ZR代表万兆单模光口80km,10GBASE-LH代表万兆单模光口40km,100GBASE-LR4代表100G单模光口10km
|
67
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
66
|
+
# @param AvailablePortType: 接入点可用的端口类型列表。1000BASE-T代表千兆电口,1000BASE-LX代表千兆单模光口10km,1000BASE-ZX代表千兆单模光口80km,10GBASE-LR代表万兆单模光口10km,10GBASE-ZR代表万兆单模光口80km,10GBASE-LH代表万兆单模光口40km,100GBASE-LR4代表100G单模光口10km。
|
68
67
|
# @type AvailablePortType: Array
|
69
|
-
# @param Coordinate:
|
70
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
68
|
+
# @param Coordinate: 接入点经纬度。
|
71
69
|
# @type Coordinate: :class:`Tencentcloud::Dc.v20180410.models.Coordinate`
|
72
|
-
# @param City:
|
73
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
70
|
+
# @param City: 接入点所在城市。
|
74
71
|
# @type City: String
|
75
|
-
# @param Area:
|
76
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
72
|
+
# @param Area: 接入点地域名称。
|
77
73
|
# @type Area: String
|
78
74
|
# @param AccessPointType: 接入点类型。VXLAN/QCPL/QCAR
|
79
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
80
75
|
# @type AccessPointType: String
|
76
|
+
# @param AvailablePortInfo: 端口规格信息。
|
77
|
+
# @type AvailablePortInfo: Array
|
81
78
|
|
82
|
-
attr_accessor :AccessPointName, :AccessPointId, :State, :Location, :LineOperator, :RegionId, :AvailablePortType, :Coordinate, :City, :Area, :AccessPointType
|
79
|
+
attr_accessor :AccessPointName, :AccessPointId, :State, :Location, :LineOperator, :RegionId, :AvailablePortType, :Coordinate, :City, :Area, :AccessPointType, :AvailablePortInfo
|
83
80
|
|
84
|
-
def initialize(accesspointname=nil, accesspointid=nil, state=nil, location=nil, lineoperator=nil, regionid=nil, availableporttype=nil, coordinate=nil, city=nil, area=nil, accesspointtype=nil)
|
81
|
+
def initialize(accesspointname=nil, accesspointid=nil, state=nil, location=nil, lineoperator=nil, regionid=nil, availableporttype=nil, coordinate=nil, city=nil, area=nil, accesspointtype=nil, availableportinfo=nil)
|
85
82
|
@AccessPointName = accesspointname
|
86
83
|
@AccessPointId = accesspointid
|
87
84
|
@State = state
|
@@ -93,6 +90,7 @@ module TencentCloud
|
|
93
90
|
@City = city
|
94
91
|
@Area = area
|
95
92
|
@AccessPointType = accesspointtype
|
93
|
+
@AvailablePortInfo = availableportinfo
|
96
94
|
end
|
97
95
|
|
98
96
|
def deserialize(params)
|
@@ -110,6 +108,14 @@ module TencentCloud
|
|
110
108
|
@City = params['City']
|
111
109
|
@Area = params['Area']
|
112
110
|
@AccessPointType = params['AccessPointType']
|
111
|
+
unless params['AvailablePortInfo'].nil?
|
112
|
+
@AvailablePortInfo = []
|
113
|
+
params['AvailablePortInfo'].each do |i|
|
114
|
+
portspecification_tmp = PortSpecification.new
|
115
|
+
portspecification_tmp.deserialize(i)
|
116
|
+
@AvailablePortInfo << portspecification_tmp
|
117
|
+
end
|
118
|
+
end
|
113
119
|
end
|
114
120
|
end
|
115
121
|
|
@@ -757,19 +763,30 @@ module TencentCloud
|
|
757
763
|
# @type Offset: Integer
|
758
764
|
# @param Limit: 返回数量,默认为20,最大值为100。
|
759
765
|
# @type Limit: Integer
|
766
|
+
# @param Filters: 过滤参数,支持:access-point-id、isp
|
767
|
+
# @type Filters: Array
|
760
768
|
|
761
|
-
attr_accessor :RegionId, :Offset, :Limit
|
769
|
+
attr_accessor :RegionId, :Offset, :Limit, :Filters
|
762
770
|
|
763
|
-
def initialize(regionid=nil, offset=nil, limit=nil)
|
771
|
+
def initialize(regionid=nil, offset=nil, limit=nil, filters=nil)
|
764
772
|
@RegionId = regionid
|
765
773
|
@Offset = offset
|
766
774
|
@Limit = limit
|
775
|
+
@Filters = filters
|
767
776
|
end
|
768
777
|
|
769
778
|
def deserialize(params)
|
770
779
|
@RegionId = params['RegionId']
|
771
780
|
@Offset = params['Offset']
|
772
781
|
@Limit = params['Limit']
|
782
|
+
unless params['Filters'].nil?
|
783
|
+
@Filters = []
|
784
|
+
params['Filters'].each do |i|
|
785
|
+
filter_tmp = Filter.new
|
786
|
+
filter_tmp.deserialize(i)
|
787
|
+
@Filters << filter_tmp
|
788
|
+
end
|
789
|
+
end
|
773
790
|
end
|
774
791
|
end
|
775
792
|
|
@@ -2308,6 +2325,30 @@ module TencentCloud
|
|
2308
2325
|
end
|
2309
2326
|
end
|
2310
2327
|
|
2328
|
+
# 端口规格
|
2329
|
+
class PortSpecification < TencentCloud::Common::AbstractModel
|
2330
|
+
# @param InternationalName: 端口名称
|
2331
|
+
# @type InternationalName: String
|
2332
|
+
# @param Specification: 端口规格(M)
|
2333
|
+
# @type Specification: Integer
|
2334
|
+
# @param PortType: 端口类型:T-电口,X-光口
|
2335
|
+
# @type PortType: String
|
2336
|
+
|
2337
|
+
attr_accessor :InternationalName, :Specification, :PortType
|
2338
|
+
|
2339
|
+
def initialize(internationalname=nil, specification=nil, porttype=nil)
|
2340
|
+
@InternationalName = internationalname
|
2341
|
+
@Specification = specification
|
2342
|
+
@PortType = porttype
|
2343
|
+
end
|
2344
|
+
|
2345
|
+
def deserialize(params)
|
2346
|
+
@InternationalName = params['InternationalName']
|
2347
|
+
@Specification = params['Specification']
|
2348
|
+
@PortType = params['PortType']
|
2349
|
+
end
|
2350
|
+
end
|
2351
|
+
|
2311
2352
|
# RejectDirectConnectTunnel请求参数结构体
|
2312
2353
|
class RejectDirectConnectTunnelRequest < TencentCloud::Common::AbstractModel
|
2313
2354
|
# @param DirectConnectTunnelId: 专用通道ID。
|
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.
|
4
|
+
version: 3.0.969
|
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-12-
|
11
|
+
date: 2024-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|