import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetPipelineChangeProgressRequest, GetPipelineChangeProgressResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetPipelineChangeProgressCommand}. */ export interface GetPipelineChangeProgressCommandInput extends GetPipelineChangeProgressRequest { } /** * @public * * The output of {@link GetPipelineChangeProgressCommand}. */ export interface GetPipelineChangeProgressCommandOutput extends GetPipelineChangeProgressResponse, __MetadataBearer { } declare const GetPipelineChangeProgressCommand_base: { new (input: GetPipelineChangeProgressCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetPipelineChangeProgressCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns progress information for the current change happening on an OpenSearch Ingestion * pipeline. Currently, this operation only returns information when a pipeline is being * created.

*

For more information, see Tracking the status of pipeline creation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OSISClient, GetPipelineChangeProgressCommand } from "@aws-sdk/client-osis"; // ES Modules import * // const { OSISClient, GetPipelineChangeProgressCommand } = require("@aws-sdk/client-osis"); // CommonJS import * // import type { OSISClientConfig } from "@aws-sdk/client-osis"; * const config = {}; // type is OSISClientConfig * const client = new OSISClient(config); * const input = { // GetPipelineChangeProgressRequest * PipelineName: "STRING_VALUE", // required * }; * const command = new GetPipelineChangeProgressCommand(input); * const response = await client.send(command); * // { // GetPipelineChangeProgressResponse * // ChangeProgressStatuses: [ // ChangeProgressStatusList * // { // ChangeProgressStatus * // StartTime: new Date("TIMESTAMP"), * // Status: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "FAILED", * // TotalNumberOfStages: Number("int"), * // ChangeProgressStages: [ // ChangeProgressStageList * // { // ChangeProgressStage * // Name: "STRING_VALUE", * // Status: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "FAILED", * // Description: "STRING_VALUE", * // LastUpdatedAt: new Date("TIMESTAMP"), * // }, * // ], * // }, * // ], * // }; * * ``` * * @param GetPipelineChangeProgressCommandInput - {@link GetPipelineChangeProgressCommandInput} * @returns {@link GetPipelineChangeProgressCommandOutput} * @see {@link GetPipelineChangeProgressCommandInput} for command's `input` shape. * @see {@link GetPipelineChangeProgressCommandOutput} for command's `response` shape. * @see {@link OSISClientResolvedConfig | config} for OSISClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have permissions to access the resource.

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

Exception is thrown when an operation has been disabled.

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

The request failed because of an unknown error, exception, or failure (the failure is * internal to the service).

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

You attempted to access or delete a resource that does not exist.

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

An exception for missing or invalid input fields.

* * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* * * @public */ export declare class GetPipelineChangeProgressCommand extends GetPipelineChangeProgressCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetPipelineChangeProgressRequest; output: GetPipelineChangeProgressResponse; }; sdk: { input: GetPipelineChangeProgressCommandInput; output: GetPipelineChangeProgressCommandOutput; }; }; }