import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeletePatchBaselineRequest, DeletePatchBaselineResult } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeletePatchBaselineCommand}. */ export interface DeletePatchBaselineCommandInput extends DeletePatchBaselineRequest { } /** * @public * * The output of {@link DeletePatchBaselineCommand}. */ export interface DeletePatchBaselineCommandOutput extends DeletePatchBaselineResult, __MetadataBearer { } declare const DeletePatchBaselineCommand_base: { new (input: DeletePatchBaselineCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeletePatchBaselineCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a patch baseline.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeletePatchBaselineCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeletePatchBaselineCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeletePatchBaselineRequest * BaselineId: "STRING_VALUE", // required * }; * const command = new DeletePatchBaselineCommand(input); * const response = await client.send(command); * // { // DeletePatchBaselineResult * // BaselineId: "STRING_VALUE", * // }; * * ``` * * @param DeletePatchBaselineCommandInput - {@link DeletePatchBaselineCommandInput} * @returns {@link DeletePatchBaselineCommandOutput} * @see {@link DeletePatchBaselineCommandInput} for command's `input` shape. * @see {@link DeletePatchBaselineCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

Error returned if an attempt is made to delete a patch baseline that is registered for a * patch group.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeletePatchBaselineCommand extends DeletePatchBaselineCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeletePatchBaselineRequest; output: DeletePatchBaselineResult; }; sdk: { input: DeletePatchBaselineCommandInput; output: DeletePatchBaselineCommandOutput; }; }; }