import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import type { ValidationExceptionReason } from "./enums"; import { GrafanaServiceException as __BaseException } from "./GrafanaServiceException"; import type { ValidationExceptionField } from "./models_0"; /** *

You do not have sufficient permissions to perform this action.

* @public */ export declare class AccessDeniedException extends __BaseException { readonly name: "AccessDeniedException"; readonly $fault: "client"; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

A resource was in an inconsistent state during an update or a deletion.

* @public */ export declare class ConflictException extends __BaseException { readonly name: "ConflictException"; readonly $fault: "client"; /** *

The ID of the resource that is associated with the error.

* @public */ resourceId: string | undefined; /** *

The type of the resource that is associated with the error.

* @public */ resourceType: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

Unexpected error while processing the request. Retry the request.

* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; $retryable: {}; /** *

How long to wait before you retry this operation.

* @public */ retryAfterSeconds?: number | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request references a resource that does not exist.

* @public */ export declare class ResourceNotFoundException extends __BaseException { readonly name: "ResourceNotFoundException"; readonly $fault: "client"; /** *

The ID of the resource that is associated with the error.

* @public */ resourceId: string | undefined; /** *

The type of the resource that is associated with the error.

* @public */ resourceType: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request would cause a service quota to be exceeded.

* @public */ export declare class ServiceQuotaExceededException extends __BaseException { readonly name: "ServiceQuotaExceededException"; readonly $fault: "client"; /** *

The ID of the resource that is associated with the error.

* @public */ resourceId: string | undefined; /** *

The type of the resource that is associated with the error.

* @public */ resourceType: string | undefined; /** *

The value of a parameter in the request caused an error.

* @public */ serviceCode: string | undefined; /** *

The ID of the service quota that was exceeded.

* @public */ quotaCode: string | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The request was denied because of request throttling. Retry the request.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; $retryable: {}; /** *

The ID of the service that is associated with the error.

* @public */ serviceCode?: string | undefined; /** *

The ID of the service quota that was exceeded.

* @public */ quotaCode?: string | undefined; /** *

The value of a parameter in the request caused an error.

* @public */ retryAfterSeconds?: number | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); } /** *

The value of a parameter in the request caused an error.

* @public */ export declare class ValidationException extends __BaseException { readonly name: "ValidationException"; readonly $fault: "client"; /** *

The reason that the operation failed.

* @public */ reason: ValidationExceptionReason | undefined; /** *

A list of fields that might be associated with the error.

* @public */ fieldList?: ValidationExceptionField[] | undefined; /** * @internal */ constructor(opts: __ExceptionOptionType); }