autonomous_database_character_sets
Creates, updates, deletes, gets or lists an autonomous_database_character_sets
resource.
Overview
Name | autonomous_database_character_sets |
Type | Resource |
Id | google.oracledatabase.autonomous_database_character_sets |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the Autonomous Database Character Set resource in the following format: projects/{project}/locations/{region}/autonomousDatabaseCharacterSets/{autonomous_database_character_set} |
characterSet | string | Output only. The character set name for the Autonomous Database which is the ID in the resource name. |
characterSetType | string | Output only. The character set type for the Autonomous Database. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId | pageSize , pageToken , filter | Lists Autonomous Database Character Sets in a 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 | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
Lists Autonomous Database Character Sets in a given project and location.
SELECT
name,
characterSet,
characterSetType
FROM google.oracledatabase.autonomous_database_character_sets
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';