Skip to main content

pluggable_databases

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

Overview

Namepluggable_databases
TypeResource
Idgoogle.oracledatabase.pluggable_databases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. The name of the PluggableDatabase resource in the following format: projects/{project}/locations/{region}/pluggableDatabases/{pluggable_database}
createTimestring (google-datetime)Output only. The date and time that the PluggableDatabase was created.
ociUrlstringOutput only. HTTPS link to OCI resources exposed to Customer via UI Interface.
propertiesobjectOptional. The properties of the PluggableDatabase. (id: PluggableDatabaseProperties)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, pluggableDatabasesIdGets details of a single PluggableDatabase.
listselectprojectsId, locationsIdpageSize, pageToken, filterLists all the PluggableDatabases for the given project, location and Container Database.

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
locationsIdstring
pluggableDatabasesIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Gets details of a single PluggableDatabase.

SELECT
name,
createTime,
ociUrl,
properties
FROM google.oracledatabase.pluggable_databases
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pluggableDatabasesId = '{{ pluggableDatabasesId }}' -- required
;