import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeSMBSettingsInput, DescribeSMBSettingsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeSMBSettingsCommand}. */ export interface DescribeSMBSettingsCommandInput extends DescribeSMBSettingsInput { } /** * @public * * The output of {@link DescribeSMBSettingsCommand}. */ export interface DescribeSMBSettingsCommandOutput extends DescribeSMBSettingsOutput, __MetadataBearer { } declare const DescribeSMBSettingsCommand_base: { new (input: DescribeSMBSettingsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeSMBSettingsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets a description of a Server Message Block (SMB) file share settings from a file * gateway. This operation is only supported for file gateways.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, DescribeSMBSettingsCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, DescribeSMBSettingsCommand } = 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 = { // DescribeSMBSettingsInput * GatewayARN: "STRING_VALUE", // required * }; * const command = new DescribeSMBSettingsCommand(input); * const response = await client.send(command); * // { // DescribeSMBSettingsOutput * // GatewayARN: "STRING_VALUE", * // DomainName: "STRING_VALUE", * // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR" || "INSUFFICIENT_PERMISSIONS", * // SMBGuestPasswordSet: true || false, * // SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption" || "MandatoryEncryptionNoAes128", * // FileSharesVisible: true || false, * // SMBLocalGroups: { // SMBLocalGroups * // GatewayAdmins: [ // UserList * // "STRING_VALUE", * // ], * // }, * // }; * * ``` * * @param DescribeSMBSettingsCommandInput - {@link DescribeSMBSettingsCommandInput} * @returns {@link DescribeSMBSettingsCommandOutput} * @see {@link DescribeSMBSettingsCommandInput} for command's `input` shape. * @see {@link DescribeSMBSettingsCommandOutput} 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 DescribeSMBSettingsCommand extends DescribeSMBSettingsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeSMBSettingsInput; output: DescribeSMBSettingsOutput; }; sdk: { input: DescribeSMBSettingsCommandInput; output: DescribeSMBSettingsCommandOutput; }; }; }