Skip to main content

cloud_exadata_infrastructures

Creates, updates, deletes, gets or lists a cloud_exadata_infrastructures resource.

Overview

Namecloud_exadata_infrastructures
TypeResource
Idaws.odb.cloud_exadata_infrastructures

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
activated_storage_countintegerThe number of storage servers requested for the Exadata infrastructure.
additional_storage_countintegerThe number of storage servers requested for the Exadata infrastructure.
availability_zonestringThe name of the Availability Zone (AZ) where the Exadata infrastructure is located.
availability_zone_idstringThe AZ ID of the AZ where the Exadata infrastructure is located.
available_storage_size_in_gbsintegerThe amount of available storage, in gigabytes (GB), for the Exadata infrastructure.
cloud_exadata_infrastructure_arnstringThe Amazon Resource Name (ARN) for the Exadata infrastructure.
cloud_exadata_infrastructure_idstringThe unique identifier for the Exadata infrastructure. (pattern: <code>(arn:(?:aws|aws-cn|aws-us-gov|aws-iso-{0,1}[a-z]{0,1}):[a-z0-9-]+:[a-z0-9-]*:[0-9]+:[a-z0-9-]+/[a-zA-Z0-9_.-]{6,64}|[a-zA-Z0-9_.-]{6,64})</code>)
compute_countintegerThe number of database servers for the Exadata infrastructure.
compute_modelstringThe OCI model compute model used when you create or clone an instance: ECPU or OCPU. An ECPU is an abstracted measure of compute resources. ECPUs are based on the number of cores elastically allocated from a pool of compute and storage servers. An OCPU is a legacy physical measure of compute resources. OCPUs are based on the physical core of a processor with hyper-threading enabled. (ECPU, OCPU)
cpu_countintegerThe total number of CPU cores that are allocated to the Exadata infrastructure.
created_atstring (date-time)The date and time when the Exadata infrastructure was created.
customer_contacts_to_send_to_ociarrayThe email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure.
data_storage_size_in_tbsnumber (double)The size of the Exadata infrastructure's data disk group, in terabytes (TB).
database_server_typestringThe database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.
db_node_storage_size_in_gbsintegerThe size of the Exadata infrastructure's local node storage, in gigabytes (GB).
db_server_versionstringThe software version of the database servers (dom0) in the Exadata infrastructure.
display_namestringThe user-friendly name for the Exadata infrastructure.
last_maintenance_run_idstringThe Oracle Cloud Identifier (OCID) of the last maintenance run for the Exadata infrastructure.
maintenance_windowobjectThe scheduling details for the maintenance window. Patching and system updates take place during the maintenance window.
max_cpu_countintegerThe total number of CPU cores available on the Exadata infrastructure.
max_data_storage_in_tbsnumber (double)The total amount of data disk group storage, in terabytes (TB), that's available on the Exadata infrastructure.
max_db_node_storage_size_in_gbsintegerThe total amount of local node storage, in gigabytes (GB), that's available on the Exadata infrastructure.
max_memory_in_gbsintegerThe total amount of memory, in gigabytes (GB), that's available on the Exadata infrastructure.
memory_size_in_gbsintegerThe amount of memory, in gigabytes (GB), that's allocated on the Exadata infrastructure.
monthly_db_server_versionstringThe monthly software version of the database servers installed on the Exadata infrastructure.
monthly_storage_server_versionstringThe monthly software version of the storage servers installed on the Exadata infrastructure.
next_maintenance_run_idstringThe OCID of the next maintenance run for the Exadata infrastructure.
oci_resource_anchor_namestringThe name of the OCI resource anchor for the Exadata infrastructure.
oci_urlstringThe HTTPS link to the Exadata infrastructure in OCI.
ocidstringThe OCID of the Exadata infrastructure.
percent_progressnumber (float)The amount of progress made on the current operation on the Exadata infrastructure, expressed as a percentage.
shapestringThe model name of the Exadata infrastructure.
statusstringThe current status of the Exadata infrastructure. (AVAILABLE, FAILED, PROVISIONING, TERMINATED, TERMINATING, UPDATING, MAINTENANCE_IN_PROGRESS)
status_reasonstringAdditional information about the status of the Exadata infrastructure.
storage_countintegerThe number of storage servers that are activated for the Exadata infrastructure.
storage_server_typestringThe storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation.
storage_server_versionstringThe software version of the storage servers on the Exadata infrastructure.
total_storage_size_in_gbsintegerThe total amount of storage, in gigabytes (GB), on the the Exadata infrastructure.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_cloud_exadata_infrastructureselectregionReturns information about the specified Exadata infrastructure.
list_cloud_exadata_infrastructuresselectregionReturns information about the Exadata infrastructures owned by your Amazon Web Services account.
create_cloud_exadata_infrastructureinsertregion, displayName, shape, computeCount, storageCountCreates an Exadata infrastructure.
update_cloud_exadata_infrastructureupdateregion, cloudExadataInfrastructureIdUpdates the properties of an Exadata infrastructure resource.
delete_cloud_exadata_infrastructuredeleteregionDeletes the specified Exadata infrastructure. Before you use this operation, make sure to delete all of the VM clusters that are hosted on this Exadata infrastructure.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information about the specified Exadata infrastructure.

SELECT
activated_storage_count,
additional_storage_count,
availability_zone,
availability_zone_id,
available_storage_size_in_gbs,
cloud_exadata_infrastructure_arn,
cloud_exadata_infrastructure_id,
compute_count,
compute_model,
cpu_count,
created_at,
customer_contacts_to_send_to_oci,
data_storage_size_in_tbs,
database_server_type,
db_node_storage_size_in_gbs,
db_server_version,
display_name,
last_maintenance_run_id,
maintenance_window,
max_cpu_count,
max_data_storage_in_tbs,
max_db_node_storage_size_in_gbs,
max_memory_in_gbs,
memory_size_in_gbs,
monthly_db_server_version,
monthly_storage_server_version,
next_maintenance_run_id,
oci_resource_anchor_name,
oci_url,
ocid,
percent_progress,
shape,
status,
status_reason,
storage_count,
storage_server_type,
storage_server_version,
total_storage_size_in_gbs
FROM aws.odb.cloud_exadata_infrastructures
WHERE region = '{{ region }}' -- required
;

INSERT examples

Creates an Exadata infrastructure.

INSERT INTO aws.odb.cloud_exadata_infrastructures (
displayName,
shape,
availabilityZone,
availabilityZoneId,
tags,
computeCount,
customerContactsToSendToOCI,
maintenanceWindow,
storageCount,
clientToken,
databaseServerType,
storageServerType,
region
)
SELECT
'{{ displayName }}' /* required */,
'{{ shape }}' /* required */,
'{{ availabilityZone }}',
'{{ availabilityZoneId }}',
'{{ tags }}',
{{ computeCount }} /* required */,
'{{ customerContactsToSendToOCI }}',
'{{ maintenanceWindow }}',
{{ storageCount }} /* required */,
'{{ clientToken }}',
'{{ databaseServerType }}',
'{{ storageServerType }}',
'{{ region }}'
RETURNING
cloud_exadata_infrastructure_id,
display_name,
status,
status_reason
;

UPDATE examples

Updates the properties of an Exadata infrastructure resource.

UPDATE aws.odb.cloud_exadata_infrastructures
SET
cloudExadataInfrastructureId = '{{ cloudExadataInfrastructureId }}',
maintenanceWindow = '{{ maintenanceWindow }}'
WHERE
region = '{{ region }}' --required
AND cloudExadataInfrastructureId = '{{ cloudExadataInfrastructureId }}' --required
RETURNING
cloud_exadata_infrastructure_id,
display_name,
status,
status_reason;

DELETE examples

Deletes the specified Exadata infrastructure. Before you use this operation, make sure to delete all of the VM clusters that are hosted on this Exadata infrastructure.

DELETE FROM aws.odb.cloud_exadata_infrastructures
WHERE region = '{{ region }}' --required
;