db_system_initial_storage_sizes
Creates, updates, deletes, gets or lists a db_system_initial_storage_sizes resource.
Overview
| Name | db_system_initial_storage_sizes |
| Type | Resource |
| Id | google.oracledatabase.db_system_initial_storage_sizes |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Output only. The name of the resource. |
properties | object | Output only. The properties of the DbSystem initial storage size summary. (id: DbSystemInitialStorageSizeProperties) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, locationsId | pageSize, pageToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
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 }}'
;