import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListIntegratedResourcesInput, ListIntegratedResourcesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListIntegratedResourcesCommand}. */ export interface ListIntegratedResourcesCommandInput extends ListIntegratedResourcesInput { } /** * @public * * The output of {@link ListIntegratedResourcesCommand}. */ export interface ListIntegratedResourcesCommandOutput extends ListIntegratedResourcesOutput, __MetadataBearer { } declare const ListIntegratedResourcesCommand_base: { new (input: ListIntegratedResourcesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListIntegratedResourcesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the integrated resources for an agent space, optionally filtered by integration or resource type.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, ListIntegratedResourcesCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, ListIntegratedResourcesCommand } = 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 = { // ListIntegratedResourcesInput * agentSpaceId: "STRING_VALUE", // required * integrationId: "STRING_VALUE", * resourceType: "CODE_REPOSITORY" || "DOCUMENT", * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListIntegratedResourcesCommand(input); * const response = await client.send(command); * // { // ListIntegratedResourcesOutput * // integratedResourceSummaries: [ // IntegratedResourceSummaryList // required * // { // IntegratedResourceSummary * // integrationId: "STRING_VALUE", // required * // resource: { // IntegratedResourceMetadata Union: only one key present * // githubRepository: { // GitHubRepositoryMetadata * // name: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // owner: "STRING_VALUE", // required * // accessType: "PRIVATE" || "PUBLIC", * // }, * // gitlabRepository: { // GitLabRepositoryMetadata * // name: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // namespace: "STRING_VALUE", // required * // accessType: "PRIVATE" || "PUBLIC", * // }, * // bitbucketRepository: { // BitbucketRepositoryMetadata * // name: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // workspace: "STRING_VALUE", // required * // accessType: "PRIVATE" || "PUBLIC", * // }, * // confluenceDocument: { // ConfluenceDocumentMetadata * // name: "STRING_VALUE", // required * // providerResourceId: "STRING_VALUE", // required * // spaceKey: "STRING_VALUE", // required * // pageId: "STRING_VALUE", // required * // title: "STRING_VALUE", * // spaceTitle: "STRING_VALUE", * // }, * // }, * // capabilities: { // ProviderResourceCapabilities Union: only one key present * // github: { // GitHubResourceCapabilities * // leaveComments: true || false, * // remediateCode: true || false, * // }, * // gitlab: { // GitLabResourceCapabilities * // leaveComments: true || false, * // remediateCode: true || false, * // }, * // bitbucket: { // BitbucketResourceCapabilities * // leaveComments: true || false, * // remediateCode: true || false, * // }, * // confluence: { // ConfluenceResourceCapabilities * // fetchDocument: true || false, * // createDocument: true || false, * // updateDocument: true || false, * // }, * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListIntegratedResourcesCommandInput - {@link ListIntegratedResourcesCommandInput} * @returns {@link ListIntegratedResourcesCommandOutput} * @see {@link ListIntegratedResourcesCommandInput} for command's `input` shape. * @see {@link ListIntegratedResourcesCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

An unexpected error occurred during the processing of your request.

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

The specified resource was not found. Verify that the resource identifier is correct and that the resource exists in the specified agent space or account.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints specified by the service.

* * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class ListIntegratedResourcesCommand extends ListIntegratedResourcesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListIntegratedResourcesInput; output: ListIntegratedResourcesOutput; }; sdk: { input: ListIntegratedResourcesCommandInput; output: ListIntegratedResourcesCommandOutput; }; }; }