> ## Documentation Index
> Fetch the complete documentation index at: https://densify-sync-changelog-2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List all generated GCP analyses

> Return analyses with details and links; use this to obtain `analysisId` for other calls.



## OpenAPI

````yaml /openapi/public_cloud/Analysis_GCP_Analyze.yaml GET /analysis/cloud/gcp
openapi: 3.1.0
info:
  title: Kubex – GCP Analysis API
  version: 1.0.0
  description: |
    POST `/analysis/gcp/analyze`:
      - First run: creates the connection (for the given GCP service account + project),
        collects data, runs analysis, and (optionally) sends results to a webhook.
      - Re-run: runs analysis only (no data collection); can update webhook.
      - Historical audit: once-off collection of up to 30 days of past data via
        `/analysis/cloud/gcp/analyze` with offsets.
    GET `/analysis/cloud/gcp`: lists generated analyses to obtain `analysisId`.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: GCP Analysis
paths:
  /analysis/cloud/gcp:
    get:
      tags:
        - GCP Analysis
      summary: List all generated GCP analyses
      description: >-
        Return analyses with details and links; use this to obtain `analysisId`
        for other calls.
      operationId: listGcpAnalyses
      responses:
        '200':
          description: Array of analyses
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GcpAnalysisItem'
        '401':
          description: Authentication failed.
        '500':
          description: Internal server error.
components:
  schemas:
    GcpAnalysisItem:
      type: object
      properties:
        analysisName:
          type: string
          description: GCP project ID associated with the analysis.
        href:
          type: string
          description: Link

````