import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ModifyLunaClientRequest, ModifyLunaClientResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ModifyLunaClientCommand}. */ export interface ModifyLunaClientCommandInput extends ModifyLunaClientRequest { } /** * @public * * The output of {@link ModifyLunaClientCommand}. */ export interface ModifyLunaClientCommandOutput extends ModifyLunaClientResponse, __MetadataBearer { } declare const ModifyLunaClientCommand_base: { new (input: ModifyLunaClientCommandInput): import("@smithy/core/client").CommandImpl; new (input: ModifyLunaClientCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

This is documentation for AWS CloudHSM Classic. For * more information, see AWS CloudHSM * Classic FAQs, the AWS * CloudHSM Classic User Guide, and the AWS CloudHSM Classic API Reference.

*

* For information about the current version of AWS * CloudHSM, see AWS CloudHSM, the * AWS CloudHSM User Guide, * and the AWS CloudHSM API * Reference.

*

Modifies the certificate used by the client.

*

This action can potentially start a workflow to install the new certificate on the * client's HSMs.

* * @deprecated This API is deprecated. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudHSMClient, ModifyLunaClientCommand } from "@aws-sdk/client-cloudhsm"; // ES Modules import * // const { CloudHSMClient, ModifyLunaClientCommand } = require("@aws-sdk/client-cloudhsm"); // CommonJS import * // import type { CloudHSMClientConfig } from "@aws-sdk/client-cloudhsm"; * const config = {}; // type is CloudHSMClientConfig * const client = new CloudHSMClient(config); * const input = { // ModifyLunaClientRequest * ClientArn: "STRING_VALUE", // required * Certificate: "STRING_VALUE", // required * }; * const command = new ModifyLunaClientCommand(input); * const response = await client.send(command); * // { // ModifyLunaClientResponse * // ClientArn: "STRING_VALUE", * // }; * * ``` * * @param ModifyLunaClientCommandInput - {@link ModifyLunaClientCommandInput} * @returns {@link ModifyLunaClientCommandOutput} * @see {@link ModifyLunaClientCommandInput} for command's `input` shape. * @see {@link ModifyLunaClientCommandOutput} for command's `response` shape. * @see {@link CloudHSMClientResolvedConfig | config} for CloudHSMClient's `config` shape. * * @throws {@link CloudHsmServiceException} (client fault) *

Indicates that an exception occurred in the AWS CloudHSM service.

* * @throws {@link CloudHSMServiceException} *

Base exception class for all service exceptions from CloudHSM service.

* * * @public */ export declare class ModifyLunaClientCommand extends ModifyLunaClientCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyLunaClientRequest; output: ModifyLunaClientResponse; }; sdk: { input: ModifyLunaClientCommandInput; output: ModifyLunaClientCommandOutput; }; }; }