import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ListUltraServersByReservedCapacityRequest, ListUltraServersByReservedCapacityResponse } from "../models/models_4"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListUltraServersByReservedCapacityCommand}. */ export interface ListUltraServersByReservedCapacityCommandInput extends ListUltraServersByReservedCapacityRequest { } /** * @public * * The output of {@link ListUltraServersByReservedCapacityCommand}. */ export interface ListUltraServersByReservedCapacityCommandOutput extends ListUltraServersByReservedCapacityResponse, __MetadataBearer { } declare const ListUltraServersByReservedCapacityCommand_base: { new (input: ListUltraServersByReservedCapacityCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListUltraServersByReservedCapacityCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists all UltraServers that are part of a specified reserved capacity.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, ListUltraServersByReservedCapacityCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, ListUltraServersByReservedCapacityCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // ListUltraServersByReservedCapacityRequest * ReservedCapacityArn: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListUltraServersByReservedCapacityCommand(input); * const response = await client.send(command); * // { // ListUltraServersByReservedCapacityResponse * // NextToken: "STRING_VALUE", * // UltraServers: [ // UltraServers // required * // { // UltraServer * // UltraServerId: "STRING_VALUE", // required * // UltraServerType: "STRING_VALUE", // required * // AvailabilityZone: "STRING_VALUE", // required * // InstanceType: "ml.p4d.24xlarge" || "ml.p5.48xlarge" || "ml.p5e.48xlarge" || "ml.p5en.48xlarge" || "ml.trn1.32xlarge" || "ml.trn2.48xlarge" || "ml.p6-b200.48xlarge" || "ml.p4de.24xlarge" || "ml.p6e-gb200.36xlarge", // required * // TotalInstanceCount: Number("int"), // required * // ConfiguredSpareInstanceCount: Number("int"), * // AvailableInstanceCount: Number("int"), * // InUseInstanceCount: Number("int"), * // AvailableSpareInstanceCount: Number("int"), * // UnhealthyInstanceCount: Number("int"), * // HealthStatus: "OK" || "Impaired" || "Insufficient-Data", * // }, * // ], * // }; * * ``` * * @param ListUltraServersByReservedCapacityCommandInput - {@link ListUltraServersByReservedCapacityCommandInput} * @returns {@link ListUltraServersByReservedCapacityCommandOutput} * @see {@link ListUltraServersByReservedCapacityCommandInput} for command's `input` shape. * @see {@link ListUltraServersByReservedCapacityCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class ListUltraServersByReservedCapacityCommand extends ListUltraServersByReservedCapacityCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListUltraServersByReservedCapacityRequest; output: ListUltraServersByReservedCapacityResponse; }; sdk: { input: ListUltraServersByReservedCapacityCommandInput; output: ListUltraServersByReservedCapacityCommandOutput; }; }; }