import { Client, ClientOptions } from "@azure-rest/core-client"; import { TokenCredential } from "@azure/core-auth"; /** * The ARM (control-plane) context for managing Azure Container Apps sandbox * groups. */ export interface ContainerAppsSandboxManagementContext extends Client { /** The ID of the target subscription. The value must be an UUID. */ subscriptionId: string; /** The API version to use for this operation. */ apiVersion: string; } /** Optional parameters for the management client. */ export interface ContainerAppsSandboxManagementClientOptionalParams extends ClientOptions { /** The API version to use for this operation. */ apiVersion?: string; /** Override the ARM endpoint. */ endpoint?: string; } /** Create the ARM management context. */ export declare function createContainerAppsSandboxManagement(credential: TokenCredential, subscriptionId: string, options?: ContainerAppsSandboxManagementClientOptionalParams): ContainerAppsSandboxManagementContext; //# sourceMappingURL=containerAppsSandboxManagementContext.d.ts.map