Class: AsposeImagingCloud::StorageExistsRequest
- Inherits:
-
ImagingRequest
- Object
- ImagingRequest
- AsposeImagingCloud::StorageExistsRequest
- Defined in:
- lib/aspose-imaging-cloud/models/requests/storage_exists_request.rb
Overview
Request model for storage_exists operation.
Instance Method Summary collapse
-
#initialize(storage_name) ⇒ StorageExistsRequest
constructor
Check if storage exists.
- #to_http_info(config) ⇒ Object
Constructor Details
#initialize(storage_name) ⇒ StorageExistsRequest
Check if storage exists
36 37 38 |
# File 'lib/aspose-imaging-cloud/models/requests/storage_exists_request.rb', line 36 def initialize(storage_name) @storage_name = storage_name end |
Instance Method Details
#to_http_info(config) ⇒ Object
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/aspose-imaging-cloud/models/requests/storage_exists_request.rb', line 40 def to_http_info(config) # verify the required parameter 'storage_name' is set if config.client_side_validation && @storage_name.nil? raise ArgumentError, "Missing the required parameter 'storage_name' when calling ImagingApi.storage_exists" end # resource path local_var_path = '/imaging/storage/{storageName}/exist'.sub('{' + 'storageName' + '}', @storage_name.to_s) # query parameters query_params = {} # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['JWT'] # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : select_header_content_type(['application/json']) AsposeImagingCloud::HttpRequest.new(local_var_path, header_params, query_params, form_params, post_body, auth_names) end |