/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";

/**
 * Enum containing the actions that can be performed against a resource. Group operations are included.
 */
export const ACLAction = {
  Create: "create",
  Delete: "delete",
  List: "list",
  Read: "read",
  Update: "update",
} as const;
/**
 * Enum containing the actions that can be performed against a resource. Group operations are included.
 */
export type ACLAction = ClosedEnum<typeof ACLAction>;

/** @internal */
export const ACLAction$inboundSchema: z.ZodNativeEnum<typeof ACLAction> = z
  .nativeEnum(ACLAction);
