import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import type { UpdateTestGridProjectRequest, UpdateTestGridProjectResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateTestGridProjectCommand}. */ export interface UpdateTestGridProjectCommandInput extends UpdateTestGridProjectRequest { } /** * @public * * The output of {@link UpdateTestGridProjectCommand}. */ export interface UpdateTestGridProjectCommandOutput extends UpdateTestGridProjectResult, __MetadataBearer { } declare const UpdateTestGridProjectCommand_base: { new (input: UpdateTestGridProjectCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateTestGridProjectCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Change details of a project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DeviceFarmClient, UpdateTestGridProjectCommand } from "@aws-sdk/client-device-farm"; // ES Modules import * // const { DeviceFarmClient, UpdateTestGridProjectCommand } = require("@aws-sdk/client-device-farm"); // CommonJS import * // import type { DeviceFarmClientConfig } from "@aws-sdk/client-device-farm"; * const config = {}; // type is DeviceFarmClientConfig * const client = new DeviceFarmClient(config); * const input = { // UpdateTestGridProjectRequest * projectArn: "STRING_VALUE", // required * name: "STRING_VALUE", * description: "STRING_VALUE", * vpcConfig: { // TestGridVpcConfig * securityGroupIds: [ // SecurityGroupIds // required * "STRING_VALUE", * ], * subnetIds: [ // SubnetIds // required * "STRING_VALUE", * ], * vpcId: "STRING_VALUE", // required * }, * }; * const command = new UpdateTestGridProjectCommand(input); * const response = await client.send(command); * // { // UpdateTestGridProjectResult * // testGridProject: { // TestGridProject * // arn: "STRING_VALUE", * // name: "STRING_VALUE", * // description: "STRING_VALUE", * // vpcConfig: { // TestGridVpcConfig * // securityGroupIds: [ // SecurityGroupIds // required * // "STRING_VALUE", * // ], * // subnetIds: [ // SubnetIds // required * // "STRING_VALUE", * // ], * // vpcId: "STRING_VALUE", // required * // }, * // created: new Date("TIMESTAMP"), * // }, * // }; * * ``` * * @param UpdateTestGridProjectCommandInput - {@link UpdateTestGridProjectCommandInput} * @returns {@link UpdateTestGridProjectCommandOutput} * @see {@link UpdateTestGridProjectCommandInput} for command's `input` shape. * @see {@link UpdateTestGridProjectCommandOutput} for command's `response` shape. * @see {@link DeviceFarmClientResolvedConfig | config} for DeviceFarmClient's `config` shape. * * @throws {@link ArgumentException} (client fault) *

An invalid argument was specified.

* * @throws {@link InternalServiceException} (server fault) *

An internal exception was raised in the service. Contact aws-devicefarm-support@amazon.com if you see this * error.

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

A limit was exceeded.

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

The specified entity was not found.

* * @throws {@link DeviceFarmServiceException} *

Base exception class for all service exceptions from DeviceFarm service.

* * * @public */ export declare class UpdateTestGridProjectCommand extends UpdateTestGridProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateTestGridProjectRequest; output: UpdateTestGridProjectResult; }; sdk: { input: UpdateTestGridProjectCommandInput; output: UpdateTestGridProjectCommandOutput; }; }; }