Application Integration API . projects . locations . connections . runtimeEntitySchemas

Instance Methods

close()

Close httplib2 connections.

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

Lists the JSON schemas for the properties of runtime entities, filtered by entity name.

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)
Lists the JSON schemas for the properties of runtime entities, filtered by entity name.

Args:
  parent: string, Required. Parent resource of RuntimeEntitySchema. Format: projects/{project}/locations/{location}/connections/{connection} (required)
  filter: string, Filter. Only the entity field with literal equality operator is supported.
  pageSize: integer, Page size.
  pageToken: string, Page token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response for listing RuntimeEntitySchemas for a specific Connection.
  "nextPageToken": "A String", # Next page token.
  "runtimeEntitySchemas": [ # Runtime entity schemas.
    { # Metadata of an entity, including a schema for its properties.
      "arrayFieldSchema": "A String", # The above schema, but for an array of the associated entity.
      "entity": "A String", # Name of the entity.
      "fieldSchema": "A String", # List of fields in the entity.
    },
  ],
}
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.