Class: TencentCloud::Ecm::V20190719::AssignIpv6AddressesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecm::V20190719::AssignIpv6AddressesRequest
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/v20190719/models.rb
Overview
AssignIpv6Addresses请求参数结构体
Instance Attribute Summary collapse
-
#EcmRegion ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#Ipv6AddressCount ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#Ipv6Addresses ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#Ipv6ISP ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#ISPType ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#NetworkInterfaceId ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#SkipAllocateBandwidth ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
-
#SkipCheckIPv6Address ⇒ Object
CTCC:中国电信 CUCC:中国联通 CMCC:中国移动.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(ecmregion = nil, networkinterfaceid = nil, ipv6addresses = nil, ipv6addresscount = nil, isptype = nil, skipcheckipv6address = nil, skipallocatebandwidth = nil, ipv6isp = nil) ⇒ AssignIpv6AddressesRequest
constructor
A new instance of AssignIpv6AddressesRequest.
Constructor Details
#initialize(ecmregion = nil, networkinterfaceid = nil, ipv6addresses = nil, ipv6addresscount = nil, isptype = nil, skipcheckipv6address = nil, skipallocatebandwidth = nil, ipv6isp = nil) ⇒ AssignIpv6AddressesRequest
Returns a new instance of AssignIpv6AddressesRequest.
336 337 338 339 340 341 342 343 344 345 |
# File 'lib/v20190719/models.rb', line 336 def initialize(ecmregion=nil, networkinterfaceid=nil, ipv6addresses=nil, ipv6addresscount=nil, isptype=nil, skipcheckipv6address=nil, skipallocatebandwidth=nil, ipv6isp=nil) @EcmRegion = ecmregion @NetworkInterfaceId = networkinterfaceid @Ipv6Addresses = ipv6addresses @Ipv6AddressCount = ipv6addresscount @ISPType = isptype @SkipCheckIPv6Address = skipcheckipv6address @SkipAllocateBandwidth = skipallocatebandwidth @Ipv6ISP = ipv6isp end |
Instance Attribute Details
#EcmRegion ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def EcmRegion @EcmRegion end |
#Ipv6AddressCount ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def Ipv6AddressCount @Ipv6AddressCount end |
#Ipv6Addresses ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def Ipv6Addresses @Ipv6Addresses end |
#Ipv6ISP ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def Ipv6ISP @Ipv6ISP end |
#ISPType ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def ISPType @ISPType end |
#NetworkInterfaceId ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def NetworkInterfaceId @NetworkInterfaceId end |
#SkipAllocateBandwidth ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def SkipAllocateBandwidth @SkipAllocateBandwidth end |
#SkipCheckIPv6Address ⇒ Object
CTCC:中国电信CUCC:中国联通CMCC:中国移动
331 332 333 |
# File 'lib/v20190719/models.rb', line 331 def SkipCheckIPv6Address @SkipCheckIPv6Address end |
Instance Method Details
#deserialize(params) ⇒ Object
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'lib/v20190719/models.rb', line 347 def deserialize(params) @EcmRegion = params['EcmRegion'] @NetworkInterfaceId = params['NetworkInterfaceId'] unless params['Ipv6Addresses'].nil? @Ipv6Addresses = [] params['Ipv6Addresses'].each do |i| ipv6address_tmp = Ipv6Address.new ipv6address_tmp.deserialize(i) @Ipv6Addresses << ipv6address_tmp end end @Ipv6AddressCount = params['Ipv6AddressCount'] @ISPType = params['ISPType'] @SkipCheckIPv6Address = params['SkipCheckIPv6Address'] @SkipAllocateBandwidth = params['SkipAllocateBandwidth'] @Ipv6ISP = params['Ipv6ISP'] end |