Returns the operations Resource.
Returns the reports Resource.
Close httplib2 connections.
Gets an app.
  list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the apps under the given account.
Retrieves the next page of results.
close()
  Close httplib2 connections.
get(name, x__xgafv=None)
  Gets an app.
Args:
  name: string, Required. Resource name of the app. Example: `accounts/123/apps/456` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
Returns:
  An object of the form:
    { # Represents an app in Checks.
  "name": "A String", # The resource name of the app. Example: `accounts/123/apps/456`
  "title": "A String", # The app's title.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
  Lists the apps under the given account.
Args:
  parent: string, Required. The parent account. Example: `accounts/123` (required)
  pageSize: integer, Optional. The maximum number of results to return. The server may further constrain the maximum number of results returned in a single page. If unspecified, the server will decide the number of results to be returned.
  pageToken: string, Optional. A page token received from a previous `ListApps` call. Provide this to retrieve the subsequent page.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
Returns:
  An object of the form:
    { # The response message for AccountService.ListApps.
  "apps": [ # The apps.
    { # Represents an app in Checks.
      "name": "A String", # The resource name of the app. Example: `accounts/123/apps/456`
      "title": "A String", # The app's title.
    },
  ],
  "nextPageToken": "A String", # A token which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
}
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.