import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeJobsCommand}. */ export interface DescribeJobsCommandInput extends DescribeJobsRequest { } /** * @public * * The output of {@link DescribeJobsCommand}. */ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __MetadataBearer { } declare const DescribeJobsCommand_base: { new (input: DescribeJobsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeJobsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of Jobs. Use the JobsID and fromDate and toDate filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are created by the StartRecovery, TerminateRecoveryInstances and StartFailbackLaunch APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DrsClient, DescribeJobsCommand } from "@aws-sdk/client-drs"; // ES Modules import * // const { DrsClient, DescribeJobsCommand } = require("@aws-sdk/client-drs"); // CommonJS import * // import type { DrsClientConfig } from "@aws-sdk/client-drs"; * const config = {}; // type is DrsClientConfig * const client = new DrsClient(config); * const input = { // DescribeJobsRequest * filters: { // DescribeJobsRequestFilters * jobIDs: [ // DescribeJobsRequestFiltersJobIDs * "STRING_VALUE", * ], * fromDate: "STRING_VALUE", * toDate: "STRING_VALUE", * }, * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new DescribeJobsCommand(input); * const response = await client.send(command); * // { // DescribeJobsResponse * // items: [ // JobsList * // { // Job * // jobID: "STRING_VALUE", // required * // arn: "STRING_VALUE", * // type: "STRING_VALUE", * // initiatedBy: "STRING_VALUE", * // creationDateTime: "STRING_VALUE", * // endDateTime: "STRING_VALUE", * // status: "STRING_VALUE", * // participatingServers: [ // ParticipatingServers * // { // ParticipatingServer * // sourceServerID: "STRING_VALUE", * // recoveryInstanceID: "STRING_VALUE", * // launchStatus: "STRING_VALUE", * // launchActionsStatus: { // LaunchActionsStatus * // ssmAgentDiscoveryDatetime: "STRING_VALUE", * // runs: [ // LaunchActionRuns * // { // LaunchActionRun * // action: { // LaunchAction * // actionId: "STRING_VALUE", * // actionCode: "STRING_VALUE", * // type: "STRING_VALUE", * // name: "STRING_VALUE", * // active: true || false, * // order: Number("int"), * // actionVersion: "STRING_VALUE", * // optional: true || false, * // parameters: { // LaunchActionParameters * // "": { // LaunchActionParameter * // value: "STRING_VALUE", * // type: "STRING_VALUE", * // }, * // }, * // description: "STRING_VALUE", * // category: "STRING_VALUE", * // }, * // runId: "STRING_VALUE", * // status: "STRING_VALUE", * // failureReason: "STRING_VALUE", * // }, * // ], * // }, * // }, * // ], * // tags: { // TagsMap * // "": "STRING_VALUE", * // }, * // participatingResources: [ // ParticipatingResources * // { // ParticipatingResource * // participatingResourceID: { // ParticipatingResourceID Union: only one key present * // sourceNetworkID: "STRING_VALUE", * // }, * // launchStatus: "STRING_VALUE", * // }, * // ], * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeJobsCommandInput - {@link DescribeJobsCommandInput} * @returns {@link DescribeJobsCommandOutput} * @see {@link DescribeJobsCommandInput} for command's `input` shape. * @see {@link DescribeJobsCommandOutput} for command's `response` shape. * @see {@link DrsClientResolvedConfig | config} for DrsClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The request processing has failed because of an unknown error, exception or failure.

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

The request was denied due to request throttling.

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

The account performing the request has not been initialized.

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

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

* * @throws {@link DrsServiceException} *

Base exception class for all service exceptions from Drs service.

* * * @public */ export declare class DescribeJobsCommand extends DescribeJobsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeJobsRequest; output: DescribeJobsResponse; }; sdk: { input: DescribeJobsCommandInput; output: DescribeJobsCommandOutput; }; }; }