odb / Client / list_autonomous_database_versions

list_autonomous_database_versions

odb.Client.list_autonomous_database_versions(**kwargs)

Lists the available Oracle Database software versions for Autonomous Databases.

See also: AWS API Documentation

Request Syntax

response = client.list_autonomous_database_versions(
    maxResults=123,
    nextToken='string',
    dbWorkload='OLTP'|'AJD'|'APEX'|'LH'
)
Parameters:
  • maxResults (integer) – The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.

  • nextToken (string) – The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

  • dbWorkload (string) – The intended use of the Autonomous Database to return versions for, such as transaction processing, data warehouse, JSON database, or APEX.

Return type:

dict

Returns:

Response Syntax

{
    'nextToken': 'string',
    'autonomousDatabaseVersions': [
        {
            'dbWorkload': 'OLTP'|'AJD'|'APEX'|'LH',
            'details': 'string',
            'version': 'string'
        },
    ]
}

Response Structure

  • (dict) –

    • nextToken (string) –

      The token to include in another request to get the next page of items. This value is null when there are no more items to return.

    • autonomousDatabaseVersions (list) –

      The list of available Autonomous Database software versions.

      • (dict) –

        A summary of an available Oracle Database software version for Autonomous Databases.

        • dbWorkload (string) –

          The intended use of the Autonomous Database that the version supports, such as transaction processing, data warehouse, JSON database, or APEX.

        • details (string) –

          Additional details about the Autonomous Database software version.

        • version (string) –

          The Oracle Database software version.

Exceptions

  • odb.Client.exceptions.ThrottlingException

  • odb.Client.exceptions.ValidationException

  • odb.Client.exceptions.AccessDeniedException

  • odb.Client.exceptions.InternalServerException