import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @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 UpdateGroupResult, __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 resource.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { XRayClient, UpdateGroupCommand } from "@aws-sdk/client-xray"; // ES Modules import * // const { XRayClient, UpdateGroupCommand } = require("@aws-sdk/client-xray"); // CommonJS import * // import type { XRayClientConfig } from "@aws-sdk/client-xray"; * const config = {}; // type is XRayClientConfig * const client = new XRayClient(config); * const input = { // UpdateGroupRequest * GroupName: "STRING_VALUE", * GroupARN: "STRING_VALUE", * FilterExpression: "STRING_VALUE", * InsightsConfiguration: { // InsightsConfiguration * InsightsEnabled: true || false, * NotificationsEnabled: true || false, * }, * }; * const command = new UpdateGroupCommand(input); * const response = await client.send(command); * // { // UpdateGroupResult * // Group: { // Group * // GroupName: "STRING_VALUE", * // GroupARN: "STRING_VALUE", * // FilterExpression: "STRING_VALUE", * // InsightsConfiguration: { // InsightsConfiguration * // InsightsEnabled: true || false, * // NotificationsEnabled: true || false, * // }, * // }, * // }; * * ``` * * @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 XRayClientResolvedConfig | config} for XRayClient's `config` shape. * * @throws {@link InvalidRequestException} (client fault) *

The request is missing required parameters or has invalid parameters.

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

The request exceeds the maximum number of requests per second.

* * @throws {@link XRayServiceException} *

Base exception class for all service exceptions from XRay service.

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