@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,417 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
UserAgentInputConfig,
|
|
5
|
+
UserAgentResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/core/client";
|
|
7
|
+
import {
|
|
8
|
+
DefaultsMode as __DefaultsMode,
|
|
9
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
10
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
11
|
+
Client as __Client,
|
|
12
|
+
} from "@smithy/core/client";
|
|
13
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
+
import {
|
|
15
|
+
EndpointInputConfig,
|
|
16
|
+
EndpointResolvedConfig,
|
|
17
|
+
} from "@smithy/core/endpoints";
|
|
18
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
|
+
import {
|
|
21
|
+
AwsCredentialIdentityProvider,
|
|
22
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
23
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
24
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
25
|
+
Decoder as __Decoder,
|
|
26
|
+
Encoder as __Encoder,
|
|
27
|
+
HashConstructor as __HashConstructor,
|
|
28
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
29
|
+
Logger as __Logger,
|
|
30
|
+
Provider as __Provider,
|
|
31
|
+
StreamCollector as __StreamCollector,
|
|
32
|
+
UrlParser as __UrlParser,
|
|
33
|
+
UserAgent as __UserAgent,
|
|
34
|
+
} from "@smithy/types";
|
|
35
|
+
import {
|
|
36
|
+
HttpAuthSchemeInputConfig,
|
|
37
|
+
HttpAuthSchemeResolvedConfig,
|
|
38
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
+
import {
|
|
40
|
+
CreateAssertionCommandInput,
|
|
41
|
+
CreateAssertionCommandOutput,
|
|
42
|
+
} from "./commands/CreateAssertionCommand";
|
|
43
|
+
import {
|
|
44
|
+
CreateInputSourceCommandInput,
|
|
45
|
+
CreateInputSourceCommandOutput,
|
|
46
|
+
} from "./commands/CreateInputSourceCommand";
|
|
47
|
+
import {
|
|
48
|
+
CreatePolicyCommandInput,
|
|
49
|
+
CreatePolicyCommandOutput,
|
|
50
|
+
} from "./commands/CreatePolicyCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateReportCommandInput,
|
|
53
|
+
CreateReportCommandOutput,
|
|
54
|
+
} from "./commands/CreateReportCommand";
|
|
55
|
+
import {
|
|
56
|
+
CreateServiceCommandInput,
|
|
57
|
+
CreateServiceCommandOutput,
|
|
58
|
+
} from "./commands/CreateServiceCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateServiceFunctionCommandInput,
|
|
61
|
+
CreateServiceFunctionCommandOutput,
|
|
62
|
+
} from "./commands/CreateServiceFunctionCommand";
|
|
63
|
+
import {
|
|
64
|
+
CreateServiceFunctionResourcesCommandInput,
|
|
65
|
+
CreateServiceFunctionResourcesCommandOutput,
|
|
66
|
+
} from "./commands/CreateServiceFunctionResourcesCommand";
|
|
67
|
+
import {
|
|
68
|
+
CreateSystemCommandInput,
|
|
69
|
+
CreateSystemCommandOutput,
|
|
70
|
+
} from "./commands/CreateSystemCommand";
|
|
71
|
+
import {
|
|
72
|
+
CreateUserJourneyCommandInput,
|
|
73
|
+
CreateUserJourneyCommandOutput,
|
|
74
|
+
} from "./commands/CreateUserJourneyCommand";
|
|
75
|
+
import {
|
|
76
|
+
DeleteAssertionCommandInput,
|
|
77
|
+
DeleteAssertionCommandOutput,
|
|
78
|
+
} from "./commands/DeleteAssertionCommand";
|
|
79
|
+
import {
|
|
80
|
+
DeleteInputSourceCommandInput,
|
|
81
|
+
DeleteInputSourceCommandOutput,
|
|
82
|
+
} from "./commands/DeleteInputSourceCommand";
|
|
83
|
+
import {
|
|
84
|
+
DeletePolicyCommandInput,
|
|
85
|
+
DeletePolicyCommandOutput,
|
|
86
|
+
} from "./commands/DeletePolicyCommand";
|
|
87
|
+
import {
|
|
88
|
+
DeleteServiceCommandInput,
|
|
89
|
+
DeleteServiceCommandOutput,
|
|
90
|
+
} from "./commands/DeleteServiceCommand";
|
|
91
|
+
import {
|
|
92
|
+
DeleteServiceFunctionCommandInput,
|
|
93
|
+
DeleteServiceFunctionCommandOutput,
|
|
94
|
+
} from "./commands/DeleteServiceFunctionCommand";
|
|
95
|
+
import {
|
|
96
|
+
DeleteServiceFunctionResourcesCommandInput,
|
|
97
|
+
DeleteServiceFunctionResourcesCommandOutput,
|
|
98
|
+
} from "./commands/DeleteServiceFunctionResourcesCommand";
|
|
99
|
+
import {
|
|
100
|
+
DeleteSystemCommandInput,
|
|
101
|
+
DeleteSystemCommandOutput,
|
|
102
|
+
} from "./commands/DeleteSystemCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeleteUserJourneyCommandInput,
|
|
105
|
+
DeleteUserJourneyCommandOutput,
|
|
106
|
+
} from "./commands/DeleteUserJourneyCommand";
|
|
107
|
+
import {
|
|
108
|
+
GetFailureModeFindingCommandInput,
|
|
109
|
+
GetFailureModeFindingCommandOutput,
|
|
110
|
+
} from "./commands/GetFailureModeFindingCommand";
|
|
111
|
+
import {
|
|
112
|
+
GetPolicyCommandInput,
|
|
113
|
+
GetPolicyCommandOutput,
|
|
114
|
+
} from "./commands/GetPolicyCommand";
|
|
115
|
+
import {
|
|
116
|
+
GetServiceCommandInput,
|
|
117
|
+
GetServiceCommandOutput,
|
|
118
|
+
} from "./commands/GetServiceCommand";
|
|
119
|
+
import {
|
|
120
|
+
GetSystemCommandInput,
|
|
121
|
+
GetSystemCommandOutput,
|
|
122
|
+
} from "./commands/GetSystemCommand";
|
|
123
|
+
import {
|
|
124
|
+
GetUserJourneyCommandInput,
|
|
125
|
+
GetUserJourneyCommandOutput,
|
|
126
|
+
} from "./commands/GetUserJourneyCommand";
|
|
127
|
+
import {
|
|
128
|
+
ImportAppCommandInput,
|
|
129
|
+
ImportAppCommandOutput,
|
|
130
|
+
} from "./commands/ImportAppCommand";
|
|
131
|
+
import {
|
|
132
|
+
ImportPolicyCommandInput,
|
|
133
|
+
ImportPolicyCommandOutput,
|
|
134
|
+
} from "./commands/ImportPolicyCommand";
|
|
135
|
+
import {
|
|
136
|
+
ListAssertionsCommandInput,
|
|
137
|
+
ListAssertionsCommandOutput,
|
|
138
|
+
} from "./commands/ListAssertionsCommand";
|
|
139
|
+
import {
|
|
140
|
+
ListDependenciesCommandInput,
|
|
141
|
+
ListDependenciesCommandOutput,
|
|
142
|
+
} from "./commands/ListDependenciesCommand";
|
|
143
|
+
import {
|
|
144
|
+
ListFailureModeAssessmentsCommandInput,
|
|
145
|
+
ListFailureModeAssessmentsCommandOutput,
|
|
146
|
+
} from "./commands/ListFailureModeAssessmentsCommand";
|
|
147
|
+
import {
|
|
148
|
+
ListFailureModeFindingsCommandInput,
|
|
149
|
+
ListFailureModeFindingsCommandOutput,
|
|
150
|
+
} from "./commands/ListFailureModeFindingsCommand";
|
|
151
|
+
import {
|
|
152
|
+
ListInputSourcesCommandInput,
|
|
153
|
+
ListInputSourcesCommandOutput,
|
|
154
|
+
} from "./commands/ListInputSourcesCommand";
|
|
155
|
+
import {
|
|
156
|
+
ListPoliciesCommandInput,
|
|
157
|
+
ListPoliciesCommandOutput,
|
|
158
|
+
} from "./commands/ListPoliciesCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListReportsCommandInput,
|
|
161
|
+
ListReportsCommandOutput,
|
|
162
|
+
} from "./commands/ListReportsCommand";
|
|
163
|
+
import {
|
|
164
|
+
ListResourcesCommandInput,
|
|
165
|
+
ListResourcesCommandOutput,
|
|
166
|
+
} from "./commands/ListResourcesCommand";
|
|
167
|
+
import {
|
|
168
|
+
ListServiceEventsCommandInput,
|
|
169
|
+
ListServiceEventsCommandOutput,
|
|
170
|
+
} from "./commands/ListServiceEventsCommand";
|
|
171
|
+
import {
|
|
172
|
+
ListServiceFunctionsCommandInput,
|
|
173
|
+
ListServiceFunctionsCommandOutput,
|
|
174
|
+
} from "./commands/ListServiceFunctionsCommand";
|
|
175
|
+
import {
|
|
176
|
+
ListServicesCommandInput,
|
|
177
|
+
ListServicesCommandOutput,
|
|
178
|
+
} from "./commands/ListServicesCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListServiceTopologyEdgesCommandInput,
|
|
181
|
+
ListServiceTopologyEdgesCommandOutput,
|
|
182
|
+
} from "./commands/ListServiceTopologyEdgesCommand";
|
|
183
|
+
import {
|
|
184
|
+
ListSystemEventsCommandInput,
|
|
185
|
+
ListSystemEventsCommandOutput,
|
|
186
|
+
} from "./commands/ListSystemEventsCommand";
|
|
187
|
+
import {
|
|
188
|
+
ListSystemsCommandInput,
|
|
189
|
+
ListSystemsCommandOutput,
|
|
190
|
+
} from "./commands/ListSystemsCommand";
|
|
191
|
+
import {
|
|
192
|
+
ListTagsForResourceCommandInput,
|
|
193
|
+
ListTagsForResourceCommandOutput,
|
|
194
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
195
|
+
import {
|
|
196
|
+
ListUserJourneysCommandInput,
|
|
197
|
+
ListUserJourneysCommandOutput,
|
|
198
|
+
} from "./commands/ListUserJourneysCommand";
|
|
199
|
+
import {
|
|
200
|
+
StartFailureModeAssessmentCommandInput,
|
|
201
|
+
StartFailureModeAssessmentCommandOutput,
|
|
202
|
+
} from "./commands/StartFailureModeAssessmentCommand";
|
|
203
|
+
import {
|
|
204
|
+
TagResourceCommandInput,
|
|
205
|
+
TagResourceCommandOutput,
|
|
206
|
+
} from "./commands/TagResourceCommand";
|
|
207
|
+
import {
|
|
208
|
+
UntagResourceCommandInput,
|
|
209
|
+
UntagResourceCommandOutput,
|
|
210
|
+
} from "./commands/UntagResourceCommand";
|
|
211
|
+
import {
|
|
212
|
+
UpdateAssertionCommandInput,
|
|
213
|
+
UpdateAssertionCommandOutput,
|
|
214
|
+
} from "./commands/UpdateAssertionCommand";
|
|
215
|
+
import {
|
|
216
|
+
UpdateDependencyCommandInput,
|
|
217
|
+
UpdateDependencyCommandOutput,
|
|
218
|
+
} from "./commands/UpdateDependencyCommand";
|
|
219
|
+
import {
|
|
220
|
+
UpdateFailureModeFindingCommandInput,
|
|
221
|
+
UpdateFailureModeFindingCommandOutput,
|
|
222
|
+
} from "./commands/UpdateFailureModeFindingCommand";
|
|
223
|
+
import {
|
|
224
|
+
UpdatePolicyCommandInput,
|
|
225
|
+
UpdatePolicyCommandOutput,
|
|
226
|
+
} from "./commands/UpdatePolicyCommand";
|
|
227
|
+
import {
|
|
228
|
+
UpdateServiceCommandInput,
|
|
229
|
+
UpdateServiceCommandOutput,
|
|
230
|
+
} from "./commands/UpdateServiceCommand";
|
|
231
|
+
import {
|
|
232
|
+
UpdateServiceFunctionCommandInput,
|
|
233
|
+
UpdateServiceFunctionCommandOutput,
|
|
234
|
+
} from "./commands/UpdateServiceFunctionCommand";
|
|
235
|
+
import {
|
|
236
|
+
UpdateSystemCommandInput,
|
|
237
|
+
UpdateSystemCommandOutput,
|
|
238
|
+
} from "./commands/UpdateSystemCommand";
|
|
239
|
+
import {
|
|
240
|
+
UpdateUserJourneyCommandInput,
|
|
241
|
+
UpdateUserJourneyCommandOutput,
|
|
242
|
+
} from "./commands/UpdateUserJourneyCommand";
|
|
243
|
+
import {
|
|
244
|
+
ClientInputEndpointParameters,
|
|
245
|
+
ClientResolvedEndpointParameters,
|
|
246
|
+
EndpointParameters,
|
|
247
|
+
} from "./endpoint/EndpointParameters";
|
|
248
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
249
|
+
export { __Client };
|
|
250
|
+
export type ServiceInputTypes =
|
|
251
|
+
| CreateAssertionCommandInput
|
|
252
|
+
| CreateInputSourceCommandInput
|
|
253
|
+
| CreatePolicyCommandInput
|
|
254
|
+
| CreateReportCommandInput
|
|
255
|
+
| CreateServiceCommandInput
|
|
256
|
+
| CreateServiceFunctionCommandInput
|
|
257
|
+
| CreateServiceFunctionResourcesCommandInput
|
|
258
|
+
| CreateSystemCommandInput
|
|
259
|
+
| CreateUserJourneyCommandInput
|
|
260
|
+
| DeleteAssertionCommandInput
|
|
261
|
+
| DeleteInputSourceCommandInput
|
|
262
|
+
| DeletePolicyCommandInput
|
|
263
|
+
| DeleteServiceCommandInput
|
|
264
|
+
| DeleteServiceFunctionCommandInput
|
|
265
|
+
| DeleteServiceFunctionResourcesCommandInput
|
|
266
|
+
| DeleteSystemCommandInput
|
|
267
|
+
| DeleteUserJourneyCommandInput
|
|
268
|
+
| GetFailureModeFindingCommandInput
|
|
269
|
+
| GetPolicyCommandInput
|
|
270
|
+
| GetServiceCommandInput
|
|
271
|
+
| GetSystemCommandInput
|
|
272
|
+
| GetUserJourneyCommandInput
|
|
273
|
+
| ImportAppCommandInput
|
|
274
|
+
| ImportPolicyCommandInput
|
|
275
|
+
| ListAssertionsCommandInput
|
|
276
|
+
| ListDependenciesCommandInput
|
|
277
|
+
| ListFailureModeAssessmentsCommandInput
|
|
278
|
+
| ListFailureModeFindingsCommandInput
|
|
279
|
+
| ListInputSourcesCommandInput
|
|
280
|
+
| ListPoliciesCommandInput
|
|
281
|
+
| ListReportsCommandInput
|
|
282
|
+
| ListResourcesCommandInput
|
|
283
|
+
| ListServiceEventsCommandInput
|
|
284
|
+
| ListServiceFunctionsCommandInput
|
|
285
|
+
| ListServiceTopologyEdgesCommandInput
|
|
286
|
+
| ListServicesCommandInput
|
|
287
|
+
| ListSystemEventsCommandInput
|
|
288
|
+
| ListSystemsCommandInput
|
|
289
|
+
| ListTagsForResourceCommandInput
|
|
290
|
+
| ListUserJourneysCommandInput
|
|
291
|
+
| StartFailureModeAssessmentCommandInput
|
|
292
|
+
| TagResourceCommandInput
|
|
293
|
+
| UntagResourceCommandInput
|
|
294
|
+
| UpdateAssertionCommandInput
|
|
295
|
+
| UpdateDependencyCommandInput
|
|
296
|
+
| UpdateFailureModeFindingCommandInput
|
|
297
|
+
| UpdatePolicyCommandInput
|
|
298
|
+
| UpdateServiceCommandInput
|
|
299
|
+
| UpdateServiceFunctionCommandInput
|
|
300
|
+
| UpdateSystemCommandInput
|
|
301
|
+
| UpdateUserJourneyCommandInput;
|
|
302
|
+
export type ServiceOutputTypes =
|
|
303
|
+
| CreateAssertionCommandOutput
|
|
304
|
+
| CreateInputSourceCommandOutput
|
|
305
|
+
| CreatePolicyCommandOutput
|
|
306
|
+
| CreateReportCommandOutput
|
|
307
|
+
| CreateServiceCommandOutput
|
|
308
|
+
| CreateServiceFunctionCommandOutput
|
|
309
|
+
| CreateServiceFunctionResourcesCommandOutput
|
|
310
|
+
| CreateSystemCommandOutput
|
|
311
|
+
| CreateUserJourneyCommandOutput
|
|
312
|
+
| DeleteAssertionCommandOutput
|
|
313
|
+
| DeleteInputSourceCommandOutput
|
|
314
|
+
| DeletePolicyCommandOutput
|
|
315
|
+
| DeleteServiceCommandOutput
|
|
316
|
+
| DeleteServiceFunctionCommandOutput
|
|
317
|
+
| DeleteServiceFunctionResourcesCommandOutput
|
|
318
|
+
| DeleteSystemCommandOutput
|
|
319
|
+
| DeleteUserJourneyCommandOutput
|
|
320
|
+
| GetFailureModeFindingCommandOutput
|
|
321
|
+
| GetPolicyCommandOutput
|
|
322
|
+
| GetServiceCommandOutput
|
|
323
|
+
| GetSystemCommandOutput
|
|
324
|
+
| GetUserJourneyCommandOutput
|
|
325
|
+
| ImportAppCommandOutput
|
|
326
|
+
| ImportPolicyCommandOutput
|
|
327
|
+
| ListAssertionsCommandOutput
|
|
328
|
+
| ListDependenciesCommandOutput
|
|
329
|
+
| ListFailureModeAssessmentsCommandOutput
|
|
330
|
+
| ListFailureModeFindingsCommandOutput
|
|
331
|
+
| ListInputSourcesCommandOutput
|
|
332
|
+
| ListPoliciesCommandOutput
|
|
333
|
+
| ListReportsCommandOutput
|
|
334
|
+
| ListResourcesCommandOutput
|
|
335
|
+
| ListServiceEventsCommandOutput
|
|
336
|
+
| ListServiceFunctionsCommandOutput
|
|
337
|
+
| ListServiceTopologyEdgesCommandOutput
|
|
338
|
+
| ListServicesCommandOutput
|
|
339
|
+
| ListSystemEventsCommandOutput
|
|
340
|
+
| ListSystemsCommandOutput
|
|
341
|
+
| ListTagsForResourceCommandOutput
|
|
342
|
+
| ListUserJourneysCommandOutput
|
|
343
|
+
| StartFailureModeAssessmentCommandOutput
|
|
344
|
+
| TagResourceCommandOutput
|
|
345
|
+
| UntagResourceCommandOutput
|
|
346
|
+
| UpdateAssertionCommandOutput
|
|
347
|
+
| UpdateDependencyCommandOutput
|
|
348
|
+
| UpdateFailureModeFindingCommandOutput
|
|
349
|
+
| UpdatePolicyCommandOutput
|
|
350
|
+
| UpdateServiceCommandOutput
|
|
351
|
+
| UpdateServiceFunctionCommandOutput
|
|
352
|
+
| UpdateSystemCommandOutput
|
|
353
|
+
| UpdateUserJourneyCommandOutput;
|
|
354
|
+
export interface ClientDefaults
|
|
355
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
356
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
357
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
358
|
+
urlParser?: __UrlParser;
|
|
359
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
360
|
+
streamCollector?: __StreamCollector;
|
|
361
|
+
base64Decoder?: __Decoder;
|
|
362
|
+
base64Encoder?: __Encoder;
|
|
363
|
+
utf8Decoder?: __Decoder;
|
|
364
|
+
utf8Encoder?: __Encoder;
|
|
365
|
+
runtime?: string;
|
|
366
|
+
disableHostPrefix?: boolean;
|
|
367
|
+
serviceId?: string;
|
|
368
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
369
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
370
|
+
region?: string | __Provider<string>;
|
|
371
|
+
profile?: string;
|
|
372
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
373
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
374
|
+
maxAttempts?: number | __Provider<number>;
|
|
375
|
+
retryMode?: string | __Provider<string>;
|
|
376
|
+
logger?: __Logger;
|
|
377
|
+
extensions?: RuntimeExtension[];
|
|
378
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
379
|
+
}
|
|
380
|
+
export type Resiliencehubv2ClientConfigType = Partial<
|
|
381
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
382
|
+
> &
|
|
383
|
+
ClientDefaults &
|
|
384
|
+
UserAgentInputConfig &
|
|
385
|
+
RetryInputConfig &
|
|
386
|
+
RegionInputConfig &
|
|
387
|
+
HostHeaderInputConfig &
|
|
388
|
+
EndpointInputConfig<EndpointParameters> &
|
|
389
|
+
HttpAuthSchemeInputConfig &
|
|
390
|
+
ClientInputEndpointParameters;
|
|
391
|
+
export interface Resiliencehubv2ClientConfig
|
|
392
|
+
extends Resiliencehubv2ClientConfigType {}
|
|
393
|
+
export type Resiliencehubv2ClientResolvedConfigType =
|
|
394
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
395
|
+
Required<ClientDefaults> &
|
|
396
|
+
RuntimeExtensionsConfig &
|
|
397
|
+
UserAgentResolvedConfig &
|
|
398
|
+
RetryResolvedConfig &
|
|
399
|
+
RegionResolvedConfig &
|
|
400
|
+
HostHeaderResolvedConfig &
|
|
401
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
402
|
+
HttpAuthSchemeResolvedConfig &
|
|
403
|
+
ClientResolvedEndpointParameters;
|
|
404
|
+
export interface Resiliencehubv2ClientResolvedConfig
|
|
405
|
+
extends Resiliencehubv2ClientResolvedConfigType {}
|
|
406
|
+
export declare class Resiliencehubv2Client extends __Client<
|
|
407
|
+
__HttpHandlerOptions,
|
|
408
|
+
ServiceInputTypes,
|
|
409
|
+
ServiceOutputTypes,
|
|
410
|
+
Resiliencehubv2ClientResolvedConfig
|
|
411
|
+
> {
|
|
412
|
+
readonly config: Resiliencehubv2ClientResolvedConfig;
|
|
413
|
+
constructor(
|
|
414
|
+
...[configuration]: __CheckOptionalClientConfig<Resiliencehubv2ClientConfig>
|
|
415
|
+
);
|
|
416
|
+
destroy(): void;
|
|
417
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { Resiliencehubv2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: Resiliencehubv2HttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): Resiliencehubv2HttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: Resiliencehubv2HttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core/httpAuthSchemes";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { Resiliencehubv2ClientResolvedConfig } from "../Resiliencehubv2Client";
|
|
15
|
+
export interface Resiliencehubv2HttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface Resiliencehubv2HttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
Resiliencehubv2HttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultResiliencehubv2HttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: Resiliencehubv2ClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<Resiliencehubv2HttpAuthSchemeParameters>;
|
|
31
|
+
export interface Resiliencehubv2HttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<Resiliencehubv2HttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultResiliencehubv2HttpAuthSchemeProvider: Resiliencehubv2HttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: Resiliencehubv2HttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: Resiliencehubv2HttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateAssertionRequest,
|
|
5
|
+
CreateAssertionResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Resiliencehubv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAssertionCommandInput extends CreateAssertionRequest {}
|
|
15
|
+
export interface CreateAssertionCommandOutput
|
|
16
|
+
extends CreateAssertionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateAssertionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateAssertionCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
CreateAssertionCommandInput,
|
|
23
|
+
CreateAssertionCommandOutput,
|
|
24
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateAssertionCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
CreateAssertionCommandInput,
|
|
32
|
+
CreateAssertionCommandOutput,
|
|
33
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class CreateAssertionCommand extends CreateAssertionCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: CreateAssertionRequest;
|
|
45
|
+
output: CreateAssertionResponse;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: CreateAssertionCommandInput;
|
|
49
|
+
output: CreateAssertionCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateInputSourceRequest,
|
|
5
|
+
CreateInputSourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../Resiliencehubv2Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateInputSourceCommandInput
|
|
15
|
+
extends CreateInputSourceRequest {}
|
|
16
|
+
export interface CreateInputSourceCommandOutput
|
|
17
|
+
extends CreateInputSourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateInputSourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateInputSourceCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateInputSourceCommandInput,
|
|
24
|
+
CreateInputSourceCommandOutput,
|
|
25
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateInputSourceCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateInputSourceCommandInput,
|
|
33
|
+
CreateInputSourceCommandOutput,
|
|
34
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateInputSourceCommand extends CreateInputSourceCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateInputSourceRequest;
|
|
46
|
+
output: CreateInputSourceResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateInputSourceCommandInput;
|
|
50
|
+
output: CreateInputSourceCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../Resiliencehubv2Client";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreatePolicyCommandInput extends CreatePolicyRequest {}
|
|
12
|
+
export interface CreatePolicyCommandOutput
|
|
13
|
+
extends CreatePolicyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreatePolicyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreatePolicyCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreatePolicyCommandInput,
|
|
20
|
+
CreatePolicyCommandOutput,
|
|
21
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreatePolicyCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
CreatePolicyCommandInput,
|
|
29
|
+
CreatePolicyCommandOutput,
|
|
30
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class CreatePolicyCommand extends CreatePolicyCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: CreatePolicyRequest;
|
|
42
|
+
output: CreatePolicyResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: CreatePolicyCommandInput;
|
|
46
|
+
output: CreatePolicyCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateReportRequest, CreateReportResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../Resiliencehubv2Client";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateReportCommandInput extends CreateReportRequest {}
|
|
12
|
+
export interface CreateReportCommandOutput
|
|
13
|
+
extends CreateReportResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateReportCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateReportCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateReportCommandInput,
|
|
20
|
+
CreateReportCommandOutput,
|
|
21
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateReportCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
CreateReportCommandInput,
|
|
29
|
+
CreateReportCommandOutput,
|
|
30
|
+
Resiliencehubv2ClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateReportCommand extends CreateReportCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: CreateReportRequest;
|
|
42
|
+
output: CreateReportResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: CreateReportCommandInput;
|
|
46
|
+
output: CreateReportCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|