Skip to main content

autonomous_database_character_sets

Creates, updates, deletes, gets or lists an autonomous_database_character_sets resource.

Overview

Nameautonomous_database_character_sets
TypeResource
Idgoogle.oracledatabase.autonomous_database_character_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. The name of the Autonomous Database Character Set resource in the following format: projects/{project}/locations/{region}/autonomousDatabaseCharacterSets/{autonomous_database_character_set}
characterSetstringOutput only. The character set name for the Autonomous Database which is the ID in the resource name.
characterSetTypestringOutput only. The character set type for the Autonomous Database. (CHARACTER_SET_TYPE_UNSPECIFIED, DATABASE, NATIONAL)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsIdpageToken, filter, pageSizeLists 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring
filterstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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 pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}'
AND pageSize = '{{ pageSize }}'
;