import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeStorageVirtualMachinesRequest, DescribeStorageVirtualMachinesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeStorageVirtualMachinesCommand}. */ export interface DescribeStorageVirtualMachinesCommandInput extends DescribeStorageVirtualMachinesRequest { } /** * @public * * The output of {@link DescribeStorageVirtualMachinesCommand}. */ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeStorageVirtualMachinesResponse, __MetadataBearer { } declare const DescribeStorageVirtualMachinesCommand_base: { new (input: DescribeStorageVirtualMachinesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeStorageVirtualMachinesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes one or more Amazon FSx for NetApp ONTAP storage virtual machines (SVMs).

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FSxClient, DescribeStorageVirtualMachinesCommand } from "@aws-sdk/client-fsx"; // ES Modules import * // const { FSxClient, DescribeStorageVirtualMachinesCommand } = 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 = { // DescribeStorageVirtualMachinesRequest * StorageVirtualMachineIds: [ // StorageVirtualMachineIds * "STRING_VALUE", * ], * Filters: [ // StorageVirtualMachineFilters * { // StorageVirtualMachineFilter * Name: "file-system-id", * Values: [ // StorageVirtualMachineFilterValues * "STRING_VALUE", * ], * }, * ], * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeStorageVirtualMachinesCommand(input); * const response = await client.send(command); * // { // DescribeStorageVirtualMachinesResponse * // StorageVirtualMachines: [ // StorageVirtualMachines * // { // StorageVirtualMachine * // ActiveDirectoryConfiguration: { // SvmActiveDirectoryConfiguration * // NetBiosName: "STRING_VALUE", * // SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryAttributes * // DomainName: "STRING_VALUE", * // OrganizationalUnitDistinguishedName: "STRING_VALUE", * // FileSystemAdministratorsGroup: "STRING_VALUE", * // UserName: "STRING_VALUE", * // DnsIps: [ // DnsIps * // "STRING_VALUE", * // ], * // DomainJoinServiceAccountSecret: "STRING_VALUE", * // }, * // }, * // CreationTime: new Date("TIMESTAMP"), * // Endpoints: { // SvmEndpoints * // Iscsi: { // SvmEndpoint * // DNSName: "STRING_VALUE", * // IpAddresses: [ // OntapEndpointIpAddresses * // "STRING_VALUE", * // ], * // Ipv6Addresses: [ * // "STRING_VALUE", * // ], * // }, * // Management: { * // DNSName: "STRING_VALUE", * // IpAddresses: [ * // "STRING_VALUE", * // ], * // Ipv6Addresses: [ * // "STRING_VALUE", * // ], * // }, * // Nfs: { * // DNSName: "STRING_VALUE", * // IpAddresses: [ * // "STRING_VALUE", * // ], * // Ipv6Addresses: "", * // }, * // Smb: { * // DNSName: "STRING_VALUE", * // IpAddresses: "", * // Ipv6Addresses: "", * // }, * // }, * // FileSystemId: "STRING_VALUE", * // Lifecycle: "CREATED" || "CREATING" || "DELETING" || "FAILED" || "MISCONFIGURED" || "PENDING", * // Name: "STRING_VALUE", * // ResourceARN: "STRING_VALUE", * // StorageVirtualMachineId: "STRING_VALUE", * // Subtype: "DEFAULT" || "DP_DESTINATION" || "SYNC_DESTINATION" || "SYNC_SOURCE", * // UUID: "STRING_VALUE", * // Tags: [ // Tags * // { // Tag * // Key: "STRING_VALUE", // required * // Value: "STRING_VALUE", // required * // }, * // ], * // LifecycleTransitionReason: { // LifecycleTransitionReason * // Message: "STRING_VALUE", * // }, * // RootVolumeSecurityStyle: "UNIX" || "NTFS" || "MIXED", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeStorageVirtualMachinesCommandInput - {@link DescribeStorageVirtualMachinesCommandInput} * @returns {@link DescribeStorageVirtualMachinesCommandOutput} * @see {@link DescribeStorageVirtualMachinesCommandInput} for command's `input` shape. * @see {@link DescribeStorageVirtualMachinesCommandOutput} 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 InternalServerError} (server fault) *

A generic error indicating a server-side failure.

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

No FSx for ONTAP SVMs were found based upon the supplied parameters.

* * @throws {@link FSxServiceException} *

Base exception class for all service exceptions from FSx service.

* * * @public */ export declare class DescribeStorageVirtualMachinesCommand extends DescribeStorageVirtualMachinesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeStorageVirtualMachinesRequest; output: DescribeStorageVirtualMachinesResponse; }; sdk: { input: DescribeStorageVirtualMachinesCommandInput; output: DescribeStorageVirtualMachinesCommandOutput; }; }; }