the-moby-effect
Version:
Moby/Docker API client built using effect-ts
39 lines • 1.78 kB
TypeScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
import * as SwarmPlacementPreference from "./SwarmPlacementPreference.generated.js";
import * as SwarmPlatform from "./SwarmPlatform.generated.js";
declare const SwarmPlacement_base: Schema.Class<SwarmPlacement, {
Constraints: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
nullable: true;
}>;
Preferences: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmPlacementPreference.SwarmPlacementPreference>>, {
nullable: true;
}>;
MaxReplicas: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
Platforms: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmPlatform.SwarmPlatform>>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Constraints: Schema.optionalWith<Schema.Array$<typeof Schema.String>, {
nullable: true;
}>;
Preferences: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmPlacementPreference.SwarmPlacementPreference>>, {
nullable: true;
}>;
MaxReplicas: Schema.optional<MobySchemas.UInt64Schemas.$UInt64>;
Platforms: Schema.optionalWith<Schema.Array$<Schema.NullOr<typeof SwarmPlatform.SwarmPlatform>>, {
nullable: true;
}>;
}>, never, {
readonly Platforms?: readonly (SwarmPlatform.SwarmPlatform | null)[] | undefined;
} & {
readonly Constraints?: readonly string[] | undefined;
} & {
readonly Preferences?: readonly (SwarmPlacementPreference.SwarmPlacementPreference | null)[] | undefined;
} & {
readonly MaxReplicas?: MobySchemas.UInt64Schemas.UInt64Brand | undefined;
}, {}, {}>;
export declare class SwarmPlacement extends SwarmPlacement_base {
}
export {};
//# sourceMappingURL=SwarmPlacement.generated.d.ts.map