import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateProblemRequest, UpdateProblemResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateProblemCommand}. */ export interface UpdateProblemCommandInput extends UpdateProblemRequest { } /** * @public * * The output of {@link UpdateProblemCommand}. */ export interface UpdateProblemCommandOutput extends UpdateProblemResponse, __MetadataBearer { } declare const UpdateProblemCommand_base: { new (input: UpdateProblemCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateProblemCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates the visibility of the problem or specifies the problem as * RESOLVED.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, UpdateProblemCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, UpdateProblemCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import * // import type { ApplicationInsightsClientConfig } from "@aws-sdk/client-application-insights"; * const config = {}; // type is ApplicationInsightsClientConfig * const client = new ApplicationInsightsClient(config); * const input = { // UpdateProblemRequest * ProblemId: "STRING_VALUE", // required * UpdateStatus: "RESOLVED", * Visibility: "IGNORED" || "VISIBLE", * }; * const command = new UpdateProblemCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateProblemCommandInput - {@link UpdateProblemCommandInput} * @returns {@link UpdateProblemCommandOutput} * @see {@link UpdateProblemCommandInput} for command's `input` shape. * @see {@link UpdateProblemCommandOutput} for command's `response` shape. * @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

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

The resource does not exist in the customer account.

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

The parameter is not valid.

* * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* * * @public */ export declare class UpdateProblemCommand extends UpdateProblemCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateProblemRequest; output: {}; }; sdk: { input: UpdateProblemCommandInput; output: UpdateProblemCommandOutput; }; }; }