import { SandboxGroupContext as Client } from "../sandboxGroupContext.js"; import { EgressPolicy, EgressDecisions } from "../../models/models.js"; import { EgressGetPolicyOptionalParams, EgressSetPolicyOptionalParams, EgressGetDecisionsOptionalParams } from "./options.js"; /** Get the current egress policy for a sandbox. */ export declare function getPolicy(context: Client, sandboxId: string, _options?: EgressGetPolicyOptionalParams): Promise; /** * Set the full egress policy for a sandbox. The sandbox must be Running; the * service returns 409 (`SandboxNotRunning`) otherwise. */ export declare function setPolicy(context: Client, sandboxId: string, policy: EgressPolicy, _options?: EgressSetPolicyOptionalParams): Promise; /** Get the egress decision audit log for a sandbox. */ export declare function getDecisions(context: Client, sandboxId: string, _options?: EgressGetDecisionsOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map