Class: DatadogAPIClient::V1::AWSLogsIntegrationAPI

Inherits:
Object
  • Object
show all
Defined in:
lib/datadog_api_client/v1/api/aws_logs_integration_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = DatadogAPIClient::APIClient.default) ⇒ AWSLogsIntegrationAPI

Returns a new instance of AWSLogsIntegrationAPI.



22
23
24
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 22

def initialize(api_client = APIClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



20
21
22
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 20

def api_client
  @api_client
end

Instance Method Details

#check_aws_logs_lambda_async(body, opts = {}) ⇒ Object

Check that an AWS Lambda Function exists.



30
31
32
33
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 30

def check_aws_logs_lambda_async(body, opts = {})
  data, _status_code, _headers = check_aws_logs_lambda_async_with_http_info(body, opts)
  data
end

#check_aws_logs_lambda_async_with_http_info(body, opts = {}) ⇒ Array<(AWSLogsAsyncResponse, Integer, Hash)>

Check that an AWS Lambda Function exists.

Test if permissions are present to add a log-forwarding triggers for the given services and AWS account. The input is the same as for Enable an AWS service log collection. Subsequent requests will always repeat the above, so this endpoint can be polled intermittently instead of blocking.

  • Returns a status of 'created' when it's checking if the Lambda exists in the account.
  • Returns a status of 'waiting' while checking.
  • Returns a status of 'checked and ok' if the Lambda exists.
  • Returns a status of 'error' if the Lambda does not exist.

Parameters:

  • body (AWSAccountAndLambdaRequest)

    Check AWS Log Lambda Async request body.

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

    the optional parameters

Returns:

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

    AWSLogsAsyncResponse data, response status code and response headers



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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 40

def check_aws_logs_lambda_async_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:check_aws_logs_lambda_async)
    unstable_enabled = @api_client.config.unstable_operations[:check_aws_logs_lambda_async]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "check_aws_logs_lambda_async")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "check_aws_logs_lambda_async"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.check_aws_logs_lambda_async ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling AWSLogsIntegrationAPI.check_aws_logs_lambda_async"
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs/check_async'

  # 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'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

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

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :check_aws_logs_lambda_async,
    :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(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AWSLogsIntegrationAPI#check_aws_logs_lambda_async\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#check_aws_logs_services_async(body, opts = {}) ⇒ Object

Check permissions for log services.



105
106
107
108
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 105

def check_aws_logs_services_async(body, opts = {})
  data, _status_code, _headers = check_aws_logs_services_async_with_http_info(body, opts)
  data
end

#check_aws_logs_services_async_with_http_info(body, opts = {}) ⇒ Array<(AWSLogsAsyncResponse, Integer, Hash)>

Check permissions for log services.

Test if permissions are present to add log-forwarding triggers for the given services and AWS account. Input is the same as for EnableAWSLogServices. Done async, so can be repeatedly polled in a non-blocking fashion until the async request completes.

  • Returns a status of created when it's checking if the permissions exists in the AWS account.
  • Returns a status of waiting while checking.
  • Returns a status of checked and ok if the Lambda exists.
  • Returns a status of error if the Lambda does not exist.

Parameters:

  • body (AWSLogsServicesRequest)

    Check AWS Logs Async Services request body.

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

    the optional parameters

Returns:

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

    AWSLogsAsyncResponse data, response status code and response headers



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 115

def check_aws_logs_services_async_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:check_aws_logs_services_async)
    unstable_enabled = @api_client.config.unstable_operations[:check_aws_logs_services_async]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "check_aws_logs_services_async")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "check_aws_logs_services_async"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.check_aws_logs_services_async ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling AWSLogsIntegrationAPI.check_aws_logs_services_async"
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs/services_async'

  # 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'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

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

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :check_aws_logs_services_async,
    :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(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AWSLogsIntegrationAPI#check_aws_logs_services_async\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#create_aws_lambda_arn(body, opts = {}) ⇒ Object

Add AWS Log Lambda ARN.



180
181
182
183
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 180

def create_aws_lambda_arn(body, opts = {})
  data, _status_code, _headers = create_aws_lambda_arn_with_http_info(body, opts)
  data
end

#create_aws_lambda_arn_with_http_info(body, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Add AWS Log Lambda ARN.

Attach the Lambda ARN of the Lambda created for the Datadog-AWS log collection to your AWS account ID to enable log collection.

Parameters:

  • body (AWSAccountAndLambdaRequest)

    AWS Log Lambda Async request body.

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

    the optional parameters

Returns:

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

    Object data, response status code and response headers



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 190

def create_aws_lambda_arn_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:create_aws_lambda_arn)
    unstable_enabled = @api_client.config.unstable_operations[:create_aws_lambda_arn]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "create_aws_lambda_arn")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "create_aws_lambda_arn"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.create_aws_lambda_arn ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling AWSLogsIntegrationAPI.create_aws_lambda_arn"
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs'

  # 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'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

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

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :create_aws_lambda_arn,
    :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(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AWSLogsIntegrationAPI#create_aws_lambda_arn\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#delete_aws_lambda_arn(body, opts = {}) ⇒ Object

Delete an AWS Logs integration.



255
256
257
258
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 255

def delete_aws_lambda_arn(body, opts = {})
  data, _status_code, _headers = delete_aws_lambda_arn_with_http_info(body, opts)
  data
end

#delete_aws_lambda_arn_with_http_info(body, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Delete an AWS Logs integration.

Delete a Datadog-AWS logs configuration by removing the specific Lambda ARN associated with a given AWS account.

Parameters:

  • body (AWSAccountAndLambdaRequest)

    Delete AWS Lambda ARN request body.

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

    the optional parameters

Returns:

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

    Object data, response status code and response headers



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
316
317
318
319
320
321
322
323
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 265

def delete_aws_lambda_arn_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:delete_aws_lambda_arn)
    unstable_enabled = @api_client.config.unstable_operations[:delete_aws_lambda_arn]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "delete_aws_lambda_arn")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "delete_aws_lambda_arn"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.delete_aws_lambda_arn ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling AWSLogsIntegrationAPI.delete_aws_lambda_arn"
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs'

  # 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'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

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

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :delete_aws_lambda_arn,
    :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(:DELETE, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AWSLogsIntegrationAPI#delete_aws_lambda_arn\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#enable_aws_log_services(body, opts = {}) ⇒ Object

Enable an AWS Logs integration.



330
331
332
333
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 330

def enable_aws_log_services(body, opts = {})
  data, _status_code, _headers = enable_aws_log_services_with_http_info(body, opts)
  data
end

#enable_aws_log_services_with_http_info(body, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Enable an AWS Logs integration.

Enable automatic log collection for a list of services. This should be run after running CreateAWSLambdaARN to save the configuration.

Parameters:

  • body (AWSLogsServicesRequest)

    Enable AWS Log Services request body.

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

    the optional parameters

Returns:

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

    Object data, response status code and response headers



340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 340

def enable_aws_log_services_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:enable_aws_log_services)
    unstable_enabled = @api_client.config.unstable_operations[:enable_aws_log_services]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "enable_aws_log_services")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "enable_aws_log_services"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.enable_aws_log_services ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling AWSLogsIntegrationAPI.enable_aws_log_services"
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs/services'

  # 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'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

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

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :enable_aws_log_services,
    :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(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AWSLogsIntegrationAPI#enable_aws_log_services\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_aws_logs_integrations(opts = {}) ⇒ Object

List all AWS Logs integrations.



404
405
406
407
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 404

def list_aws_logs_integrations(opts = {})
  data, _status_code, _headers = list_aws_logs_integrations_with_http_info(opts)
  data
end

#list_aws_logs_integrations_with_http_info(opts = {}) ⇒ Array<(Array<AWSLogsListResponse>, Integer, Hash)>

List all AWS Logs integrations.

List all Datadog-AWS Logs integrations configured in your Datadog account.

Parameters:

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

    the optional parameters

Returns:

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

    Array data, response status code and response headers



413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 413

def list_aws_logs_integrations_with_http_info(opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_aws_logs_integrations)
    unstable_enabled = @api_client.config.unstable_operations[:list_aws_logs_integrations]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_aws_logs_integrations")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_aws_logs_integrations"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.list_aws_logs_integrations ...'
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs'

  # 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] || 'Array<AWSLogsListResponse>'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :list_aws_logs_integrations,
    :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: AWSLogsIntegrationAPI#list_aws_logs_integrations\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_aws_logs_services(opts = {}) ⇒ Object

Get list of AWS log ready services.



471
472
473
474
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 471

def list_aws_logs_services(opts = {})
  data, _status_code, _headers = list_aws_logs_services_with_http_info(opts)
  data
end

#list_aws_logs_services_with_http_info(opts = {}) ⇒ Array<(Array<AWSLogsListServicesResponse>, Integer, Hash)>

Get list of AWS log ready services.

Get the list of current AWS services that Datadog offers automatic log collection. Use returned service IDs with the services parameter for the Enable an AWS service log collection API endpoint.

Parameters:

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

    the optional parameters

Returns:



480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
# File 'lib/datadog_api_client/v1/api/aws_logs_integration_api.rb', line 480

def list_aws_logs_services_with_http_info(opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_aws_logs_services)
    unstable_enabled = @api_client.config.unstable_operations[:list_aws_logs_services]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_aws_logs_services")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_aws_logs_services"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AWSLogsIntegrationAPI.list_aws_logs_services ...'
  end
  # resource path
  local_var_path = '/api/v1/integration/aws/logs/services'

  # 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] || 'Array<AWSLogsListServicesResponse>'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :list_aws_logs_services,
    :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: AWSLogsIntegrationAPI#list_aws_logs_services\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end