import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client"; import type { InternalServerExceptionReason, ValidationExceptionReason } from "./enums"; import type { ValidationExceptionField } from "./models_0"; import { NovaActServiceException as __BaseException } from "./NovaActServiceException"; /** *

You don't have sufficient permissions to perform this action.

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

The request could not be completed due to a conflict with the current state of the resource.

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

The identifier of the resource that caused the conflict.

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

The type of resource that caused the conflict.

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

An internal server error occurred. Please try again later.

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

The number of seconds to wait before retrying the request.

* @public */ retryAfterSeconds?: number | undefined; /** *

The reason for the internal server error.

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

The requested resource was not found.

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

The identifier of the resource that wasn't found.

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

The type of resource that wasn't found.

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

The request would exceed a service quota limit.

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

The identifier of the resource that exceeded the quota.

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

The type of resource that exceeded the quota.

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

The service code for the quota that was exceeded.

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

The code for the specific quota that was exceeded.

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

The request was throttled due to too many requests. Please try again later.

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

The service code where throttling occurred.

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

The quota code related to the throttling.

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

The number of seconds to wait before retrying the throttled request.

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

The input parameters for the request are invalid.

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

The reason for the validation failure.

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

The list of fields that failed validation.

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