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 { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteWebhookCommand}. */ export interface DeleteWebhookCommandInput extends DeleteWebhookInput { } /** * @public * * The output of {@link DeleteWebhookCommand}. */ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __MetadataBearer { } declare const DeleteWebhookCommand_base: { new (input: DeleteWebhookCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteWebhookCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

For an existing CodeBuild build project that has its source code stored in a GitHub or * Bitbucket repository, stops CodeBuild from rebuilding the source code every time a code * change is pushed to the repository.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeBuildClient, DeleteWebhookCommand } from "@aws-sdk/client-codebuild"; // ES Modules import * // const { CodeBuildClient, DeleteWebhookCommand } = 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 = { // DeleteWebhookInput * projectName: "STRING_VALUE", // required * }; * const command = new DeleteWebhookCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteWebhookCommandInput - {@link DeleteWebhookCommandInput} * @returns {@link DeleteWebhookCommandOutput} * @see {@link DeleteWebhookCommandInput} for command's `input` shape. * @see {@link DeleteWebhookCommandOutput} 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 OAuthProviderException} (client fault) *

There was a problem with the underlying OAuth provider.

* * @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 DeleteWebhookCommand extends DeleteWebhookCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteWebhookInput; output: {}; }; sdk: { input: DeleteWebhookCommandInput; output: DeleteWebhookCommandOutput; }; }; }