import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateSMBFileShareVisibilityInput, UpdateSMBFileShareVisibilityOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateSMBFileShareVisibilityCommand}. */ export interface UpdateSMBFileShareVisibilityCommandInput extends UpdateSMBFileShareVisibilityInput { } /** * @public * * The output of {@link UpdateSMBFileShareVisibilityCommand}. */ export interface UpdateSMBFileShareVisibilityCommandOutput extends UpdateSMBFileShareVisibilityOutput, __MetadataBearer { } declare const UpdateSMBFileShareVisibilityCommand_base: { new (input: UpdateSMBFileShareVisibilityCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateSMBFileShareVisibilityCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Controls whether the shares on an S3 File Gateway are visible in a net view or browse * list. The operation is only supported for S3 File Gateways.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, UpdateSMBFileShareVisibilityCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, UpdateSMBFileShareVisibilityCommand } = require("@aws-sdk/client-storage-gateway"); // CommonJS import * // import type { StorageGatewayClientConfig } from "@aws-sdk/client-storage-gateway"; * const config = {}; // type is StorageGatewayClientConfig * const client = new StorageGatewayClient(config); * const input = { // UpdateSMBFileShareVisibilityInput * GatewayARN: "STRING_VALUE", // required * FileSharesVisible: true || false, // required * }; * const command = new UpdateSMBFileShareVisibilityCommand(input); * const response = await client.send(command); * // { // UpdateSMBFileShareVisibilityOutput * // GatewayARN: "STRING_VALUE", * // }; * * ``` * * @param UpdateSMBFileShareVisibilityCommandInput - {@link UpdateSMBFileShareVisibilityCommandInput} * @returns {@link UpdateSMBFileShareVisibilityCommandOutput} * @see {@link UpdateSMBFileShareVisibilityCommandInput} for command's `input` shape. * @see {@link UpdateSMBFileShareVisibilityCommandOutput} for command's `response` shape. * @see {@link StorageGatewayClientResolvedConfig | config} for StorageGatewayClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An internal server error has occurred during the request. For more information, see the * error and message fields.

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

An exception occurred because an invalid gateway request was issued to the service. For * more information, see the error and message fields.

* * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* * * @public */ export declare class UpdateSMBFileShareVisibilityCommand extends UpdateSMBFileShareVisibilityCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateSMBFileShareVisibilityInput; output: UpdateSMBFileShareVisibilityOutput; }; sdk: { input: UpdateSMBFileShareVisibilityCommandInput; output: UpdateSMBFileShareVisibilityCommandOutput; }; }; }