import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateApplicationSettingsInput, UpdateApplicationSettingsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateApplicationSettingsCommand}. */ export interface UpdateApplicationSettingsCommandInput extends UpdateApplicationSettingsInput { } /** * @public * * The output of {@link UpdateApplicationSettingsCommand}. */ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicationSettingsOutput, __MetadataBearer { } declare const UpdateApplicationSettingsCommand_base: { new (input: UpdateApplicationSettingsCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateApplicationSettingsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates the settings of an application registered with AWS Systems Manager for SAP.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, UpdateApplicationSettingsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, UpdateApplicationSettingsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import * // import type { SsmSapClientConfig } from "@aws-sdk/client-ssm-sap"; * const config = {}; // type is SsmSapClientConfig * const client = new SsmSapClient(config); * const input = { // UpdateApplicationSettingsInput * ApplicationId: "STRING_VALUE", // required * CredentialsToAddOrUpdate: [ // ApplicationCredentialList * { // ApplicationCredential * DatabaseName: "STRING_VALUE", // required * CredentialType: "ADMIN", // required * SecretId: "STRING_VALUE", // required * }, * ], * CredentialsToRemove: [ * { * DatabaseName: "STRING_VALUE", // required * CredentialType: "ADMIN", // required * SecretId: "STRING_VALUE", // required * }, * ], * Backint: { // BackintConfig * BackintMode: "AWSBackup", // required * EnsureNoBackupInProcess: true || false, // required * }, * DatabaseArn: "STRING_VALUE", * }; * const command = new UpdateApplicationSettingsCommand(input); * const response = await client.send(command); * // { // UpdateApplicationSettingsOutput * // Message: "STRING_VALUE", * // OperationIds: [ // OperationIdList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param UpdateApplicationSettingsCommandInput - {@link UpdateApplicationSettingsCommandInput} * @returns {@link UpdateApplicationSettingsCommandOutput} * @see {@link UpdateApplicationSettingsCommandInput} for command's `input` shape. * @see {@link UpdateApplicationSettingsCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

A conflict has occurred.

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

An internal error has occurred.

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

The resource is not available.

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

The request is not authorized.

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

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* * * @public */ export declare class UpdateApplicationSettingsCommand extends UpdateApplicationSettingsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateApplicationSettingsInput; output: UpdateApplicationSettingsOutput; }; sdk: { input: UpdateApplicationSettingsCommandInput; output: UpdateApplicationSettingsCommandOutput; }; }; }