Class: AkamaiApi::ECCU::ListRequest
- Inherits:
-
BaseRequest
- Object
- BaseRequest
- AkamaiApi::ECCU::ListRequest
- Defined in:
- lib/akamai_api/eccu/list_request.rb
Overview
Use the ListRequest class to get the list of the last submitted ECCU requests
Class Method Summary collapse
-
.execute ⇒ Array<Fixnum>
Returns the list of the last submitted ECCU requests.
Instance Method Summary collapse
-
#execute ⇒ Array<Fixnum>
Returns the list of the last submitted ECCU requests.
Methods inherited from BaseRequest
#client, #client_call, #with_soap_error_handling
Class Method Details
.execute ⇒ Array<Fixnum>
Returns the list of the last submitted ECCU requests
9 10 11 |
# File 'lib/akamai_api/eccu/list_request.rb', line 9 def self.execute new.execute end |
Instance Method Details
#execute ⇒ Array<Fixnum>
Returns the list of the last submitted ECCU requests
15 16 17 18 19 |
# File 'lib/akamai_api/eccu/list_request.rb', line 15 def execute with_soap_error_handling do Array.wrap client_call(:get_ids)[:file_ids][:file_ids] end end |