import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeWorkspaceBundlesRequest, DescribeWorkspaceBundlesResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeWorkspaceBundlesCommand}. */ export interface DescribeWorkspaceBundlesCommandInput extends DescribeWorkspaceBundlesRequest { } /** * @public * * The output of {@link DescribeWorkspaceBundlesCommand}. */ export interface DescribeWorkspaceBundlesCommandOutput extends DescribeWorkspaceBundlesResult, __MetadataBearer { } declare const DescribeWorkspaceBundlesCommand_base: { new (input: DescribeWorkspaceBundlesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeWorkspaceBundlesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves a list that describes the available WorkSpace bundles.

*

You can filter the results using either bundle ID or owner, but not both.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { WorkSpacesClient, DescribeWorkspaceBundlesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import * // const { WorkSpacesClient, DescribeWorkspaceBundlesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import * // import type { WorkSpacesClientConfig } from "@aws-sdk/client-workspaces"; * const config = {}; // type is WorkSpacesClientConfig * const client = new WorkSpacesClient(config); * const input = { // DescribeWorkspaceBundlesRequest * BundleIds: [ // BundleIdList * "STRING_VALUE", * ], * Owner: "STRING_VALUE", * NextToken: "STRING_VALUE", * }; * const command = new DescribeWorkspaceBundlesCommand(input); * const response = await client.send(command); * // { // DescribeWorkspaceBundlesResult * // Bundles: [ // BundleList * // { // WorkspaceBundle * // BundleId: "STRING_VALUE", * // Name: "STRING_VALUE", * // Owner: "STRING_VALUE", * // Description: "STRING_VALUE", * // ImageId: "STRING_VALUE", * // RootStorage: { // RootStorage * // Capacity: "STRING_VALUE", // required * // }, * // UserStorage: { // UserStorage * // Capacity: "STRING_VALUE", // required * // }, * // ComputeType: { // ComputeType * // Name: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GENERALPURPOSE_4XLARGE" || "GENERALPURPOSE_8XLARGE" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN" || "GRAPHICS_G6_XLARGE" || "GRAPHICS_G6_2XLARGE" || "GRAPHICS_G6_4XLARGE" || "GRAPHICS_G6_8XLARGE" || "GRAPHICS_G6_16XLARGE" || "GRAPHICS_GR6_4XLARGE" || "GRAPHICS_GR6_8XLARGE" || "GRAPHICS_G6F_LARGE" || "GRAPHICS_G6F_XLARGE" || "GRAPHICS_G6F_2XLARGE" || "GRAPHICS_G6F_4XLARGE" || "GRAPHICS_GR6F_4XLARGE", * // }, * // LastUpdatedTime: new Date("TIMESTAMP"), * // CreationTime: new Date("TIMESTAMP"), * // State: "AVAILABLE" || "PENDING" || "ERROR", * // BundleType: "REGULAR" || "STANDBY", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeWorkspaceBundlesCommandInput - {@link DescribeWorkspaceBundlesCommandInput} * @returns {@link DescribeWorkspaceBundlesCommandOutput} * @see {@link DescribeWorkspaceBundlesCommandInput} for command's `input` shape. * @see {@link DescribeWorkspaceBundlesCommandOutput} for command's `response` shape. * @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape. * * @throws {@link InvalidParameterValuesException} (client fault) *

One or more parameter values are not valid.

* * @throws {@link WorkSpacesServiceException} *

Base exception class for all service exceptions from WorkSpaces service.

* * * @public */ export declare class DescribeWorkspaceBundlesCommand extends DescribeWorkspaceBundlesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeWorkspaceBundlesRequest; output: DescribeWorkspaceBundlesResult; }; sdk: { input: DescribeWorkspaceBundlesCommandInput; output: DescribeWorkspaceBundlesCommandOutput; }; }; }