the-moby-effect
Version:
Moby/Docker API client built using effect-ts
30 lines • 1.13 kB
TypeScript
import * as Schema from "effect/Schema";
declare const NetworkIPAMConfig_base: Schema.Class<NetworkIPAMConfig, {
Subnet: Schema.optional<typeof Schema.String>;
IPRange: Schema.optional<typeof Schema.String>;
Gateway: Schema.optional<typeof Schema.String>;
AuxiliaryAddresses: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
}, Schema.Struct.Encoded<{
Subnet: Schema.optional<typeof Schema.String>;
IPRange: Schema.optional<typeof Schema.String>;
Gateway: Schema.optional<typeof Schema.String>;
AuxiliaryAddresses: Schema.optionalWith<Schema.Record$<typeof Schema.String, typeof Schema.String>, {
nullable: true;
}>;
}>, never, {
readonly Gateway?: string | undefined;
} & {
readonly Subnet?: string | undefined;
} & {
readonly IPRange?: string | undefined;
} & {
readonly AuxiliaryAddresses?: {
readonly [x: string]: string;
} | undefined;
}, {}, {}>;
export declare class NetworkIPAMConfig extends NetworkIPAMConfig_base {
}
export {};
//# sourceMappingURL=NetworkIPAMConfig.generated.d.ts.map