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 VaultConnectionSettingsAllGlobals = { /** * 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 VaultConnectionSettingsAllRequest = { /** * Unified API */ unifiedApi: string; /** * Service ID of the resource to return */ serviceId: string; /** * Name of the resource (plural) */ resource: string; }; export type VaultConnectionSettingsAllResponse = { httpMeta: components.HTTPMetadata; /** * Connection */ getConnectionResponse?: components.GetConnectionResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionSettingsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsAllGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionSettingsAllGlobals$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 VaultConnectionSettingsAllGlobals$ { /** @deprecated use `VaultConnectionSettingsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllGlobals$Outbound` instead. */ type Outbound = VaultConnectionSettingsAllGlobals$Outbound; } export declare function vaultConnectionSettingsAllGlobalsToJSON(vaultConnectionSettingsAllGlobals: VaultConnectionSettingsAllGlobals): string; export declare function vaultConnectionSettingsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionSettingsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsAllRequest$Outbound = { unified_api: string; service_id: string; resource: string; }; /** @internal */ export declare const VaultConnectionSettingsAllRequest$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 VaultConnectionSettingsAllRequest$ { /** @deprecated use `VaultConnectionSettingsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllRequest$Outbound` instead. */ type Outbound = VaultConnectionSettingsAllRequest$Outbound; } export declare function vaultConnectionSettingsAllRequestToJSON(vaultConnectionSettingsAllRequest: VaultConnectionSettingsAllRequest): string; export declare function vaultConnectionSettingsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionSettingsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConnectionResponse?: components.GetConnectionResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionSettingsAllResponse$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 VaultConnectionSettingsAllResponse$ { /** @deprecated use `VaultConnectionSettingsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsAllResponse$Outbound` instead. */ type Outbound = VaultConnectionSettingsAllResponse$Outbound; } export declare function vaultConnectionSettingsAllResponseToJSON(vaultConnectionSettingsAllResponse: VaultConnectionSettingsAllResponse): string; export declare function vaultConnectionSettingsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectionsettingsall.d.ts.map