BundleId
A composite bundle identifier in name@version format.
This scalar uniquely identifies a bundle by combining its OCI repository name with a version specifier. As an output the version portion is always a fully resolved semver string:
aws-aurora-postgres@1.2.3
aws-aurora-postgres@1.2.3-dev.20060102T150405Z
As an input (e.g., in the bundle query), you can use any of the following
formats and the server will resolve to the best matching published version:
| Format | Example | Resolves to |
|---|---|---|
| Bare name | aws-aurora-postgres | Latest stable (or latest dev if no stable exists) |
| Exact version | aws-aurora-postgres@1.2.3 | That exact version |
| Major channel | aws-aurora-postgres@~1 | Latest 1.x.x stable |
| Minor channel | aws-aurora-postgres@~1.2 | Latest 1.2.x stable |
| Latest stable | aws-aurora-postgres@latest | Newest stable release |
| Latest + dev | aws-aurora-postgres@latest+dev | Newest release including dev builds |
scalar BundleId