Class: TencentCloud::Teo::V20220901::ZoneConfigParameters
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::ZoneConfigParameters
- Defined in:
- lib/v20220901/models.rb
Overview
站点配置相关信息。
Instance Attribute Summary collapse
-
#ZoneConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ZoneName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(zonename = nil, zoneconfig = nil) ⇒ ZoneConfigParameters
constructor
A new instance of ZoneConfigParameters.
Constructor Details
#initialize(zonename = nil, zoneconfig = nil) ⇒ ZoneConfigParameters
Returns a new instance of ZoneConfigParameters.
23460 23461 23462 23463 |
# File 'lib/v20220901/models.rb', line 23460 def initialize(zonename=nil, zoneconfig=nil) @ZoneName = zonename @ZoneConfig = zoneconfig end |
Instance Attribute Details
#ZoneConfig ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
23458 23459 23460 |
# File 'lib/v20220901/models.rb', line 23458 def ZoneConfig @ZoneConfig end |
#ZoneName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
23458 23459 23460 |
# File 'lib/v20220901/models.rb', line 23458 def ZoneName @ZoneName end |
Instance Method Details
#deserialize(params) ⇒ Object
23465 23466 23467 23468 23469 23470 23471 |
# File 'lib/v20220901/models.rb', line 23465 def deserialize(params) @ZoneName = params['ZoneName'] unless params['ZoneConfig'].nil? @ZoneConfig = ZoneConfig.new @ZoneConfig.deserialize(params['ZoneConfig']) end end |