import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { BatchGetPentestsInput, BatchGetPentestsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link BatchGetPentestsCommand}. */ export interface BatchGetPentestsCommandInput extends BatchGetPentestsInput { } /** * @public * * The output of {@link BatchGetPentestsCommand}. */ export interface BatchGetPentestsCommandOutput extends BatchGetPentestsOutput, __MetadataBearer { } declare const BatchGetPentestsCommand_base: { new (input: BatchGetPentestsCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetPentestsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about one or more pentests in an agent space.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, BatchGetPentestsCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, BatchGetPentestsCommand } = require("@aws-sdk/client-securityagent"); // CommonJS import * // import type { SecurityAgentClientConfig } from "@aws-sdk/client-securityagent"; * const config = {}; // type is SecurityAgentClientConfig * const client = new SecurityAgentClient(config); * const input = { // BatchGetPentestsInput * pentestIds: [ // PentestIdList // required * "STRING_VALUE", * ], * agentSpaceId: "STRING_VALUE", // required * }; * const command = new BatchGetPentestsCommand(input); * const response = await client.send(command); * // { // BatchGetPentestsOutput * // pentests: [ // PentestList * // { // Pentest * // pentestId: "STRING_VALUE", // required * // agentSpaceId: "STRING_VALUE", // required * // title: "STRING_VALUE", // required * // assets: { // Assets * // endpoints: [ // EndpointList * // { // Endpoint * // uri: "STRING_VALUE", * // }, * // ], * // actors: [ // ActorList * // { // Actor * // identifier: "STRING_VALUE", * // uris: [ // UriList * // "STRING_VALUE", * // ], * // authentication: { // Authentication * // providerType: "SECRETS_MANAGER" || "AWS_LAMBDA" || "AWS_IAM_ROLE" || "AWS_INTERNAL", * // value: "STRING_VALUE", * // }, * // description: "STRING_VALUE", * // enableEmailMfa: true || false, * // mfaForwardingAddress: "STRING_VALUE", * // }, * // ], * // documents: [ // DocumentList * // { // DocumentInfo * // s3Location: "STRING_VALUE", * // artifactId: "STRING_VALUE", * // integratedDocument: { // IntegratedDocument * // integrationId: "STRING_VALUE", // required * // resourceId: "STRING_VALUE", // required * // }, * // }, * // ], * // sourceCode: [ // SourceCodeRepositoryList * // { // SourceCodeRepository * // s3Location: "STRING_VALUE", * // }, * // ], * // integratedRepositories: [ // IntegratedRepositoryList * // { // IntegratedRepository * // integrationId: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // branch: "STRING_VALUE", * // }, * // ], * // trustedCaCertificates: [ // TrustedCaCertificateList * // { // TrustedCaCertificate * // source: { // CaCertificateSource Union: only one key present * // inlinePem: "STRING_VALUE", * // artifactId: "STRING_VALUE", * // s3Location: "STRING_VALUE", * // }, * // }, * // ], * // }, * // excludeRiskTypes: [ // RiskTypeList * // "CROSS_SITE_SCRIPTING" || "DEFAULT_CREDENTIALS" || "INSECURE_DIRECT_OBJECT_REFERENCE" || "PRIVILEGE_ESCALATION" || "SERVER_SIDE_TEMPLATE_INJECTION" || "COMMAND_INJECTION" || "CODE_INJECTION" || "SQL_INJECTION" || "ARBITRARY_FILE_UPLOAD" || "INSECURE_DESERIALIZATION" || "LOCAL_FILE_INCLUSION" || "INFORMATION_DISCLOSURE" || "PATH_TRAVERSAL" || "SERVER_SIDE_REQUEST_FORGERY" || "JSON_WEB_TOKEN_VULNERABILITIES" || "XML_EXTERNAL_ENTITY" || "FILE_DELETION" || "OTHER" || "GRAPHQL_VULNERABILITIES" || "BUSINESS_LOGIC_VULNERABILITIES" || "CRYPTOGRAPHIC_VULNERABILITIES" || "DENIAL_OF_SERVICE" || "FILE_ACCESS" || "FILE_CREATION" || "DATABASE_MODIFICATION" || "DATABASE_ACCESS" || "OUTBOUND_SERVICE_REQUEST" || "UNKNOWN", * // ], * // serviceRole: "STRING_VALUE", * // logConfig: { // CloudWatchLog * // logGroup: "STRING_VALUE", * // logStream: "STRING_VALUE", * // }, * // vpcConfig: { // VpcConfig * // vpcArn: "STRING_VALUE", * // securityGroupArns: [ // SecurityGroupArns * // "STRING_VALUE", * // ], * // subnetArns: [ // SubnetArns * // "STRING_VALUE", * // ], * // }, * // networkTrafficConfig: { // NetworkTrafficConfig * // rules: [ // NetworkTrafficRuleList * // { // NetworkTrafficRule * // effect: "ALLOW" || "DENY", * // pattern: "STRING_VALUE", * // networkTrafficRuleType: "URL", * // }, * // ], * // customHeaders: [ // CustomHeaderList * // { // CustomHeader * // name: "STRING_VALUE", * // value: "STRING_VALUE", * // }, * // ], * // }, * // codeRemediationStrategy: "AUTOMATIC" || "DISABLED", * // cleanUpStrategy: "BEST_EFFORT_DELETE" || "RETAIN_ALL", * // disableManagedSkills: [ // SkillTypeList * // "FINDING_PERSONALIZATION" || "LOGIN_OPTIMIZATION", * // ], * // maxTaskHours: Number("double"), * // createdAt: new Date("TIMESTAMP"), * // updatedAt: new Date("TIMESTAMP"), * // }, * // ], * // notFound: [ // PentestIdList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetPentestsCommandInput - {@link BatchGetPentestsCommandInput} * @returns {@link BatchGetPentestsCommandOutput} * @see {@link BatchGetPentestsCommandInput} for command's `input` shape. * @see {@link BatchGetPentestsCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class BatchGetPentestsCommand extends BatchGetPentestsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetPentestsInput; output: BatchGetPentestsOutput; }; sdk: { input: BatchGetPentestsCommandInput; output: BatchGetPentestsCommandOutput; }; }; }