import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CancelSolNetworkOperationInput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CancelSolNetworkOperationCommand}. */ export interface CancelSolNetworkOperationCommandInput extends CancelSolNetworkOperationInput { } /** * @public * * The output of {@link CancelSolNetworkOperationCommand}. */ export interface CancelSolNetworkOperationCommandOutput extends __MetadataBearer { } declare const CancelSolNetworkOperationCommand_base: { new (input: CancelSolNetworkOperationCommandInput): import("@smithy/core/client").CommandImpl; new (input: CancelSolNetworkOperationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Cancels a network operation.

*

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TnbClient, CancelSolNetworkOperationCommand } from "@aws-sdk/client-tnb"; // ES Modules import * // const { TnbClient, CancelSolNetworkOperationCommand } = require("@aws-sdk/client-tnb"); // CommonJS import * // import type { TnbClientConfig } from "@aws-sdk/client-tnb"; * const config = {}; // type is TnbClientConfig * const client = new TnbClient(config); * const input = { // CancelSolNetworkOperationInput * nsLcmOpOccId: "STRING_VALUE", // required * }; * const command = new CancelSolNetworkOperationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param CancelSolNetworkOperationCommandInput - {@link CancelSolNetworkOperationCommandInput} * @returns {@link CancelSolNetworkOperationCommandOutput} * @see {@link CancelSolNetworkOperationCommandInput} for command's `input` shape. * @see {@link CancelSolNetworkOperationCommandOutput} for command's `response` shape. * @see {@link TnbClientResolvedConfig | config} for TnbClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Insufficient permissions to make request.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error occurred. Problem on the server.

* * @throws {@link ResourceNotFoundException} (client fault) *

Request references a resource that doesn't exist.

* * @throws {@link ThrottlingException} (client fault) *

Exception caused by throttling.

* * @throws {@link ValidationException} (client fault) *

Unable to process the request because the client provided input failed to satisfy * request constraints.

* * @throws {@link TnbServiceException} *

Base exception class for all service exceptions from Tnb service.

* * * @example Cancel a in-progress Sol Network Operation. * ```javascript * // * const input = { * nsLcmOpOccId: "no-0d5b823eb5c2a9241" * }; * const command = new CancelSolNetworkOperationCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class CancelSolNetworkOperationCommand extends CancelSolNetworkOperationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CancelSolNetworkOperationInput; output: {}; }; sdk: { input: CancelSolNetworkOperationCommandInput; output: CancelSolNetworkOperationCommandOutput; }; }; }