@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,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAssertionsCommandInput,
|
|
4
|
+
ListAssertionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAssertionsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAssertions: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListAssertionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAssertionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDependenciesCommandInput,
|
|
4
|
+
ListDependenciesCommandOutput,
|
|
5
|
+
} from "../commands/ListDependenciesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDependencies: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListDependenciesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDependenciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFailureModeAssessmentsCommandInput,
|
|
4
|
+
ListFailureModeAssessmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListFailureModeAssessmentsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFailureModeAssessments: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListFailureModeAssessmentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFailureModeAssessmentsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFailureModeFindingsCommandInput,
|
|
4
|
+
ListFailureModeFindingsCommandOutput,
|
|
5
|
+
} from "../commands/ListFailureModeFindingsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFailureModeFindings: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListFailureModeFindingsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFailureModeFindingsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInputSourcesCommandInput,
|
|
4
|
+
ListInputSourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListInputSourcesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListInputSources: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListInputSourcesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListInputSourcesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPoliciesCommandInput,
|
|
4
|
+
ListPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListPoliciesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicies: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListPoliciesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPoliciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListReportsCommandInput,
|
|
4
|
+
ListReportsCommandOutput,
|
|
5
|
+
} from "../commands/ListReportsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListReports: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListReportsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListReportsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourcesCommandInput,
|
|
4
|
+
ListResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListResourcesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListResources: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListResourcesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListResourcesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServiceEventsCommandInput,
|
|
4
|
+
ListServiceEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListServiceEventsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListServiceEvents: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListServiceEventsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListServiceEventsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServiceFunctionsCommandInput,
|
|
4
|
+
ListServiceFunctionsCommandOutput,
|
|
5
|
+
} from "../commands/ListServiceFunctionsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListServiceFunctions: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListServiceFunctionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListServiceFunctionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServiceTopologyEdgesCommandInput,
|
|
4
|
+
ListServiceTopologyEdgesCommandOutput,
|
|
5
|
+
} from "../commands/ListServiceTopologyEdgesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListServiceTopologyEdges: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListServiceTopologyEdgesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListServiceTopologyEdgesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServicesCommandInput,
|
|
4
|
+
ListServicesCommandOutput,
|
|
5
|
+
} from "../commands/ListServicesCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListServices: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListServicesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListServicesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSystemEventsCommandInput,
|
|
4
|
+
ListSystemEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListSystemEventsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSystemEvents: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListSystemEventsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSystemEventsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSystemsCommandInput,
|
|
4
|
+
ListSystemsCommandOutput,
|
|
5
|
+
} from "../commands/ListSystemsCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSystems: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListSystemsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSystemsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUserJourneysCommandInput,
|
|
4
|
+
ListUserJourneysCommandOutput,
|
|
5
|
+
} from "../commands/ListUserJourneysCommand";
|
|
6
|
+
import { Resiliencehubv2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListUserJourneys: (
|
|
8
|
+
config: Resiliencehubv2PaginationConfiguration,
|
|
9
|
+
input: ListUserJourneysCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListUserJourneysCommandOutput>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAssertionsPaginator";
|
|
3
|
+
export * from "./ListDependenciesPaginator";
|
|
4
|
+
export * from "./ListFailureModeAssessmentsPaginator";
|
|
5
|
+
export * from "./ListFailureModeFindingsPaginator";
|
|
6
|
+
export * from "./ListInputSourcesPaginator";
|
|
7
|
+
export * from "./ListPoliciesPaginator";
|
|
8
|
+
export * from "./ListReportsPaginator";
|
|
9
|
+
export * from "./ListResourcesPaginator";
|
|
10
|
+
export * from "./ListServiceEventsPaginator";
|
|
11
|
+
export * from "./ListServiceFunctionsPaginator";
|
|
12
|
+
export * from "./ListServicesPaginator";
|
|
13
|
+
export * from "./ListServiceTopologyEdgesPaginator";
|
|
14
|
+
export * from "./ListSystemEventsPaginator";
|
|
15
|
+
export * from "./ListSystemsPaginator";
|
|
16
|
+
export * from "./ListUserJourneysPaginator";
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { Resiliencehubv2ClientConfig } from "./Resiliencehubv2Client";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Resiliencehubv2ClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
18
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
+
| RequestHandler;
|
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
serviceId: string;
|
|
48
|
+
profile?: string;
|
|
49
|
+
logger: import("@smithy/types").Logger;
|
|
50
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
userAgentAppId?:
|
|
53
|
+
| string
|
|
54
|
+
| undefined
|
|
55
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
56
|
+
retryStrategy?:
|
|
57
|
+
| import("@smithy/types").RetryStrategy
|
|
58
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
59
|
+
endpoint?:
|
|
60
|
+
| ((
|
|
61
|
+
| string
|
|
62
|
+
| import("@smithy/types").Endpoint
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
|
+
| import("@smithy/types").EndpointV2
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
|
+
) &
|
|
67
|
+
(
|
|
68
|
+
| string
|
|
69
|
+
| import("@smithy/types").Provider<string>
|
|
70
|
+
| import("@smithy/types").Endpoint
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
72
|
+
| import("@smithy/types").EndpointV2
|
|
73
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
74
|
+
))
|
|
75
|
+
| undefined;
|
|
76
|
+
endpointProvider: (
|
|
77
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
|
+
context?: {
|
|
79
|
+
logger?: import("@smithy/types").Logger;
|
|
80
|
+
}
|
|
81
|
+
) => import("@smithy/types").EndpointV2;
|
|
82
|
+
tls?: boolean;
|
|
83
|
+
serviceConfiguredEndpoint?: never;
|
|
84
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
85
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
86
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Resiliencehubv2HttpAuthSchemeProvider;
|
|
87
|
+
credentials?:
|
|
88
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
89
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
90
|
+
signer?:
|
|
91
|
+
| import("@smithy/types").RequestSigner
|
|
92
|
+
| ((
|
|
93
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
94
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
95
|
+
signingEscapePath?: boolean;
|
|
96
|
+
systemClockOffset?: number;
|
|
97
|
+
signingRegion?: string;
|
|
98
|
+
signerConstructor?: new (
|
|
99
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
100
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
101
|
+
) => import("@smithy/types").RequestSigner;
|
|
102
|
+
};
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { Resiliencehubv2ClientConfig } from "./Resiliencehubv2Client";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Resiliencehubv2ClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider:
|
|
13
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
|
+
| ((
|
|
15
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
|
+
defaultUserAgentProvider: (
|
|
18
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
19
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| RequestHandler
|
|
24
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
serviceId: string;
|
|
48
|
+
profile?: string;
|
|
49
|
+
logger: import("@smithy/types").Logger;
|
|
50
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
retryStrategy?:
|
|
53
|
+
| import("@smithy/types").RetryStrategy
|
|
54
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
55
|
+
endpoint?:
|
|
56
|
+
| ((
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
) &
|
|
63
|
+
(
|
|
64
|
+
| string
|
|
65
|
+
| import("@smithy/types").Provider<string>
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
))
|
|
71
|
+
| undefined;
|
|
72
|
+
endpointProvider: (
|
|
73
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
74
|
+
context?: {
|
|
75
|
+
logger?: import("@smithy/types").Logger;
|
|
76
|
+
}
|
|
77
|
+
) => import("@smithy/types").EndpointV2;
|
|
78
|
+
tls?: boolean;
|
|
79
|
+
serviceConfiguredEndpoint?: never;
|
|
80
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
81
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Resiliencehubv2HttpAuthSchemeProvider;
|
|
82
|
+
credentials?:
|
|
83
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
85
|
+
signer?:
|
|
86
|
+
| import("@smithy/types").RequestSigner
|
|
87
|
+
| ((
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
90
|
+
signingEscapePath?: boolean;
|
|
91
|
+
systemClockOffset?: number;
|
|
92
|
+
signingRegion?: string;
|
|
93
|
+
signerConstructor?: new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner;
|
|
97
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { Resiliencehubv2ClientConfig } from "./Resiliencehubv2Client";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: Resiliencehubv2ClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/core/protocols").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
cacheMiddleware?: boolean;
|
|
14
|
+
protocol:
|
|
15
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
24
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
26
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
+
disableHostPrefix: boolean;
|
|
31
|
+
serviceId: string;
|
|
32
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
+
profile?: string;
|
|
38
|
+
defaultUserAgentProvider: (
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
40
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
+
credentialDefaultProvider:
|
|
42
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
+
| ((
|
|
44
|
+
_: unknown
|
|
45
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
46
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
47
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
48
|
+
logger: import("@smithy/types").Logger;
|
|
49
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
50
|
+
defaultsMode:
|
|
51
|
+
| import("@smithy/core/client").DefaultsMode
|
|
52
|
+
| import("@smithy/types").Provider<
|
|
53
|
+
import("@smithy/core/client").DefaultsMode
|
|
54
|
+
>;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
+
userAgentAppId?:
|
|
57
|
+
| string
|
|
58
|
+
| undefined
|
|
59
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
+
retryStrategy?:
|
|
61
|
+
| import("@smithy/types").RetryStrategy
|
|
62
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
63
|
+
endpoint?:
|
|
64
|
+
| ((
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
) &
|
|
71
|
+
(
|
|
72
|
+
| string
|
|
73
|
+
| import("@smithy/types").Provider<string>
|
|
74
|
+
| import("@smithy/types").Endpoint
|
|
75
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
76
|
+
| import("@smithy/types").EndpointV2
|
|
77
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
78
|
+
))
|
|
79
|
+
| undefined;
|
|
80
|
+
endpointProvider: (
|
|
81
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
|
+
context?: {
|
|
83
|
+
logger?: import("@smithy/types").Logger;
|
|
84
|
+
}
|
|
85
|
+
) => import("@smithy/types").EndpointV2;
|
|
86
|
+
tls?: boolean;
|
|
87
|
+
serviceConfiguredEndpoint?: never;
|
|
88
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
89
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
90
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Resiliencehubv2HttpAuthSchemeProvider;
|
|
91
|
+
credentials?:
|
|
92
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
93
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
94
|
+
signer?:
|
|
95
|
+
| import("@smithy/types").RequestSigner
|
|
96
|
+
| ((
|
|
97
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
98
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
|
+
signingEscapePath?: boolean;
|
|
100
|
+
systemClockOffset?: number;
|
|
101
|
+
signingRegion?: string;
|
|
102
|
+
signerConstructor?: new (
|
|
103
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
105
|
+
) => import("@smithy/types").RequestSigner;
|
|
106
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { Resiliencehubv2ClientConfig } from "./Resiliencehubv2Client";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Resiliencehubv2ClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (
|
|
11
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
|
+
context?: {
|
|
13
|
+
logger?: import("@smithy/types").Logger;
|
|
14
|
+
}
|
|
15
|
+
) => import("@smithy/types").EndpointV2;
|
|
16
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Resiliencehubv2HttpAuthSchemeProvider;
|
|
18
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
19
|
+
logger: import("@smithy/types").Logger;
|
|
20
|
+
protocol:
|
|
21
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
22
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
23
|
+
| typeof AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
[setting: string]: unknown;
|
|
26
|
+
defaultNamespace?: string;
|
|
27
|
+
};
|
|
28
|
+
serviceId: string;
|
|
29
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resiliencehubv2ExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: Resiliencehubv2ExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|