import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListModelsRequest, ListModelsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListModelsCommand}. */ export interface ListModelsCommandInput extends ListModelsRequest { } /** * @public * * The output of {@link ListModelsCommand}. */ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataBearer { } declare const ListModelsCommand_base: { new (input: ListModelsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListModelsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all available AI models that can be used for workflow execution, including their status and compatibility information.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { NovaActClient, ListModelsCommand } from "@aws-sdk/client-nova-act"; // ES Modules import * // const { NovaActClient, ListModelsCommand } = require("@aws-sdk/client-nova-act"); // CommonJS import * // import type { NovaActClientConfig } from "@aws-sdk/client-nova-act"; * const config = {}; // type is NovaActClientConfig * const client = new NovaActClient(config); * const input = { // ListModelsRequest * clientCompatibilityVersion: Number("int"), // required * }; * const command = new ListModelsCommand(input); * const response = await client.send(command); * // { // ListModelsResponse * // modelSummaries: [ // ModelSummaries // required * // { // ModelSummary * // modelId: "STRING_VALUE", // required * // modelLifecycle: { // ModelLifecycle * // status: "ACTIVE" || "LEGACY" || "DEPRECATED" || "PREVIEW", // required * // }, * // minimumCompatibilityVersion: Number("int"), // required * // }, * // ], * // modelAliases: [ // ModelAliases // required * // { // ModelAlias * // aliasName: "STRING_VALUE", // required * // latestModelId: "STRING_VALUE", // required * // resolvedModelId: "STRING_VALUE", * // }, * // ], * // compatibilityInformation: { // CompatibilityInformation * // clientCompatibilityVersion: Number("int"), // required * // supportedModelIds: [ // ModelIdList // required * // "STRING_VALUE", * // ], * // message: "STRING_VALUE", * // }, * // }; * * ``` * * @param ListModelsCommandInput - {@link ListModelsCommandInput} * @returns {@link ListModelsCommandOutput} * @see {@link ListModelsCommandInput} for command's `input` shape. * @see {@link ListModelsCommandOutput} for command's `response` shape. * @see {@link NovaActClientResolvedConfig | config} for NovaActClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

* * @throws {@link InternalServerException} (server fault) *

An internal server error occurred. Please try again later.

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

The request was throttled due to too many requests. Please try again later.

* * @throws {@link NovaActServiceException} *

Base exception class for all service exceptions from NovaAct service.

* * * @public */ export declare class ListModelsCommand extends ListModelsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListModelsRequest; output: ListModelsResponse; }; sdk: { input: ListModelsCommandInput; output: ListModelsCommandOutput; }; }; }