import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { PrivateManagerCloud } from "./privatemanagercloud.js"; import { PrivateManagerSetupMethod } from "./privatemanagersetupmethod.js"; /** * Optional network mode for the private-manager setup. Defaults to create for production isolation; default uses the provider default network for faster dev/test setup. */ export declare const NetworkEnum: { readonly Create: "create"; readonly Default: "default"; }; /** * Optional network mode for the private-manager setup. Defaults to create for production isolation; default uses the provider default network for faster dev/test setup. */ export type NetworkEnum = ClosedEnum; /** * Optional external OTLP config for forwarding logs to Axiom, Datadog, etc. Falls back to built-in DeepStore when not set. */ export type OtlpConfig = { /** * External OTLP logs endpoint (e.g. https://api.axiom.co/v1/logs) */ logsEndpoint: string; /** * Auth header in 'key=value,...' format (e.g. 'authorization=Bearer ,x-axiom-dataset=') */ logsAuthHeader: string; }; export type NewManagerRequest = { name: string; /** * Cloud where the private manager will be deployed. */ cloud: PrivateManagerCloud; /** * Cloud region for the manager. */ region: string; /** * Optional setup method. Defaults to cloudformation for AWS, google-oauth for GCP, and terraform for Azure. */ setupMethod?: PrivateManagerSetupMethod | undefined; /** * Optional network mode for the private-manager setup. Defaults to create for production isolation; default uses the provider default network for faster dev/test setup. */ network?: NetworkEnum | undefined; /** * Optional external OTLP config for forwarding logs to Axiom, Datadog, etc. Falls back to built-in DeepStore when not set. */ otlpConfig?: OtlpConfig | undefined; }; /** @internal */ export declare const NetworkEnum$outboundSchema: z.ZodEnum; /** @internal */ export type OtlpConfig$Outbound = { logsEndpoint: string; logsAuthHeader: string; }; /** @internal */ export declare const OtlpConfig$outboundSchema: z.ZodType; export declare function otlpConfigToJSON(otlpConfig: OtlpConfig): string; /** @internal */ export type NewManagerRequest$Outbound = { name: string; cloud: string; region: string; setupMethod?: string | undefined; network?: string | undefined; otlpConfig?: OtlpConfig$Outbound | undefined; }; /** @internal */ export declare const NewManagerRequest$outboundSchema: z.ZodType; export declare function newManagerRequestToJSON(newManagerRequest: NewManagerRequest): string; //# sourceMappingURL=newmanagerrequest.d.ts.map