import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type VaultConnectionsDeleteGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type VaultConnectionsDeleteRequest = { /** * Service ID of the resource to return */ serviceId: string; /** * Unified API */ unifiedApi: string; }; export type VaultConnectionsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionsDeleteGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace VaultConnectionsDeleteGlobals$ { /** @deprecated use `VaultConnectionsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteGlobals$Outbound` instead. */ type Outbound = VaultConnectionsDeleteGlobals$Outbound; } export declare function vaultConnectionsDeleteGlobalsToJSON(vaultConnectionsDeleteGlobals: VaultConnectionsDeleteGlobals): string; export declare function vaultConnectionsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsDeleteRequest$Outbound = { service_id: string; unified_api: string; }; /** @internal */ export declare const VaultConnectionsDeleteRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace VaultConnectionsDeleteRequest$ { /** @deprecated use `VaultConnectionsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteRequest$Outbound` instead. */ type Outbound = VaultConnectionsDeleteRequest$Outbound; } export declare function vaultConnectionsDeleteRequestToJSON(vaultConnectionsDeleteRequest: VaultConnectionsDeleteRequest): string; export declare function vaultConnectionsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionsDeleteResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace VaultConnectionsDeleteResponse$ { /** @deprecated use `VaultConnectionsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsDeleteResponse$Outbound` instead. */ type Outbound = VaultConnectionsDeleteResponse$Outbound; } export declare function vaultConnectionsDeleteResponseToJSON(vaultConnectionsDeleteResponse: VaultConnectionsDeleteResponse): string; export declare function vaultConnectionsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectionsdelete.d.ts.map