Skip to main content

db_system_initial_storage_sizes

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

Overview

Namedb_system_initial_storage_sizes
TypeResource
Idgoogle.oracledatabase.db_system_initial_storage_sizes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringOutput only. The name of the resource.
propertiesobjectOutput only. The properties of the DbSystem initial storage size summary. (id: DbSystemInitialStorageSizeProperties)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsIdpageSize, pageTokenLists all the DbSystemInitialStorageSizes for the given project and location.

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

SELECT examples

Lists all the DbSystemInitialStorageSizes for the given project and location.

SELECT
name,
properties
FROM google.oracledatabase.db_system_initial_storage_sizes
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
;