Class: TencentCloud::Waf::V20180125::CreateBatchIpAccessControlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::CreateBatchIpAccessControlRequest
- Defined in:
- lib/v20180125/models.rb
Overview
CreateBatchIpAccessControl请求参数结构体
Instance Attribute Summary collapse
- #ActionType ⇒ Object
- #Domains ⇒ Object
- #GroupIds ⇒ Object
- #IpList ⇒ Object
- #JobDateTime ⇒ Object
- #JobType ⇒ Object
- #Note ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(iplist = nil, jobtype = nil, jobdatetime = nil, actiontype = nil, groupids = nil, domains = nil, note = nil) ⇒ CreateBatchIpAccessControlRequest
constructor
A new instance of CreateBatchIpAccessControlRequest.
Constructor Details
#initialize(iplist = nil, jobtype = nil, jobdatetime = nil, actiontype = nil, groupids = nil, domains = nil, note = nil) ⇒ CreateBatchIpAccessControlRequest
Returns a new instance of CreateBatchIpAccessControlRequest.
3497 3498 3499 3500 3501 3502 3503 3504 3505 |
# File 'lib/v20180125/models.rb', line 3497 def initialize(iplist=nil, jobtype=nil, jobdatetime=nil, actiontype=nil, groupids=nil, domains=nil, note=nil) @IpList = iplist @JobType = jobtype @JobDateTime = jobdatetime @ActionType = actiontype @GroupIds = groupids @Domains = domains @Note = note end |
Instance Attribute Details
#ActionType ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def ActionType @ActionType end |
#Domains ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def Domains @Domains end |
#GroupIds ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def GroupIds @GroupIds end |
#IpList ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def IpList @IpList end |
#JobDateTime ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def JobDateTime @JobDateTime end |
#JobType ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def JobType @JobType end |
#Note ⇒ Object
3495 3496 3497 |
# File 'lib/v20180125/models.rb', line 3495 def Note @Note end |
Instance Method Details
#deserialize(params) ⇒ Object
3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 |
# File 'lib/v20180125/models.rb', line 3507 def deserialize(params) @IpList = params['IpList'] @JobType = params['JobType'] unless params['JobDateTime'].nil? @JobDateTime = JobDateTime.new @JobDateTime.deserialize(params['JobDateTime']) end @ActionType = params['ActionType'] @GroupIds = params['GroupIds'] @Domains = params['Domains'] @Note = params['Note'] end |