import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import type { UpdateReportGroupInput, UpdateReportGroupOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateReportGroupCommand}. */ export interface UpdateReportGroupCommandInput extends UpdateReportGroupInput { } /** * @public * * The output of {@link UpdateReportGroupCommand}. */ export interface UpdateReportGroupCommandOutput extends UpdateReportGroupOutput, __MetadataBearer { } declare const UpdateReportGroupCommand_base: { new (input: UpdateReportGroupCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateReportGroupCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

* Updates a report group. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeBuildClient, UpdateReportGroupCommand } from "@aws-sdk/client-codebuild"; // ES Modules import * // const { CodeBuildClient, UpdateReportGroupCommand } = require("@aws-sdk/client-codebuild"); // CommonJS import * // import type { CodeBuildClientConfig } from "@aws-sdk/client-codebuild"; * const config = {}; // type is CodeBuildClientConfig * const client = new CodeBuildClient(config); * const input = { // UpdateReportGroupInput * arn: "STRING_VALUE", // required * exportConfig: { // ReportExportConfig * exportConfigType: "S3" || "NO_EXPORT", * s3Destination: { // S3ReportExportConfig * bucket: "STRING_VALUE", * bucketOwner: "STRING_VALUE", * path: "STRING_VALUE", * packaging: "ZIP" || "NONE", * encryptionKey: "STRING_VALUE", * encryptionDisabled: true || false, * }, * }, * tags: [ // TagList * { // Tag * key: "STRING_VALUE", * value: "STRING_VALUE", * }, * ], * }; * const command = new UpdateReportGroupCommand(input); * const response = await client.send(command); * // { // UpdateReportGroupOutput * // reportGroup: { // ReportGroup * // arn: "STRING_VALUE", * // name: "STRING_VALUE", * // type: "TEST" || "CODE_COVERAGE", * // exportConfig: { // ReportExportConfig * // exportConfigType: "S3" || "NO_EXPORT", * // s3Destination: { // S3ReportExportConfig * // bucket: "STRING_VALUE", * // bucketOwner: "STRING_VALUE", * // path: "STRING_VALUE", * // packaging: "ZIP" || "NONE", * // encryptionKey: "STRING_VALUE", * // encryptionDisabled: true || false, * // }, * // }, * // created: new Date("TIMESTAMP"), * // lastModified: new Date("TIMESTAMP"), * // tags: [ // TagList * // { // Tag * // key: "STRING_VALUE", * // value: "STRING_VALUE", * // }, * // ], * // status: "ACTIVE" || "DELETING", * // }, * // }; * * ``` * * @param UpdateReportGroupCommandInput - {@link UpdateReportGroupCommandInput} * @returns {@link UpdateReportGroupCommandOutput} * @see {@link UpdateReportGroupCommandInput} for command's `input` shape. * @see {@link UpdateReportGroupCommandOutput} for command's `response` shape. * @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape. * * @throws {@link InvalidInputException} (client fault) *

The input value that was provided is not valid.

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

The specified Amazon Web Services resource cannot be found.

* * @throws {@link CodeBuildServiceException} *

Base exception class for all service exceptions from CodeBuild service.

* * * @public */ export declare class UpdateReportGroupCommand extends UpdateReportGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateReportGroupInput; output: UpdateReportGroupOutput; }; sdk: { input: UpdateReportGroupCommandInput; output: UpdateReportGroupCommandOutput; }; }; }