Crossplane Kubernetes API

The Crossplane Kubernetes API extends the Kubernetes API server with custom resources for managing cloud infrastructure declaratively. Resources are organized into two main API groups: apiextensions.crossplane.io for composition primitives (Compositions, CompositeResourceDefinitions, EnvironmentConfigs, DeploymentRuntimeConfigs) and pkg.crossplane.io for package management (Providers, Functions, Configurations and their revisions). All operations use standard Kubernetes REST conventions and are authenticated through the Kubernetes API server's authentication mechanisms.

OpenAPI Specification

crossplane-kubernetes-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Crossplane Kubernetes API
  description: >-
    The Crossplane Kubernetes API extends the Kubernetes API server with custom
    resources for managing cloud infrastructure declaratively. Resources are
    organized into two main API groups: apiextensions.crossplane.io for
    composition primitives (Compositions, CompositeResourceDefinitions,
    EnvironmentConfigs) and pkg.crossplane.io for package management (Providers,
    Functions, Configurations and their revisions). All operations use standard
    Kubernetes REST conventions and are authenticated through the Kubernetes
    API server's authentication mechanisms.
  version: '2.2'
  contact:
    name: Crossplane Community
    url: https://slack.crossplane.io/
  termsOfService: https://www.crossplane.io/
externalDocs:
  description: Crossplane API Reference
  url: https://docs.crossplane.io/latest/api/
servers:
  - url: https://kubernetes.default.svc
    description: Kubernetes API Server (in-cluster)
tags:
  - name: CompositeResourceDefinitions
    description: >-
      CompositeResourceDefinitions (XRDs) extend the Kubernetes API with new
      custom resource types. An XRD defines the schema and API surface for a
      composite resource and an optional namespace-scoped claim resource.
  - name: Compositions
    description: >-
      Compositions define how to compose a set of managed resources or
      Composition Functions into a higher-level composite resource. A
      Composition acts as a template that maps fields from a composite
      resource to composed resources using patches and transforms.
  - name: Configurations
    description: >-
      Configurations are Crossplane packages that bundle Compositions and
      CompositeResourceDefinitions together into a distributable unit that
      can be installed into a Crossplane control plane.
  - name: DeploymentRuntimeConfigs
    description: >-
      DeploymentRuntimeConfigs customize the runtime behavior of Provider and
      Function deployments, including replica counts, resource limits, service
      account annotations, and pod template overrides.
  - name: EnvironmentConfigs
    description: >-
      EnvironmentConfigs provide shared configuration data that can be
      referenced by Compositions via environment patches, enabling reusable
      configuration across multiple Compositions.
  - name: Functions
    description: >-
      Functions are Crossplane packages that contain Composition Functions,
      which are OCI container images invoked during composition to perform
      advanced resource templating and transformation logic.
  - name: Providers
    description: >-
      Providers are Crossplane packages that install controllers and CRDs for
      managing resources on a specific infrastructure platform such as AWS,
      GCP, or Azure.
security:
  - bearerAuth: []
paths:
  /apis/apiextensions.crossplane.io/v1/compositions:
    get:
      operationId: listCompositions
      summary: Crossplane List Compositions
      description: >-
        Returns a list of all Composition resources across the cluster.
        Compositions define how composite resources are translated into
        sets of managed resources or Composition Function pipelines.
      tags:
        - Compositions
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/fieldSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed Compositions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompositionList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createComposition
      summary: Crossplane Create a Composition
      description: >-
        Creates a new Composition resource. The Composition spec must reference
        a valid CompositeResourceDefinition via compositeTypeRef and define
        either a resources array (for Resources mode) or a pipeline array
        (for Pipeline mode).
      tags:
        - Compositions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Composition'
      responses:
        '201':
          description: Composition successfully created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Composition'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
  /apis/apiextensions.crossplane.io/v1/compositions/{name}:
    get:
      operationId: getComposition
      summary: Crossplane Get a Composition
      description: >-
        Returns the details of a specific Composition resource, including its
        spec defining composed resource templates and patches, and its status
        reflecting active revision information.
      tags:
        - Compositions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the Composition.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Composition'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: replaceComposition
      summary: Crossplane Replace a Composition
      description: >-
        Replaces the entire Composition resource with the provided body.
        This operation triggers a new CompositionRevision to be created,
        allowing rollback if needed.
      tags:
        - Compositions
      parameters:
        - $ref: '#/components/parameters/name'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Composition'
      responses:
        '200':
          description: Composition successfully replaced.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Composition'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteComposition
      summary: Crossplane Delete a Composition
      description: >-
        Deletes the specified Composition resource. Existing composite resources
        that reference this Composition will not be deleted but will cease to
        reconcile until a new Composition is available.
      tags:
        - Compositions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Composition deletion initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/apiextensions.crossplane.io/v1/compositeresourcedefinitions:
    get:
      operationId: listCompositeResourceDefinitions
      summary: Crossplane List CompositeResourceDefinitions
      description: >-
        Returns a list of all CompositeResourceDefinition (XRD) resources.
        Each XRD defines the schema for a new composite resource type and
        optionally a claim type that will be installed as Kubernetes CRDs.
      tags:
        - CompositeResourceDefinitions
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed CompositeResourceDefinitions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompositeResourceDefinitionList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createCompositeResourceDefinition
      summary: Crossplane Create a CompositeResourceDefinition
      description: >-
        Creates a new CompositeResourceDefinition. Upon creation, Crossplane
        installs corresponding CRDs and begins serving the new composite
        resource API. If claimNames are specified, a namespaced claim CRD
        is also installed.
      tags:
        - CompositeResourceDefinitions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompositeResourceDefinition'
      responses:
        '201':
          description: CompositeResourceDefinition successfully created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompositeResourceDefinition'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
  /apis/apiextensions.crossplane.io/v1/compositeresourcedefinitions/{name}:
    get:
      operationId: getCompositeResourceDefinition
      summary: Crossplane Get a CompositeResourceDefinition
      description: >-
        Returns details of a specific CompositeResourceDefinition, including
        its version schemas, claim configuration, and status conditions
        reflecting whether the CRDs are established.
      tags:
        - CompositeResourceDefinitions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the CompositeResourceDefinition.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompositeResourceDefinition'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: replaceCompositeResourceDefinition
      summary: Crossplane Replace a CompositeResourceDefinition
      description: >-
        Replaces a CompositeResourceDefinition. Crossplane will reconcile the
        new schema, updating existing CRDs and triggering re-composition of
        existing composite resources as needed.
      tags:
        - CompositeResourceDefinitions
      parameters:
        - $ref: '#/components/parameters/name'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompositeResourceDefinition'
      responses:
        '200':
          description: CompositeResourceDefinition successfully replaced.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompositeResourceDefinition'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteCompositeResourceDefinition
      summary: Crossplane Delete a CompositeResourceDefinition
      description: >-
        Deletes a CompositeResourceDefinition. Crossplane will remove the
        associated CRDs and all existing composite resources of that type
        if no finalizers prevent deletion.
      tags:
        - CompositeResourceDefinitions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: CompositeResourceDefinition deletion initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/apiextensions.crossplane.io/v1/environmentconfigs:
    get:
      operationId: listEnvironmentConfigs
      summary: Crossplane List EnvironmentConfigs
      description: >-
        Returns a list of all EnvironmentConfig resources. EnvironmentConfigs
        hold shared configuration data that can be patched into Compositions
        via environment patch types, enabling cluster-wide shared values.
      tags:
        - EnvironmentConfigs
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed EnvironmentConfigs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnvironmentConfigList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createEnvironmentConfig
      summary: Crossplane Create an EnvironmentConfig
      description: >-
        Creates a new EnvironmentConfig resource containing arbitrary key-value
        configuration data. Compositions can select and merge EnvironmentConfigs
        using label selectors.
      tags:
        - EnvironmentConfigs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnvironmentConfig'
      responses:
        '201':
          description: EnvironmentConfig successfully created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnvironmentConfig'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /apis/apiextensions.crossplane.io/v1/environmentconfigs/{name}:
    get:
      operationId: getEnvironmentConfig
      summary: Crossplane Get an EnvironmentConfig
      description: >-
        Returns a specific EnvironmentConfig resource by name, including its
        data map of arbitrary configuration key-value pairs.
      tags:
        - EnvironmentConfigs
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the EnvironmentConfig.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnvironmentConfig'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteEnvironmentConfig
      summary: Crossplane Delete an EnvironmentConfig
      description: >-
        Deletes a specific EnvironmentConfig. Compositions referencing this
        config will fail to reconcile until the reference is removed or the
        config is recreated.
      tags:
        - EnvironmentConfigs
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: EnvironmentConfig deletion initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/pkg.crossplane.io/v1/providers:
    get:
      operationId: listProviders
      summary: Crossplane List Providers
      description: >-
        Returns a list of all Provider package installations. Each Provider
        installs a set of managed resource CRDs and a controller that
        reconciles those resources against a specific infrastructure platform.
      tags:
        - Providers
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed Providers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createProvider
      summary: Crossplane Install a Provider
      description: >-
        Installs a new Provider by referencing an OCI image containing the
        provider package. Crossplane fetches the package, installs its CRDs,
        and starts the provider controller deployment.
      tags:
        - Providers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Provider'
      responses:
        '201':
          description: Provider installation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Provider'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
  /apis/pkg.crossplane.io/v1/providers/{name}:
    get:
      operationId: getProvider
      summary: Crossplane Get a Provider
      description: >-
        Returns details of a specific Provider, including its package reference,
        revision activation policy, and status conditions reflecting whether the
        provider is healthy and all CRDs are installed.
      tags:
        - Providers
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the Provider.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Provider'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      operationId: replaceProvider
      summary: Crossplane Update a Provider
      description: >-
        Replaces a Provider resource, typically to update the package image
        reference to a new version. Crossplane creates a new ProviderRevision
        and activates it according to the revisionActivationPolicy.
      tags:
        - Providers
      parameters:
        - $ref: '#/components/parameters/name'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Provider'
      responses:
        '200':
          description: Provider successfully updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Provider'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteProvider
      summary: Crossplane Uninstall a Provider
      description: >-
        Removes a Provider installation. Crossplane will delete the provider
        controller and CRDs. Existing managed resources will be orphaned unless
        deleted first.
      tags:
        - Providers
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Provider uninstallation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/pkg.crossplane.io/v1/functions:
    get:
      operationId: listFunctions
      summary: Crossplane List Functions
      description: >-
        Returns a list of all Composition Function package installations.
        Functions are OCI images that implement the Composition Function
        gRPC protocol and are invoked as pipeline steps during composition.
      tags:
        - Functions
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed Functions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FunctionList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createFunction
      summary: Crossplane Install a Function
      description: >-
        Installs a new Composition Function by referencing its OCI package
        image. Once installed, the Function can be referenced in Composition
        pipeline steps by name.
      tags:
        - Functions
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Function'
      responses:
        '201':
          description: Function installation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Function'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
  /apis/pkg.crossplane.io/v1/functions/{name}:
    get:
      operationId: getFunction
      summary: Crossplane Get a Function
      description: >-
        Returns details of a specific Composition Function installation,
        including its package image reference and status conditions reflecting
        whether the function is healthy and ready to serve composition requests.
      tags:
        - Functions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the Function.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Function'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteFunction
      summary: Crossplane Uninstall a Function
      description: >-
        Removes a Composition Function installation. Compositions that reference
        this Function in their pipeline will fail to reconcile until the
        Function reference is removed or the Function is reinstalled.
      tags:
        - Functions
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Function uninstallation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/pkg.crossplane.io/v1/configurations:
    get:
      operationId: listConfigurations
      summary: Crossplane List Configurations
      description: >-
        Returns a list of all Configuration package installations. Configurations
        bundle Compositions and XRDs together, enabling platform teams to
        distribute reusable platform APIs as versioned OCI packages.
      tags:
        - Configurations
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed Configurations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigurationList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createConfiguration
      summary: Crossplane Install a Configuration
      description: >-
        Installs a new Configuration package. Crossplane fetches the OCI image,
        installs the bundled Compositions and XRDs, and tracks revisions for
        upgrade management.
      tags:
        - Configurations
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Configuration'
      responses:
        '201':
          description: Configuration installation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Configuration'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '409':
          $ref: '#/components/responses/Conflict'
  /apis/pkg.crossplane.io/v1/configurations/{name}:
    get:
      operationId: getConfiguration
      summary: Crossplane Get a Configuration
      description: >-
        Returns details of a specific Configuration installation, including its
        package image reference, revision history, and status conditions.
      tags:
        - Configurations
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the Configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Configuration'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteConfiguration
      summary: Crossplane Uninstall a Configuration
      description: >-
        Removes a Configuration installation. Crossplane will remove the
        bundled Compositions and XRDs if no other resources depend on them.
      tags:
        - Configurations
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Configuration uninstallation initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apis/pkg.crossplane.io/v1beta1/deploymentruntimeconfigs:
    get:
      operationId: listDeploymentRuntimeConfigs
      summary: Crossplane List DeploymentRuntimeConfigs
      description: >-
        Returns a list of all DeploymentRuntimeConfig resources. These resources
        customize the Kubernetes Deployment and ServiceAccount used to run
        Provider and Function controller pods.
      tags:
        - DeploymentRuntimeConfigs
      parameters:
        - $ref: '#/components/parameters/labelSelector'
        - $ref: '#/components/parameters/limit'
        - $ref: '#/components/parameters/continueToken'
      responses:
        '200':
          description: Successfully listed DeploymentRuntimeConfigs.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentRuntimeConfigList'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: createDeploymentRuntimeConfig
      summary: Crossplane Create a DeploymentRuntimeConfig
      description: >-
        Creates a DeploymentRuntimeConfig to customize how Crossplane deploys
        Provider or Function pods. Providers and Functions reference this
        resource via runtimeConfigRef in their spec.
      tags:
        - DeploymentRuntimeConfigs
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeploymentRuntimeConfig'
      responses:
        '201':
          description: DeploymentRuntimeConfig successfully created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentRuntimeConfig'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /apis/pkg.crossplane.io/v1beta1/deploymentruntimeconfigs/{name}:
    get:
      operationId: getDeploymentRuntimeConfig
      summary: Crossplane Get a DeploymentRuntimeConfig
      description: >-
        Returns a specific DeploymentRuntimeConfig, including its deployment
        template and service account template overrides.
      tags:
        - DeploymentRuntimeConfigs
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: Successfully retrieved the DeploymentRuntimeConfig.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentRuntimeConfig'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      operationId: deleteDeploymentRuntimeConfig
      summary: Crossplane Delete a DeploymentRuntimeConfig
      description: >-
        Deletes a DeploymentRuntimeConfig. Providers or Functions referencing
        this config via runtimeConfigRef will continue using the last applied
        configuration until they are updated.
      tags:
        - DeploymentRuntimeConfigs
      parameters:
        - $ref: '#/components/parameters/name'
      responses:
        '200':
          description: DeploymentRuntimeConfig deletion initiated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Status'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Kubernetes service account token or user bearer token for authenticating
        with the Kubernetes API server. RBAC policies control which Crossplane
        resources each identity can access.
  parameters:
    name:
      name: name
      in: path
      required: true
      description: Name of the Crossplane resource.
      schema:
        type: string
    labelSelector:
      name: labelSelector
      in: query
      required: false
      description: >-
        A selector to restrict the list of returned objects by their labels.
        Defaults to everything.
      schema:
        type: string
    fieldSelector:
      name: fieldSelector
      in: query
      required: false
      description: >-
        A selector to restrict the list of returned objects by their fields.
      schema:
        type: string
    limit:
      name: limit
      in: query
      required: false
      description: >-
        Maximum number of items to return in a single response. The server may
        return fewer items than requested. Use the continue token for pagination.
      schema:
        type: integer
        minimum: 1
    continueToken:
      name: continue
      in: query
      required: false
      description: >-
        Token returned by a previous list call to retrieve the next page of
        results. This token encodes list position and expiration time.
      schema:
        type: string
  responses:
    BadRequest:
      description: The request was malformed or failed validation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Status'
    Unauthorized:
      description: Authentication credentials are missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Status'
    NotFound:
      description: The requested resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Status'
    Conflict:
      description: A resource with this name already exists.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Status'
  schemas:
    ObjectMeta:
      type: object
      description: Standard Kubernetes object metadata.
      required:
        - name
      properties:
        name:
          type: string
     

# --- truncated at 32 KB (56 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/crossplane/refs/heads/main/openapi/crossplane-kubernetes-api-openapi.yml