Skip to main content

List GCP projects

Returns a list of GCP projects. By default only active projects are returned; use the is_deleted filter to return deleted projects.

Query Parameters
  • limit int64

    Limits the size of the response on each page to the specified number of items.

  • start string

    Sets the page number used to browse the collection. Pages are indexed starting from 1 (i.e., ?start=1).

  • filter string

    Narrows down the results to only the items that satisfy the filter criteria. Supported filter fields:

    FieldConditionDescription
    project_id$eq,$inThe GCP project ID.
    is_deleted$eqBoolean flag indicating whether to return deleted (true) or active (false) projects.
Responses

Success


Schema
  • _embedded object
  • items object[]
  • created_timestamp string

    Creation time of the project in RFC-3339 format.

  • deleted_timestamp string

    Deletion time of the project in RFC-3339 format.

  • id string

    The Clumio-assigned ID of the project.

  • is_deleted boolean

    Indicates whether the project has been deleted (true) or is active (false).

  • project_id string

    The GCP project ID.

  • project_number string

    The GCP project number.

  • updated_timestamp string

    Last update time of the project in RFC-3339 format.

  • version int64

    Resource version of the project.

  • current_count int64

    The number of items listed on the current page.

  • limit int64

    The maximum number of items displayed per page in the response.

  • start string

    The page number used to get this response. Pages are indexed starting from 1 (i.e., "start": "1").

  • total_count int64

    The total number of items, summed across all pages.

  • total_pages_count int64

    The total number of pages of results.

Loading...