> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chronosphere.io/llms.txt
> Use this file to discover all available pages before exploring further.

# ReadCloudIntegration



## OpenAPI

````yaml openapi/api_v1_config_openapi3_DOCUMENTATION_ONLY.json GET /api/v1/config/cloud-integrations/{slug}
openapi: 3.0.3
info:
  description: >

    The Config API provides standard HTTP/JSON REST endpoints for creating,
    reading,

    updating, deleting, and listing configurable Chronosphere resources.


    Use this link to download the raw Swagger specification:

    <a href="/api/v1/config/swagger.json">/api/v1/config/swagger.json</a>
  title: Config V1 API
  version: v1
servers:
  - url: https://{tenant}.chronosphere.io
    variables:
      tenant:
        default: tenant
        description: tenant ID assigned by the service provider
security:
  - ApiKeyAuth: []
tags:
  - name: ConfigV1
paths:
  /api/v1/config/cloud-integrations/{slug}:
    get:
      tags:
        - CloudIntegration
      operationId: ReadCloudIntegration
      parameters:
        - in: path
          name: slug
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/configv1ReadCloudIntegrationResponse'
          description: A successful response.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: Cannot read the CloudIntegration because the slug does not exist.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiError'
          description: An unexpected error response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/genericError'
          description: An undefined error response.
components:
  schemas:
    configv1ReadCloudIntegrationResponse:
      properties:
        cloud_integration:
          $ref: '#/components/schemas/configv1CloudIntegration'
      type: object
    apiError:
      properties:
        message:
          description: An error message describing what went wrong.
          type: string
      type: object
    genericError:
      additionalProperties: true
      type: object
    configv1CloudIntegration:
      description: >-
        CloudIntegration represents a configuration for collecting metrics from
        a

        cloud provider. Each integration contains provider-specific
        configuration.
      properties:
        created_at:
          description: >-
            Timestamp of when the CloudIntegration was created. Cannot be set by
            clients.
          format: date-time
          readOnly: true
          type: string
        external_connection_slug:
          description: >-
            Slug of the ExternalConnection used for credentials. Optional
            depending on

            the provider.
          type: string
        metric_labels:
          additionalProperties:
            type: string
          description: Labels applied to all metrics emitted from this integration.
          type: object
        name:
          description: >-
            The name of the CloudIntegration. You can modify this value after
            the CloudIntegration is created.
          type: string
        provider_config:
          description: Provider-specific configuration. Structure depends on provider_type.
          type: object
        provider_type:
          description: Required on create/update. Identifies the cloud provider.
          type: string
        slug:
          description: >-
            The unique identifier of the CloudIntegration. If a `slug` isn't
            provided, one is generated based on the `name` field. You can't
            modify this field after the CloudIntegration is created.
          type: string
        state:
          allOf:
            - $ref: '#/components/schemas/configv1CloudIntegrationState'
          description: Operational state of the integration.
        updated_at:
          description: >-
            Timestamp of when the CloudIntegration was last updated. Cannot be
            set by clients.
          format: date-time
          readOnly: true
          type: string
      required:
        - name
      type: object
    configv1CloudIntegrationState:
      description: |-
        State represents the operational state of a CloudIntegration.

         - STATE_ENABLED: Integration is fully enabled and actively collecting metrics.
         - STATE_DISABLED: Integration is disabled and not collecting metrics.
         - STATE_PREVIEW: Integration is in preview mode for estimating cardinality/license
        impact before full enablement.
      enum:
        - STATE_ENABLED
        - STATE_DISABLED
        - STATE_PREVIEW
      type: string
  securitySchemes:
    ApiKeyAuth:
      description: Chronosphere API token
      in: header
      name: API-Token
      type: apiKey

````