/** * Id schemas. * * @since 1.0.0 */ import * as Schema from "effect/Schema"; /** * @since 1.0.0 * @category Id Schemas */ export declare const ConfigIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type ConfigIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const ContainerIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type ContainerIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const ExecIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type ExecIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const ImageIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type ImageIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const NetworkIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type NetworkIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const NodeIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type NodeIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const PluginIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type PluginIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const SecretIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type SecretIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const ServiceIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type ServiceIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const TaskIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type TaskIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const VolumeIdentifier: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type VolumeIdentifier = Schema.Schema.Type; /** * @since 1.0.0 * @category Id Schemas */ export declare const Digest: typeof Schema.String; /** * @since 1.0.0 * @category Id Schemas */ export type Digest = Schema.Schema.Type;