import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartClusterHealthCheckRequest, StartClusterHealthCheckResponse } from "../models/models_4"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartClusterHealthCheckCommand}. */ export interface StartClusterHealthCheckCommandInput extends StartClusterHealthCheckRequest { } /** * @public * * The output of {@link StartClusterHealthCheckCommand}. */ export interface StartClusterHealthCheckCommandOutput extends StartClusterHealthCheckResponse, __MetadataBearer { } declare const StartClusterHealthCheckCommand_base: { new (input: StartClusterHealthCheckCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartClusterHealthCheckCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Start deep health checks for a SageMaker HyperPod cluster. You can use DescribeClusterNode API to track progress of the deep health checks. The unhealthy nodes will be automatically rebooted or replaced. Please see Resilience-related Kubernetes labels by SageMaker HyperPod for details.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, StartClusterHealthCheckCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, StartClusterHealthCheckCommand } = 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 = { // StartClusterHealthCheckRequest * ClusterName: "STRING_VALUE", // required * DeepHealthCheckConfigurations: [ // DeepHealthCheckConfigurations // required * { // InstanceGroupHealthCheckConfiguration * InstanceGroupName: "STRING_VALUE", // required * InstanceIds: [ // InstanceIds * "STRING_VALUE", * ], * DeepHealthChecks: [ // DeepHealthChecks // required * "InstanceStress" || "InstanceConnectivity", * ], * }, * ], * }; * const command = new StartClusterHealthCheckCommand(input); * const response = await client.send(command); * // { // StartClusterHealthCheckResponse * // ClusterArn: "STRING_VALUE", // required * // }; * * ``` * * @param StartClusterHealthCheckCommandInput - {@link StartClusterHealthCheckCommandInput} * @returns {@link StartClusterHealthCheckCommandOutput} * @see {@link StartClusterHealthCheckCommandInput} for command's `input` shape. * @see {@link StartClusterHealthCheckCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class StartClusterHealthCheckCommand extends StartClusterHealthCheckCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartClusterHealthCheckRequest; output: StartClusterHealthCheckResponse; }; sdk: { input: StartClusterHealthCheckCommandInput; output: StartClusterHealthCheckCommandOutput; }; }; }