odb / Paginator / ListAutonomousDatabaseVersions
ListAutonomousDatabaseVersions¶
- class odb.Paginator.ListAutonomousDatabaseVersions¶
paginator = client.get_paginator('list_autonomous_database_versions')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
odb.Client.list_autonomous_database_versions().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( dbWorkload='OLTP'|'AJD'|'APEX'|'LH', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
dbWorkload (string) – The intended use of the Autonomous Database to return versions for, such as transaction processing, data warehouse, JSON database, or APEX.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'autonomousDatabaseVersions': [ { 'dbWorkload': 'OLTP'|'AJD'|'APEX'|'LH', 'details': 'string', 'version': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
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.
NextToken (string) –
A token to resume pagination.