@aws-sdk/client-resiliencehubv2 3.1056.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +538 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/index.js +1357 -0
- package/dist-cjs/models/Resiliencehubv2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +105 -0
- package/dist-cjs/runtimeConfig.browser.js +36 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +42 -0
- package/dist-cjs/schemas/schemas_0.js +1785 -0
- package/dist-es/Resiliencehubv2.js +151 -0
- package/dist-es/Resiliencehubv2Client.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/CreateAssertionCommand.js +16 -0
- package/dist-es/commands/CreateInputSourceCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreateReportCommand.js +16 -0
- package/dist-es/commands/CreateServiceCommand.js +16 -0
- package/dist-es/commands/CreateServiceFunctionCommand.js +16 -0
- package/dist-es/commands/CreateServiceFunctionResourcesCommand.js +16 -0
- package/dist-es/commands/CreateSystemCommand.js +16 -0
- package/dist-es/commands/CreateUserJourneyCommand.js +16 -0
- package/dist-es/commands/DeleteAssertionCommand.js +16 -0
- package/dist-es/commands/DeleteInputSourceCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeleteServiceCommand.js +16 -0
- package/dist-es/commands/DeleteServiceFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteServiceFunctionResourcesCommand.js +16 -0
- package/dist-es/commands/DeleteSystemCommand.js +16 -0
- package/dist-es/commands/DeleteUserJourneyCommand.js +16 -0
- package/dist-es/commands/GetFailureModeFindingCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetServiceCommand.js +16 -0
- package/dist-es/commands/GetSystemCommand.js +16 -0
- package/dist-es/commands/GetUserJourneyCommand.js +16 -0
- package/dist-es/commands/ImportAppCommand.js +16 -0
- package/dist-es/commands/ImportPolicyCommand.js +16 -0
- package/dist-es/commands/ListAssertionsCommand.js +16 -0
- package/dist-es/commands/ListDependenciesCommand.js +16 -0
- package/dist-es/commands/ListFailureModeAssessmentsCommand.js +16 -0
- package/dist-es/commands/ListFailureModeFindingsCommand.js +16 -0
- package/dist-es/commands/ListInputSourcesCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListReportsCommand.js +16 -0
- package/dist-es/commands/ListResourcesCommand.js +16 -0
- package/dist-es/commands/ListServiceEventsCommand.js +16 -0
- package/dist-es/commands/ListServiceFunctionsCommand.js +16 -0
- package/dist-es/commands/ListServiceTopologyEdgesCommand.js +16 -0
- package/dist-es/commands/ListServicesCommand.js +16 -0
- package/dist-es/commands/ListSystemEventsCommand.js +16 -0
- package/dist-es/commands/ListSystemsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListUserJourneysCommand.js +16 -0
- package/dist-es/commands/StartFailureModeAssessmentCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAssertionCommand.js +16 -0
- package/dist-es/commands/UpdateDependencyCommand.js +16 -0
- package/dist-es/commands/UpdateFailureModeFindingCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdateServiceCommand.js +16 -0
- package/dist-es/commands/UpdateServiceFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateSystemCommand.js +16 -0
- package/dist-es/commands/UpdateUserJourneyCommand.js +16 -0
- package/dist-es/commands/index.js +51 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/Resiliencehubv2ServiceException.js +8 -0
- package/dist-es/models/enums.js +182 -0
- package/dist-es/models/errors.js +95 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAssertionsPaginator.js +4 -0
- package/dist-es/pagination/ListDependenciesPaginator.js +4 -0
- package/dist-es/pagination/ListFailureModeAssessmentsPaginator.js +4 -0
- package/dist-es/pagination/ListFailureModeFindingsPaginator.js +4 -0
- package/dist-es/pagination/ListInputSourcesPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListReportsPaginator.js +4 -0
- package/dist-es/pagination/ListResourcesPaginator.js +4 -0
- package/dist-es/pagination/ListServiceEventsPaginator.js +4 -0
- package/dist-es/pagination/ListServiceFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListServiceTopologyEdgesPaginator.js +4 -0
- package/dist-es/pagination/ListServicesPaginator.js +4 -0
- package/dist-es/pagination/ListSystemEventsPaginator.js +4 -0
- package/dist-es/pagination/ListSystemsPaginator.js +4 -0
- package/dist-es/pagination/ListUserJourneysPaginator.js +4 -0
- package/dist-es/pagination/index.js +16 -0
- package/dist-es/runtimeConfig.browser.js +31 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +38 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1777 -0
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForFailureModeAssessmentSuccess.js +64 -0
- package/dist-es/waiters/waitForReportSucceeded.js +64 -0
- package/dist-es/waiters/waitForServiceAssessmentCompleted.js +40 -0
- package/dist-es/waiters/waitForServiceResourceDiscoveryCompleted.js +49 -0
- package/dist-types/Resiliencehubv2.d.ts +502 -0
- package/dist-types/Resiliencehubv2Client.d.ts +237 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateAssertionCommand.d.ts +103 -0
- package/dist-types/commands/CreateInputSourceCommand.d.ts +115 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +143 -0
- package/dist-types/commands/CreateReportCommand.d.ts +111 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +243 -0
- package/dist-types/commands/CreateServiceFunctionCommand.d.ts +108 -0
- package/dist-types/commands/CreateServiceFunctionResourcesCommand.d.ts +99 -0
- package/dist-types/commands/CreateSystemCommand.d.ts +115 -0
- package/dist-types/commands/CreateUserJourneyCommand.d.ts +105 -0
- package/dist-types/commands/DeleteAssertionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteInputSourceCommand.d.ts +90 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +91 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +91 -0
- package/dist-types/commands/DeleteServiceFunctionCommand.d.ts +92 -0
- package/dist-types/commands/DeleteServiceFunctionResourcesCommand.d.ts +99 -0
- package/dist-types/commands/DeleteSystemCommand.d.ts +91 -0
- package/dist-types/commands/DeleteUserJourneyCommand.d.ts +92 -0
- package/dist-types/commands/GetFailureModeFindingCommand.d.ts +124 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +115 -0
- package/dist-types/commands/GetServiceCommand.d.ts +198 -0
- package/dist-types/commands/GetSystemCommand.d.ts +102 -0
- package/dist-types/commands/GetUserJourneyCommand.d.ts +96 -0
- package/dist-types/commands/ImportAppCommand.d.ts +217 -0
- package/dist-types/commands/ImportPolicyCommand.d.ts +128 -0
- package/dist-types/commands/ListAssertionsCommand.d.ts +101 -0
- package/dist-types/commands/ListDependenciesCommand.d.ts +120 -0
- package/dist-types/commands/ListFailureModeAssessmentsCommand.d.ts +113 -0
- package/dist-types/commands/ListFailureModeFindingsCommand.d.ts +106 -0
- package/dist-types/commands/ListInputSourcesCommand.d.ts +115 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +111 -0
- package/dist-types/commands/ListReportsCommand.d.ts +112 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +108 -0
- package/dist-types/commands/ListServiceEventsCommand.d.ts +201 -0
- package/dist-types/commands/ListServiceFunctionsCommand.d.ts +103 -0
- package/dist-types/commands/ListServiceTopologyEdgesCommand.d.ts +99 -0
- package/dist-types/commands/ListServicesCommand.d.ts +128 -0
- package/dist-types/commands/ListSystemEventsCommand.d.ts +181 -0
- package/dist-types/commands/ListSystemsCommand.d.ts +100 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
- package/dist-types/commands/ListUserJourneysCommand.d.ts +98 -0
- package/dist-types/commands/StartFailureModeAssessmentCommand.d.ts +98 -0
- package/dist-types/commands/TagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UpdateAssertionCommand.d.ts +100 -0
- package/dist-types/commands/UpdateDependencyCommand.d.ts +100 -0
- package/dist-types/commands/UpdateFailureModeFindingCommand.d.ts +129 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +135 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +238 -0
- package/dist-types/commands/UpdateServiceFunctionCommand.d.ts +105 -0
- package/dist-types/commands/UpdateSystemCommand.d.ts +107 -0
- package/dist-types/commands/UpdateUserJourneyCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +51 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/Resiliencehubv2ServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +422 -0
- package/dist-types/models/errors.d.ts +113 -0
- package/dist-types/models/models_0.d.ts +4947 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAssertionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDependenciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFailureModeAssessmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFailureModeFindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListInputSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServiceTopologyEdgesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSystemEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSystemsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUserJourneysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +259 -0
- package/dist-types/ts3.4/Resiliencehubv2.d.ts +1026 -0
- package/dist-types/ts3.4/Resiliencehubv2Client.d.ts +417 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/CreateInputSourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateReportCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/CreateServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateServiceFunctionResourcesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteInputSourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteServiceFunctionResourcesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetFailureModeFindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetSystemCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetUserJourneyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ImportAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ImportPolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListAssertionsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListDependenciesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListFailureModeAssessmentsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListFailureModeFindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListInputSourcesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListReportsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListServiceEventsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServiceFunctionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServiceTopologyEdgesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListSystemEventsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListSystemsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListUserJourneysCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/StartFailureModeAssessmentCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateAssertionCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateDependencyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateFailureModeFindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateServiceFunctionCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateSystemCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateUserJourneyCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/Resiliencehubv2ServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +56 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1761 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAssertionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDependenciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFailureModeAssessmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFailureModeFindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListInputSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServiceTopologyEdgesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSystemEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSystemsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUserJourneysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +16 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +259 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForFailureModeAssessmentSuccess.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForReportSucceeded.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForServiceAssessmentCompleted.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForServiceResourceDiscoveryCompleted.d.ts +17 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForFailureModeAssessmentSuccess.d.ts +15 -0
- package/dist-types/waiters/waitForReportSucceeded.d.ts +15 -0
- package/dist-types/waiters/waitForServiceAssessmentCompleted.d.ts +15 -0
- package/dist-types/waiters/waitForServiceResourceDiscoveryCompleted.d.ts +15 -0
- package/package.json +71 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListServiceFunctionsRequest, ListServiceFunctionsResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListServiceFunctionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListServiceFunctionsCommandInput extends ListServiceFunctionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListServiceFunctionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListServiceFunctionsCommandOutput extends ListServiceFunctionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListServiceFunctionsCommand_base: {
|
|
25
|
+
new (input: ListServiceFunctionsCommandInput): import("@smithy/core/client").CommandImpl<ListServiceFunctionsCommandInput, ListServiceFunctionsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListServiceFunctionsCommandInput): import("@smithy/core/client").CommandImpl<ListServiceFunctionsCommandInput, ListServiceFunctionsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists service functions for a service.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, ListServiceFunctionsCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, ListServiceFunctionsCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // ListServiceFunctionsRequest
|
|
42
|
+
* serviceArn: "STRING_VALUE", // required
|
|
43
|
+
* maxResults: Number("int"),
|
|
44
|
+
* nextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListServiceFunctionsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListServiceFunctionsResponse
|
|
49
|
+
* // serviceFunctions: [ // ServiceFunctionList // required
|
|
50
|
+
* // { // ServiceFunction
|
|
51
|
+
* // serviceArn: "STRING_VALUE", // required
|
|
52
|
+
* // serviceFunctionId: "STRING_VALUE", // required
|
|
53
|
+
* // name: "STRING_VALUE", // required
|
|
54
|
+
* // description: "STRING_VALUE",
|
|
55
|
+
* // criticality: "PRIMARY" || "SUPPLEMENTAL", // required
|
|
56
|
+
* // resourceCount: Number("int"),
|
|
57
|
+
* // source: "AI_GENERATED" || "USER",
|
|
58
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
59
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param ListServiceFunctionsCommandInput - {@link ListServiceFunctionsCommandInput}
|
|
68
|
+
* @returns {@link ListServiceFunctionsCommandOutput}
|
|
69
|
+
* @see {@link ListServiceFunctionsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link ListServiceFunctionsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>Internal service error.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
|
+
* <p>Resource not found.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ValidationException} (client fault)
|
|
83
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
87
|
+
*
|
|
88
|
+
*
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class ListServiceFunctionsCommand extends ListServiceFunctionsCommand_base {
|
|
92
|
+
/** @internal type navigation helper, not in runtime. */
|
|
93
|
+
protected static __types: {
|
|
94
|
+
api: {
|
|
95
|
+
input: ListServiceFunctionsRequest;
|
|
96
|
+
output: ListServiceFunctionsResponse;
|
|
97
|
+
};
|
|
98
|
+
sdk: {
|
|
99
|
+
input: ListServiceFunctionsCommandInput;
|
|
100
|
+
output: ListServiceFunctionsCommandOutput;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListServiceTopologyEdgesRequest, ListServiceTopologyEdgesResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListServiceTopologyEdgesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListServiceTopologyEdgesCommandInput extends ListServiceTopologyEdgesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListServiceTopologyEdgesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListServiceTopologyEdgesCommandOutput extends ListServiceTopologyEdgesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListServiceTopologyEdgesCommand_base: {
|
|
25
|
+
new (input: ListServiceTopologyEdgesCommandInput): import("@smithy/core/client").CommandImpl<ListServiceTopologyEdgesCommandInput, ListServiceTopologyEdgesCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListServiceTopologyEdgesCommandInput): import("@smithy/core/client").CommandImpl<ListServiceTopologyEdgesCommandInput, ListServiceTopologyEdgesCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists topology edges for a service.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, ListServiceTopologyEdgesCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, ListServiceTopologyEdgesCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // ListServiceTopologyEdgesRequest
|
|
42
|
+
* serviceArn: "STRING_VALUE", // required
|
|
43
|
+
* maxResults: Number("int"),
|
|
44
|
+
* nextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListServiceTopologyEdgesCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListServiceTopologyEdgesResponse
|
|
49
|
+
* // serviceTopologyEdgeSummaries: [ // ServiceTopologyEdgeSummaryList
|
|
50
|
+
* // { // ServiceTopologyEdgeSummary
|
|
51
|
+
* // sourceResourceIdentifier: "STRING_VALUE", // required
|
|
52
|
+
* // destinationResourceIdentifier: "STRING_VALUE", // required
|
|
53
|
+
* // properties: [ // EdgePropertyList
|
|
54
|
+
* // { // EdgePropertySummary
|
|
55
|
+
* // topologyType: "CONTAINMENT" || "DATA_FLOW" || "OBSERVABILITY" || "PERMISSIONS",
|
|
56
|
+
* // label: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListServiceTopologyEdgesCommandInput - {@link ListServiceTopologyEdgesCommandInput}
|
|
67
|
+
* @returns {@link ListServiceTopologyEdgesCommandOutput}
|
|
68
|
+
* @see {@link ListServiceTopologyEdgesCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListServiceTopologyEdgesCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* <p>Internal service error.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class ListServiceTopologyEdgesCommand extends ListServiceTopologyEdgesCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: ListServiceTopologyEdgesRequest;
|
|
92
|
+
output: ListServiceTopologyEdgesResponse;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: ListServiceTopologyEdgesCommandInput;
|
|
96
|
+
output: ListServiceTopologyEdgesCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListServicesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListServicesCommandInput extends ListServicesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListServicesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListServicesCommand_base: {
|
|
25
|
+
new (input: ListServicesCommandInput): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/core/client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists services.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, ListServicesCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, ListServicesCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // ListServicesRequest
|
|
42
|
+
* systemArn: "STRING_VALUE",
|
|
43
|
+
* userJourneyId: "STRING_VALUE",
|
|
44
|
+
* ouId: "STRING_VALUE",
|
|
45
|
+
* accountId: "STRING_VALUE",
|
|
46
|
+
* assessmentStatus: "NOT_STARTED" || "PENDING" || "IN_PROGRESS" || "FAILED" || "SUCCESS",
|
|
47
|
+
* policyArn: "STRING_VALUE",
|
|
48
|
+
* maxResults: Number("int"),
|
|
49
|
+
* nextToken: "STRING_VALUE",
|
|
50
|
+
* };
|
|
51
|
+
* const command = new ListServicesCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // ListServicesResponse
|
|
54
|
+
* // serviceSummaries: [ // ServiceSummaryList // required
|
|
55
|
+
* // { // ServiceSummary
|
|
56
|
+
* // serviceArn: "STRING_VALUE", // required
|
|
57
|
+
* // name: "STRING_VALUE", // required
|
|
58
|
+
* // associatedSystems: [ // AssociatedSystemList
|
|
59
|
+
* // { // AssociatedSystem
|
|
60
|
+
* // systemArn: "STRING_VALUE", // required
|
|
61
|
+
* // systemName: "STRING_VALUE",
|
|
62
|
+
* // userJourneyIds: [ // UserJourneyIdList
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // regions: [ // RegionList
|
|
68
|
+
* // "STRING_VALUE",
|
|
69
|
+
* // ],
|
|
70
|
+
* // policyArn: "STRING_VALUE",
|
|
71
|
+
* // assessmentStatus: "NOT_STARTED" || "PENDING" || "IN_PROGRESS" || "FAILED" || "SUCCESS",
|
|
72
|
+
* // openFindingsCount: Number("int"),
|
|
73
|
+
* // resolvedFindingsCount: Number("int"),
|
|
74
|
+
* // dependencyDiscovery: { // DependencyDiscoveryConfig
|
|
75
|
+
* // status: "ENABLED" || "INITIALIZING" || "DISABLED", // required
|
|
76
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
77
|
+
* // },
|
|
78
|
+
* // achievability: { // Achievability
|
|
79
|
+
* // availabilitySlo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
80
|
+
* // multiAzRtoRpo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
81
|
+
* // multiRegionRtoRpo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
82
|
+
* // },
|
|
83
|
+
* // organizationId: "STRING_VALUE",
|
|
84
|
+
* // ouId: "STRING_VALUE",
|
|
85
|
+
* // accountId: "STRING_VALUE",
|
|
86
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
87
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // nextToken: "STRING_VALUE",
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* @param ListServicesCommandInput - {@link ListServicesCommandInput}
|
|
96
|
+
* @returns {@link ListServicesCommandOutput}
|
|
97
|
+
* @see {@link ListServicesCommandInput} for command's `input` shape.
|
|
98
|
+
* @see {@link ListServicesCommandOutput} for command's `response` shape.
|
|
99
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
102
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link InternalServerException} (server fault)
|
|
105
|
+
* <p>Internal service error.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ValidationException} (client fault)
|
|
108
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
112
|
+
*
|
|
113
|
+
*
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export declare class ListServicesCommand extends ListServicesCommand_base {
|
|
117
|
+
/** @internal type navigation helper, not in runtime. */
|
|
118
|
+
protected static __types: {
|
|
119
|
+
api: {
|
|
120
|
+
input: ListServicesRequest;
|
|
121
|
+
output: ListServicesResponse;
|
|
122
|
+
};
|
|
123
|
+
sdk: {
|
|
124
|
+
input: ListServicesCommandInput;
|
|
125
|
+
output: ListServicesCommandOutput;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListSystemEventsRequest, ListSystemEventsResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSystemEventsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSystemEventsCommandInput extends ListSystemEventsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSystemEventsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSystemEventsCommandOutput extends ListSystemEventsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListSystemEventsCommand_base: {
|
|
25
|
+
new (input: ListSystemEventsCommandInput): import("@smithy/core/client").CommandImpl<ListSystemEventsCommandInput, ListSystemEventsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListSystemEventsCommandInput): import("@smithy/core/client").CommandImpl<ListSystemEventsCommandInput, ListSystemEventsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists events for a system.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, ListSystemEventsCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, ListSystemEventsCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // ListSystemEventsRequest
|
|
42
|
+
* systemArn: "STRING_VALUE", // required
|
|
43
|
+
* eventTypes: [ // SystemEventTypeList
|
|
44
|
+
* "SYSTEM_CREATED" || "SYSTEM_DELETED" || "SYSTEM_USER_JOURNEY_CREATED" || "SYSTEM_USER_JOURNEY_UPDATED" || "SYSTEM_USER_JOURNEY_DELETED" || "SYSTEM_SERVICE_ASSOCIATED" || "SYSTEM_SERVICE_DISASSOCIATED" || "SYSTEM_POLICY_ASSOCIATED" || "SYSTEM_POLICY_DISASSOCIATED",
|
|
45
|
+
* ],
|
|
46
|
+
* startTime: new Date("TIMESTAMP"),
|
|
47
|
+
* endTime: new Date("TIMESTAMP"),
|
|
48
|
+
* maxResults: Number("int"),
|
|
49
|
+
* nextToken: "STRING_VALUE",
|
|
50
|
+
* };
|
|
51
|
+
* const command = new ListSystemEventsCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // ListSystemEventsResponse
|
|
54
|
+
* // events: [ // SystemEventList // required
|
|
55
|
+
* // { // SystemEvent
|
|
56
|
+
* // eventId: "STRING_VALUE", // required
|
|
57
|
+
* // timestamp: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // eventType: "SYSTEM_CREATED" || "SYSTEM_DELETED" || "SYSTEM_USER_JOURNEY_CREATED" || "SYSTEM_USER_JOURNEY_UPDATED" || "SYSTEM_USER_JOURNEY_DELETED" || "SYSTEM_SERVICE_ASSOCIATED" || "SYSTEM_SERVICE_DISASSOCIATED" || "SYSTEM_POLICY_ASSOCIATED" || "SYSTEM_POLICY_DISASSOCIATED", // required
|
|
59
|
+
* // systemArn: "STRING_VALUE", // required
|
|
60
|
+
* // actor: { // EventActor
|
|
61
|
+
* // type: "USER" || "SYSTEM", // required
|
|
62
|
+
* // principalId: "STRING_VALUE", // required
|
|
63
|
+
* // accountId: "STRING_VALUE",
|
|
64
|
+
* // userName: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // eventDetails: { // SystemEventDetails
|
|
67
|
+
* // title: "STRING_VALUE", // required
|
|
68
|
+
* // description: "STRING_VALUE", // required
|
|
69
|
+
* // eventMetadata: { // SystemEventMetadata Union: only one key present
|
|
70
|
+
* // systemCreated: {},
|
|
71
|
+
* // systemDeleted: {},
|
|
72
|
+
* // systemUserJourneyCreated: { // SystemUserJourneyCreatedMetadata
|
|
73
|
+
* // userJourneyName: "STRING_VALUE",
|
|
74
|
+
* // associatedServices: [ // ServiceReferenceList
|
|
75
|
+
* // { // ServiceReference
|
|
76
|
+
* // serviceId: "STRING_VALUE",
|
|
77
|
+
* // serviceName: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // systemUserJourneyUpdated: { // SystemUserJourneyUpdatedMetadata
|
|
82
|
+
* // userJourneyName: "STRING_VALUE",
|
|
83
|
+
* // changes: { // UserJourneyChanges
|
|
84
|
+
* // journeyDescription: { // StringChange
|
|
85
|
+
* // oldValue: "STRING_VALUE",
|
|
86
|
+
* // newValue: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // associatedServices: { // ServiceReferenceChanges
|
|
89
|
+
* // added: [
|
|
90
|
+
* // {
|
|
91
|
+
* // serviceId: "STRING_VALUE",
|
|
92
|
+
* // serviceName: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // removed: [
|
|
96
|
+
* // {
|
|
97
|
+
* // serviceId: "STRING_VALUE",
|
|
98
|
+
* // serviceName: "STRING_VALUE",
|
|
99
|
+
* // },
|
|
100
|
+
* // ],
|
|
101
|
+
* // },
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // systemUserJourneyDeleted: { // SystemUserJourneyDeletedMetadata
|
|
105
|
+
* // userJourneyName: "STRING_VALUE",
|
|
106
|
+
* // associatedServicesAtDeletion: [
|
|
107
|
+
* // {
|
|
108
|
+
* // serviceId: "STRING_VALUE",
|
|
109
|
+
* // serviceName: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
111
|
+
* // ],
|
|
112
|
+
* // },
|
|
113
|
+
* // systemServiceAssociated: { // SystemServiceAssociatedMetadata
|
|
114
|
+
* // serviceName: "STRING_VALUE",
|
|
115
|
+
* // serviceArn: "STRING_VALUE",
|
|
116
|
+
* // userJourneys: [ // UserJourneyNameList
|
|
117
|
+
* // "STRING_VALUE",
|
|
118
|
+
* // ],
|
|
119
|
+
* // },
|
|
120
|
+
* // systemServiceDisassociated: { // SystemServiceDisassociatedMetadata
|
|
121
|
+
* // serviceName: "STRING_VALUE",
|
|
122
|
+
* // serviceArn: "STRING_VALUE",
|
|
123
|
+
* // userJourneysAffected: [
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // comment: "STRING_VALUE",
|
|
127
|
+
* // },
|
|
128
|
+
* // systemPolicyAssociated: { // SystemPolicyAssociatedMetadata
|
|
129
|
+
* // policyName: "STRING_VALUE",
|
|
130
|
+
* // policyArn: "STRING_VALUE",
|
|
131
|
+
* // },
|
|
132
|
+
* // systemPolicyDisassociated: { // SystemPolicyDisassociatedMetadata
|
|
133
|
+
* // policyName: "STRING_VALUE",
|
|
134
|
+
* // policyArn: "STRING_VALUE",
|
|
135
|
+
* // },
|
|
136
|
+
* // },
|
|
137
|
+
* // },
|
|
138
|
+
* // },
|
|
139
|
+
* // ],
|
|
140
|
+
* // nextToken: "STRING_VALUE",
|
|
141
|
+
* // };
|
|
142
|
+
*
|
|
143
|
+
* ```
|
|
144
|
+
*
|
|
145
|
+
* @param ListSystemEventsCommandInput - {@link ListSystemEventsCommandInput}
|
|
146
|
+
* @returns {@link ListSystemEventsCommandOutput}
|
|
147
|
+
* @see {@link ListSystemEventsCommandInput} for command's `input` shape.
|
|
148
|
+
* @see {@link ListSystemEventsCommandOutput} for command's `response` shape.
|
|
149
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
150
|
+
*
|
|
151
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
152
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
153
|
+
*
|
|
154
|
+
* @throws {@link InternalServerException} (server fault)
|
|
155
|
+
* <p>Internal service error.</p>
|
|
156
|
+
*
|
|
157
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
158
|
+
* <p>Resource not found.</p>
|
|
159
|
+
*
|
|
160
|
+
* @throws {@link ValidationException} (client fault)
|
|
161
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
162
|
+
*
|
|
163
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
164
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
165
|
+
*
|
|
166
|
+
*
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export declare class ListSystemEventsCommand extends ListSystemEventsCommand_base {
|
|
170
|
+
/** @internal type navigation helper, not in runtime. */
|
|
171
|
+
protected static __types: {
|
|
172
|
+
api: {
|
|
173
|
+
input: ListSystemEventsRequest;
|
|
174
|
+
output: ListSystemEventsResponse;
|
|
175
|
+
};
|
|
176
|
+
sdk: {
|
|
177
|
+
input: ListSystemEventsCommandInput;
|
|
178
|
+
output: ListSystemEventsCommandOutput;
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListSystemsRequest, ListSystemsResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSystemsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSystemsCommandInput extends ListSystemsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSystemsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSystemsCommandOutput extends ListSystemsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListSystemsCommand_base: {
|
|
25
|
+
new (input: ListSystemsCommandInput): import("@smithy/core/client").CommandImpl<ListSystemsCommandInput, ListSystemsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListSystemsCommandInput]): import("@smithy/core/client").CommandImpl<ListSystemsCommandInput, ListSystemsCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists systems.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, ListSystemsCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, ListSystemsCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // ListSystemsRequest
|
|
42
|
+
* ouId: "STRING_VALUE",
|
|
43
|
+
* maxResults: Number("int"),
|
|
44
|
+
* nextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListSystemsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListSystemsResponse
|
|
49
|
+
* // systemSummaries: [ // SystemSummaryList // required
|
|
50
|
+
* // { // SystemSummary
|
|
51
|
+
* // systemId: "STRING_VALUE", // required
|
|
52
|
+
* // name: "STRING_VALUE", // required
|
|
53
|
+
* // systemArn: "STRING_VALUE",
|
|
54
|
+
* // userJourneysCount: Number("int"),
|
|
55
|
+
* // servicesCount: Number("int"),
|
|
56
|
+
* // organizationId: "STRING_VALUE",
|
|
57
|
+
* // ouId: "STRING_VALUE",
|
|
58
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
59
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param ListSystemsCommandInput - {@link ListSystemsCommandInput}
|
|
68
|
+
* @returns {@link ListSystemsCommandOutput}
|
|
69
|
+
* @see {@link ListSystemsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link ListSystemsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>Internal service error.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ValidationException} (client fault)
|
|
80
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class ListSystemsCommand extends ListSystemsCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListSystemsRequest;
|
|
93
|
+
output: ListSystemsResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListSystemsCommandInput;
|
|
97
|
+
output: ListSystemsCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|