CloudResource
/api/v1/cloud-resourcesA cloud resource discovered or managed (EC2, S3, GKE node).
listgetcreateupdatedeleteSchema
| Field | Type | Notes |
|---|---|---|
| id* | uuid | Server-assigned ULID with type prefix (e.g. per_…). |
| tenant_id* | string | Tenant scope — auto-stamped from the caller's JWT. |
| app_id | string | App scope. Stamped ONLY when the caller's JWT was minted for a specific Application (integration API keys). Absent for human-user sessions. Filters reads when present. |
| created_at* | date-time | Server stamp. |
| updated_at* | date-time | Server stamp; updated on every patch. |
| created_by | uuid | Person id from the caller's JWT (sub). |
| updated_by | uuid | Person id from the last writer's JWT (sub). |
| source | string | Provenance tag — defaults to 'edm'. |
| source_type | enum | frontend | backend | server | system | apiWhere the write originated. Defaults to 'api'. |
| is_deleted | boolean | Soft-delete flag. Excluded from default list queries. |
| deleted_at | date-time | Stamped when soft-deleted; null otherwise. |
| deleted_by | uuid | Person id who soft-deleted; null otherwise. |
| schema_version | number | Document schema version. Bumped on incompatible writes. |
| external_id | string | Native cloud provider resource identifier (e.g. EC2 instance ID 'i-0a1b2c3d4e5f67890', Azure resource ID, GCP resource name). |
| provider | string | Cloud provider hosting this resource. |
| account_id | string | Cloud provider account or subscription ID where this resource resides. |
| region | string | Cloud provider region where this resource is located. |
| resource_type | string | Cloud provider resource type in dot-notation format (e.g. 'ec2.instance', 's3.bucket', 'rds.instance', 'lambda.function', 'azure.vm', 'gcp.compute.instance'). |
| resource_name | string | Human-readable name or tag-based name of this cloud resource. May be the 'Name' tag value for AWS resources. |
| arn | string | Amazon Resource Name (ARN) for AWS resources. Null for non-AWS resources. |
| status | string | Current operational state of the cloud resource as reported by the cloud provider. |
| asset_id | uuid | UUID of the TechnologyAsset this CloudResource is part of or implements. Links infrastructure-level resources to business-level asset records. |
| tags | json | Cloud provider tags applied to this resource as key-value pairs. Synced directly from the cloud provider. |
| cost | json | Estimated monthly cost for this cloud resource based on cloud provider billing data. |
API
client.cloudResources.*Loading manifest…