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 AuthenticationGenerateServiceAccountTokenSecurity = { apiKeyAuth: string; }; export type AuthenticationGenerateServiceAccountTokenResponse = { httpMeta: components.HTTPMetadata; /** * OK */ token?: components.Token | undefined; /** * INVALID_ARGUMENT: The request was not well formed. */ status?: components.Status | undefined; }; /** @internal */ export declare const AuthenticationGenerateServiceAccountTokenSecurity$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationGenerateServiceAccountTokenSecurity$Outbound = { ApiKeyAuth: string; }; /** @internal */ export declare const AuthenticationGenerateServiceAccountTokenSecurity$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 AuthenticationGenerateServiceAccountTokenSecurity$ { /** @deprecated use `AuthenticationGenerateServiceAccountTokenSecurity$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationGenerateServiceAccountTokenSecurity$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationGenerateServiceAccountTokenSecurity$Outbound` instead. */ type Outbound = AuthenticationGenerateServiceAccountTokenSecurity$Outbound; } export declare function authenticationGenerateServiceAccountTokenSecurityToJSON(authenticationGenerateServiceAccountTokenSecurity: AuthenticationGenerateServiceAccountTokenSecurity): string; export declare function authenticationGenerateServiceAccountTokenSecurityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AuthenticationGenerateServiceAccountTokenResponse$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationGenerateServiceAccountTokenResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Token?: components.Token$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AuthenticationGenerateServiceAccountTokenResponse$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 AuthenticationGenerateServiceAccountTokenResponse$ { /** @deprecated use `AuthenticationGenerateServiceAccountTokenResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationGenerateServiceAccountTokenResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationGenerateServiceAccountTokenResponse$Outbound` instead. */ type Outbound = AuthenticationGenerateServiceAccountTokenResponse$Outbound; } export declare function authenticationGenerateServiceAccountTokenResponseToJSON(authenticationGenerateServiceAccountTokenResponse: AuthenticationGenerateServiceAccountTokenResponse): string; export declare function authenticationGenerateServiceAccountTokenResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticationgenerateserviceaccounttoken.d.ts.map