import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateSharedVpcConfigurationRequest, UpdateSharedVpcConfigurationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateSharedVpcConfigurationCommand}. */ export interface UpdateSharedVpcConfigurationCommandInput extends UpdateSharedVpcConfigurationRequest { } /** * @public * * The output of {@link UpdateSharedVpcConfigurationCommand}. */ export interface UpdateSharedVpcConfigurationCommandOutput extends UpdateSharedVpcConfigurationResponse, __MetadataBearer { } declare const UpdateSharedVpcConfigurationCommand_base: { new (input: UpdateSharedVpcConfigurationCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [UpdateSharedVpcConfigurationCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Configures whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual * private cloud (VPC) owner. For more information, see the Amazon FSx for NetApp ONTAP User * Guide.

* *

We strongly recommend that participant-created Multi-AZ file systems in the shared * VPC are deleted before you disable this feature. Once the feature is disabled, these * file systems will enter a MISCONFIGURED state and behave like Single-AZ * file systems. For more information, see Important considerations before disabling shared VPC support for Multi-AZ file * systems.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FSxClient, UpdateSharedVpcConfigurationCommand } from "@aws-sdk/client-fsx"; // ES Modules import * // const { FSxClient, UpdateSharedVpcConfigurationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import * // import type { FSxClientConfig } from "@aws-sdk/client-fsx"; * const config = {}; // type is FSxClientConfig * const client = new FSxClient(config); * const input = { // UpdateSharedVpcConfigurationRequest * EnableFsxRouteTableUpdatesFromParticipantAccounts: "STRING_VALUE", * ClientRequestToken: "STRING_VALUE", * }; * const command = new UpdateSharedVpcConfigurationCommand(input); * const response = await client.send(command); * // { // UpdateSharedVpcConfigurationResponse * // EnableFsxRouteTableUpdatesFromParticipantAccounts: "STRING_VALUE", * // }; * * ``` * * @param UpdateSharedVpcConfigurationCommandInput - {@link UpdateSharedVpcConfigurationCommandInput} * @returns {@link UpdateSharedVpcConfigurationCommandOutput} * @see {@link UpdateSharedVpcConfigurationCommandInput} for command's `input` shape. * @see {@link UpdateSharedVpcConfigurationCommandOutput} for command's `response` shape. * @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape. * * @throws {@link BadRequest} (client fault) *

A generic error indicating a failure with a client request.

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

The error returned when a second request is received with the same client request * token but different parameters settings. A client request token should always uniquely * identify a single request.

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

A generic error indicating a server-side failure.

* * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* * * @public */ export declare class UpdateSharedVpcConfigurationCommand extends UpdateSharedVpcConfigurationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateSharedVpcConfigurationRequest; output: UpdateSharedVpcConfigurationResponse; }; sdk: { input: UpdateSharedVpcConfigurationCommandInput; output: UpdateSharedVpcConfigurationCommandOutput; }; }; }