odb / Paginator / ListGiMinorVersions

ListGiMinorVersions

class odb.Paginator.ListGiMinorVersions
paginator = client.get_paginator('list_gi_minor_versions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from odb.Client.list_gi_minor_versions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    giVersion='string',
    shapeFamily='string',
    availabilityZone='string',
    availabilityZoneId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • giVersion (string) –

    [REQUIRED]

    The Oracle Grid Infrastructure (GI) major version.

  • shapeFamily (string) – The shape family for the GI minor version.

  • availabilityZone (string) – The Availability Zone to filter GI minor versions.

  • availabilityZoneId (string) – The Availability Zone ID to filter GI minor versions.

  • 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 NextToken will 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 NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'giMinorVersions': [
        {
            'version': 'string',
            'gridImageId': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • giMinorVersions (list) –

      The list of GI minor versions.

      • (dict) –

        Summary information about an Oracle Grid Infrastructure (GI) minor version.

        • version (string) –

          The GI minor version.

        • gridImageId (string) –

          The Grid Infrastructure software image ID for this minor version.

    • NextToken (string) –

      A token to resume pagination.