import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListOperationsInput, ListOperationsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListOperationsCommand}. */ export interface ListOperationsCommandInput extends ListOperationsInput { } /** * @public * * The output of {@link ListOperationsCommand}. */ export interface ListOperationsCommandOutput extends ListOperationsOutput, __MetadataBearer { } declare const ListOperationsCommand_base: { new (input: ListOperationsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListOperationsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the operations performed by AWS Systems Manager for SAP.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, ListOperationsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, ListOperationsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import * // import type { SsmSapClientConfig } from "@aws-sdk/client-ssm-sap"; * const config = {}; // type is SsmSapClientConfig * const client = new SsmSapClient(config); * const input = { // ListOperationsInput * ApplicationId: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * Operator: "Equals" || "GreaterThanOrEquals" || "LessThanOrEquals", // required * }, * ], * }; * const command = new ListOperationsCommand(input); * const response = await client.send(command); * // { // ListOperationsOutput * // Operations: [ // OperationList * // { // Operation * // Id: "STRING_VALUE", * // Type: "STRING_VALUE", * // Status: "INPROGRESS" || "SUCCESS" || "ERROR", * // StatusMessage: "STRING_VALUE", * // Properties: { // OperationProperties * // "": "STRING_VALUE", * // }, * // ResourceType: "STRING_VALUE", * // ResourceId: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // StartTime: new Date("TIMESTAMP"), * // EndTime: new Date("TIMESTAMP"), * // LastUpdatedTime: new Date("TIMESTAMP"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListOperationsCommandInput - {@link ListOperationsCommandInput} * @returns {@link ListOperationsCommandOutput} * @see {@link ListOperationsCommandInput} for command's `input` shape. * @see {@link ListOperationsCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An internal error has occurred.

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

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* * * @public */ export declare class ListOperationsCommand extends ListOperationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListOperationsInput; output: ListOperationsOutput; }; sdk: { input: ListOperationsCommandInput; output: ListOperationsCommandOutput; }; }; }