Oracle Database@Google Cloud API . projects . locations . dbVersions

Instance Methods

close()

Close httplib2 connections.

list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)

List DbVersions for the given project and location.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
List DbVersions for the given project and location.

Args:
  parent: string, Required. The parent value for the DbVersion resource with the format: projects/{project}/locations/{location} (required)
  filter: string, Optional. Filter expression that matches a subset of the DbVersions to show. The supported filter for dbSystem creation is `db_system_shape = {db_system_shape} AND storage_management = {storage_management}`. If no filter is provided, all DbVersions will be returned.
  pageSize: integer, Optional. The maximum number of items to return. If unspecified, a maximum of 50 System Versions will be returned. The maximum value is 1000; values above 1000 will be reset to 1000.
  pageToken: string, Optional. A token identifying the requested page of results to return. All fields except the filter should remain the same as in the request that provided this page token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The response for `DbVersions.List`.
  "dbVersions": [ # The list of DbVersions.
    { # A valid Oracle Database version.
      "name": "A String", # Output only. The name of the DbVersion resource in the following format: projects/{project}/locations/{region}/dbVersions/{db_version}
      "properties": { # The properties of a DbVersion. # Output only. The properties of the DbVersion.
        "isLatestForMajorVersion": True or False, # Output only. True if this version of the Oracle Database software is the latest version for a release.
        "isPreviewDbVersion": True or False, # Output only. True if this version of the Oracle Database software is the preview version.
        "isUpgradeSupported": True or False, # Output only. True if this version of the Oracle Database software is supported for Upgrade.
        "supportsPdb": True or False, # Output only. True if this version of the Oracle Database software supports pluggable databases.
        "version": "A String", # Output only. A valid Oracle Database version.
      },
    },
  ],
  "nextPageToken": "A String", # A token identifying a page of results the server should return.
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.