Class: OCI::DatabaseManagement::DiagnosabilityClient

Inherits:
Object
  • Object
show all
Defined in:
lib/oci/database_management/diagnosability_client.rb

Overview

Use the Database Management API to perform tasks such as obtaining performance and resource usage metrics for a fleet of Managed Databases or a specific Managed Database, creating Managed Database Groups, and running a SQL job on a Managed Database or Managed Database Group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil) ⇒ DiagnosabilityClient

Creates a new DiagnosabilityClient. Notes: If a config is not specified, then the global OCI.config will be used.

This client is not thread-safe

Either a region or an endpoint must be specified. If an endpoint is specified, it will be used instead of the region. A region may be specified in the config or via or the region parameter. If specified in both, then the region parameter will be used.

Parameters:

  • config (Config) (defaults to: nil)

    A Config object.

  • region (String) (defaults to: nil)

    A region used to determine the service endpoint. This will usually correspond to a value in Regions::REGION_ENUM, but may be an arbitrary string.

  • endpoint (String) (defaults to: nil)

    The fully qualified endpoint URL

  • signer (OCI::BaseSigner) (defaults to: nil)

    A signer implementation which can be used by this client. If this is not provided then a signer will be constructed via the provided config. One use case of this parameter is instance principals authentication, so that the instance principals signer can be provided to the client

  • proxy_settings (OCI::ApiClientProxySettings) (defaults to: nil)

    If your environment requires you to use a proxy server for outgoing HTTP requests the details for the proxy can be provided in this parameter

  • retry_config (OCI::Retry::RetryConfig) (defaults to: nil)

    The retry configuration for this service client. This represents the default retry configuration to apply across all operations. This can be overridden on a per-operation basis. The default retry configuration value is nil, which means that an operation will not perform any retries



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/oci/database_management/diagnosability_client.rb', line 57

def initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil)
  # If the signer is an InstancePrincipalsSecurityTokenSigner or SecurityTokenSigner and no config was supplied (they are self-sufficient signers)
  # then create a dummy config to pass to the ApiClient constructor. If customers wish to create a client which uses instance principals
  # and has config (either populated programmatically or loaded from a file), they must construct that config themselves and then
  # pass it to this constructor.
  #
  # If there is no signer (or the signer is not an instance principals signer) and no config was supplied, this is not valid
  # so try and load the config from the default file.
  config = OCI::Config.validate_and_build_config_with_signer(config, signer)

  signer = OCI::Signer.config_file_auth_builder(config) if signer.nil?

  @api_client = OCI::ApiClient.new(config, signer, proxy_settings: proxy_settings)
  @retry_config = retry_config

  if endpoint
    @endpoint = endpoint + '/20201101'
  else
    region ||= config.region
    region ||= signer.region if signer.respond_to?(:region)
    self.region = region
  end
  logger.info "DiagnosabilityClient endpoint set to '#{@endpoint}'." if logger
end

Instance Attribute Details

#api_clientOCI::ApiClient (readonly)

Client used to make HTTP requests.

Returns:



17
18
19
# File 'lib/oci/database_management/diagnosability_client.rb', line 17

def api_client
  @api_client
end

#endpointString (readonly)

Fully qualified endpoint URL

Returns:

  • (String)


21
22
23
# File 'lib/oci/database_management/diagnosability_client.rb', line 21

def endpoint
  @endpoint
end

#regionString

The region, which will usually correspond to a value in Regions::REGION_ENUM.

Returns:

  • (String)


31
32
33
# File 'lib/oci/database_management/diagnosability_client.rb', line 31

def region
  @region
end

#retry_configOCI::Retry::RetryConfig (readonly)

The default retry configuration to apply to all operations in this service client. This can be overridden on a per-operation basis. The default retry configuration value is nil, which means that an operation will not perform any retries



27
28
29
# File 'lib/oci/database_management/diagnosability_client.rb', line 27

def retry_config
  @retry_config
end

Instance Method Details

#list_alert_logs(managed_database_id, opts = {}) ⇒ Response

Note:

Click here to see an example of how to use list_alert_logs API.

Lists the alert logs for the specified Managed Database.

Parameters:

  • managed_database_id (String)

    The OCID of the Managed Database.

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

    the optional parameters

Options Hash (opts):

  • :retry_config (OCI::Retry::RetryConfig)

    The retry configuration to apply to this operation. If no key is provided then the service-level retry configuration defined by #retry_config will be used. If an explicit nil value is provided then the operation will not retry

  • :time_greater_than_or_equal_to (DateTime)

    The optional greater than or equal to timestamp to filter the logs.

  • :time_less_than_or_equal_to (DateTime)

    The optional less than or equal to timestamp to filter the logs.

  • :level_filter (String)

    The optional parameter to filter the alert logs by log level. (default to ALL) Allowed values are: CRITICAL, SEVERE, IMPORTANT, NORMAL, ALL

  • :type_filter (String)

    The optional parameter to filter the attention or alert logs by type. (default to ALL) Allowed values are: UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL

  • :log_search_text (String)

    The optional query parameter to filter the attention or alert logs by search text.

  • :is_regular_expression (BOOLEAN)

    The flag to indicate whether the search text is regular expression or not. (default to false)

  • :sort_by (String)

    The possible sortBy values of attention logs. (default to TIMESTAMP) Allowed values are: LEVEL, TYPE, MESSAGE, TIMESTAMP

  • :sort_order (String)

    The option to sort information in ascending (u2018ASCu2019) or descending (u2018DESCu2019) order. Ascending order is the default order. (default to ASC)

  • :page (String)

    The page token representing the page from where the next set of paginated results are retrieved. This is usually retrieved from a previous list call.

  • :limit (Integer)

    The maximum number of records returned in the paginated response. (default to 10)

  • :opc_request_id (String)

    The client request ID for tracing.

Returns:



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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/oci/database_management/diagnosability_client.rb', line 129

def list_alert_logs(managed_database_id, opts = {})
  logger.debug 'Calling operation DiagnosabilityClient#list_alert_logs.' if logger

  raise "Missing the required parameter 'managed_database_id' when calling list_alert_logs." if managed_database_id.nil?

  if opts[:level_filter] && !%w[CRITICAL SEVERE IMPORTANT NORMAL ALL].include?(opts[:level_filter])
    raise 'Invalid value for "level_filter", must be one of CRITICAL, SEVERE, IMPORTANT, NORMAL, ALL.'
  end

  if opts[:type_filter] && !%w[UNKNOWN INCIDENT_ERROR ERROR WARNING NOTIFICATION TRACE ALL].include?(opts[:type_filter])
    raise 'Invalid value for "type_filter", must be one of UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL.'
  end

  if opts[:sort_by] && !%w[LEVEL TYPE MESSAGE TIMESTAMP].include?(opts[:sort_by])
    raise 'Invalid value for "sort_by", must be one of LEVEL, TYPE, MESSAGE, TIMESTAMP.'
  end

  if opts[:sort_order] && !OCI::DatabaseManagement::Models::SORT_ORDERS_ENUM.include?(opts[:sort_order])
    raise 'Invalid value for "sort_order", must be one of the values in OCI::DatabaseManagement::Models::SORT_ORDERS_ENUM.'
  end
  raise "Parameter value for 'managed_database_id' must not be blank" if OCI::Internal::Util.blank_string?(managed_database_id)

  path = '/managedDatabases/{managedDatabaseId}/alertLogs'.sub('{managedDatabaseId}', managed_database_id.to_s)
  operation_signing_strategy = :standard

  # rubocop:disable Style/NegatedIf
  # Query Params
  query_params = {}
  query_params[:timeGreaterThanOrEqualTo] = opts[:time_greater_than_or_equal_to] if opts[:time_greater_than_or_equal_to]
  query_params[:timeLessThanOrEqualTo] = opts[:time_less_than_or_equal_to] if opts[:time_less_than_or_equal_to]
  query_params[:levelFilter] = opts[:level_filter] if opts[:level_filter]
  query_params[:typeFilter] = opts[:type_filter] if opts[:type_filter]
  query_params[:logSearchText] = opts[:log_search_text] if opts[:log_search_text]
  query_params[:isRegularExpression] = opts[:is_regular_expression] if !opts[:is_regular_expression].nil?
  query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
  query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
  query_params[:page] = opts[:page] if opts[:page]
  query_params[:limit] = opts[:limit] if opts[:limit]

  # Header Params
  header_params = {}
  header_params[:accept] = 'application/json'
  header_params[:'content-type'] = 'application/json'
  header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
  # rubocop:enable Style/NegatedIf

  post_body = nil

  # rubocop:disable Metrics/BlockLength
  OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DiagnosabilityClient#list_alert_logs') do
    @api_client.call_api(
      :GET,
      path,
      endpoint,
      header_params: header_params,
      query_params: query_params,
      operation_signing_strategy: operation_signing_strategy,
      body: post_body,
      return_type: 'OCI::DatabaseManagement::Models::AlertLogCollection'
    )
  end
  # rubocop:enable Metrics/BlockLength
end

#list_attention_logs(managed_database_id, opts = {}) ⇒ Response

Note:

Click here to see an example of how to use list_attention_logs API.

Lists the attention logs for the specified Managed Database.

Parameters:

  • managed_database_id (String)

    The OCID of the Managed Database.

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

    the optional parameters

Options Hash (opts):

  • :retry_config (OCI::Retry::RetryConfig)

    The retry configuration to apply to this operation. If no key is provided then the service-level retry configuration defined by #retry_config will be used. If an explicit nil value is provided then the operation will not retry

  • :time_greater_than_or_equal_to (DateTime)

    The optional greater than or equal to timestamp to filter the logs.

  • :time_less_than_or_equal_to (DateTime)

    The optional less than or equal to timestamp to filter the logs.

  • :urgency_filter (String)

    The optional parameter to filter the attention logs by urgency. (default to ALL) Allowed values are: IMMEDIATE, SOON, DEFERRABLE, INFO, ALL

  • :type_filter (String)

    The optional parameter to filter the attention or alert logs by type. (default to ALL) Allowed values are: UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL

  • :log_search_text (String)

    The optional query parameter to filter the attention or alert logs by search text.

  • :is_regular_expression (BOOLEAN)

    The flag to indicate whether the search text is regular expression or not. (default to false)

  • :sort_by (String)

    The possible sortBy values of attention logs. (default to TIMESTAMP) Allowed values are: URGENCY, TYPE, MESSAGE, TIMESTAMP, SCOPE, TARGET_USER

  • :sort_order (String)

    The option to sort information in ascending (u2018ASCu2019) or descending (u2018DESCu2019) order. Ascending order is the default order. (default to ASC)

  • :page (String)

    The page token representing the page from where the next set of paginated results are retrieved. This is usually retrieved from a previous list call.

  • :limit (Integer)

    The maximum number of records returned in the paginated response. (default to 10)

  • :opc_request_id (String)

    The client request ID for tracing.

Returns:



225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
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
# File 'lib/oci/database_management/diagnosability_client.rb', line 225

def list_attention_logs(managed_database_id, opts = {})
  logger.debug 'Calling operation DiagnosabilityClient#list_attention_logs.' if logger

  raise "Missing the required parameter 'managed_database_id' when calling list_attention_logs." if managed_database_id.nil?

  if opts[:urgency_filter] && !%w[IMMEDIATE SOON DEFERRABLE INFO ALL].include?(opts[:urgency_filter])
    raise 'Invalid value for "urgency_filter", must be one of IMMEDIATE, SOON, DEFERRABLE, INFO, ALL.'
  end

  if opts[:type_filter] && !%w[UNKNOWN INCIDENT_ERROR ERROR WARNING NOTIFICATION TRACE ALL].include?(opts[:type_filter])
    raise 'Invalid value for "type_filter", must be one of UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL.'
  end

  if opts[:sort_by] && !%w[URGENCY TYPE MESSAGE TIMESTAMP SCOPE TARGET_USER].include?(opts[:sort_by])
    raise 'Invalid value for "sort_by", must be one of URGENCY, TYPE, MESSAGE, TIMESTAMP, SCOPE, TARGET_USER.'
  end

  if opts[:sort_order] && !OCI::DatabaseManagement::Models::SORT_ORDERS_ENUM.include?(opts[:sort_order])
    raise 'Invalid value for "sort_order", must be one of the values in OCI::DatabaseManagement::Models::SORT_ORDERS_ENUM.'
  end
  raise "Parameter value for 'managed_database_id' must not be blank" if OCI::Internal::Util.blank_string?(managed_database_id)

  path = '/managedDatabases/{managedDatabaseId}/attentionLogs'.sub('{managedDatabaseId}', managed_database_id.to_s)
  operation_signing_strategy = :standard

  # rubocop:disable Style/NegatedIf
  # Query Params
  query_params = {}
  query_params[:timeGreaterThanOrEqualTo] = opts[:time_greater_than_or_equal_to] if opts[:time_greater_than_or_equal_to]
  query_params[:timeLessThanOrEqualTo] = opts[:time_less_than_or_equal_to] if opts[:time_less_than_or_equal_to]
  query_params[:urgencyFilter] = opts[:urgency_filter] if opts[:urgency_filter]
  query_params[:typeFilter] = opts[:type_filter] if opts[:type_filter]
  query_params[:logSearchText] = opts[:log_search_text] if opts[:log_search_text]
  query_params[:isRegularExpression] = opts[:is_regular_expression] if !opts[:is_regular_expression].nil?
  query_params[:sortBy] = opts[:sort_by] if opts[:sort_by]
  query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order]
  query_params[:page] = opts[:page] if opts[:page]
  query_params[:limit] = opts[:limit] if opts[:limit]

  # Header Params
  header_params = {}
  header_params[:accept] = 'application/json'
  header_params[:'content-type'] = 'application/json'
  header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
  # rubocop:enable Style/NegatedIf

  post_body = nil

  # rubocop:disable Metrics/BlockLength
  OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DiagnosabilityClient#list_attention_logs') do
    @api_client.call_api(
      :GET,
      path,
      endpoint,
      header_params: header_params,
      query_params: query_params,
      operation_signing_strategy: operation_signing_strategy,
      body: post_body,
      return_type: 'OCI::DatabaseManagement::Models::AttentionLogCollection'
    )
  end
  # rubocop:enable Metrics/BlockLength
end

#loggerLogger

Returns The logger for this client. May be nil.

Returns:

  • (Logger)

    The logger for this client. May be nil.



96
97
98
# File 'lib/oci/database_management/diagnosability_client.rb', line 96

def logger
  @api_client.config.logger
end

#summarize_alert_log_counts(managed_database_id, opts = {}) ⇒ Response

Note:

Click here to see an example of how to use summarize_alert_log_counts API.

Get the counts of alert logs for the specified Managed Database.

Parameters:

  • managed_database_id (String)

    The OCID of the Managed Database.

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

    the optional parameters

Options Hash (opts):

  • :retry_config (OCI::Retry::RetryConfig)

    The retry configuration to apply to this operation. If no key is provided then the service-level retry configuration defined by #retry_config will be used. If an explicit nil value is provided then the operation will not retry

  • :time_greater_than_or_equal_to (DateTime)

    The optional greater than or equal to timestamp to filter the logs.

  • :time_less_than_or_equal_to (DateTime)

    The optional less than or equal to timestamp to filter the logs.

  • :level_filter (String)

    The optional parameter to filter the alert logs by log level. (default to ALL) Allowed values are: CRITICAL, SEVERE, IMPORTANT, NORMAL, ALL

  • :group_by (String)

    The optional parameter used to group different alert logs. (default to TYPE) Allowed values are: LEVEL, TYPE

  • :type_filter (String)

    The optional parameter to filter the attention or alert logs by type. (default to ALL) Allowed values are: UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL

  • :log_search_text (String)

    The optional query parameter to filter the attention or alert logs by search text.

  • :is_regular_expression (BOOLEAN)

    The flag to indicate whether the search text is regular expression or not. (default to false)

  • :page (String)

    The page token representing the page from where the next set of paginated results are retrieved. This is usually retrieved from a previous list call.

  • :limit (Integer)

    The maximum number of records returned in the paginated response. (default to 10)

  • :opc_request_id (String)

    The client request ID for tracing.

Returns:



320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
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
# File 'lib/oci/database_management/diagnosability_client.rb', line 320

def summarize_alert_log_counts(managed_database_id, opts = {})
  logger.debug 'Calling operation DiagnosabilityClient#summarize_alert_log_counts.' if logger

  raise "Missing the required parameter 'managed_database_id' when calling summarize_alert_log_counts." if managed_database_id.nil?

  if opts[:level_filter] && !%w[CRITICAL SEVERE IMPORTANT NORMAL ALL].include?(opts[:level_filter])
    raise 'Invalid value for "level_filter", must be one of CRITICAL, SEVERE, IMPORTANT, NORMAL, ALL.'
  end

  if opts[:group_by] && !%w[LEVEL TYPE].include?(opts[:group_by])
    raise 'Invalid value for "group_by", must be one of LEVEL, TYPE.'
  end

  if opts[:type_filter] && !%w[UNKNOWN INCIDENT_ERROR ERROR WARNING NOTIFICATION TRACE ALL].include?(opts[:type_filter])
    raise 'Invalid value for "type_filter", must be one of UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL.'
  end
  raise "Parameter value for 'managed_database_id' must not be blank" if OCI::Internal::Util.blank_string?(managed_database_id)

  path = '/managedDatabases/{managedDatabaseId}/alertLogCounts'.sub('{managedDatabaseId}', managed_database_id.to_s)
  operation_signing_strategy = :standard

  # rubocop:disable Style/NegatedIf
  # Query Params
  query_params = {}
  query_params[:timeGreaterThanOrEqualTo] = opts[:time_greater_than_or_equal_to] if opts[:time_greater_than_or_equal_to]
  query_params[:timeLessThanOrEqualTo] = opts[:time_less_than_or_equal_to] if opts[:time_less_than_or_equal_to]
  query_params[:levelFilter] = opts[:level_filter] if opts[:level_filter]
  query_params[:groupBy] = opts[:group_by] if opts[:group_by]
  query_params[:typeFilter] = opts[:type_filter] if opts[:type_filter]
  query_params[:logSearchText] = opts[:log_search_text] if opts[:log_search_text]
  query_params[:isRegularExpression] = opts[:is_regular_expression] if !opts[:is_regular_expression].nil?
  query_params[:page] = opts[:page] if opts[:page]
  query_params[:limit] = opts[:limit] if opts[:limit]

  # Header Params
  header_params = {}
  header_params[:accept] = 'application/json'
  header_params[:'content-type'] = 'application/json'
  header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
  # rubocop:enable Style/NegatedIf

  post_body = nil

  # rubocop:disable Metrics/BlockLength
  OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DiagnosabilityClient#summarize_alert_log_counts') do
    @api_client.call_api(
      :GET,
      path,
      endpoint,
      header_params: header_params,
      query_params: query_params,
      operation_signing_strategy: operation_signing_strategy,
      body: post_body,
      return_type: 'OCI::DatabaseManagement::Models::AlertLogCountsCollection'
    )
  end
  # rubocop:enable Metrics/BlockLength
end

#summarize_attention_log_counts(managed_database_id, opts = {}) ⇒ Response

Note:

Click here to see an example of how to use summarize_attention_log_counts API.

Get the counts of attention logs for the specified Managed Database.

Parameters:

  • managed_database_id (String)

    The OCID of the Managed Database.

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

    the optional parameters

Options Hash (opts):

  • :retry_config (OCI::Retry::RetryConfig)

    The retry configuration to apply to this operation. If no key is provided then the service-level retry configuration defined by #retry_config will be used. If an explicit nil value is provided then the operation will not retry

  • :time_greater_than_or_equal_to (DateTime)

    The optional greater than or equal to timestamp to filter the logs.

  • :time_less_than_or_equal_to (DateTime)

    The optional less than or equal to timestamp to filter the logs.

  • :urgency_filter (String)

    The optional parameter to filter the attention logs by urgency. (default to ALL) Allowed values are: IMMEDIATE, SOON, DEFERRABLE, INFO, ALL

  • :group_by (String)

    The optional parameter used to group different attention logs. (default to TYPE) Allowed values are: URGENCY, TYPE

  • :type_filter (String)

    The optional parameter to filter the attention or alert logs by type. (default to ALL) Allowed values are: UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL

  • :log_search_text (String)

    The optional query parameter to filter the attention or alert logs by search text.

  • :is_regular_expression (BOOLEAN)

    The flag to indicate whether the search text is regular expression or not. (default to false)

  • :page (String)

    The page token representing the page from where the next set of paginated results are retrieved. This is usually retrieved from a previous list call.

  • :limit (Integer)

    The maximum number of records returned in the paginated response. (default to 10)

  • :opc_request_id (String)

    The client request ID for tracing.

Returns:



410
411
412
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
466
467
# File 'lib/oci/database_management/diagnosability_client.rb', line 410

def summarize_attention_log_counts(managed_database_id, opts = {})
  logger.debug 'Calling operation DiagnosabilityClient#summarize_attention_log_counts.' if logger

  raise "Missing the required parameter 'managed_database_id' when calling summarize_attention_log_counts." if managed_database_id.nil?

  if opts[:urgency_filter] && !%w[IMMEDIATE SOON DEFERRABLE INFO ALL].include?(opts[:urgency_filter])
    raise 'Invalid value for "urgency_filter", must be one of IMMEDIATE, SOON, DEFERRABLE, INFO, ALL.'
  end

  if opts[:group_by] && !%w[URGENCY TYPE].include?(opts[:group_by])
    raise 'Invalid value for "group_by", must be one of URGENCY, TYPE.'
  end

  if opts[:type_filter] && !%w[UNKNOWN INCIDENT_ERROR ERROR WARNING NOTIFICATION TRACE ALL].include?(opts[:type_filter])
    raise 'Invalid value for "type_filter", must be one of UNKNOWN, INCIDENT_ERROR, ERROR, WARNING, NOTIFICATION, TRACE, ALL.'
  end
  raise "Parameter value for 'managed_database_id' must not be blank" if OCI::Internal::Util.blank_string?(managed_database_id)

  path = '/managedDatabases/{managedDatabaseId}/attentionLogCounts'.sub('{managedDatabaseId}', managed_database_id.to_s)
  operation_signing_strategy = :standard

  # rubocop:disable Style/NegatedIf
  # Query Params
  query_params = {}
  query_params[:timeGreaterThanOrEqualTo] = opts[:time_greater_than_or_equal_to] if opts[:time_greater_than_or_equal_to]
  query_params[:timeLessThanOrEqualTo] = opts[:time_less_than_or_equal_to] if opts[:time_less_than_or_equal_to]
  query_params[:urgencyFilter] = opts[:urgency_filter] if opts[:urgency_filter]
  query_params[:groupBy] = opts[:group_by] if opts[:group_by]
  query_params[:typeFilter] = opts[:type_filter] if opts[:type_filter]
  query_params[:logSearchText] = opts[:log_search_text] if opts[:log_search_text]
  query_params[:isRegularExpression] = opts[:is_regular_expression] if !opts[:is_regular_expression].nil?
  query_params[:page] = opts[:page] if opts[:page]
  query_params[:limit] = opts[:limit] if opts[:limit]

  # Header Params
  header_params = {}
  header_params[:accept] = 'application/json'
  header_params[:'content-type'] = 'application/json'
  header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id]
  # rubocop:enable Style/NegatedIf

  post_body = nil

  # rubocop:disable Metrics/BlockLength
  OCI::Retry.make_retrying_call(applicable_retry_config(opts), call_name: 'DiagnosabilityClient#summarize_attention_log_counts') do
    @api_client.call_api(
      :GET,
      path,
      endpoint,
      header_params: header_params,
      query_params: query_params,
      operation_signing_strategy: operation_signing_strategy,
      body: post_body,
      return_type: 'OCI::DatabaseManagement::Models::AttentionLogCountsCollection'
    )
  end
  # rubocop:enable Metrics/BlockLength
end