import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; import type { UpdatePartnerAccountRequest, UpdatePartnerAccountResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdatePartnerAccountCommand}. */ export interface UpdatePartnerAccountCommandInput extends UpdatePartnerAccountRequest { } /** * @public * * The output of {@link UpdatePartnerAccountCommand}. */ export interface UpdatePartnerAccountCommandOutput extends UpdatePartnerAccountResponse, __MetadataBearer { } declare const UpdatePartnerAccountCommand_base: { new (input: UpdatePartnerAccountCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdatePartnerAccountCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates properties of a partner account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, UpdatePartnerAccountCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, UpdatePartnerAccountCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import * // import type { IoTWirelessClientConfig } from "@aws-sdk/client-iot-wireless"; * const config = {}; // type is IoTWirelessClientConfig * const client = new IoTWirelessClient(config); * const input = { // UpdatePartnerAccountRequest * Sidewalk: { // SidewalkUpdateAccount * AppServerPrivateKey: "STRING_VALUE", * }, * PartnerAccountId: "STRING_VALUE", // required * PartnerType: "Sidewalk", // required * }; * const command = new UpdatePartnerAccountCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdatePartnerAccountCommandInput - {@link UpdatePartnerAccountCommandInput} * @returns {@link UpdatePartnerAccountCommandOutput} * @see {@link UpdatePartnerAccountCommandInput} for command's `input` shape. * @see {@link UpdatePartnerAccountCommandOutput} for command's `response` shape. * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An unexpected error occurred while processing a request.

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

Resource does not exist.

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

The request was denied because it exceeded the allowed API request rate.

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

The input did not meet the specified constraints.

* * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* * * @public */ export declare class UpdatePartnerAccountCommand extends UpdatePartnerAccountCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdatePartnerAccountRequest; output: {}; }; sdk: { input: UpdatePartnerAccountCommandInput; output: UpdatePartnerAccountCommandOutput; }; }; }