Table: oci_identity_availability_domain - Query OCI Identity Availability Domains using SQL
Oracle Cloud Infrastructure's Identity and Access Management (IAM) service lets you control who has access to your cloud resources. Availability Domains are isolated from each other, fault-tolerant, and very unlikely to fail simultaneously. They provide the resources to run your applications and databases in a high-availability configuration.
Table Usage Guide
The oci_identity_availability_domain
table provides insights into Availability Domains within OCI Identity and Access Management (IAM). As a cloud engineer, you can explore domain-specific details through this table, including their names, compartment IDs, and associated metadata. Use it to uncover information about domains, such as their status, the resources they hold, and their relationships with other domains.
Examples
Basic info
Explore the names and IDs of available domains within the Oracle Cloud Infrastructure (OCI) to manage and organize resources more efficiently. This can be particularly useful for system administrators seeking to streamline their resource allocation and tracking processes.
select name, idfrom oci_identity_availability_domain;
select name, idfrom oci_identity_availability_domain;
Query examples
Schema for oci_identity_availability_domain
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
compartment_id | text | = | The OCID of the compartment in Tenant in which the resource is located. |
id | text | The OCID of the Availability Domain. | |
name | text | The name of the Availability Domain. | |
region | text | The OCI region in which the resource is located. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
tenant_id | text | =, !=, ~~, ~~*, !~~, !~~* | The OCID of the Tenant in which the resource is located. |
tenant_name | text | The name of the Tenant in which the resource is located. | |
title | text | Title of the resource. |
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_identity_availability_domain