import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateSMBLocalGroupsInput, UpdateSMBLocalGroupsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateSMBLocalGroupsCommand}. */ export interface UpdateSMBLocalGroupsCommandInput extends UpdateSMBLocalGroupsInput { } /** * @public * * The output of {@link UpdateSMBLocalGroupsCommand}. */ export interface UpdateSMBLocalGroupsCommandOutput extends UpdateSMBLocalGroupsOutput, __MetadataBearer { } declare const UpdateSMBLocalGroupsCommand_base: { new (input: UpdateSMBLocalGroupsCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateSMBLocalGroupsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates the list of Active Directory users and groups that have special permissions for * SMB file shares on the gateway.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, UpdateSMBLocalGroupsCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, UpdateSMBLocalGroupsCommand } = 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 = { // UpdateSMBLocalGroupsInput * GatewayARN: "STRING_VALUE", // required * SMBLocalGroups: { // SMBLocalGroups * GatewayAdmins: [ // UserList * "STRING_VALUE", * ], * }, * }; * const command = new UpdateSMBLocalGroupsCommand(input); * const response = await client.send(command); * // { // UpdateSMBLocalGroupsOutput * // GatewayARN: "STRING_VALUE", * // }; * * ``` * * @param UpdateSMBLocalGroupsCommandInput - {@link UpdateSMBLocalGroupsCommandInput} * @returns {@link UpdateSMBLocalGroupsCommandOutput} * @see {@link UpdateSMBLocalGroupsCommandInput} for command's `input` shape. * @see {@link UpdateSMBLocalGroupsCommandOutput} 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 UpdateSMBLocalGroupsCommand extends UpdateSMBLocalGroupsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateSMBLocalGroupsInput; output: UpdateSMBLocalGroupsOutput; }; sdk: { input: UpdateSMBLocalGroupsCommandInput; output: UpdateSMBLocalGroupsCommandOutput; }; }; }