2023-01-29 20:14:52 +01:00
|
|
|
use dagger_core::Scalar;
|
|
|
|
|
2023-01-29 15:23:03 +01:00
|
|
|
// code generated by dagger. DO NOT EDIT.
|
|
|
|
|
2023-01-29 20:14:52 +01:00
|
|
|
/// A global cache volume identifier.
|
|
|
|
pub struct CacheID(Scalar);
|
|
|
|
|
|
|
|
/// A content-addressed directory identifier.
|
|
|
|
pub struct DirectoryID(Scalar);
|
|
|
|
|
2023-01-29 15:23:03 +01:00
|
|
|
/// A content-addressed socket identifier.
|
|
|
|
pub struct SocketID(Scalar);
|
|
|
|
|
|
|
|
/// A unique container identifier. Null designates an empty container (scratch).
|
|
|
|
pub struct ContainerID(Scalar);
|
|
|
|
|
|
|
|
/// A file identifier.
|
|
|
|
pub struct FileID(Scalar);
|
|
|
|
|
2023-01-29 20:14:52 +01:00
|
|
|
/// The platform config OS and architecture in a Container.
|
|
|
|
/// The format is [os]/[platform]/[version] (e.g. darwin/arm64/v7, windows/amd64, linux/arm64).
|
|
|
|
pub struct Platform(Scalar);
|
|
|
|
|
|
|
|
/// A unique identifier for a secret.
|
|
|
|
pub struct SecretID(Scalar);
|