import * as z from "zod/v4"; import * as models from "../index.js"; export type UpdateOperationsPolicyGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type UpdateOperationsPolicyRequest = { /** * Filter by project ID or name. */ project: string; updateOperationsPolicyRequest?: models.UpdateOperationsPolicyRequest | undefined; }; /** @internal */ export type UpdateOperationsPolicyRequest$Outbound = { project: string; UpdateOperationsPolicyRequest?: models.UpdateOperationsPolicyRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateOperationsPolicyRequest$outboundSchema: z.ZodType; export declare function updateOperationsPolicyRequestToJSON(updateOperationsPolicyRequest: UpdateOperationsPolicyRequest): string; //# sourceMappingURL=updateoperationspolicy.d.ts.map