Method: Fastly::LoggingAzureblobApi#get_log_azure_with_http_info

Defined in:
lib/fastly/api/logging_azureblob_api.rb

#get_log_azure_with_http_info(opts = {}) ⇒ Array<(LoggingAzureblobResponse, Integer, Hash)>

Get an Azure Blob Storage log endpoint Get the Azure Blob Storage logging endpoint for a particular service and version.

Parameters:

  • opts (Hash) (defaults to: {})

    a customizable set of options

Options Hash (opts):

  • :service_id (String)

    Alphanumeric string identifying the service. (required)

  • :version_id (Integer)

    Integer identifying a service version. (required)

  • :logging_azureblob_name (String)

    The name for the real-time logging configuration. (required)

Returns:

  • (Array<(LoggingAzureblobResponse, Integer, Hash)>)

    LoggingAzureblobResponse data, response status code and response headers



257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/fastly/api/logging_azureblob_api.rb', line 257

def get_log_azure_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: LoggingAzureblobApi.get_log_azure ...'
  end
  # unbox the parameters from the hash
  service_id = opts[:'service_id']
  version_id = opts[:'version_id']
  logging_azureblob_name = opts[:'logging_azureblob_name']
  # verify the required parameter 'service_id' is set
  if @api_client.config.client_side_validation && service_id.nil?
    fail ArgumentError, "Missing the required parameter 'service_id' when calling LoggingAzureblobApi.get_log_azure"
  end
  # verify the required parameter 'version_id' is set
  if @api_client.config.client_side_validation && version_id.nil?
    fail ArgumentError, "Missing the required parameter 'version_id' when calling LoggingAzureblobApi.get_log_azure"
  end
  # verify the required parameter 'logging_azureblob_name' is set
  if @api_client.config.client_side_validation && logging_azureblob_name.nil?
    fail ArgumentError, "Missing the required parameter 'logging_azureblob_name' when calling LoggingAzureblobApi.get_log_azure"
  end
  # resource path
  local_var_path = '/service/{service_id}/version/{version_id}/logging/azureblob/{logging_azureblob_name}'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)).sub('{' + 'logging_azureblob_name' + '}', CGI.escape(logging_azureblob_name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'LoggingAzureblobResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['token']

  new_options = opts.merge(
    :operation => :"LoggingAzureblobApi.get_log_azure",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: LoggingAzureblobApi#get_log_azure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end