@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,502 @@
|
|
|
1
|
+
import { type WaiterResult } from "@smithy/core/client";
|
|
2
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
3
|
+
import { type CreateAssertionCommandInput, type CreateAssertionCommandOutput } from "./commands/CreateAssertionCommand";
|
|
4
|
+
import { type CreateInputSourceCommandInput, type CreateInputSourceCommandOutput } from "./commands/CreateInputSourceCommand";
|
|
5
|
+
import { type CreatePolicyCommandInput, type CreatePolicyCommandOutput } from "./commands/CreatePolicyCommand";
|
|
6
|
+
import { type CreateReportCommandInput, type CreateReportCommandOutput } from "./commands/CreateReportCommand";
|
|
7
|
+
import { type CreateServiceCommandInput, type CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
8
|
+
import { type CreateServiceFunctionCommandInput, type CreateServiceFunctionCommandOutput } from "./commands/CreateServiceFunctionCommand";
|
|
9
|
+
import { type CreateServiceFunctionResourcesCommandInput, type CreateServiceFunctionResourcesCommandOutput } from "./commands/CreateServiceFunctionResourcesCommand";
|
|
10
|
+
import { type CreateSystemCommandInput, type CreateSystemCommandOutput } from "./commands/CreateSystemCommand";
|
|
11
|
+
import { type CreateUserJourneyCommandInput, type CreateUserJourneyCommandOutput } from "./commands/CreateUserJourneyCommand";
|
|
12
|
+
import { type DeleteAssertionCommandInput, type DeleteAssertionCommandOutput } from "./commands/DeleteAssertionCommand";
|
|
13
|
+
import { type DeleteInputSourceCommandInput, type DeleteInputSourceCommandOutput } from "./commands/DeleteInputSourceCommand";
|
|
14
|
+
import { type DeletePolicyCommandInput, type DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
15
|
+
import { type DeleteServiceCommandInput, type DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
16
|
+
import { type DeleteServiceFunctionCommandInput, type DeleteServiceFunctionCommandOutput } from "./commands/DeleteServiceFunctionCommand";
|
|
17
|
+
import { type DeleteServiceFunctionResourcesCommandInput, type DeleteServiceFunctionResourcesCommandOutput } from "./commands/DeleteServiceFunctionResourcesCommand";
|
|
18
|
+
import { type DeleteSystemCommandInput, type DeleteSystemCommandOutput } from "./commands/DeleteSystemCommand";
|
|
19
|
+
import { type DeleteUserJourneyCommandInput, type DeleteUserJourneyCommandOutput } from "./commands/DeleteUserJourneyCommand";
|
|
20
|
+
import { type GetFailureModeFindingCommandInput, type GetFailureModeFindingCommandOutput } from "./commands/GetFailureModeFindingCommand";
|
|
21
|
+
import { type GetPolicyCommandInput, type GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
22
|
+
import { type GetServiceCommandInput, type GetServiceCommandOutput } from "./commands/GetServiceCommand";
|
|
23
|
+
import { type GetSystemCommandInput, type GetSystemCommandOutput } from "./commands/GetSystemCommand";
|
|
24
|
+
import { type GetUserJourneyCommandInput, type GetUserJourneyCommandOutput } from "./commands/GetUserJourneyCommand";
|
|
25
|
+
import { type ImportAppCommandInput, type ImportAppCommandOutput } from "./commands/ImportAppCommand";
|
|
26
|
+
import { type ImportPolicyCommandInput, type ImportPolicyCommandOutput } from "./commands/ImportPolicyCommand";
|
|
27
|
+
import { type ListAssertionsCommandInput, type ListAssertionsCommandOutput } from "./commands/ListAssertionsCommand";
|
|
28
|
+
import { type ListDependenciesCommandInput, type ListDependenciesCommandOutput } from "./commands/ListDependenciesCommand";
|
|
29
|
+
import { type ListFailureModeAssessmentsCommandInput, type ListFailureModeAssessmentsCommandOutput } from "./commands/ListFailureModeAssessmentsCommand";
|
|
30
|
+
import { type ListFailureModeFindingsCommandInput, type ListFailureModeFindingsCommandOutput } from "./commands/ListFailureModeFindingsCommand";
|
|
31
|
+
import { type ListInputSourcesCommandInput, type ListInputSourcesCommandOutput } from "./commands/ListInputSourcesCommand";
|
|
32
|
+
import { type ListPoliciesCommandInput, type ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
33
|
+
import { type ListReportsCommandInput, type ListReportsCommandOutput } from "./commands/ListReportsCommand";
|
|
34
|
+
import { type ListResourcesCommandInput, type ListResourcesCommandOutput } from "./commands/ListResourcesCommand";
|
|
35
|
+
import { type ListServiceEventsCommandInput, type ListServiceEventsCommandOutput } from "./commands/ListServiceEventsCommand";
|
|
36
|
+
import { type ListServiceFunctionsCommandInput, type ListServiceFunctionsCommandOutput } from "./commands/ListServiceFunctionsCommand";
|
|
37
|
+
import { type ListServicesCommandInput, type ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
38
|
+
import { type ListServiceTopologyEdgesCommandInput, type ListServiceTopologyEdgesCommandOutput } from "./commands/ListServiceTopologyEdgesCommand";
|
|
39
|
+
import { type ListSystemEventsCommandInput, type ListSystemEventsCommandOutput } from "./commands/ListSystemEventsCommand";
|
|
40
|
+
import { type ListSystemsCommandInput, type ListSystemsCommandOutput } from "./commands/ListSystemsCommand";
|
|
41
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
42
|
+
import { type ListUserJourneysCommandInput, type ListUserJourneysCommandOutput } from "./commands/ListUserJourneysCommand";
|
|
43
|
+
import { type StartFailureModeAssessmentCommandInput, type StartFailureModeAssessmentCommandOutput } from "./commands/StartFailureModeAssessmentCommand";
|
|
44
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
45
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
46
|
+
import { type UpdateAssertionCommandInput, type UpdateAssertionCommandOutput } from "./commands/UpdateAssertionCommand";
|
|
47
|
+
import { type UpdateDependencyCommandInput, type UpdateDependencyCommandOutput } from "./commands/UpdateDependencyCommand";
|
|
48
|
+
import { type UpdateFailureModeFindingCommandInput, type UpdateFailureModeFindingCommandOutput } from "./commands/UpdateFailureModeFindingCommand";
|
|
49
|
+
import { type UpdatePolicyCommandInput, type UpdatePolicyCommandOutput } from "./commands/UpdatePolicyCommand";
|
|
50
|
+
import { type UpdateServiceCommandInput, type UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
51
|
+
import { type UpdateServiceFunctionCommandInput, type UpdateServiceFunctionCommandOutput } from "./commands/UpdateServiceFunctionCommand";
|
|
52
|
+
import { type UpdateSystemCommandInput, type UpdateSystemCommandOutput } from "./commands/UpdateSystemCommand";
|
|
53
|
+
import { type UpdateUserJourneyCommandInput, type UpdateUserJourneyCommandOutput } from "./commands/UpdateUserJourneyCommand";
|
|
54
|
+
import { Resiliencehubv2Client } from "./Resiliencehubv2Client";
|
|
55
|
+
export interface Resiliencehubv2 {
|
|
56
|
+
/**
|
|
57
|
+
* @see {@link CreateAssertionCommand}
|
|
58
|
+
*/
|
|
59
|
+
createAssertion(args: CreateAssertionCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssertionCommandOutput>;
|
|
60
|
+
createAssertion(args: CreateAssertionCommandInput, cb: (err: any, data?: CreateAssertionCommandOutput) => void): void;
|
|
61
|
+
createAssertion(args: CreateAssertionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssertionCommandOutput) => void): void;
|
|
62
|
+
/**
|
|
63
|
+
* @see {@link CreateInputSourceCommand}
|
|
64
|
+
*/
|
|
65
|
+
createInputSource(args: CreateInputSourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateInputSourceCommandOutput>;
|
|
66
|
+
createInputSource(args: CreateInputSourceCommandInput, cb: (err: any, data?: CreateInputSourceCommandOutput) => void): void;
|
|
67
|
+
createInputSource(args: CreateInputSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInputSourceCommandOutput) => void): void;
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link CreatePolicyCommand}
|
|
70
|
+
*/
|
|
71
|
+
createPolicy(args: CreatePolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreatePolicyCommandOutput>;
|
|
72
|
+
createPolicy(args: CreatePolicyCommandInput, cb: (err: any, data?: CreatePolicyCommandOutput) => void): void;
|
|
73
|
+
createPolicy(args: CreatePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePolicyCommandOutput) => void): void;
|
|
74
|
+
/**
|
|
75
|
+
* @see {@link CreateReportCommand}
|
|
76
|
+
*/
|
|
77
|
+
createReport(args: CreateReportCommandInput, options?: __HttpHandlerOptions): Promise<CreateReportCommandOutput>;
|
|
78
|
+
createReport(args: CreateReportCommandInput, cb: (err: any, data?: CreateReportCommandOutput) => void): void;
|
|
79
|
+
createReport(args: CreateReportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReportCommandOutput) => void): void;
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link CreateServiceCommand}
|
|
82
|
+
*/
|
|
83
|
+
createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
|
|
84
|
+
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
85
|
+
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
86
|
+
/**
|
|
87
|
+
* @see {@link CreateServiceFunctionCommand}
|
|
88
|
+
*/
|
|
89
|
+
createServiceFunction(args: CreateServiceFunctionCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceFunctionCommandOutput>;
|
|
90
|
+
createServiceFunction(args: CreateServiceFunctionCommandInput, cb: (err: any, data?: CreateServiceFunctionCommandOutput) => void): void;
|
|
91
|
+
createServiceFunction(args: CreateServiceFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceFunctionCommandOutput) => void): void;
|
|
92
|
+
/**
|
|
93
|
+
* @see {@link CreateServiceFunctionResourcesCommand}
|
|
94
|
+
*/
|
|
95
|
+
createServiceFunctionResources(args: CreateServiceFunctionResourcesCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceFunctionResourcesCommandOutput>;
|
|
96
|
+
createServiceFunctionResources(args: CreateServiceFunctionResourcesCommandInput, cb: (err: any, data?: CreateServiceFunctionResourcesCommandOutput) => void): void;
|
|
97
|
+
createServiceFunctionResources(args: CreateServiceFunctionResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceFunctionResourcesCommandOutput) => void): void;
|
|
98
|
+
/**
|
|
99
|
+
* @see {@link CreateSystemCommand}
|
|
100
|
+
*/
|
|
101
|
+
createSystem(args: CreateSystemCommandInput, options?: __HttpHandlerOptions): Promise<CreateSystemCommandOutput>;
|
|
102
|
+
createSystem(args: CreateSystemCommandInput, cb: (err: any, data?: CreateSystemCommandOutput) => void): void;
|
|
103
|
+
createSystem(args: CreateSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSystemCommandOutput) => void): void;
|
|
104
|
+
/**
|
|
105
|
+
* @see {@link CreateUserJourneyCommand}
|
|
106
|
+
*/
|
|
107
|
+
createUserJourney(args: CreateUserJourneyCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserJourneyCommandOutput>;
|
|
108
|
+
createUserJourney(args: CreateUserJourneyCommandInput, cb: (err: any, data?: CreateUserJourneyCommandOutput) => void): void;
|
|
109
|
+
createUserJourney(args: CreateUserJourneyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserJourneyCommandOutput) => void): void;
|
|
110
|
+
/**
|
|
111
|
+
* @see {@link DeleteAssertionCommand}
|
|
112
|
+
*/
|
|
113
|
+
deleteAssertion(args: DeleteAssertionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssertionCommandOutput>;
|
|
114
|
+
deleteAssertion(args: DeleteAssertionCommandInput, cb: (err: any, data?: DeleteAssertionCommandOutput) => void): void;
|
|
115
|
+
deleteAssertion(args: DeleteAssertionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssertionCommandOutput) => void): void;
|
|
116
|
+
/**
|
|
117
|
+
* @see {@link DeleteInputSourceCommand}
|
|
118
|
+
*/
|
|
119
|
+
deleteInputSource(args: DeleteInputSourceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInputSourceCommandOutput>;
|
|
120
|
+
deleteInputSource(args: DeleteInputSourceCommandInput, cb: (err: any, data?: DeleteInputSourceCommandOutput) => void): void;
|
|
121
|
+
deleteInputSource(args: DeleteInputSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInputSourceCommandOutput) => void): void;
|
|
122
|
+
/**
|
|
123
|
+
* @see {@link DeletePolicyCommand}
|
|
124
|
+
*/
|
|
125
|
+
deletePolicy(args: DeletePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyCommandOutput>;
|
|
126
|
+
deletePolicy(args: DeletePolicyCommandInput, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
127
|
+
deletePolicy(args: DeletePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
128
|
+
/**
|
|
129
|
+
* @see {@link DeleteServiceCommand}
|
|
130
|
+
*/
|
|
131
|
+
deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
|
|
132
|
+
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
133
|
+
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
134
|
+
/**
|
|
135
|
+
* @see {@link DeleteServiceFunctionCommand}
|
|
136
|
+
*/
|
|
137
|
+
deleteServiceFunction(args: DeleteServiceFunctionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceFunctionCommandOutput>;
|
|
138
|
+
deleteServiceFunction(args: DeleteServiceFunctionCommandInput, cb: (err: any, data?: DeleteServiceFunctionCommandOutput) => void): void;
|
|
139
|
+
deleteServiceFunction(args: DeleteServiceFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceFunctionCommandOutput) => void): void;
|
|
140
|
+
/**
|
|
141
|
+
* @see {@link DeleteServiceFunctionResourcesCommand}
|
|
142
|
+
*/
|
|
143
|
+
deleteServiceFunctionResources(args: DeleteServiceFunctionResourcesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceFunctionResourcesCommandOutput>;
|
|
144
|
+
deleteServiceFunctionResources(args: DeleteServiceFunctionResourcesCommandInput, cb: (err: any, data?: DeleteServiceFunctionResourcesCommandOutput) => void): void;
|
|
145
|
+
deleteServiceFunctionResources(args: DeleteServiceFunctionResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceFunctionResourcesCommandOutput) => void): void;
|
|
146
|
+
/**
|
|
147
|
+
* @see {@link DeleteSystemCommand}
|
|
148
|
+
*/
|
|
149
|
+
deleteSystem(args: DeleteSystemCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSystemCommandOutput>;
|
|
150
|
+
deleteSystem(args: DeleteSystemCommandInput, cb: (err: any, data?: DeleteSystemCommandOutput) => void): void;
|
|
151
|
+
deleteSystem(args: DeleteSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSystemCommandOutput) => void): void;
|
|
152
|
+
/**
|
|
153
|
+
* @see {@link DeleteUserJourneyCommand}
|
|
154
|
+
*/
|
|
155
|
+
deleteUserJourney(args: DeleteUserJourneyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserJourneyCommandOutput>;
|
|
156
|
+
deleteUserJourney(args: DeleteUserJourneyCommandInput, cb: (err: any, data?: DeleteUserJourneyCommandOutput) => void): void;
|
|
157
|
+
deleteUserJourney(args: DeleteUserJourneyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserJourneyCommandOutput) => void): void;
|
|
158
|
+
/**
|
|
159
|
+
* @see {@link GetFailureModeFindingCommand}
|
|
160
|
+
*/
|
|
161
|
+
getFailureModeFinding(args: GetFailureModeFindingCommandInput, options?: __HttpHandlerOptions): Promise<GetFailureModeFindingCommandOutput>;
|
|
162
|
+
getFailureModeFinding(args: GetFailureModeFindingCommandInput, cb: (err: any, data?: GetFailureModeFindingCommandOutput) => void): void;
|
|
163
|
+
getFailureModeFinding(args: GetFailureModeFindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFailureModeFindingCommandOutput) => void): void;
|
|
164
|
+
/**
|
|
165
|
+
* @see {@link GetPolicyCommand}
|
|
166
|
+
*/
|
|
167
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
168
|
+
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
169
|
+
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
170
|
+
/**
|
|
171
|
+
* @see {@link GetServiceCommand}
|
|
172
|
+
*/
|
|
173
|
+
getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
|
|
174
|
+
getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
|
|
175
|
+
getService(args: GetServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link GetSystemCommand}
|
|
178
|
+
*/
|
|
179
|
+
getSystem(args: GetSystemCommandInput, options?: __HttpHandlerOptions): Promise<GetSystemCommandOutput>;
|
|
180
|
+
getSystem(args: GetSystemCommandInput, cb: (err: any, data?: GetSystemCommandOutput) => void): void;
|
|
181
|
+
getSystem(args: GetSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSystemCommandOutput) => void): void;
|
|
182
|
+
/**
|
|
183
|
+
* @see {@link GetUserJourneyCommand}
|
|
184
|
+
*/
|
|
185
|
+
getUserJourney(args: GetUserJourneyCommandInput, options?: __HttpHandlerOptions): Promise<GetUserJourneyCommandOutput>;
|
|
186
|
+
getUserJourney(args: GetUserJourneyCommandInput, cb: (err: any, data?: GetUserJourneyCommandOutput) => void): void;
|
|
187
|
+
getUserJourney(args: GetUserJourneyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserJourneyCommandOutput) => void): void;
|
|
188
|
+
/**
|
|
189
|
+
* @see {@link ImportAppCommand}
|
|
190
|
+
*/
|
|
191
|
+
importApp(args: ImportAppCommandInput, options?: __HttpHandlerOptions): Promise<ImportAppCommandOutput>;
|
|
192
|
+
importApp(args: ImportAppCommandInput, cb: (err: any, data?: ImportAppCommandOutput) => void): void;
|
|
193
|
+
importApp(args: ImportAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportAppCommandOutput) => void): void;
|
|
194
|
+
/**
|
|
195
|
+
* @see {@link ImportPolicyCommand}
|
|
196
|
+
*/
|
|
197
|
+
importPolicy(args: ImportPolicyCommandInput, options?: __HttpHandlerOptions): Promise<ImportPolicyCommandOutput>;
|
|
198
|
+
importPolicy(args: ImportPolicyCommandInput, cb: (err: any, data?: ImportPolicyCommandOutput) => void): void;
|
|
199
|
+
importPolicy(args: ImportPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportPolicyCommandOutput) => void): void;
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link ListAssertionsCommand}
|
|
202
|
+
*/
|
|
203
|
+
listAssertions(args: ListAssertionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssertionsCommandOutput>;
|
|
204
|
+
listAssertions(args: ListAssertionsCommandInput, cb: (err: any, data?: ListAssertionsCommandOutput) => void): void;
|
|
205
|
+
listAssertions(args: ListAssertionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssertionsCommandOutput) => void): void;
|
|
206
|
+
/**
|
|
207
|
+
* @see {@link ListDependenciesCommand}
|
|
208
|
+
*/
|
|
209
|
+
listDependencies(): Promise<ListDependenciesCommandOutput>;
|
|
210
|
+
listDependencies(args: ListDependenciesCommandInput, options?: __HttpHandlerOptions): Promise<ListDependenciesCommandOutput>;
|
|
211
|
+
listDependencies(args: ListDependenciesCommandInput, cb: (err: any, data?: ListDependenciesCommandOutput) => void): void;
|
|
212
|
+
listDependencies(args: ListDependenciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDependenciesCommandOutput) => void): void;
|
|
213
|
+
/**
|
|
214
|
+
* @see {@link ListFailureModeAssessmentsCommand}
|
|
215
|
+
*/
|
|
216
|
+
listFailureModeAssessments(args: ListFailureModeAssessmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListFailureModeAssessmentsCommandOutput>;
|
|
217
|
+
listFailureModeAssessments(args: ListFailureModeAssessmentsCommandInput, cb: (err: any, data?: ListFailureModeAssessmentsCommandOutput) => void): void;
|
|
218
|
+
listFailureModeAssessments(args: ListFailureModeAssessmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFailureModeAssessmentsCommandOutput) => void): void;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link ListFailureModeFindingsCommand}
|
|
221
|
+
*/
|
|
222
|
+
listFailureModeFindings(args: ListFailureModeFindingsCommandInput, options?: __HttpHandlerOptions): Promise<ListFailureModeFindingsCommandOutput>;
|
|
223
|
+
listFailureModeFindings(args: ListFailureModeFindingsCommandInput, cb: (err: any, data?: ListFailureModeFindingsCommandOutput) => void): void;
|
|
224
|
+
listFailureModeFindings(args: ListFailureModeFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFailureModeFindingsCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link ListInputSourcesCommand}
|
|
227
|
+
*/
|
|
228
|
+
listInputSources(args: ListInputSourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListInputSourcesCommandOutput>;
|
|
229
|
+
listInputSources(args: ListInputSourcesCommandInput, cb: (err: any, data?: ListInputSourcesCommandOutput) => void): void;
|
|
230
|
+
listInputSources(args: ListInputSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInputSourcesCommandOutput) => void): void;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link ListPoliciesCommand}
|
|
233
|
+
*/
|
|
234
|
+
listPolicies(): Promise<ListPoliciesCommandOutput>;
|
|
235
|
+
listPolicies(args: ListPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListPoliciesCommandOutput>;
|
|
236
|
+
listPolicies(args: ListPoliciesCommandInput, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
237
|
+
listPolicies(args: ListPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
238
|
+
/**
|
|
239
|
+
* @see {@link ListReportsCommand}
|
|
240
|
+
*/
|
|
241
|
+
listReports(): Promise<ListReportsCommandOutput>;
|
|
242
|
+
listReports(args: ListReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListReportsCommandOutput>;
|
|
243
|
+
listReports(args: ListReportsCommandInput, cb: (err: any, data?: ListReportsCommandOutput) => void): void;
|
|
244
|
+
listReports(args: ListReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportsCommandOutput) => void): void;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link ListResourcesCommand}
|
|
247
|
+
*/
|
|
248
|
+
listResources(args: ListResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourcesCommandOutput>;
|
|
249
|
+
listResources(args: ListResourcesCommandInput, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
250
|
+
listResources(args: ListResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcesCommandOutput) => void): void;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link ListServiceEventsCommand}
|
|
253
|
+
*/
|
|
254
|
+
listServiceEvents(args: ListServiceEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceEventsCommandOutput>;
|
|
255
|
+
listServiceEvents(args: ListServiceEventsCommandInput, cb: (err: any, data?: ListServiceEventsCommandOutput) => void): void;
|
|
256
|
+
listServiceEvents(args: ListServiceEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceEventsCommandOutput) => void): void;
|
|
257
|
+
/**
|
|
258
|
+
* @see {@link ListServiceFunctionsCommand}
|
|
259
|
+
*/
|
|
260
|
+
listServiceFunctions(args: ListServiceFunctionsCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceFunctionsCommandOutput>;
|
|
261
|
+
listServiceFunctions(args: ListServiceFunctionsCommandInput, cb: (err: any, data?: ListServiceFunctionsCommandOutput) => void): void;
|
|
262
|
+
listServiceFunctions(args: ListServiceFunctionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceFunctionsCommandOutput) => void): void;
|
|
263
|
+
/**
|
|
264
|
+
* @see {@link ListServicesCommand}
|
|
265
|
+
*/
|
|
266
|
+
listServices(): Promise<ListServicesCommandOutput>;
|
|
267
|
+
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
268
|
+
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
269
|
+
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* @see {@link ListServiceTopologyEdgesCommand}
|
|
272
|
+
*/
|
|
273
|
+
listServiceTopologyEdges(args: ListServiceTopologyEdgesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceTopologyEdgesCommandOutput>;
|
|
274
|
+
listServiceTopologyEdges(args: ListServiceTopologyEdgesCommandInput, cb: (err: any, data?: ListServiceTopologyEdgesCommandOutput) => void): void;
|
|
275
|
+
listServiceTopologyEdges(args: ListServiceTopologyEdgesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceTopologyEdgesCommandOutput) => void): void;
|
|
276
|
+
/**
|
|
277
|
+
* @see {@link ListSystemEventsCommand}
|
|
278
|
+
*/
|
|
279
|
+
listSystemEvents(args: ListSystemEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListSystemEventsCommandOutput>;
|
|
280
|
+
listSystemEvents(args: ListSystemEventsCommandInput, cb: (err: any, data?: ListSystemEventsCommandOutput) => void): void;
|
|
281
|
+
listSystemEvents(args: ListSystemEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSystemEventsCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* @see {@link ListSystemsCommand}
|
|
284
|
+
*/
|
|
285
|
+
listSystems(): Promise<ListSystemsCommandOutput>;
|
|
286
|
+
listSystems(args: ListSystemsCommandInput, options?: __HttpHandlerOptions): Promise<ListSystemsCommandOutput>;
|
|
287
|
+
listSystems(args: ListSystemsCommandInput, cb: (err: any, data?: ListSystemsCommandOutput) => void): void;
|
|
288
|
+
listSystems(args: ListSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSystemsCommandOutput) => void): void;
|
|
289
|
+
/**
|
|
290
|
+
* @see {@link ListTagsForResourceCommand}
|
|
291
|
+
*/
|
|
292
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
293
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
294
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link ListUserJourneysCommand}
|
|
297
|
+
*/
|
|
298
|
+
listUserJourneys(args: ListUserJourneysCommandInput, options?: __HttpHandlerOptions): Promise<ListUserJourneysCommandOutput>;
|
|
299
|
+
listUserJourneys(args: ListUserJourneysCommandInput, cb: (err: any, data?: ListUserJourneysCommandOutput) => void): void;
|
|
300
|
+
listUserJourneys(args: ListUserJourneysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserJourneysCommandOutput) => void): void;
|
|
301
|
+
/**
|
|
302
|
+
* @see {@link StartFailureModeAssessmentCommand}
|
|
303
|
+
*/
|
|
304
|
+
startFailureModeAssessment(args: StartFailureModeAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<StartFailureModeAssessmentCommandOutput>;
|
|
305
|
+
startFailureModeAssessment(args: StartFailureModeAssessmentCommandInput, cb: (err: any, data?: StartFailureModeAssessmentCommandOutput) => void): void;
|
|
306
|
+
startFailureModeAssessment(args: StartFailureModeAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFailureModeAssessmentCommandOutput) => void): void;
|
|
307
|
+
/**
|
|
308
|
+
* @see {@link TagResourceCommand}
|
|
309
|
+
*/
|
|
310
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
311
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
312
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link UntagResourceCommand}
|
|
315
|
+
*/
|
|
316
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
317
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
318
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
319
|
+
/**
|
|
320
|
+
* @see {@link UpdateAssertionCommand}
|
|
321
|
+
*/
|
|
322
|
+
updateAssertion(args: UpdateAssertionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssertionCommandOutput>;
|
|
323
|
+
updateAssertion(args: UpdateAssertionCommandInput, cb: (err: any, data?: UpdateAssertionCommandOutput) => void): void;
|
|
324
|
+
updateAssertion(args: UpdateAssertionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssertionCommandOutput) => void): void;
|
|
325
|
+
/**
|
|
326
|
+
* @see {@link UpdateDependencyCommand}
|
|
327
|
+
*/
|
|
328
|
+
updateDependency(args: UpdateDependencyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDependencyCommandOutput>;
|
|
329
|
+
updateDependency(args: UpdateDependencyCommandInput, cb: (err: any, data?: UpdateDependencyCommandOutput) => void): void;
|
|
330
|
+
updateDependency(args: UpdateDependencyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDependencyCommandOutput) => void): void;
|
|
331
|
+
/**
|
|
332
|
+
* @see {@link UpdateFailureModeFindingCommand}
|
|
333
|
+
*/
|
|
334
|
+
updateFailureModeFinding(args: UpdateFailureModeFindingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFailureModeFindingCommandOutput>;
|
|
335
|
+
updateFailureModeFinding(args: UpdateFailureModeFindingCommandInput, cb: (err: any, data?: UpdateFailureModeFindingCommandOutput) => void): void;
|
|
336
|
+
updateFailureModeFinding(args: UpdateFailureModeFindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFailureModeFindingCommandOutput) => void): void;
|
|
337
|
+
/**
|
|
338
|
+
* @see {@link UpdatePolicyCommand}
|
|
339
|
+
*/
|
|
340
|
+
updatePolicy(args: UpdatePolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePolicyCommandOutput>;
|
|
341
|
+
updatePolicy(args: UpdatePolicyCommandInput, cb: (err: any, data?: UpdatePolicyCommandOutput) => void): void;
|
|
342
|
+
updatePolicy(args: UpdatePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePolicyCommandOutput) => void): void;
|
|
343
|
+
/**
|
|
344
|
+
* @see {@link UpdateServiceCommand}
|
|
345
|
+
*/
|
|
346
|
+
updateService(args: UpdateServiceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceCommandOutput>;
|
|
347
|
+
updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
348
|
+
updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link UpdateServiceFunctionCommand}
|
|
351
|
+
*/
|
|
352
|
+
updateServiceFunction(args: UpdateServiceFunctionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceFunctionCommandOutput>;
|
|
353
|
+
updateServiceFunction(args: UpdateServiceFunctionCommandInput, cb: (err: any, data?: UpdateServiceFunctionCommandOutput) => void): void;
|
|
354
|
+
updateServiceFunction(args: UpdateServiceFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceFunctionCommandOutput) => void): void;
|
|
355
|
+
/**
|
|
356
|
+
* @see {@link UpdateSystemCommand}
|
|
357
|
+
*/
|
|
358
|
+
updateSystem(args: UpdateSystemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSystemCommandOutput>;
|
|
359
|
+
updateSystem(args: UpdateSystemCommandInput, cb: (err: any, data?: UpdateSystemCommandOutput) => void): void;
|
|
360
|
+
updateSystem(args: UpdateSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSystemCommandOutput) => void): void;
|
|
361
|
+
/**
|
|
362
|
+
* @see {@link UpdateUserJourneyCommand}
|
|
363
|
+
*/
|
|
364
|
+
updateUserJourney(args: UpdateUserJourneyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserJourneyCommandOutput>;
|
|
365
|
+
updateUserJourney(args: UpdateUserJourneyCommandInput, cb: (err: any, data?: UpdateUserJourneyCommandOutput) => void): void;
|
|
366
|
+
updateUserJourney(args: UpdateUserJourneyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserJourneyCommandOutput) => void): void;
|
|
367
|
+
/**
|
|
368
|
+
* @see {@link ListAssertionsCommand}
|
|
369
|
+
* @param args - command input.
|
|
370
|
+
* @param paginationConfig - optional pagination config.
|
|
371
|
+
* @returns AsyncIterable of {@link ListAssertionsCommandOutput}.
|
|
372
|
+
*/
|
|
373
|
+
paginateListAssertions(args: ListAssertionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssertionsCommandOutput>;
|
|
374
|
+
/**
|
|
375
|
+
* @see {@link ListDependenciesCommand}
|
|
376
|
+
* @param args - command input.
|
|
377
|
+
* @param paginationConfig - optional pagination config.
|
|
378
|
+
* @returns AsyncIterable of {@link ListDependenciesCommandOutput}.
|
|
379
|
+
*/
|
|
380
|
+
paginateListDependencies(args?: ListDependenciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDependenciesCommandOutput>;
|
|
381
|
+
/**
|
|
382
|
+
* @see {@link ListFailureModeAssessmentsCommand}
|
|
383
|
+
* @param args - command input.
|
|
384
|
+
* @param paginationConfig - optional pagination config.
|
|
385
|
+
* @returns AsyncIterable of {@link ListFailureModeAssessmentsCommandOutput}.
|
|
386
|
+
*/
|
|
387
|
+
paginateListFailureModeAssessments(args: ListFailureModeAssessmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFailureModeAssessmentsCommandOutput>;
|
|
388
|
+
/**
|
|
389
|
+
* @see {@link ListFailureModeFindingsCommand}
|
|
390
|
+
* @param args - command input.
|
|
391
|
+
* @param paginationConfig - optional pagination config.
|
|
392
|
+
* @returns AsyncIterable of {@link ListFailureModeFindingsCommandOutput}.
|
|
393
|
+
*/
|
|
394
|
+
paginateListFailureModeFindings(args: ListFailureModeFindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFailureModeFindingsCommandOutput>;
|
|
395
|
+
/**
|
|
396
|
+
* @see {@link ListInputSourcesCommand}
|
|
397
|
+
* @param args - command input.
|
|
398
|
+
* @param paginationConfig - optional pagination config.
|
|
399
|
+
* @returns AsyncIterable of {@link ListInputSourcesCommandOutput}.
|
|
400
|
+
*/
|
|
401
|
+
paginateListInputSources(args: ListInputSourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInputSourcesCommandOutput>;
|
|
402
|
+
/**
|
|
403
|
+
* @see {@link ListPoliciesCommand}
|
|
404
|
+
* @param args - command input.
|
|
405
|
+
* @param paginationConfig - optional pagination config.
|
|
406
|
+
* @returns AsyncIterable of {@link ListPoliciesCommandOutput}.
|
|
407
|
+
*/
|
|
408
|
+
paginateListPolicies(args?: ListPoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPoliciesCommandOutput>;
|
|
409
|
+
/**
|
|
410
|
+
* @see {@link ListReportsCommand}
|
|
411
|
+
* @param args - command input.
|
|
412
|
+
* @param paginationConfig - optional pagination config.
|
|
413
|
+
* @returns AsyncIterable of {@link ListReportsCommandOutput}.
|
|
414
|
+
*/
|
|
415
|
+
paginateListReports(args?: ListReportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReportsCommandOutput>;
|
|
416
|
+
/**
|
|
417
|
+
* @see {@link ListResourcesCommand}
|
|
418
|
+
* @param args - command input.
|
|
419
|
+
* @param paginationConfig - optional pagination config.
|
|
420
|
+
* @returns AsyncIterable of {@link ListResourcesCommandOutput}.
|
|
421
|
+
*/
|
|
422
|
+
paginateListResources(args: ListResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourcesCommandOutput>;
|
|
423
|
+
/**
|
|
424
|
+
* @see {@link ListServiceEventsCommand}
|
|
425
|
+
* @param args - command input.
|
|
426
|
+
* @param paginationConfig - optional pagination config.
|
|
427
|
+
* @returns AsyncIterable of {@link ListServiceEventsCommandOutput}.
|
|
428
|
+
*/
|
|
429
|
+
paginateListServiceEvents(args: ListServiceEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceEventsCommandOutput>;
|
|
430
|
+
/**
|
|
431
|
+
* @see {@link ListServiceFunctionsCommand}
|
|
432
|
+
* @param args - command input.
|
|
433
|
+
* @param paginationConfig - optional pagination config.
|
|
434
|
+
* @returns AsyncIterable of {@link ListServiceFunctionsCommandOutput}.
|
|
435
|
+
*/
|
|
436
|
+
paginateListServiceFunctions(args: ListServiceFunctionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceFunctionsCommandOutput>;
|
|
437
|
+
/**
|
|
438
|
+
* @see {@link ListServicesCommand}
|
|
439
|
+
* @param args - command input.
|
|
440
|
+
* @param paginationConfig - optional pagination config.
|
|
441
|
+
* @returns AsyncIterable of {@link ListServicesCommandOutput}.
|
|
442
|
+
*/
|
|
443
|
+
paginateListServices(args?: ListServicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServicesCommandOutput>;
|
|
444
|
+
/**
|
|
445
|
+
* @see {@link ListServiceTopologyEdgesCommand}
|
|
446
|
+
* @param args - command input.
|
|
447
|
+
* @param paginationConfig - optional pagination config.
|
|
448
|
+
* @returns AsyncIterable of {@link ListServiceTopologyEdgesCommandOutput}.
|
|
449
|
+
*/
|
|
450
|
+
paginateListServiceTopologyEdges(args: ListServiceTopologyEdgesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceTopologyEdgesCommandOutput>;
|
|
451
|
+
/**
|
|
452
|
+
* @see {@link ListSystemEventsCommand}
|
|
453
|
+
* @param args - command input.
|
|
454
|
+
* @param paginationConfig - optional pagination config.
|
|
455
|
+
* @returns AsyncIterable of {@link ListSystemEventsCommandOutput}.
|
|
456
|
+
*/
|
|
457
|
+
paginateListSystemEvents(args: ListSystemEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSystemEventsCommandOutput>;
|
|
458
|
+
/**
|
|
459
|
+
* @see {@link ListSystemsCommand}
|
|
460
|
+
* @param args - command input.
|
|
461
|
+
* @param paginationConfig - optional pagination config.
|
|
462
|
+
* @returns AsyncIterable of {@link ListSystemsCommandOutput}.
|
|
463
|
+
*/
|
|
464
|
+
paginateListSystems(args?: ListSystemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSystemsCommandOutput>;
|
|
465
|
+
/**
|
|
466
|
+
* @see {@link ListUserJourneysCommand}
|
|
467
|
+
* @param args - command input.
|
|
468
|
+
* @param paginationConfig - optional pagination config.
|
|
469
|
+
* @returns AsyncIterable of {@link ListUserJourneysCommandOutput}.
|
|
470
|
+
*/
|
|
471
|
+
paginateListUserJourneys(args: ListUserJourneysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUserJourneysCommandOutput>;
|
|
472
|
+
/**
|
|
473
|
+
* @see {@link GetServiceCommand}
|
|
474
|
+
* @param args - command input.
|
|
475
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
476
|
+
*/
|
|
477
|
+
waitUntilServiceAssessmentCompleted(args: GetServiceCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Resiliencehubv2>, "client">): Promise<WaiterResult<GetServiceCommandOutput>>;
|
|
478
|
+
/**
|
|
479
|
+
* @see {@link GetServiceCommand}
|
|
480
|
+
* @param args - command input.
|
|
481
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
482
|
+
*/
|
|
483
|
+
waitUntilServiceResourceDiscoveryCompleted(args: GetServiceCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Resiliencehubv2>, "client">): Promise<WaiterResult<GetServiceCommandOutput>>;
|
|
484
|
+
/**
|
|
485
|
+
* @see {@link ListFailureModeAssessmentsCommand}
|
|
486
|
+
* @param args - command input.
|
|
487
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
488
|
+
*/
|
|
489
|
+
waitUntilFailureModeAssessmentSuccess(args: ListFailureModeAssessmentsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Resiliencehubv2>, "client">): Promise<WaiterResult<ListFailureModeAssessmentsCommandOutput>>;
|
|
490
|
+
/**
|
|
491
|
+
* @see {@link ListReportsCommand}
|
|
492
|
+
* @param args - command input.
|
|
493
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
494
|
+
*/
|
|
495
|
+
waitUntilReportSucceeded(args: ListReportsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Resiliencehubv2>, "client">): Promise<WaiterResult<ListReportsCommandOutput>>;
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* <p>The next generation of AWS Resilience Hub is the single location in AWS where you assess and improve the resilience of your critical applications. It helps Site Reliability Engineers (SREs) and development teams proactively reason about resilience at scale — identifying failure modes, discovering hidden dependencies, and report on progress across the enterprise. </p>
|
|
499
|
+
* @public
|
|
500
|
+
*/
|
|
501
|
+
export declare class Resiliencehubv2 extends Resiliencehubv2Client implements Resiliencehubv2 {
|
|
502
|
+
}
|