import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { InstantiateSolNetworkInstanceInput, InstantiateSolNetworkInstanceOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link InstantiateSolNetworkInstanceCommand}. */ export interface InstantiateSolNetworkInstanceCommandInput extends InstantiateSolNetworkInstanceInput { } /** * @public * * The output of {@link InstantiateSolNetworkInstanceCommand}. */ export interface InstantiateSolNetworkInstanceCommandOutput extends InstantiateSolNetworkInstanceOutput, __MetadataBearer { } declare const InstantiateSolNetworkInstanceCommand_base: { new (input: InstantiateSolNetworkInstanceCommandInput): import("@smithy/core/client").CommandImpl; new (input: InstantiateSolNetworkInstanceCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Instantiates 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.

*

Before you can instantiate a network instance, you have to create a network instance. * For more information, see CreateSolNetworkInstance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TnbClient, InstantiateSolNetworkInstanceCommand } from "@aws-sdk/client-tnb"; // ES Modules import * // const { TnbClient, InstantiateSolNetworkInstanceCommand } = 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 = { // InstantiateSolNetworkInstanceInput * nsInstanceId: "STRING_VALUE", // required * dryRun: true || false, * additionalParamsForNs: "DOCUMENT_VALUE", * tags: { // TagMap * "": "STRING_VALUE", * }, * }; * const command = new InstantiateSolNetworkInstanceCommand(input); * const response = await client.send(command); * // { // InstantiateSolNetworkInstanceOutput * // nsLcmOpOccId: "STRING_VALUE", // required * // tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param InstantiateSolNetworkInstanceCommandInput - {@link InstantiateSolNetworkInstanceCommandInput} * @returns {@link InstantiateSolNetworkInstanceCommandOutput} * @see {@link InstantiateSolNetworkInstanceCommandInput} for command's `input` shape. * @see {@link InstantiateSolNetworkInstanceCommandOutput} 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 ServiceQuotaExceededException} (client fault) *

Service quotas have been exceeded.

* * @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 Instantiate a Sol Network Instance * ```javascript * // * const input = { * nsInstanceId: "ni-0d5b823eb5c2a9241", * tags: { * Name: "Resource" * } * }; * const command = new InstantiateSolNetworkInstanceCommand(input); * const response = await client.send(command); * /* response is * { * nsLcmOpOccId: "no-0d5b823eb5c2a9241", * tags: { * Name: "Resource" * } * } * *\/ * ``` * * @example Instantiate a Sol Network Instance with Overrides * ```javascript * // * const input = { * additionalParamsForNs: { * availability_zone: "us-west-2a", * cidr_block: "10.0.0.0/16" * }, * nsInstanceId: "ni-0d5b823eb5c2a9241" * }; * const command = new InstantiateSolNetworkInstanceCommand(input); * const response = await client.send(command); * /* response is * { * nsLcmOpOccId: "no-0d5b823eb5c2a9241" * } * *\/ * ``` * * @public */ export declare class InstantiateSolNetworkInstanceCommand extends InstantiateSolNetworkInstanceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: InstantiateSolNetworkInstanceInput; output: InstantiateSolNetworkInstanceOutput; }; sdk: { input: InstantiateSolNetworkInstanceCommandInput; output: InstantiateSolNetworkInstanceCommandOutput; }; }; }