import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; import type { DeleteV2LoggingLevelRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteV2LoggingLevelCommand}. */ export interface DeleteV2LoggingLevelCommandInput extends DeleteV2LoggingLevelRequest { } /** * @public * * The output of {@link DeleteV2LoggingLevelCommand}. */ export interface DeleteV2LoggingLevelCommandOutput extends __MetadataBearer { } declare const DeleteV2LoggingLevelCommand_base: { new (input: DeleteV2LoggingLevelCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteV2LoggingLevelCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes a logging level.

*

Requires permission to access the DeleteV2LoggingLevel action.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTClient, DeleteV2LoggingLevelCommand } from "@aws-sdk/client-iot"; // ES Modules import * // const { IoTClient, DeleteV2LoggingLevelCommand } = require("@aws-sdk/client-iot"); // CommonJS import * // import type { IoTClientConfig } from "@aws-sdk/client-iot"; * const config = {}; // type is IoTClientConfig * const client = new IoTClient(config); * const input = { // DeleteV2LoggingLevelRequest * targetType: "DEFAULT" || "THING_GROUP" || "CLIENT_ID" || "SOURCE_IP" || "PRINCIPAL_ID", // required * targetName: "STRING_VALUE", // required * }; * const command = new DeleteV2LoggingLevelCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteV2LoggingLevelCommandInput - {@link DeleteV2LoggingLevelCommandInput} * @returns {@link DeleteV2LoggingLevelCommandOutput} * @see {@link DeleteV2LoggingLevelCommandInput} for command's `input` shape. * @see {@link DeleteV2LoggingLevelCommandOutput} for command's `response` shape. * @see {@link IoTClientResolvedConfig | config} for IoTClient's `config` shape. * * @throws {@link InternalException} (server fault) *

An unexpected error has occurred.

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

The request is not valid.

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

The service is temporarily unavailable.

* * @throws {@link IoTServiceException} *

Base exception class for all service exceptions from IoT service.

* * * @public */ export declare class DeleteV2LoggingLevelCommand extends DeleteV2LoggingLevelCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteV2LoggingLevelRequest; output: {}; }; sdk: { input: DeleteV2LoggingLevelCommandInput; output: DeleteV2LoggingLevelCommandOutput; }; }; }