/** * @public * @enum */ export declare const MethodName: { readonly DELETE: "DELETE"; readonly GET: "GET"; readonly HEAD: "HEAD"; readonly PUT: "PUT"; }; /** * @public */ export type MethodName = (typeof MethodName)[keyof typeof MethodName]; /** * @public * @enum */ export declare const ContainerStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATING: "CREATING"; readonly DELETING: "DELETING"; }; /** * @public */ export type ContainerStatus = (typeof ContainerStatus)[keyof typeof ContainerStatus]; /** * @public * @enum */ export declare const ContainerLevelMetrics: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type ContainerLevelMetrics = (typeof ContainerLevelMetrics)[keyof typeof ContainerLevelMetrics];