steampipe plugin install oci

Table: oci_mysql_configuration - Query OCI MySQL Configurations using SQL

Oracle Cloud Infrastructure's MySQL Database Service is a fully managed database service that enables you to deploy cloud-native applications using the world’s most popular open source database. It is developed, managed, and supported by the MySQL team. This service is built on MySQL Enterprise Edition and powered by Oracle Cloud, to provide a simple, automated, integrated and enterprise ready MySQL cloud service, enabling organizations to increase business agility and reduce costs.

Table Usage Guide

The oci_mysql_configuration table provides insights into MySQL configurations within Oracle Cloud Infrastructure's MySQL Database Service. As a Database Administrator, explore configuration-specific details through this table, including configuration type, shape, and associated metadata. Utilize it to uncover information about configurations, such as those related to specific MySQL versions, the details of the configuration parameters, and the verification of configuration statuses.

Examples

Basic info

Explore the basic details of your MySQL configurations to understand their current lifecycle state and creation time, which can be useful for managing and tracking your database resources.

select
display_name,
id,
description,
lifecycle_state as state,
time_created
from
oci_mysql_configuration;
select
display_name,
id,
description,
lifecycle_state as state,
time_created
from
oci_mysql_configuration;

Schema for oci_mysql_configuration

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
compartment_idtext=The OCID of the compartment in Tenant in which the resource is located.
defined_tagsjsonbDefined tags for resource. Defined tags are set up in your tenancy by an administrator. Only users granted permission to work with the defined tags can apply them to resources.
descriptiontextUser-provided data about the Configuration.
display_nametext=The display name of the Configuration.
freeform_tagsjsonbFree-form tags for resource. This tags can be applied by any user with permissions on the resource.
idtext=The OCID of the Configuration.
lifecycle_statetext=The current state of the Configuration.
parent_configuration_idtextThe OCID of the Configuration from which this Configuration is derived.
shape_nametext=The name of the associated Shape.
tagsjsonbA map of tags for the resource.
tenant_idtextThe OCID of the Tenant in which the resource is located.
tenant_nametextThe name of the Tenant in which the resource is located.
time_createdtimestamp with time zoneThe date and time the Configuration was created.
time_updatedtimestamp with time zoneThe date and time the Configuration was last updated.
titletextTitle of the resource.
typetextThe Configuration type, DEFAULT or CUSTOM.
variablestextUser controllable service variables of the Configuration.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- oci

You can pass the configuration to the command with the --config argument:

steampipe_export_oci --config '<your_config>' oci_mysql_configuration