import { Command as $Command } from "@smithy/smithy-client"; import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import type { DocumentationPartIds, ImportDocumentationPartsRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public */ export type ImportDocumentationPartsCommandInputType = Omit & { body: BlobPayloadInputTypes; }; /** * @public * * The input for {@link ImportDocumentationPartsCommand}. */ export interface ImportDocumentationPartsCommandInput extends ImportDocumentationPartsCommandInputType { } /** * @public * * The output of {@link ImportDocumentationPartsCommand}. */ export interface ImportDocumentationPartsCommandOutput extends DocumentationPartIds, __MetadataBearer { } declare const ImportDocumentationPartsCommand_base: { new (input: ImportDocumentationPartsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ImportDocumentationPartsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Imports documentation parts

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { APIGatewayClient, ImportDocumentationPartsCommand } from "@aws-sdk/client-api-gateway"; // ES Modules import * // const { APIGatewayClient, ImportDocumentationPartsCommand } = require("@aws-sdk/client-api-gateway"); // CommonJS import * // import type { APIGatewayClientConfig } from "@aws-sdk/client-api-gateway"; * const config = {}; // type is APIGatewayClientConfig * const client = new APIGatewayClient(config); * const input = { // ImportDocumentationPartsRequest * restApiId: "STRING_VALUE", // required * mode: "merge" || "overwrite", * failOnWarnings: true || false, * body: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") // required * }; * const command = new ImportDocumentationPartsCommand(input); * const response = await client.send(command); * // { // DocumentationPartIds * // ids: [ // ListOfString * // "STRING_VALUE", * // ], * // warnings: [ * // "STRING_VALUE", * // ], * // }; * * ``` * * @param ImportDocumentationPartsCommandInput - {@link ImportDocumentationPartsCommandInput} * @returns {@link ImportDocumentationPartsCommandOutput} * @see {@link ImportDocumentationPartsCommandInput} for command's `input` shape. * @see {@link ImportDocumentationPartsCommandOutput} for command's `response` shape. * @see {@link APIGatewayClientResolvedConfig | config} for APIGatewayClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.

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

The request configuration has conflicts. For details, see the accompanying error message.

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

The request exceeded the rate limit. Retry after the specified time period.

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

The requested resource is not found. Make sure that the request URI is correct.

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

The request has reached its throttling limit. Retry after the specified time period.

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

The request is denied because the caller has insufficient permissions.

* * @throws {@link APIGatewayServiceException} *

Base exception class for all service exceptions from APIGateway service.

* * * @public */ export declare class ImportDocumentationPartsCommand extends ImportDocumentationPartsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ImportDocumentationPartsRequest; output: DocumentationPartIds; }; sdk: { input: ImportDocumentationPartsCommandInput; output: ImportDocumentationPartsCommandOutput; }; }; }