import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeregisterDevicesRequest } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeregisterDevicesCommand}. */ export interface DeregisterDevicesCommandInput extends DeregisterDevicesRequest { } /** * @public * * The output of {@link DeregisterDevicesCommand}. */ export interface DeregisterDevicesCommandOutput extends __MetadataBearer { } declare const DeregisterDevicesCommand_base: { new (input: DeregisterDevicesCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeregisterDevicesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deregisters the specified devices. After you deregister a device, you will need to re-register the devices.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeregisterDevicesCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeregisterDevicesCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker"; * const config = {}; // type is SageMakerClientConfig * const client = new SageMakerClient(config); * const input = { // DeregisterDevicesRequest * DeviceFleetName: "STRING_VALUE", // required * DeviceNames: [ // DeviceNames // required * "STRING_VALUE", * ], * }; * const command = new DeregisterDevicesCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeregisterDevicesCommandInput - {@link DeregisterDevicesCommandInput} * @returns {@link DeregisterDevicesCommandOutput} * @see {@link DeregisterDevicesCommandInput} for command's `input` shape. * @see {@link DeregisterDevicesCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class DeregisterDevicesCommand extends DeregisterDevicesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeregisterDevicesRequest; output: {}; }; sdk: { input: DeregisterDevicesCommandInput; output: DeregisterDevicesCommandOutput; }; }; }