import * as z from "zod"; import { ApiError } from "./apierror.js"; import { StreamingProfileUpdate } from "./streamingprofileupdate.js"; import { StreamingProfileUpdateResponse } from "./streamingprofileupdateresponse.js"; export type UpdateStreamingProfileGlobals = { cloud_name?: string | undefined; }; export declare const UpdateStreamingProfileGlobals$zodSchema: z.ZodType; export type UpdateStreamingProfileRequest = { name: string; streaming_profile_update: StreamingProfileUpdate; }; export declare const UpdateStreamingProfileRequest$zodSchema: z.ZodType; export type UpdateStreamingProfileResponse = StreamingProfileUpdateResponse | ApiError; export declare const UpdateStreamingProfileResponse$zodSchema: z.ZodType; //# sourceMappingURL=updatestreamingprofileop.d.ts.map