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 VaultConnectionSettingsUpdateGlobals = { /** * 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 VaultConnectionSettingsUpdateRequest = { /** * Service ID of the resource to return */ serviceId: string; /** * Unified API */ unifiedApi: string; /** * Name of the resource (plural) */ resource: string; /** * Fields that need to be updated on the resource */ connection: components.ConnectionInput; }; export type VaultConnectionSettingsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Connection updated */ updateConnectionResponse?: components.UpdateConnectionResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionSettingsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionSettingsUpdateGlobals$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 VaultConnectionSettingsUpdateGlobals$ { /** @deprecated use `VaultConnectionSettingsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateGlobals$Outbound` instead. */ type Outbound = VaultConnectionSettingsUpdateGlobals$Outbound; } export declare function vaultConnectionSettingsUpdateGlobalsToJSON(vaultConnectionSettingsUpdateGlobals: VaultConnectionSettingsUpdateGlobals): string; export declare function vaultConnectionSettingsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionSettingsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsUpdateRequest$Outbound = { service_id: string; unified_api: string; resource: string; Connection: components.ConnectionInput$Outbound; }; /** @internal */ export declare const VaultConnectionSettingsUpdateRequest$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 VaultConnectionSettingsUpdateRequest$ { /** @deprecated use `VaultConnectionSettingsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateRequest$Outbound` instead. */ type Outbound = VaultConnectionSettingsUpdateRequest$Outbound; } export declare function vaultConnectionSettingsUpdateRequestToJSON(vaultConnectionSettingsUpdateRequest: VaultConnectionSettingsUpdateRequest): string; export declare function vaultConnectionSettingsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionSettingsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionSettingsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateConnectionResponse?: components.UpdateConnectionResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionSettingsUpdateResponse$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 VaultConnectionSettingsUpdateResponse$ { /** @deprecated use `VaultConnectionSettingsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionSettingsUpdateResponse$Outbound` instead. */ type Outbound = VaultConnectionSettingsUpdateResponse$Outbound; } export declare function vaultConnectionSettingsUpdateResponseToJSON(vaultConnectionSettingsUpdateResponse: VaultConnectionSettingsUpdateResponse): string; export declare function vaultConnectionSettingsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectionsettingsupdate.d.ts.map