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

Delete OpsMetadata related to an application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeleteOpsMetadataCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteOpsMetadataCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteOpsMetadataRequest * OpsMetadataArn: "STRING_VALUE", // required * }; * const command = new DeleteOpsMetadataCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteOpsMetadataCommandInput - {@link DeleteOpsMetadataCommandInput} * @returns {@link DeleteOpsMetadataCommandOutput} * @see {@link DeleteOpsMetadataCommandInput} for command's `input` shape. * @see {@link DeleteOpsMetadataCommandOutput} 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 OpsMetadataInvalidArgumentException} (client fault) *

One of the arguments passed is invalid.

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

The OpsMetadata object doesn't exist.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeleteOpsMetadataCommand extends DeleteOpsMetadataCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteOpsMetadataRequest; output: {}; }; sdk: { input: DeleteOpsMetadataCommandInput; output: DeleteOpsMetadataCommandOutput; }; }; }