import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_5"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdatePipelineCommand}. */ export interface UpdatePipelineCommandInput extends UpdatePipelineRequest { } /** * @public * * The output of {@link UpdatePipelineCommand}. */ export interface UpdatePipelineCommandOutput extends UpdatePipelineResponse, __MetadataBearer { } declare const UpdatePipelineCommand_base: { new (input: UpdatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdatePipelineCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates a pipeline.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, UpdatePipelineCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, UpdatePipelineCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // UpdatePipelineRequest * PipelineName: "STRING_VALUE", // required * PipelineDisplayName: "STRING_VALUE", * PipelineDefinition: "STRING_VALUE", * PipelineDefinitionS3Location: { // PipelineDefinitionS3Location * Bucket: "STRING_VALUE", // required * ObjectKey: "STRING_VALUE", // required * VersionId: "STRING_VALUE", * }, * PipelineDescription: "STRING_VALUE", * RoleArn: "STRING_VALUE", * ParallelismConfiguration: { // ParallelismConfiguration * MaxParallelExecutionSteps: Number("int"), // required * }, * }; * const command = new UpdatePipelineCommand(input); * const response = await client.send(command); * // { // UpdatePipelineResponse * // PipelineArn: "STRING_VALUE", * // PipelineVersionId: Number("long"), * // }; * * ``` * * @param UpdatePipelineCommandInput - {@link UpdatePipelineCommandInput} * @returns {@link UpdatePipelineCommandOutput} * @see {@link UpdatePipelineCommandInput} for command's `input` shape. * @see {@link UpdatePipelineCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

* * @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 UpdatePipelineCommand extends UpdatePipelineCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdatePipelineRequest; output: UpdatePipelineResponse; }; sdk: { input: UpdatePipelineCommandInput; output: UpdatePipelineCommandOutput; }; }; }