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

You do not have sufficient access to perform this action.

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

There was a conflict processing the request. Updating or deleting the resource can * cause an inconsistent state.

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

The ID of the resource.

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

The resource type.

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

The request has failed due to an internal error.

* @public */ export declare class InternalServerException extends __BaseException { readonly name: "InternalServerException"; readonly $fault: "server"; Message: string | undefined; /** *

Indicates when to retry the request.

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

The specified resource could not be found.

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

The ID of the resource.

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

The resource type.

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

The specified resource could not be found.

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

The request was denied due to request throttling.

* @public */ export declare class ThrottlingException extends __BaseException { readonly name: "ThrottlingException"; readonly $fault: "client"; Message: string | undefined; /** *

Indicates when to retry the request.

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

The input fails to satisfy the constraints.

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

The reason for the error.

* @public */ Reason?: ValidationExceptionReason | undefined; /** *

The fields that caused the error, if applicable.

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

A service limit was exceeded.

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

The error message.

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

The ID of the resource.

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

The resource type.

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

The limit code.

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

The service code.

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

Describes a core network policy exception.

* @public */ export declare class CoreNetworkPolicyException extends __BaseException { readonly name: "CoreNetworkPolicyException"; readonly $fault: "client"; Message: string | undefined; /** *

Describes a core network policy exception.

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