import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateGroupCommand}. */ export interface UpdateGroupCommandInput extends UpdateGroupRequest { } /** * @public * * The output of {@link UpdateGroupCommand}. */ export interface UpdateGroupCommandOutput extends UpdateGroupResponse, __MetadataBearer { } declare const UpdateGroupCommand_base: { new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** * Updates a group. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GreengrassClient, UpdateGroupCommand } from "@aws-sdk/client-greengrass"; // ES Modules import * // const { GreengrassClient, UpdateGroupCommand } = require("@aws-sdk/client-greengrass"); // CommonJS import * // import type { GreengrassClientConfig } from "@aws-sdk/client-greengrass"; * const config = {}; // type is GreengrassClientConfig * const client = new GreengrassClient(config); * const input = { // UpdateGroupRequest * GroupId: "STRING_VALUE", // required * Name: "STRING_VALUE", * }; * const command = new UpdateGroupCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateGroupCommandInput - {@link UpdateGroupCommandInput} * @returns {@link UpdateGroupCommandOutput} * @see {@link UpdateGroupCommandInput} for command's `input` shape. * @see {@link UpdateGroupCommandOutput} for command's `response` shape. * @see {@link GreengrassClientResolvedConfig | config} for GreengrassClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * General error information. * * @throws {@link GreengrassServiceException} *

Base exception class for all service exceptions from Greengrass service.

* * * @public */ export declare class UpdateGroupCommand extends UpdateGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateGroupRequest; output: {}; }; sdk: { input: UpdateGroupCommandInput; output: UpdateGroupCommandOutput; }; }; }