Application Integration API . projects . locations . connections . runtimeActionSchemas

Instance Methods

close()

Close httplib2 connections.

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

Lists the JSON schemas for the inputs and outputs of actions, filtered by action 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 inputs and outputs of actions, filtered by action name.

Args:
  parent: string, Required. Parent resource of RuntimeActionSchema. Format: projects/{project}/locations/{location}/connections/{connection} (required)
  filter: string, Filter. Only the action 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 RuntimeActionSchemas for a specific Connection.
  "nextPageToken": "A String", # Next page token.
  "runtimeActionSchemas": [ # Runtime action schemas.
    { # Metadata of an action, including schemas for its inputs and outputs.
      "action": "A String", # Name of the action.
      "inputSchema": "A String", # Input parameter schema for the action.
      "outputSchema": "A String", # Output parameter schema for the action.
    },
  ],
}
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.