Class: TencentCloud::Cdn::V20180606::DescribeScdnConfigResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::DescribeScdnConfigResponse
- Defined in:
- lib/v20180606/models.rb
Overview
DescribeScdnConfig返回参数结构体
Instance Attribute Summary collapse
-
#Acl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Bot ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#CC ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Ddos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Waf ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(acl = nil, waf = nil, cc = nil, ddos = nil, bot = nil, status = nil, requestid = nil) ⇒ DescribeScdnConfigResponse
constructor
A new instance of DescribeScdnConfigResponse.
Constructor Details
#initialize(acl = nil, waf = nil, cc = nil, ddos = nil, bot = nil, status = nil, requestid = nil) ⇒ DescribeScdnConfigResponse
Returns a new instance of DescribeScdnConfigResponse.
5750 5751 5752 5753 5754 5755 5756 5757 5758 |
# File 'lib/v20180606/models.rb', line 5750 def initialize(acl=nil, waf=nil, cc=nil, ddos=nil, bot=nil, status=nil, requestid=nil) @Acl = acl @Waf = waf @CC = cc @Ddos = ddos @Bot = bot @Status = status @RequestId = requestid end |
Instance Attribute Details
#Acl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def Acl @Acl end |
#Bot ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def Bot @Bot end |
#CC ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def CC @CC end |
#Ddos ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def Ddos @Ddos end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def RequestId @RequestId end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def Status @Status end |
#Waf ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5748 5749 5750 |
# File 'lib/v20180606/models.rb', line 5748 def Waf @Waf end |
Instance Method Details
#deserialize(params) ⇒ Object
5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 |
# File 'lib/v20180606/models.rb', line 5760 def deserialize(params) unless params['Acl'].nil? @Acl = ScdnAclConfig.new @Acl.deserialize(params['Acl']) end unless params['Waf'].nil? @Waf = ScdnWafConfig.new @Waf.deserialize(params['Waf']) end unless params['CC'].nil? @CC = ScdnConfig.new @CC.deserialize(params['CC']) end unless params['Ddos'].nil? @Ddos = ScdnDdosConfig.new @Ddos.deserialize(params['Ddos']) end unless params['Bot'].nil? @Bot = ScdnBotConfig.new @Bot.deserialize(params['Bot']) end @Status = params['Status'] @RequestId = params['RequestId'] end |