Skip to main content

Component

A bundle placed in a project's blueprint, representing a slot for deployable infrastructure.

A component is the design-time building block of your architecture. It says "I want a database here" or "I need a Kubernetes cluster there." The component defines what to deploy; the actual running infrastructure lives in instances -- one per environment the component is deployed to.

Components are connected to each other via links, which declare that one component's output (e.g., a connection string) should be wired into another component's input.

type Component {
id: ID!
name: String!
description: String
tags: Map!
position: ComponentPosition
createdAt: DateTime!
updatedAt: DateTime!
ociRepo: OciRepo
project: Project
}

Fields

Component.id ● ID! non-null scalar {#id}

Component.name ● String! non-null scalar {#name}

Human-readable display name shown in the UI.

Component.description ● String scalar {#description}

Optional free-text description of this component's purpose.

Component.tags ● Map! non-null scalar {#tags}

Key-value tags assigned directly to this component.

Component.position ● ComponentPosition object {#position}

Position on the visual canvas. Null if never placed.

Component.createdAt ● DateTime! non-null scalar {#created-at}

When this component was created (UTC).

Component.updatedAt ● DateTime! non-null scalar {#updated-at}

When this component was last modified (UTC).

Component.ociRepo ● OciRepo object {#oci-repo}

The OCI repository (bundle) this component is based on.

Component.project ● Project object {#project}

The project that owns this component.

Member Of

ComponentEvent object ● ComponentPayload object ● ComponentsPage object ● Instance object ● Link object