minor_versions
Creates, updates, deletes, gets or lists a minor_versions resource.
Overview
| Name | minor_versions |
| Type | Resource |
| Id | google.oracledatabase.minor_versions |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Identifier. The name of the MinorVersion resource with the format: projects/{project}/locations/{region}/giVersions/{gi_version}/minorVersions/{minor_version} |
gridImageId | string | Optional. The ID of the Grid Image. |
version | string | Optional. The valid Oracle grid infrastructure software version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, locationsId, giVersionsId | pageSize, pageToken, filter | Lists all the valid minor versions for the given project, location, gi version and shape family. |
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 |
|---|---|---|
giVersionsId | string | |
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
Lists all the valid minor versions for the given project, location, gi version and shape family.
SELECT
name,
gridImageId,
version
FROM google.oracledatabase.minor_versions
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND giVersionsId = '{{ giVersionsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
;