import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteSolNetworkInstanceInput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteSolNetworkInstanceCommand}. */ export interface DeleteSolNetworkInstanceCommandInput extends DeleteSolNetworkInstanceInput { } /** * @public * * The output of {@link DeleteSolNetworkInstanceCommand}. */ export interface DeleteSolNetworkInstanceCommandOutput extends __MetadataBearer { } declare const DeleteSolNetworkInstanceCommand_base: { new (input: DeleteSolNetworkInstanceCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteSolNetworkInstanceCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a network instance.

*

A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.

*

To delete a network instance, the instance must be in a stopped or terminated state. To * terminate a network instance, see TerminateSolNetworkInstance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TnbClient, DeleteSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import * // const { TnbClient, DeleteSolNetworkInstanceCommand } = 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 = { // DeleteSolNetworkInstanceInput * nsInstanceId: "STRING_VALUE", // required * }; * const command = new DeleteSolNetworkInstanceCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteSolNetworkInstanceCommandInput - {@link DeleteSolNetworkInstanceCommandInput} * @returns {@link DeleteSolNetworkInstanceCommandOutput} * @see {@link DeleteSolNetworkInstanceCommandInput} for command's `input` shape. * @see {@link DeleteSolNetworkInstanceCommandOutput} 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 Delete a Sol Network Instance. * ```javascript * // * const input = { * nsInstanceId: "ni-07aa863e53460a2a6" * }; * const command = new DeleteSolNetworkInstanceCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteSolNetworkInstanceCommand extends DeleteSolNetworkInstanceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteSolNetworkInstanceInput; output: {}; }; sdk: { input: DeleteSolNetworkInstanceCommandInput; output: DeleteSolNetworkInstanceCommandOutput; }; }; }