@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,1785 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeleteServiceResponse$ = exports.DeleteServiceRequest$ = exports.DeleteServiceFunctionResponse$ = exports.DeleteServiceFunctionResourcesResponse$ = exports.DeleteServiceFunctionResourcesRequest$ = exports.DeleteServiceFunctionRequest$ = exports.DeletePolicyResponse$ = exports.DeletePolicyRequest$ = exports.DeleteInputSourceResponse$ = exports.DeleteInputSourceRequest$ = exports.DeleteAssertionResponse$ = exports.DeleteAssertionRequest$ = exports.DataRecoveryTargets$ = exports.CrossAccountRole$ = exports.CreateUserJourneyResponse$ = exports.CreateUserJourneyRequest$ = exports.CreateSystemResponse$ = exports.CreateSystemRequest$ = exports.CreateServiceResponse$ = exports.CreateServiceRequest$ = exports.CreateServiceFunctionResponse$ = exports.CreateServiceFunctionResourcesResponse$ = exports.CreateServiceFunctionResourcesRequest$ = exports.CreateServiceFunctionRequest$ = exports.CreateReportResponse$ = exports.CreateReportRequest$ = exports.CreatePolicyResponse$ = exports.CreatePolicyRequest$ = exports.CreateInputSourceResponse$ = exports.CreateInputSourceRequest$ = exports.CreateAssertionResponse$ = exports.CreateAssertionRequest$ = exports.AvailabilitySlo$ = exports.AssociatedSystem$ = exports.AssessmentSummary$ = exports.AssessmentCost$ = exports.AssertionUpdatedMetadata$ = exports.AssertionDeletedMetadata$ = exports.AssertionCreatedMetadata$ = exports.Assertion$ = exports.Achievability$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.Resiliencehubv2ServiceException$ = void 0;
|
|
4
|
+
exports.ListServiceFunctionsRequest$ = exports.ListServiceEventsResponse$ = exports.ListServiceEventsRequest$ = exports.ListResourcesResponse$ = exports.ListResourcesRequest$ = exports.ListReportsResponse$ = exports.ListReportsRequest$ = exports.ListPoliciesResponse$ = exports.ListPoliciesRequest$ = exports.ListInputSourcesResponse$ = exports.ListInputSourcesRequest$ = exports.ListFailureModeFindingsResponse$ = exports.ListFailureModeFindingsRequest$ = exports.ListFailureModeAssessmentsResponse$ = exports.ListFailureModeAssessmentsRequest$ = exports.ListDependenciesResponse$ = exports.ListDependenciesRequest$ = exports.ListAssertionsResponse$ = exports.ListAssertionsRequest$ = exports.InputSourceSummary$ = exports.InputSource$ = exports.InfrastructureAndCodeRecommendation$ = exports.ImportPolicyResponse$ = exports.ImportPolicyRequest$ = exports.ImportAppResponse$ = exports.ImportAppRequest$ = exports.GetUserJourneyResponse$ = exports.GetUserJourneyRequest$ = exports.GetSystemResponse$ = exports.GetSystemRequest$ = exports.GetServiceResponse$ = exports.GetServiceRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetFailureModeFindingResponse$ = exports.GetFailureModeFindingRequest$ = exports.FindingSummary$ = exports.Finding$ = exports.FailedReportOutput$ = exports.EventActor$ = exports.EksSource$ = exports.EffectivePolicyValues$ = exports.EdgePropertySummary$ = exports.DisasterRecoverySource$ = exports.DependencySummary$ = exports.DependencyDiscoveryConfig$ = exports.DeleteUserJourneyResponse$ = exports.DeleteUserJourneyRequest$ = exports.DeleteSystemResponse$ = exports.DeleteSystemRequest$ = void 0;
|
|
5
|
+
exports.ServiceSystemAssociatedMetadata$ = exports.ServiceSummary$ = exports.ServiceResourcesDisassociatedMetadata$ = exports.ServiceResourcesAssociatedMetadata$ = exports.ServiceResource$ = exports.ServiceReportConfiguration$ = exports.ServiceReferenceChanges$ = exports.ServiceReference$ = exports.ServicePolicyDisassociatedMetadata$ = exports.ServicePolicyAssociatedMetadata$ = exports.ServiceInputSourcesUpdatedMetadata$ = exports.ServiceFunctionUpdatedMetadata$ = exports.ServiceFunctionResourcesRemovedMetadata$ = exports.ServiceFunctionResourcesAddedMetadata$ = exports.ServiceFunctionDeletedMetadata$ = exports.ServiceFunctionCreatedMetadata$ = exports.ServiceFunction$ = exports.ServiceEventDetails$ = exports.ServiceEvent$ = exports.ServiceDeletedMetadata$ = exports.ServiceCreatedMetadata$ = exports.ServiceAchievabilityUpdatedMetadata$ = exports.Service$ = exports.S3ReportOutputConfiguration$ = exports.S3ReportOutput$ = exports.ResourceTag$ = exports.ResourceDiscoveryStatus$ = exports.Resource$ = exports.ReportGenerationResult$ = exports.QueryRange$ = exports.QueryDataPoint$ = exports.PolicySummary$ = exports.Policy$ = exports.PermissionModel$ = exports.ObservabilityRecommendation$ = exports.MultiRegionTargets$ = exports.MultiAzTargets$ = exports.ListUserJourneysResponse$ = exports.ListUserJourneysRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListSystemsResponse$ = exports.ListSystemsRequest$ = exports.ListSystemEventsResponse$ = exports.ListSystemEventsRequest$ = exports.ListServiceTopologyEdgesResponse$ = exports.ListServiceTopologyEdgesRequest$ = exports.ListServicesResponse$ = exports.ListServicesRequest$ = exports.ListServiceFunctionsResponse$ = void 0;
|
|
6
|
+
exports.ServiceEventMetadata$ = exports.ResourceConfiguration$ = exports.ReportOutputConfiguration$ = exports.ReportOutput$ = exports.ValidationExceptionField$ = exports.UserJourneySummary$ = exports.UserJourneyChanges$ = exports.UserJourney$ = exports.UpdateUserJourneyResponse$ = exports.UpdateUserJourneyRequest$ = exports.UpdateSystemResponse$ = exports.UpdateSystemRequest$ = exports.UpdateServiceResponse$ = exports.UpdateServiceRequest$ = exports.UpdateServiceFunctionResponse$ = exports.UpdateServiceFunctionRequest$ = exports.UpdatePolicyResponse$ = exports.UpdatePolicyRequest$ = exports.UpdateFailureModeFindingResponse$ = exports.UpdateFailureModeFindingRequest$ = exports.UpdateDependencyResponse$ = exports.UpdateDependencyRequest$ = exports.UpdateAssertionResponse$ = exports.UpdateAssertionRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TestingRecommendation$ = exports.TargetSource$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SystemUserJourneyUpdatedMetadata$ = exports.SystemUserJourneyDeletedMetadata$ = exports.SystemUserJourneyCreatedMetadata$ = exports.SystemSummary$ = exports.SystemServiceDisassociatedMetadata$ = exports.SystemServiceAssociatedMetadata$ = exports.SystemPolicyDisassociatedMetadata$ = exports.SystemPolicyAssociatedMetadata$ = exports.SystemEventDetails$ = exports.SystemEvent$ = exports.SystemDeletedMetadata$ = exports.SystemCreatedMetadata$ = exports.System$ = exports.StringChange$ = exports.StartFailureModeAssessmentResponse$ = exports.StartFailureModeAssessmentRequest$ = exports.SloSource$ = exports.ServiceWorkflowUpdatedMetadata$ = exports.ServiceTopologyEdgeSummary$ = exports.ServiceSystemDisassociatedMetadata$ = void 0;
|
|
7
|
+
exports.UpdateServiceFunction$ = exports.UpdateService$ = exports.UpdatePolicy$ = exports.UpdateFailureModeFinding$ = exports.UpdateDependency$ = exports.UpdateAssertion$ = exports.UntagResource$ = exports.TagResource$ = exports.StartFailureModeAssessment$ = exports.ListUserJourneys$ = exports.ListTagsForResource$ = exports.ListSystems$ = exports.ListSystemEvents$ = exports.ListServiceTopologyEdges$ = exports.ListServices$ = exports.ListServiceFunctions$ = exports.ListServiceEvents$ = exports.ListResources$ = exports.ListReports$ = exports.ListPolicies$ = exports.ListInputSources$ = exports.ListFailureModeFindings$ = exports.ListFailureModeAssessments$ = exports.ListDependencies$ = exports.ListAssertions$ = exports.ImportPolicy$ = exports.ImportApp$ = exports.GetUserJourney$ = exports.GetSystem$ = exports.GetService$ = exports.GetPolicy$ = exports.GetFailureModeFinding$ = exports.DeleteUserJourney$ = exports.DeleteSystem$ = exports.DeleteServiceFunctionResources$ = exports.DeleteServiceFunction$ = exports.DeleteService$ = exports.DeletePolicy$ = exports.DeleteInputSource$ = exports.DeleteAssertion$ = exports.CreateUserJourney$ = exports.CreateSystem$ = exports.CreateServiceFunctionResources$ = exports.CreateServiceFunction$ = exports.CreateService$ = exports.CreateReport$ = exports.CreatePolicy$ = exports.CreateInputSource$ = exports.CreateAssertion$ = exports.SystemEventMetadata$ = void 0;
|
|
8
|
+
exports.UpdateUserJourney$ = exports.UpdateSystem$ = void 0;
|
|
9
|
+
const _A = "Achievability";
|
|
10
|
+
const _AC = "AssessmentCost";
|
|
11
|
+
const _ACM = "AssertionCreatedMetadata";
|
|
12
|
+
const _ADE = "AccessDeniedException";
|
|
13
|
+
const _ADM = "AssertionDeletedMetadata";
|
|
14
|
+
const _AL = "AssertionList";
|
|
15
|
+
const _AS = "AssessmentSummary";
|
|
16
|
+
const _ASL = "AssessmentSummaryList";
|
|
17
|
+
const _ASLs = "AssociatedSystemList";
|
|
18
|
+
const _ASs = "AssociatedSystem";
|
|
19
|
+
const _ASv = "AvailabilitySlo";
|
|
20
|
+
const _AUM = "AssertionUpdatedMetadata";
|
|
21
|
+
const _As = "Assertion";
|
|
22
|
+
const _CA = "CreateAssertion";
|
|
23
|
+
const _CAR = "CreateAssertionRequest";
|
|
24
|
+
const _CARL = "CrossAccountRoleList";
|
|
25
|
+
const _CARr = "CreateAssertionResponse";
|
|
26
|
+
const _CARro = "CrossAccountRole";
|
|
27
|
+
const _CE = "ConflictException";
|
|
28
|
+
const _CIS = "CreateInputSource";
|
|
29
|
+
const _CISR = "CreateInputSourceRequest";
|
|
30
|
+
const _CISRr = "CreateInputSourceResponse";
|
|
31
|
+
const _CP = "CreatePolicy";
|
|
32
|
+
const _CPR = "CreatePolicyRequest";
|
|
33
|
+
const _CPRr = "CreatePolicyResponse";
|
|
34
|
+
const _CR = "CreateReport";
|
|
35
|
+
const _CRR = "CreateReportRequest";
|
|
36
|
+
const _CRRr = "CreateReportResponse";
|
|
37
|
+
const _CS = "CreateService";
|
|
38
|
+
const _CSF = "CreateServiceFunction";
|
|
39
|
+
const _CSFR = "CreateServiceFunctionRequest";
|
|
40
|
+
const _CSFRR = "CreateServiceFunctionResourcesRequest";
|
|
41
|
+
const _CSFRRr = "CreateServiceFunctionResourcesResponse";
|
|
42
|
+
const _CSFRr = "CreateServiceFunctionResponse";
|
|
43
|
+
const _CSFRre = "CreateServiceFunctionResources";
|
|
44
|
+
const _CSR = "CreateServiceRequest";
|
|
45
|
+
const _CSRr = "CreateServiceResponse";
|
|
46
|
+
const _CSRre = "CreateSystemRequest";
|
|
47
|
+
const _CSRrea = "CreateSystemResponse";
|
|
48
|
+
const _CSr = "CreateSystem";
|
|
49
|
+
const _CUJ = "CreateUserJourney";
|
|
50
|
+
const _CUJR = "CreateUserJourneyRequest";
|
|
51
|
+
const _CUJRr = "CreateUserJourneyResponse";
|
|
52
|
+
const _DA = "DeleteAssertion";
|
|
53
|
+
const _DAR = "DeleteAssertionRequest";
|
|
54
|
+
const _DARe = "DeleteAssertionResponse";
|
|
55
|
+
const _DDC = "DependencyDiscoveryConfig";
|
|
56
|
+
const _DIS = "DeleteInputSource";
|
|
57
|
+
const _DISR = "DeleteInputSourceRequest";
|
|
58
|
+
const _DISRe = "DeleteInputSourceResponse";
|
|
59
|
+
const _DP = "DeletePolicy";
|
|
60
|
+
const _DPR = "DeletePolicyRequest";
|
|
61
|
+
const _DPRe = "DeletePolicyResponse";
|
|
62
|
+
const _DRS = "DisasterRecoverySource";
|
|
63
|
+
const _DRT = "DataRecoveryTargets";
|
|
64
|
+
const _DS = "DependencySummary";
|
|
65
|
+
const _DSF = "DeleteServiceFunction";
|
|
66
|
+
const _DSFR = "DeleteServiceFunctionRequest";
|
|
67
|
+
const _DSFRR = "DeleteServiceFunctionResourcesRequest";
|
|
68
|
+
const _DSFRRe = "DeleteServiceFunctionResourcesResponse";
|
|
69
|
+
const _DSFRe = "DeleteServiceFunctionResponse";
|
|
70
|
+
const _DSFRel = "DeleteServiceFunctionResources";
|
|
71
|
+
const _DSL = "DependencySummaryList";
|
|
72
|
+
const _DSR = "DeleteServiceRequest";
|
|
73
|
+
const _DSRe = "DeleteServiceResponse";
|
|
74
|
+
const _DSRel = "DeleteSystemRequest";
|
|
75
|
+
const _DSRele = "DeleteSystemResponse";
|
|
76
|
+
const _DSe = "DeleteService";
|
|
77
|
+
const _DSel = "DeleteSystem";
|
|
78
|
+
const _DUJ = "DeleteUserJourney";
|
|
79
|
+
const _DUJR = "DeleteUserJourneyRequest";
|
|
80
|
+
const _DUJRe = "DeleteUserJourneyResponse";
|
|
81
|
+
const _EA = "EventActor";
|
|
82
|
+
const _EPL = "EdgePropertyList";
|
|
83
|
+
const _EPS = "EdgePropertySummary";
|
|
84
|
+
const _EPV = "EffectivePolicyValues";
|
|
85
|
+
const _ES = "EksSource";
|
|
86
|
+
const _F = "Finding";
|
|
87
|
+
const _FL = "FindingsList";
|
|
88
|
+
const _FRO = "FailedReportOutput";
|
|
89
|
+
const _FS = "FindingSummary";
|
|
90
|
+
const _GFMF = "GetFailureModeFinding";
|
|
91
|
+
const _GFMFR = "GetFailureModeFindingRequest";
|
|
92
|
+
const _GFMFRe = "GetFailureModeFindingResponse";
|
|
93
|
+
const _GP = "GetPolicy";
|
|
94
|
+
const _GPR = "GetPolicyRequest";
|
|
95
|
+
const _GPRe = "GetPolicyResponse";
|
|
96
|
+
const _GS = "GetService";
|
|
97
|
+
const _GSR = "GetServiceRequest";
|
|
98
|
+
const _GSRe = "GetServiceResponse";
|
|
99
|
+
const _GSRet = "GetSystemRequest";
|
|
100
|
+
const _GSRety = "GetSystemResponse";
|
|
101
|
+
const _GSe = "GetSystem";
|
|
102
|
+
const _GUJ = "GetUserJourney";
|
|
103
|
+
const _GUJR = "GetUserJourneyRequest";
|
|
104
|
+
const _GUJRe = "GetUserJourneyResponse";
|
|
105
|
+
const _IA = "ImportApp";
|
|
106
|
+
const _IACR = "InfrastructureAndCodeRecommendation";
|
|
107
|
+
const _IACRL = "InfrastructureAndCodeRecommendationsList";
|
|
108
|
+
const _IAR = "ImportAppRequest";
|
|
109
|
+
const _IARm = "ImportAppResponse";
|
|
110
|
+
const _IP = "ImportPolicy";
|
|
111
|
+
const _IPR = "ImportPolicyRequest";
|
|
112
|
+
const _IPRm = "ImportPolicyResponse";
|
|
113
|
+
const _IS = "InputSource";
|
|
114
|
+
const _ISE = "InternalServerException";
|
|
115
|
+
const _ISS = "InputSourceSummary";
|
|
116
|
+
const _ISSL = "InputSourceSummaryList";
|
|
117
|
+
const _LA = "ListAssertions";
|
|
118
|
+
const _LAR = "ListAssertionsRequest";
|
|
119
|
+
const _LARi = "ListAssertionsResponse";
|
|
120
|
+
const _LD = "ListDependencies";
|
|
121
|
+
const _LDR = "ListDependenciesRequest";
|
|
122
|
+
const _LDRi = "ListDependenciesResponse";
|
|
123
|
+
const _LFMA = "ListFailureModeAssessments";
|
|
124
|
+
const _LFMAR = "ListFailureModeAssessmentsRequest";
|
|
125
|
+
const _LFMARi = "ListFailureModeAssessmentsResponse";
|
|
126
|
+
const _LFMF = "ListFailureModeFindings";
|
|
127
|
+
const _LFMFR = "ListFailureModeFindingsRequest";
|
|
128
|
+
const _LFMFRi = "ListFailureModeFindingsResponse";
|
|
129
|
+
const _LIS = "ListInputSources";
|
|
130
|
+
const _LISR = "ListInputSourcesRequest";
|
|
131
|
+
const _LISRi = "ListInputSourcesResponse";
|
|
132
|
+
const _LP = "ListPolicies";
|
|
133
|
+
const _LPR = "ListPoliciesRequest";
|
|
134
|
+
const _LPRi = "ListPoliciesResponse";
|
|
135
|
+
const _LR = "ListReports";
|
|
136
|
+
const _LRR = "ListReportsRequest";
|
|
137
|
+
const _LRRi = "ListReportsResponse";
|
|
138
|
+
const _LRRis = "ListResourcesRequest";
|
|
139
|
+
const _LRRist = "ListResourcesResponse";
|
|
140
|
+
const _LRi = "ListResources";
|
|
141
|
+
const _LS = "ListServices";
|
|
142
|
+
const _LSE = "ListServiceEvents";
|
|
143
|
+
const _LSER = "ListServiceEventsRequest";
|
|
144
|
+
const _LSERi = "ListServiceEventsResponse";
|
|
145
|
+
const _LSERis = "ListSystemEventsRequest";
|
|
146
|
+
const _LSERist = "ListSystemEventsResponse";
|
|
147
|
+
const _LSEi = "ListSystemEvents";
|
|
148
|
+
const _LSF = "ListServiceFunctions";
|
|
149
|
+
const _LSFR = "ListServiceFunctionsRequest";
|
|
150
|
+
const _LSFRi = "ListServiceFunctionsResponse";
|
|
151
|
+
const _LSR = "ListServicesRequest";
|
|
152
|
+
const _LSRi = "ListServicesResponse";
|
|
153
|
+
const _LSRis = "ListSystemsRequest";
|
|
154
|
+
const _LSRist = "ListSystemsResponse";
|
|
155
|
+
const _LSTE = "ListServiceTopologyEdges";
|
|
156
|
+
const _LSTER = "ListServiceTopologyEdgesRequest";
|
|
157
|
+
const _LSTERi = "ListServiceTopologyEdgesResponse";
|
|
158
|
+
const _LSi = "ListSystems";
|
|
159
|
+
const _LTFR = "ListTagsForResource";
|
|
160
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
161
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
162
|
+
const _LUJ = "ListUserJourneys";
|
|
163
|
+
const _LUJR = "ListUserJourneysRequest";
|
|
164
|
+
const _LUJRi = "ListUserJourneysResponse";
|
|
165
|
+
const _MAT = "MultiAzTargets";
|
|
166
|
+
const _MRT = "MultiRegionTargets";
|
|
167
|
+
const _OR = "ObservabilityRecommendation";
|
|
168
|
+
const _ORL = "ObservabilityRecommendationsList";
|
|
169
|
+
const _P = "Policy";
|
|
170
|
+
const _PM = "PermissionModel";
|
|
171
|
+
const _PS = "PolicySummary";
|
|
172
|
+
const _PSL = "PolicySummaryList";
|
|
173
|
+
const _QDP = "QueryDataPoint";
|
|
174
|
+
const _QDPL = "QueryDataPointList";
|
|
175
|
+
const _QR = "QueryRange";
|
|
176
|
+
const _R = "Resource";
|
|
177
|
+
const _RC = "ResourceConfiguration";
|
|
178
|
+
const _RDS = "ResourceDiscoveryStatus";
|
|
179
|
+
const _RGR = "ReportGenerationResult";
|
|
180
|
+
const _RGRL = "ReportGenerationResultList";
|
|
181
|
+
const _RNFE = "ResourceNotFoundException";
|
|
182
|
+
const _RO = "ReportOutput";
|
|
183
|
+
const _ROC = "ReportOutputConfiguration";
|
|
184
|
+
const _ROCL = "ReportOutputConfigurationList";
|
|
185
|
+
const _RT = "ResourceTag";
|
|
186
|
+
const _RTL = "ResourceTagList";
|
|
187
|
+
const _S = "Service";
|
|
188
|
+
const _SAUM = "ServiceAchievabilityUpdatedMetadata";
|
|
189
|
+
const _SC = "StringChange";
|
|
190
|
+
const _SCM = "ServiceCreatedMetadata";
|
|
191
|
+
const _SCMy = "SystemCreatedMetadata";
|
|
192
|
+
const _SDM = "ServiceDeletedMetadata";
|
|
193
|
+
const _SDMy = "SystemDeletedMetadata";
|
|
194
|
+
const _SE = "ServiceEvent";
|
|
195
|
+
const _SED = "ServiceEventDetails";
|
|
196
|
+
const _SEDy = "SystemEventDetails";
|
|
197
|
+
const _SEL = "ServiceEventList";
|
|
198
|
+
const _SELy = "SystemEventList";
|
|
199
|
+
const _SEM = "ServiceEventMetadata";
|
|
200
|
+
const _SEMy = "SystemEventMetadata";
|
|
201
|
+
const _SEy = "SystemEvent";
|
|
202
|
+
const _SF = "ServiceFunction";
|
|
203
|
+
const _SFCM = "ServiceFunctionCreatedMetadata";
|
|
204
|
+
const _SFDM = "ServiceFunctionDeletedMetadata";
|
|
205
|
+
const _SFL = "ServiceFunctionList";
|
|
206
|
+
const _SFMA = "StartFailureModeAssessment";
|
|
207
|
+
const _SFMAR = "StartFailureModeAssessmentRequest";
|
|
208
|
+
const _SFMARt = "StartFailureModeAssessmentResponse";
|
|
209
|
+
const _SFRAM = "ServiceFunctionResourcesAddedMetadata";
|
|
210
|
+
const _SFRRM = "ServiceFunctionResourcesRemovedMetadata";
|
|
211
|
+
const _SFUM = "ServiceFunctionUpdatedMetadata";
|
|
212
|
+
const _SISUM = "ServiceInputSourcesUpdatedMetadata";
|
|
213
|
+
const _SPAM = "ServicePolicyAssociatedMetadata";
|
|
214
|
+
const _SPAMy = "SystemPolicyAssociatedMetadata";
|
|
215
|
+
const _SPDM = "ServicePolicyDisassociatedMetadata";
|
|
216
|
+
const _SPDMy = "SystemPolicyDisassociatedMetadata";
|
|
217
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
218
|
+
const _SR = "ServiceReference";
|
|
219
|
+
const _SRAM = "ServiceResourcesAssociatedMetadata";
|
|
220
|
+
const _SRC = "ServiceReferenceChanges";
|
|
221
|
+
const _SRCe = "ServiceReportConfiguration";
|
|
222
|
+
const _SRDM = "ServiceResourcesDisassociatedMetadata";
|
|
223
|
+
const _SRL = "ServiceReferenceList";
|
|
224
|
+
const _SRLe = "ServiceResourceList";
|
|
225
|
+
const _SRO = "S3ReportOutput";
|
|
226
|
+
const _SROC = "S3ReportOutputConfiguration";
|
|
227
|
+
const _SRe = "ServiceResource";
|
|
228
|
+
const _SS = "ServiceSummary";
|
|
229
|
+
const _SSAM = "ServiceSystemAssociatedMetadata";
|
|
230
|
+
const _SSAMy = "SystemServiceAssociatedMetadata";
|
|
231
|
+
const _SSDM = "ServiceSystemDisassociatedMetadata";
|
|
232
|
+
const _SSDMy = "SystemServiceDisassociatedMetadata";
|
|
233
|
+
const _SSL = "ServiceSummaryList";
|
|
234
|
+
const _SSLy = "SystemSummaryList";
|
|
235
|
+
const _SSl = "SloSource";
|
|
236
|
+
const _SSy = "SystemSummary";
|
|
237
|
+
const _STES = "ServiceTopologyEdgeSummary";
|
|
238
|
+
const _STESL = "ServiceTopologyEdgeSummaryList";
|
|
239
|
+
const _SUJCM = "SystemUserJourneyCreatedMetadata";
|
|
240
|
+
const _SUJDM = "SystemUserJourneyDeletedMetadata";
|
|
241
|
+
const _SUJUM = "SystemUserJourneyUpdatedMetadata";
|
|
242
|
+
const _SWUM = "ServiceWorkflowUpdatedMetadata";
|
|
243
|
+
const _Sy = "System";
|
|
244
|
+
const _TE = "ThrottlingException";
|
|
245
|
+
const _TKL = "TagKeyList";
|
|
246
|
+
const _TM = "TagMap";
|
|
247
|
+
const _TR = "TestingRecommendation";
|
|
248
|
+
const _TRL = "TestingRecommendationsList";
|
|
249
|
+
const _TRR = "TagResourceRequest";
|
|
250
|
+
const _TRRa = "TagResourceResponse";
|
|
251
|
+
const _TRa = "TagResource";
|
|
252
|
+
const _TS = "TargetSource";
|
|
253
|
+
const _UA = "UpdateAssertion";
|
|
254
|
+
const _UAR = "UpdateAssertionRequest";
|
|
255
|
+
const _UARp = "UpdateAssertionResponse";
|
|
256
|
+
const _UD = "UpdateDependency";
|
|
257
|
+
const _UDR = "UpdateDependencyRequest";
|
|
258
|
+
const _UDRp = "UpdateDependencyResponse";
|
|
259
|
+
const _UFMF = "UpdateFailureModeFinding";
|
|
260
|
+
const _UFMFR = "UpdateFailureModeFindingRequest";
|
|
261
|
+
const _UFMFRp = "UpdateFailureModeFindingResponse";
|
|
262
|
+
const _UJ = "UserJourney";
|
|
263
|
+
const _UJC = "UserJourneyChanges";
|
|
264
|
+
const _UJS = "UserJourneySummary";
|
|
265
|
+
const _UJSL = "UserJourneySummaryList";
|
|
266
|
+
const _UP = "UpdatePolicy";
|
|
267
|
+
const _UPR = "UpdatePolicyRequest";
|
|
268
|
+
const _UPRp = "UpdatePolicyResponse";
|
|
269
|
+
const _UR = "UntagResource";
|
|
270
|
+
const _URR = "UntagResourceRequest";
|
|
271
|
+
const _URRn = "UntagResourceResponse";
|
|
272
|
+
const _US = "UpdateService";
|
|
273
|
+
const _USF = "UpdateServiceFunction";
|
|
274
|
+
const _USFR = "UpdateServiceFunctionRequest";
|
|
275
|
+
const _USFRp = "UpdateServiceFunctionResponse";
|
|
276
|
+
const _USR = "UpdateServiceRequest";
|
|
277
|
+
const _USRp = "UpdateServiceResponse";
|
|
278
|
+
const _USRpd = "UpdateSystemRequest";
|
|
279
|
+
const _USRpda = "UpdateSystemResponse";
|
|
280
|
+
const _USp = "UpdateSystem";
|
|
281
|
+
const _UUJ = "UpdateUserJourney";
|
|
282
|
+
const _UUJR = "UpdateUserJourneyRequest";
|
|
283
|
+
const _UUJRp = "UpdateUserJourneyResponse";
|
|
284
|
+
const _VE = "ValidationException";
|
|
285
|
+
const _VEF = "ValidationExceptionField";
|
|
286
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
287
|
+
const _a = "amount";
|
|
288
|
+
const _aAI = "awsAccountId";
|
|
289
|
+
const _aC = "assessmentCost";
|
|
290
|
+
const _aCs = "assertionCreated";
|
|
291
|
+
const _aD = "assertionDeleted";
|
|
292
|
+
const _aI = "assertionId";
|
|
293
|
+
const _aIc = "accountId";
|
|
294
|
+
const _aIs = "assessmentId";
|
|
295
|
+
const _aN = "assertionName";
|
|
296
|
+
const _aR = "awsRegion";
|
|
297
|
+
const _aS = "availabilitySlo";
|
|
298
|
+
const _aSAD = "associatedServicesAtDeletion";
|
|
299
|
+
const _aSC = "associatedServiceCount";
|
|
300
|
+
const _aSs = "assessmentStatus";
|
|
301
|
+
const _aSss = "assessmentStep";
|
|
302
|
+
const _aSsse = "assessmentSummaries";
|
|
303
|
+
const _aSsso = "associatedSystems";
|
|
304
|
+
const _aSssoc = "associatedServices";
|
|
305
|
+
const _aU = "assertionUpdated";
|
|
306
|
+
const _ac = "achievability";
|
|
307
|
+
const _act = "actor";
|
|
308
|
+
const _ad = "added";
|
|
309
|
+
const _as = "assertion";
|
|
310
|
+
const _ass = "assertions";
|
|
311
|
+
const _bAUC = "billableAssessmentUnitCount";
|
|
312
|
+
const _bO = "bucketOwner";
|
|
313
|
+
const _bP = "bucketPath";
|
|
314
|
+
const _c = "client";
|
|
315
|
+
const _cA = "createdAt";
|
|
316
|
+
const _cAR = "crossAccountRoles";
|
|
317
|
+
const _cARA = "crossAccountRoleArn";
|
|
318
|
+
const _cAl = "clusterArn";
|
|
319
|
+
const _cSA = "cfnStackArn";
|
|
320
|
+
const _cT = "clientToken";
|
|
321
|
+
const _ch = "changes";
|
|
322
|
+
const _co = "comment";
|
|
323
|
+
const _cr = "criticality";
|
|
324
|
+
const _cu = "currency";
|
|
325
|
+
const _d = "description";
|
|
326
|
+
const _dD = "dependencyDiscovery";
|
|
327
|
+
const _dFSU = "designFileS3Url";
|
|
328
|
+
const _dI = "dependencyId";
|
|
329
|
+
const _dN = "dependencyName";
|
|
330
|
+
const _dNn = "dnsName";
|
|
331
|
+
const _dP = "dataPoints";
|
|
332
|
+
const _dR = "dataRecovery";
|
|
333
|
+
const _dRA = "disasterRecoveryApproach";
|
|
334
|
+
const _dRI = "destinationResourceIdentifier";
|
|
335
|
+
const _dRTBB = "dataRecoveryTimeBetweenBackups";
|
|
336
|
+
const _dS = "dependencySummaries";
|
|
337
|
+
const _e = "error";
|
|
338
|
+
const _eA = "endedAt";
|
|
339
|
+
const _eAC = "estimatedAssessmentCost";
|
|
340
|
+
const _eC = "errorCode";
|
|
341
|
+
const _eD = "eventDetails";
|
|
342
|
+
const _eI = "externalId";
|
|
343
|
+
const _eIv = "eventId";
|
|
344
|
+
const _eM = "errorMessage";
|
|
345
|
+
const _eMv = "eventMetadata";
|
|
346
|
+
const _ePV = "effectivePolicyValues";
|
|
347
|
+
const _eT = "eventTypes";
|
|
348
|
+
const _eTn = "endTime";
|
|
349
|
+
const _eTv = "eventType";
|
|
350
|
+
const _ek = "eks";
|
|
351
|
+
const _ev = "events";
|
|
352
|
+
const _f = "finding";
|
|
353
|
+
const _fC = "failureCategory";
|
|
354
|
+
const _fI = "findingId";
|
|
355
|
+
const _fL = "fieldList";
|
|
356
|
+
const _fRO = "failedReportOutput";
|
|
357
|
+
const _fS = "findingsSummary";
|
|
358
|
+
const _g = "granularity";
|
|
359
|
+
const _h = "http";
|
|
360
|
+
const _hE = "httpError";
|
|
361
|
+
const _hQ = "httpQuery";
|
|
362
|
+
const _i = "identifier";
|
|
363
|
+
const _iACR = "infrastructureAndCodeRecommendations";
|
|
364
|
+
const _iRN = "invokerRoleName";
|
|
365
|
+
const _iS = "inputSource";
|
|
366
|
+
const _iSI = "inputSourceId";
|
|
367
|
+
const _iSS = "inputSourceSummaries";
|
|
368
|
+
const _jD = "journeyDescription";
|
|
369
|
+
const _k = "key";
|
|
370
|
+
const _kKI = "kmsKeyId";
|
|
371
|
+
const _l = "location";
|
|
372
|
+
const _lDT = "lastDetectedTime";
|
|
373
|
+
const _lRA = "lastRunAt";
|
|
374
|
+
const _la = "label";
|
|
375
|
+
const _m = "message";
|
|
376
|
+
const _mA = "multiAz";
|
|
377
|
+
const _mADA = "multiAzDrApproach";
|
|
378
|
+
const _mADRA = "multiAzDisasterRecoveryApproach";
|
|
379
|
+
const _mAR = "multiAzRto";
|
|
380
|
+
const _mARR = "multiAzRtoRpo";
|
|
381
|
+
const _mARu = "multiAzRpo";
|
|
382
|
+
const _mR = "multiRegion";
|
|
383
|
+
const _mRDA = "multiRegionDrApproach";
|
|
384
|
+
const _mRDRA = "multiRegionDisasterRecoveryApproach";
|
|
385
|
+
const _mRR = "multiRegionRto";
|
|
386
|
+
const _mRRR = "multiRegionRtoRpo";
|
|
387
|
+
const _mRRu = "multiRegionRpo";
|
|
388
|
+
const _mRa = "maxResults";
|
|
389
|
+
const _n = "name";
|
|
390
|
+
const _nT = "nextToken";
|
|
391
|
+
const _nV = "newValue";
|
|
392
|
+
const _na = "namespaces";
|
|
393
|
+
const _oFC = "openFindingsCount";
|
|
394
|
+
const _oI = "ouId";
|
|
395
|
+
const _oIr = "organizationId";
|
|
396
|
+
const _oR = "observabilityRecommendations";
|
|
397
|
+
const _oV = "oldValue";
|
|
398
|
+
const _p = "policy";
|
|
399
|
+
const _pA = "policyArn";
|
|
400
|
+
const _pC = "policyComponent";
|
|
401
|
+
const _pI = "principalId";
|
|
402
|
+
const _pM = "permissionModel";
|
|
403
|
+
const _pN = "policyName";
|
|
404
|
+
const _pS = "policySummaries";
|
|
405
|
+
const _pr = "provider";
|
|
406
|
+
const _pro = "properties";
|
|
407
|
+
const _qC = "queryCount";
|
|
408
|
+
const _qR = "queryRange";
|
|
409
|
+
const _qRET = "queryRangeEndTime";
|
|
410
|
+
const _qRG = "queryRangeGranularity";
|
|
411
|
+
const _qRST = "queryRangeStartTime";
|
|
412
|
+
const _r = "reason";
|
|
413
|
+
const _rA = "resourceArn";
|
|
414
|
+
const _rAS = "retryAfterSeconds";
|
|
415
|
+
const _rAe = "rerunAssessment";
|
|
416
|
+
const _rAes = "resourcesAdded";
|
|
417
|
+
const _rC = "resourceConfiguration";
|
|
418
|
+
const _rCe = "reportConfiguration";
|
|
419
|
+
const _rCes = "resourceCount";
|
|
420
|
+
const _rD = "resourceDiscovery";
|
|
421
|
+
const _rFC = "resolvedFindingsCount";
|
|
422
|
+
const _rGR = "reportGenerationResult";
|
|
423
|
+
const _rGRe = "reportGenerationResults";
|
|
424
|
+
const _rI = "resourceId";
|
|
425
|
+
const _rIM = "rtoInMinutes";
|
|
426
|
+
const _rIMp = "rpoInMinutes";
|
|
427
|
+
const _rIe = "resourceIdentifier";
|
|
428
|
+
const _rO = "reportOutput";
|
|
429
|
+
const _rOe = "reportOutputs";
|
|
430
|
+
const _rR = "resourcesRemoved";
|
|
431
|
+
const _rT = "resourceType";
|
|
432
|
+
const _rTe = "reportType";
|
|
433
|
+
const _rTes = "resourceTags";
|
|
434
|
+
const _rTeso = "resourceTypes";
|
|
435
|
+
const _re = "resources";
|
|
436
|
+
const _rea = "reasoning";
|
|
437
|
+
const _reg = "regions";
|
|
438
|
+
const _rem = "removed";
|
|
439
|
+
const _res = "resource";
|
|
440
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.resiliencehubv2";
|
|
441
|
+
const _sA = "serviceArn";
|
|
442
|
+
const _sAU = "serviceAchievabilityUpdated";
|
|
443
|
+
const _sAt = "startedAt";
|
|
444
|
+
const _sAy = "systemArn";
|
|
445
|
+
const _sC = "suggestedChanges";
|
|
446
|
+
const _sCe = "servicesCount";
|
|
447
|
+
const _sCer = "serviceCreated";
|
|
448
|
+
const _sCy = "systemCreated";
|
|
449
|
+
const _sD = "serviceDeleted";
|
|
450
|
+
const _sDy = "systemDeleted";
|
|
451
|
+
const _sE = "sharingEnabled";
|
|
452
|
+
const _sF = "serviceFunction";
|
|
453
|
+
const _sFC = "serviceFunctionCreated";
|
|
454
|
+
const _sFD = "serviceFunctionDeleted";
|
|
455
|
+
const _sFI = "serviceFunctionId";
|
|
456
|
+
const _sFN = "serviceFunctionName";
|
|
457
|
+
const _sFRA = "serviceFunctionResourcesAdded";
|
|
458
|
+
const _sFRR = "serviceFunctionResourcesRemoved";
|
|
459
|
+
const _sFU = "serviceFunctionUpdated";
|
|
460
|
+
const _sFe = "serviceFunctions";
|
|
461
|
+
const _sI = "serviceId";
|
|
462
|
+
const _sISU = "serviceInputSourcesUpdated";
|
|
463
|
+
const _sIy = "systemId";
|
|
464
|
+
const _sMAR = "skipManuallyAddedResources";
|
|
465
|
+
const _sN = "systemName";
|
|
466
|
+
const _sNe = "serviceName";
|
|
467
|
+
const _sOK = "s3ObjectKey";
|
|
468
|
+
const _sPA = "servicePolicyAssociated";
|
|
469
|
+
const _sPAy = "systemPolicyAssociated";
|
|
470
|
+
const _sPD = "servicePolicyDisassociated";
|
|
471
|
+
const _sPDy = "systemPolicyDisassociated";
|
|
472
|
+
const _sR = "sourceRegions";
|
|
473
|
+
const _sRA = "serviceResourcesAssociated";
|
|
474
|
+
const _sRD = "serviceResourcesDisassociated";
|
|
475
|
+
const _sRI = "sourceResourceIdentifier";
|
|
476
|
+
const _sRO = "s3ReportOutput";
|
|
477
|
+
const _sRe = "serviceResources";
|
|
478
|
+
const _sS = "serviceSummaries";
|
|
479
|
+
const _sSA = "serviceSystemAssociated";
|
|
480
|
+
const _sSAy = "systemServiceAssociated";
|
|
481
|
+
const _sSD = "serviceSystemDisassociated";
|
|
482
|
+
const _sSDy = "systemServiceDisassociated";
|
|
483
|
+
const _sSy = "systemSummaries";
|
|
484
|
+
const _sT = "startTime";
|
|
485
|
+
const _sTES = "serviceTopologyEdgeSummaries";
|
|
486
|
+
const _sUJC = "systemUserJourneyCreated";
|
|
487
|
+
const _sUJD = "systemUserJourneyDeleted";
|
|
488
|
+
const _sUJU = "systemUserJourneyUpdated";
|
|
489
|
+
const _sWU = "serviceWorkflowUpdated";
|
|
490
|
+
const _s_ = "s3";
|
|
491
|
+
const _se = "server";
|
|
492
|
+
const _ser = "service";
|
|
493
|
+
const _sev = "severity";
|
|
494
|
+
const _so = "source";
|
|
495
|
+
const _st = "status";
|
|
496
|
+
const _sy = "system";
|
|
497
|
+
const _t = "text";
|
|
498
|
+
const _tBBIM = "timeBetweenBackupsInMinutes";
|
|
499
|
+
const _tF = "totalFindings";
|
|
500
|
+
const _tK = "tagKeys";
|
|
501
|
+
const _tR = "testingRecommendations";
|
|
502
|
+
const _tSFU = "tfStateFileUrl";
|
|
503
|
+
const _tT = "topologyType";
|
|
504
|
+
const _ta = "target";
|
|
505
|
+
const _tag = "tags";
|
|
506
|
+
const _ti = "timestamp";
|
|
507
|
+
const _tit = "title";
|
|
508
|
+
const _ty = "type";
|
|
509
|
+
const _uA = "updatedAt";
|
|
510
|
+
const _uJ = "userJourney";
|
|
511
|
+
const _uJA = "userJourneysAffected";
|
|
512
|
+
const _uJC = "userJourneysCount";
|
|
513
|
+
const _uJI = "userJourneyIds";
|
|
514
|
+
const _uJIs = "userJourneyId";
|
|
515
|
+
const _uJN = "userJourneyName";
|
|
516
|
+
const _uJS = "userJourneySummaries";
|
|
517
|
+
const _uJs = "userJourneys";
|
|
518
|
+
const _uN = "userName";
|
|
519
|
+
const _v = "value";
|
|
520
|
+
const _vAA = "v1AppArn";
|
|
521
|
+
const _vPA = "v1PolicyArn";
|
|
522
|
+
const _va = "values";
|
|
523
|
+
const n0 = "com.amazonaws.resiliencehubv2";
|
|
524
|
+
const schema_1 = require("@smithy/core/schema");
|
|
525
|
+
const errors_1 = require("../models/errors");
|
|
526
|
+
const Resiliencehubv2ServiceException_1 = require("../models/Resiliencehubv2ServiceException");
|
|
527
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
528
|
+
exports.Resiliencehubv2ServiceException$ = [-3, _s, "Resiliencehubv2ServiceException", 0, [], []];
|
|
529
|
+
_s_registry.registerError(exports.Resiliencehubv2ServiceException$, Resiliencehubv2ServiceException_1.Resiliencehubv2ServiceException);
|
|
530
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
531
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
532
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
533
|
+
[_m],
|
|
534
|
+
[0], 1
|
|
535
|
+
];
|
|
536
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
537
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
538
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
539
|
+
[_m],
|
|
540
|
+
[0], 1
|
|
541
|
+
];
|
|
542
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
543
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
544
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
545
|
+
[_m],
|
|
546
|
+
[0], 1
|
|
547
|
+
];
|
|
548
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
549
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
550
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
551
|
+
[_m, _rI, _rT],
|
|
552
|
+
[0, 0, 0], 1
|
|
553
|
+
];
|
|
554
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
555
|
+
exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
556
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
557
|
+
[_m],
|
|
558
|
+
[0], 1
|
|
559
|
+
];
|
|
560
|
+
n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
|
|
561
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
562
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
563
|
+
[_m, _rAS],
|
|
564
|
+
[0, 1], 1
|
|
565
|
+
];
|
|
566
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
567
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
568
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
569
|
+
[_m, _r, _fL],
|
|
570
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
571
|
+
];
|
|
572
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
573
|
+
exports.errorTypeRegistries = [
|
|
574
|
+
_s_registry,
|
|
575
|
+
n0_registry,
|
|
576
|
+
];
|
|
577
|
+
exports.Achievability$ = [3, n0, _A,
|
|
578
|
+
0,
|
|
579
|
+
[_aS, _mARR, _mRRR],
|
|
580
|
+
[0, 0, 0]
|
|
581
|
+
];
|
|
582
|
+
exports.Assertion$ = [3, n0, _As,
|
|
583
|
+
0,
|
|
584
|
+
[_sA, _aI, _t, _so, _cA, _uA],
|
|
585
|
+
[0, 0, 0, 0, 4, 4], 4
|
|
586
|
+
];
|
|
587
|
+
exports.AssertionCreatedMetadata$ = [3, n0, _ACM,
|
|
588
|
+
0,
|
|
589
|
+
[_aI, _aN],
|
|
590
|
+
[0, 0]
|
|
591
|
+
];
|
|
592
|
+
exports.AssertionDeletedMetadata$ = [3, n0, _ADM,
|
|
593
|
+
0,
|
|
594
|
+
[_aI, _aN],
|
|
595
|
+
[0, 0]
|
|
596
|
+
];
|
|
597
|
+
exports.AssertionUpdatedMetadata$ = [3, n0, _AUM,
|
|
598
|
+
0,
|
|
599
|
+
[_aI, _aN],
|
|
600
|
+
[0, 0]
|
|
601
|
+
];
|
|
602
|
+
exports.AssessmentCost$ = [3, n0, _AC,
|
|
603
|
+
0,
|
|
604
|
+
[_a, _cu],
|
|
605
|
+
[1, 0]
|
|
606
|
+
];
|
|
607
|
+
exports.AssessmentSummary$ = [3, n0, _AS,
|
|
608
|
+
0,
|
|
609
|
+
[_aIs, _sA, _aSs, _aSss, _tF, _sAt, _eA, _eM, _eC, _aC, _bAUC, _ac],
|
|
610
|
+
[0, 0, 0, 0, 1, 4, 4, 0, 0, () => exports.AssessmentCost$, 1, () => exports.Achievability$], 2
|
|
611
|
+
];
|
|
612
|
+
exports.AssociatedSystem$ = [3, n0, _ASs,
|
|
613
|
+
0,
|
|
614
|
+
[_sAy, _sN, _uJI],
|
|
615
|
+
[0, 0, 64 | 0], 1
|
|
616
|
+
];
|
|
617
|
+
exports.AvailabilitySlo$ = [3, n0, _ASv,
|
|
618
|
+
0,
|
|
619
|
+
[_ta],
|
|
620
|
+
[1]
|
|
621
|
+
];
|
|
622
|
+
exports.CreateAssertionRequest$ = [3, n0, _CAR,
|
|
623
|
+
0,
|
|
624
|
+
[_sA, _t, _cT],
|
|
625
|
+
[0, 0, [0, 4]], 2
|
|
626
|
+
];
|
|
627
|
+
exports.CreateAssertionResponse$ = [3, n0, _CARr,
|
|
628
|
+
0,
|
|
629
|
+
[_as],
|
|
630
|
+
[() => exports.Assertion$], 1
|
|
631
|
+
];
|
|
632
|
+
exports.CreateInputSourceRequest$ = [3, n0, _CISR,
|
|
633
|
+
0,
|
|
634
|
+
[_sA, _rC, _cT],
|
|
635
|
+
[0, () => exports.ResourceConfiguration$, [0, 4]], 2
|
|
636
|
+
];
|
|
637
|
+
exports.CreateInputSourceResponse$ = [3, n0, _CISRr,
|
|
638
|
+
0,
|
|
639
|
+
[_sA, _iSI],
|
|
640
|
+
[0, 0], 2
|
|
641
|
+
];
|
|
642
|
+
exports.CreatePolicyRequest$ = [3, n0, _CPR,
|
|
643
|
+
0,
|
|
644
|
+
[_n, _d, _aS, _mA, _mR, _dR, _kKI, _tag, _cT],
|
|
645
|
+
[0, 0, () => exports.AvailabilitySlo$, () => exports.MultiAzTargets$, () => exports.MultiRegionTargets$, () => exports.DataRecoveryTargets$, 0, [() => TagMap, 0], [0, 4]], 1
|
|
646
|
+
];
|
|
647
|
+
exports.CreatePolicyResponse$ = [3, n0, _CPRr,
|
|
648
|
+
0,
|
|
649
|
+
[_p],
|
|
650
|
+
[[() => exports.Policy$, 0]], 1
|
|
651
|
+
];
|
|
652
|
+
exports.CreateReportRequest$ = [3, n0, _CRR,
|
|
653
|
+
0,
|
|
654
|
+
[_sA, _rTe, _cT],
|
|
655
|
+
[0, 0, [0, 4]], 2
|
|
656
|
+
];
|
|
657
|
+
exports.CreateReportResponse$ = [3, n0, _CRRr,
|
|
658
|
+
0,
|
|
659
|
+
[_rGR],
|
|
660
|
+
[() => exports.ReportGenerationResult$], 1
|
|
661
|
+
];
|
|
662
|
+
exports.CreateServiceFunctionRequest$ = [3, n0, _CSFR,
|
|
663
|
+
0,
|
|
664
|
+
[_n, _sA, _cr, _d, _cT],
|
|
665
|
+
[0, 0, 0, 0, [0, 4]], 3
|
|
666
|
+
];
|
|
667
|
+
exports.CreateServiceFunctionResourcesRequest$ = [3, n0, _CSFRR,
|
|
668
|
+
0,
|
|
669
|
+
[_sA, _sFI, _re],
|
|
670
|
+
[0, 0, 64 | 0], 3
|
|
671
|
+
];
|
|
672
|
+
exports.CreateServiceFunctionResourcesResponse$ = [3, n0, _CSFRRr,
|
|
673
|
+
0,
|
|
674
|
+
[_sA, _sFI, _re],
|
|
675
|
+
[0, 0, 64 | 0]
|
|
676
|
+
];
|
|
677
|
+
exports.CreateServiceFunctionResponse$ = [3, n0, _CSFRr,
|
|
678
|
+
0,
|
|
679
|
+
[_sF],
|
|
680
|
+
[() => exports.ServiceFunction$], 1
|
|
681
|
+
];
|
|
682
|
+
exports.CreateServiceRequest$ = [3, n0, _CSR,
|
|
683
|
+
0,
|
|
684
|
+
[_n, _reg, _pM, _d, _aSsso, _pA, _dD, _rCe, _kKI, _tag, _cT],
|
|
685
|
+
[0, 64 | 0, () => exports.PermissionModel$, 0, () => AssociatedSystemList, 0, 0, () => exports.ServiceReportConfiguration$, 0, [() => TagMap, 0], [0, 4]], 3
|
|
686
|
+
];
|
|
687
|
+
exports.CreateServiceResponse$ = [3, n0, _CSRr,
|
|
688
|
+
0,
|
|
689
|
+
[_ser],
|
|
690
|
+
[[() => exports.Service$, 0]], 1
|
|
691
|
+
];
|
|
692
|
+
exports.CreateSystemRequest$ = [3, n0, _CSRre,
|
|
693
|
+
0,
|
|
694
|
+
[_n, _d, _sE, _kKI, _tag, _cT],
|
|
695
|
+
[0, 0, 2, 0, [() => TagMap, 0], [0, 4]], 1
|
|
696
|
+
];
|
|
697
|
+
exports.CreateSystemResponse$ = [3, n0, _CSRrea,
|
|
698
|
+
0,
|
|
699
|
+
[_sy],
|
|
700
|
+
[[() => exports.System$, 0]], 1
|
|
701
|
+
];
|
|
702
|
+
exports.CreateUserJourneyRequest$ = [3, n0, _CUJR,
|
|
703
|
+
0,
|
|
704
|
+
[_sAy, _n, _d, _pA, _cT],
|
|
705
|
+
[0, 0, 0, 0, [0, 4]], 2
|
|
706
|
+
];
|
|
707
|
+
exports.CreateUserJourneyResponse$ = [3, n0, _CUJRr,
|
|
708
|
+
0,
|
|
709
|
+
[_uJ],
|
|
710
|
+
[() => exports.UserJourney$], 1
|
|
711
|
+
];
|
|
712
|
+
exports.CrossAccountRole$ = [3, n0, _CARro,
|
|
713
|
+
0,
|
|
714
|
+
[_cARA, _eI],
|
|
715
|
+
[0, 0], 1
|
|
716
|
+
];
|
|
717
|
+
exports.DataRecoveryTargets$ = [3, n0, _DRT,
|
|
718
|
+
0,
|
|
719
|
+
[_tBBIM],
|
|
720
|
+
[1]
|
|
721
|
+
];
|
|
722
|
+
exports.DeleteAssertionRequest$ = [3, n0, _DAR,
|
|
723
|
+
0,
|
|
724
|
+
[_sA, _aI],
|
|
725
|
+
[0, 0], 2
|
|
726
|
+
];
|
|
727
|
+
exports.DeleteAssertionResponse$ = [3, n0, _DARe,
|
|
728
|
+
0,
|
|
729
|
+
[_aI],
|
|
730
|
+
[0]
|
|
731
|
+
];
|
|
732
|
+
exports.DeleteInputSourceRequest$ = [3, n0, _DISR,
|
|
733
|
+
0,
|
|
734
|
+
[_sA, _iSI],
|
|
735
|
+
[0, 0], 2
|
|
736
|
+
];
|
|
737
|
+
exports.DeleteInputSourceResponse$ = [3, n0, _DISRe,
|
|
738
|
+
0,
|
|
739
|
+
[_sA, _iSI],
|
|
740
|
+
[0, 0], 2
|
|
741
|
+
];
|
|
742
|
+
exports.DeletePolicyRequest$ = [3, n0, _DPR,
|
|
743
|
+
0,
|
|
744
|
+
[_pA],
|
|
745
|
+
[0], 1
|
|
746
|
+
];
|
|
747
|
+
exports.DeletePolicyResponse$ = [3, n0, _DPRe,
|
|
748
|
+
0,
|
|
749
|
+
[_pA],
|
|
750
|
+
[0], 1
|
|
751
|
+
];
|
|
752
|
+
exports.DeleteServiceFunctionRequest$ = [3, n0, _DSFR,
|
|
753
|
+
0,
|
|
754
|
+
[_sA, _sFI],
|
|
755
|
+
[0, 0], 2
|
|
756
|
+
];
|
|
757
|
+
exports.DeleteServiceFunctionResourcesRequest$ = [3, n0, _DSFRR,
|
|
758
|
+
0,
|
|
759
|
+
[_sA, _sFI, _re],
|
|
760
|
+
[0, 0, 64 | 0], 3
|
|
761
|
+
];
|
|
762
|
+
exports.DeleteServiceFunctionResourcesResponse$ = [3, n0, _DSFRRe,
|
|
763
|
+
0,
|
|
764
|
+
[_sA, _sFI, _re],
|
|
765
|
+
[0, 0, 64 | 0]
|
|
766
|
+
];
|
|
767
|
+
exports.DeleteServiceFunctionResponse$ = [3, n0, _DSFRe,
|
|
768
|
+
0,
|
|
769
|
+
[_sFI],
|
|
770
|
+
[0]
|
|
771
|
+
];
|
|
772
|
+
exports.DeleteServiceRequest$ = [3, n0, _DSR,
|
|
773
|
+
0,
|
|
774
|
+
[_sA],
|
|
775
|
+
[0], 1
|
|
776
|
+
];
|
|
777
|
+
exports.DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
778
|
+
0,
|
|
779
|
+
[_sA],
|
|
780
|
+
[0], 1
|
|
781
|
+
];
|
|
782
|
+
exports.DeleteSystemRequest$ = [3, n0, _DSRel,
|
|
783
|
+
0,
|
|
784
|
+
[_sAy],
|
|
785
|
+
[0], 1
|
|
786
|
+
];
|
|
787
|
+
exports.DeleteSystemResponse$ = [3, n0, _DSRele,
|
|
788
|
+
0,
|
|
789
|
+
[_sAy],
|
|
790
|
+
[0], 1
|
|
791
|
+
];
|
|
792
|
+
exports.DeleteUserJourneyRequest$ = [3, n0, _DUJR,
|
|
793
|
+
0,
|
|
794
|
+
[_sAy, _uJIs],
|
|
795
|
+
[0, 0], 2
|
|
796
|
+
];
|
|
797
|
+
exports.DeleteUserJourneyResponse$ = [3, n0, _DUJRe,
|
|
798
|
+
0,
|
|
799
|
+
[_uJIs],
|
|
800
|
+
[0], 1
|
|
801
|
+
];
|
|
802
|
+
exports.DependencyDiscoveryConfig$ = [3, n0, _DDC,
|
|
803
|
+
0,
|
|
804
|
+
[_st, _uA],
|
|
805
|
+
[0, 4], 1
|
|
806
|
+
];
|
|
807
|
+
exports.DependencySummary$ = [3, n0, _DS,
|
|
808
|
+
0,
|
|
809
|
+
[_dI, _sA, _dN, _dNn, _l, _lDT, _sR, _qR, _cr, _pr, _co],
|
|
810
|
+
[0, 0, 0, 0, 0, 4, 64 | 0, () => exports.QueryRange$, 0, 0, 0], 9
|
|
811
|
+
];
|
|
812
|
+
exports.DisasterRecoverySource$ = [3, n0, _DRS,
|
|
813
|
+
0,
|
|
814
|
+
[_v, _pN, _so],
|
|
815
|
+
[0, 0, 0]
|
|
816
|
+
];
|
|
817
|
+
exports.EdgePropertySummary$ = [3, n0, _EPS,
|
|
818
|
+
0,
|
|
819
|
+
[_tT, _la],
|
|
820
|
+
[0, 0]
|
|
821
|
+
];
|
|
822
|
+
exports.EffectivePolicyValues$ = [3, n0, _EPV,
|
|
823
|
+
0,
|
|
824
|
+
[_aS, _mAR, _mARu, _mADA, _mRR, _mRRu, _mRDA, _dRTBB],
|
|
825
|
+
[() => exports.SloSource$, () => exports.TargetSource$, () => exports.TargetSource$, () => exports.DisasterRecoverySource$, () => exports.TargetSource$, () => exports.TargetSource$, () => exports.DisasterRecoverySource$, () => exports.TargetSource$]
|
|
826
|
+
];
|
|
827
|
+
exports.EksSource$ = [3, n0, _ES,
|
|
828
|
+
0,
|
|
829
|
+
[_cAl, _na],
|
|
830
|
+
[0, 64 | 0], 2
|
|
831
|
+
];
|
|
832
|
+
exports.EventActor$ = [3, n0, _EA,
|
|
833
|
+
0,
|
|
834
|
+
[_ty, _pI, _aIc, _uN],
|
|
835
|
+
[0, 0, 0, 0], 2
|
|
836
|
+
];
|
|
837
|
+
exports.FailedReportOutput$ = [3, n0, _FRO,
|
|
838
|
+
0,
|
|
839
|
+
[_eC, _eM],
|
|
840
|
+
[0, 0], 1
|
|
841
|
+
];
|
|
842
|
+
exports.Finding$ = [3, n0, _F,
|
|
843
|
+
0,
|
|
844
|
+
[_fI, _n, _d, _fC, _st, _rea, _co, _sev, _sFe, _pC, _iACR, _oR, _tR, _uA],
|
|
845
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, () => InfrastructureAndCodeRecommendationsList, () => ObservabilityRecommendationsList, () => TestingRecommendationsList, 4]
|
|
846
|
+
];
|
|
847
|
+
exports.FindingSummary$ = [3, n0, _FS,
|
|
848
|
+
0,
|
|
849
|
+
[_sA, _fI, _n, _d, _fC, _sev, _st, _pC, _uA],
|
|
850
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4]
|
|
851
|
+
];
|
|
852
|
+
exports.GetFailureModeFindingRequest$ = [3, n0, _GFMFR,
|
|
853
|
+
0,
|
|
854
|
+
[_fI, _sA],
|
|
855
|
+
[[0, { [_hQ]: _fI }], [0, { [_hQ]: _sA }]], 2
|
|
856
|
+
];
|
|
857
|
+
exports.GetFailureModeFindingResponse$ = [3, n0, _GFMFRe,
|
|
858
|
+
0,
|
|
859
|
+
[_f],
|
|
860
|
+
[() => exports.Finding$]
|
|
861
|
+
];
|
|
862
|
+
exports.GetPolicyRequest$ = [3, n0, _GPR,
|
|
863
|
+
0,
|
|
864
|
+
[_pA],
|
|
865
|
+
[[0, { [_hQ]: _pA }]], 1
|
|
866
|
+
];
|
|
867
|
+
exports.GetPolicyResponse$ = [3, n0, _GPRe,
|
|
868
|
+
0,
|
|
869
|
+
[_p],
|
|
870
|
+
[[() => exports.Policy$, 0]], 1
|
|
871
|
+
];
|
|
872
|
+
exports.GetServiceRequest$ = [3, n0, _GSR,
|
|
873
|
+
0,
|
|
874
|
+
[_sA],
|
|
875
|
+
[[0, { [_hQ]: _sA }]], 1
|
|
876
|
+
];
|
|
877
|
+
exports.GetServiceResponse$ = [3, n0, _GSRe,
|
|
878
|
+
0,
|
|
879
|
+
[_ser],
|
|
880
|
+
[[() => exports.Service$, 0]], 1
|
|
881
|
+
];
|
|
882
|
+
exports.GetSystemRequest$ = [3, n0, _GSRet,
|
|
883
|
+
0,
|
|
884
|
+
[_sAy],
|
|
885
|
+
[[0, { [_hQ]: _sAy }]], 1
|
|
886
|
+
];
|
|
887
|
+
exports.GetSystemResponse$ = [3, n0, _GSRety,
|
|
888
|
+
0,
|
|
889
|
+
[_sy],
|
|
890
|
+
[[() => exports.System$, 0]], 1
|
|
891
|
+
];
|
|
892
|
+
exports.GetUserJourneyRequest$ = [3, n0, _GUJR,
|
|
893
|
+
0,
|
|
894
|
+
[_sAy, _uJIs],
|
|
895
|
+
[[0, { [_hQ]: _sAy }], [0, { [_hQ]: _uJIs }]], 2
|
|
896
|
+
];
|
|
897
|
+
exports.GetUserJourneyResponse$ = [3, n0, _GUJRe,
|
|
898
|
+
0,
|
|
899
|
+
[_uJ],
|
|
900
|
+
[() => exports.UserJourney$], 1
|
|
901
|
+
];
|
|
902
|
+
exports.ImportAppRequest$ = [3, n0, _IAR,
|
|
903
|
+
0,
|
|
904
|
+
[_vAA, _pA, _kKI, _sMAR, _aSsso, _tag, _cT],
|
|
905
|
+
[0, 0, 0, 2, () => AssociatedSystemList, [() => TagMap, 0], [0, 4]], 1
|
|
906
|
+
];
|
|
907
|
+
exports.ImportAppResponse$ = [3, n0, _IARm,
|
|
908
|
+
0,
|
|
909
|
+
[_ser],
|
|
910
|
+
[[() => exports.Service$, 0]], 1
|
|
911
|
+
];
|
|
912
|
+
exports.ImportPolicyRequest$ = [3, n0, _IPR,
|
|
913
|
+
0,
|
|
914
|
+
[_vPA, _kKI, _aS, _mADRA, _mRDRA, _tag, _cT],
|
|
915
|
+
[0, 0, () => exports.AvailabilitySlo$, 0, 0, [() => TagMap, 0], [0, 4]], 1
|
|
916
|
+
];
|
|
917
|
+
exports.ImportPolicyResponse$ = [3, n0, _IPRm,
|
|
918
|
+
0,
|
|
919
|
+
[_p],
|
|
920
|
+
[[() => exports.Policy$, 0]], 1
|
|
921
|
+
];
|
|
922
|
+
exports.InfrastructureAndCodeRecommendation$ = [3, n0, _IACR,
|
|
923
|
+
0,
|
|
924
|
+
[_sC],
|
|
925
|
+
[64 | 0]
|
|
926
|
+
];
|
|
927
|
+
exports.InputSource$ = [3, n0, _IS,
|
|
928
|
+
0,
|
|
929
|
+
[_i, _ty],
|
|
930
|
+
[0, 0], 2
|
|
931
|
+
];
|
|
932
|
+
exports.InputSourceSummary$ = [3, n0, _ISS,
|
|
933
|
+
0,
|
|
934
|
+
[_iSI, _ty, _rTes, _cSA, _tSFU, _ek, _dFSU, _cA],
|
|
935
|
+
[0, 0, () => ResourceTagList, 0, 0, () => exports.EksSource$, 0, 4], 1
|
|
936
|
+
];
|
|
937
|
+
exports.ListAssertionsRequest$ = [3, n0, _LAR,
|
|
938
|
+
0,
|
|
939
|
+
[_sA, _so, _mRa, _nT],
|
|
940
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _so }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
941
|
+
];
|
|
942
|
+
exports.ListAssertionsResponse$ = [3, n0, _LARi,
|
|
943
|
+
0,
|
|
944
|
+
[_ass, _nT],
|
|
945
|
+
[() => AssertionList, 0], 1
|
|
946
|
+
];
|
|
947
|
+
exports.ListDependenciesRequest$ = [3, n0, _LDR,
|
|
948
|
+
0,
|
|
949
|
+
[_sA, _qRST, _qRET, _qRG, _mRa, _nT],
|
|
950
|
+
[[0, { [_hQ]: _sA }], [4, { [_hQ]: _qRST }], [4, { [_hQ]: _qRET }], [0, { [_hQ]: _qRG }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
951
|
+
];
|
|
952
|
+
exports.ListDependenciesResponse$ = [3, n0, _LDRi,
|
|
953
|
+
0,
|
|
954
|
+
[_dS, _nT],
|
|
955
|
+
[() => DependencySummaryList, 0], 1
|
|
956
|
+
];
|
|
957
|
+
exports.ListFailureModeAssessmentsRequest$ = [3, n0, _LFMAR,
|
|
958
|
+
0,
|
|
959
|
+
[_sA, _mRa, _nT],
|
|
960
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
961
|
+
];
|
|
962
|
+
exports.ListFailureModeAssessmentsResponse$ = [3, n0, _LFMARi,
|
|
963
|
+
0,
|
|
964
|
+
[_aSsse, _nT],
|
|
965
|
+
[() => AssessmentSummaryList, 0], 1
|
|
966
|
+
];
|
|
967
|
+
exports.ListFailureModeFindingsRequest$ = [3, n0, _LFMFR,
|
|
968
|
+
0,
|
|
969
|
+
[_sA, _sev, _fC, _st, _mRa, _nT],
|
|
970
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _sev }], [0, { [_hQ]: _fC }], [0, { [_hQ]: _st }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
971
|
+
];
|
|
972
|
+
exports.ListFailureModeFindingsResponse$ = [3, n0, _LFMFRi,
|
|
973
|
+
0,
|
|
974
|
+
[_fS, _nT],
|
|
975
|
+
[() => FindingsList, 0], 1
|
|
976
|
+
];
|
|
977
|
+
exports.ListInputSourcesRequest$ = [3, n0, _LISR,
|
|
978
|
+
0,
|
|
979
|
+
[_sA, _ty, _mRa, _nT],
|
|
980
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _ty }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
981
|
+
];
|
|
982
|
+
exports.ListInputSourcesResponse$ = [3, n0, _LISRi,
|
|
983
|
+
0,
|
|
984
|
+
[_iSS, _nT],
|
|
985
|
+
[() => InputSourceSummaryList, 0], 1
|
|
986
|
+
];
|
|
987
|
+
exports.ListPoliciesRequest$ = [3, n0, _LPR,
|
|
988
|
+
0,
|
|
989
|
+
[_mRa, _nT],
|
|
990
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
991
|
+
];
|
|
992
|
+
exports.ListPoliciesResponse$ = [3, n0, _LPRi,
|
|
993
|
+
0,
|
|
994
|
+
[_pS, _nT],
|
|
995
|
+
[() => PolicySummaryList, 0], 1
|
|
996
|
+
];
|
|
997
|
+
exports.ListReportsRequest$ = [3, n0, _LRR,
|
|
998
|
+
0,
|
|
999
|
+
[_sA, _rTe, _mRa, _nT],
|
|
1000
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _rTe }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1001
|
+
];
|
|
1002
|
+
exports.ListReportsResponse$ = [3, n0, _LRRi,
|
|
1003
|
+
0,
|
|
1004
|
+
[_rGRe, _nT],
|
|
1005
|
+
[() => ReportGenerationResultList, 0], 1
|
|
1006
|
+
];
|
|
1007
|
+
exports.ListResourcesRequest$ = [3, n0, _LRRis,
|
|
1008
|
+
0,
|
|
1009
|
+
[_sA, _sFI, _aR, _mRa, _nT],
|
|
1010
|
+
[[0, { [_hQ]: _sA }], [0, { [_hQ]: _sFI }], [0, { [_hQ]: _aR }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1011
|
+
];
|
|
1012
|
+
exports.ListResourcesResponse$ = [3, n0, _LRRist,
|
|
1013
|
+
0,
|
|
1014
|
+
[_sFI, _sRe, _nT],
|
|
1015
|
+
[0, () => ServiceResourceList, 0]
|
|
1016
|
+
];
|
|
1017
|
+
exports.ListServiceEventsRequest$ = [3, n0, _LSER,
|
|
1018
|
+
0,
|
|
1019
|
+
[_sA, _eT, _sT, _eTn, _mRa, _nT],
|
|
1020
|
+
[[0, { [_hQ]: _sA }], [64 | 0, { [_hQ]: _eT }], [4, { [_hQ]: _sT }], [4, { [_hQ]: _eTn }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1021
|
+
];
|
|
1022
|
+
exports.ListServiceEventsResponse$ = [3, n0, _LSERi,
|
|
1023
|
+
0,
|
|
1024
|
+
[_ev, _nT],
|
|
1025
|
+
[() => ServiceEventList, 0], 1
|
|
1026
|
+
];
|
|
1027
|
+
exports.ListServiceFunctionsRequest$ = [3, n0, _LSFR,
|
|
1028
|
+
0,
|
|
1029
|
+
[_sA, _mRa, _nT],
|
|
1030
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1031
|
+
];
|
|
1032
|
+
exports.ListServiceFunctionsResponse$ = [3, n0, _LSFRi,
|
|
1033
|
+
0,
|
|
1034
|
+
[_sFe, _nT],
|
|
1035
|
+
[() => ServiceFunctionList, 0], 1
|
|
1036
|
+
];
|
|
1037
|
+
exports.ListServicesRequest$ = [3, n0, _LSR,
|
|
1038
|
+
0,
|
|
1039
|
+
[_sAy, _uJIs, _oI, _aIc, _aSs, _pA, _mRa, _nT],
|
|
1040
|
+
[[0, { [_hQ]: _sAy }], [0, { [_hQ]: _uJIs }], [0, { [_hQ]: _oI }], [0, { [_hQ]: _aIc }], [0, { [_hQ]: _aSs }], [0, { [_hQ]: _pA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1041
|
+
];
|
|
1042
|
+
exports.ListServicesResponse$ = [3, n0, _LSRi,
|
|
1043
|
+
0,
|
|
1044
|
+
[_sS, _nT],
|
|
1045
|
+
[() => ServiceSummaryList, 0], 1
|
|
1046
|
+
];
|
|
1047
|
+
exports.ListServiceTopologyEdgesRequest$ = [3, n0, _LSTER,
|
|
1048
|
+
0,
|
|
1049
|
+
[_sA, _mRa, _nT],
|
|
1050
|
+
[[0, { [_hQ]: _sA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1051
|
+
];
|
|
1052
|
+
exports.ListServiceTopologyEdgesResponse$ = [3, n0, _LSTERi,
|
|
1053
|
+
0,
|
|
1054
|
+
[_sTES, _nT],
|
|
1055
|
+
[() => ServiceTopologyEdgeSummaryList, 0]
|
|
1056
|
+
];
|
|
1057
|
+
exports.ListSystemEventsRequest$ = [3, n0, _LSERis,
|
|
1058
|
+
0,
|
|
1059
|
+
[_sAy, _eT, _sT, _eTn, _mRa, _nT],
|
|
1060
|
+
[[0, { [_hQ]: _sAy }], [64 | 0, { [_hQ]: _eT }], [4, { [_hQ]: _sT }], [4, { [_hQ]: _eTn }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1061
|
+
];
|
|
1062
|
+
exports.ListSystemEventsResponse$ = [3, n0, _LSERist,
|
|
1063
|
+
0,
|
|
1064
|
+
[_ev, _nT],
|
|
1065
|
+
[() => SystemEventList, 0], 1
|
|
1066
|
+
];
|
|
1067
|
+
exports.ListSystemsRequest$ = [3, n0, _LSRis,
|
|
1068
|
+
0,
|
|
1069
|
+
[_oI, _mRa, _nT],
|
|
1070
|
+
[[0, { [_hQ]: _oI }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
1071
|
+
];
|
|
1072
|
+
exports.ListSystemsResponse$ = [3, n0, _LSRist,
|
|
1073
|
+
0,
|
|
1074
|
+
[_sSy, _nT],
|
|
1075
|
+
[() => SystemSummaryList, 0], 1
|
|
1076
|
+
];
|
|
1077
|
+
exports.ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1078
|
+
0,
|
|
1079
|
+
[_rA],
|
|
1080
|
+
[[0, 1]], 1
|
|
1081
|
+
];
|
|
1082
|
+
exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1083
|
+
0,
|
|
1084
|
+
[_tag],
|
|
1085
|
+
[[() => TagMap, 0]]
|
|
1086
|
+
];
|
|
1087
|
+
exports.ListUserJourneysRequest$ = [3, n0, _LUJR,
|
|
1088
|
+
0,
|
|
1089
|
+
[_sAy, _mRa, _nT],
|
|
1090
|
+
[[0, { [_hQ]: _sAy }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
1091
|
+
];
|
|
1092
|
+
exports.ListUserJourneysResponse$ = [3, n0, _LUJRi,
|
|
1093
|
+
0,
|
|
1094
|
+
[_uJS, _nT],
|
|
1095
|
+
[() => UserJourneySummaryList, 0], 1
|
|
1096
|
+
];
|
|
1097
|
+
exports.MultiAzTargets$ = [3, n0, _MAT,
|
|
1098
|
+
0,
|
|
1099
|
+
[_rIM, _rIMp, _dRA],
|
|
1100
|
+
[1, 1, 0]
|
|
1101
|
+
];
|
|
1102
|
+
exports.MultiRegionTargets$ = [3, n0, _MRT,
|
|
1103
|
+
0,
|
|
1104
|
+
[_rIM, _rIMp, _dRA],
|
|
1105
|
+
[1, 1, 0]
|
|
1106
|
+
];
|
|
1107
|
+
exports.ObservabilityRecommendation$ = [3, n0, _OR,
|
|
1108
|
+
0,
|
|
1109
|
+
[_sC],
|
|
1110
|
+
[64 | 0]
|
|
1111
|
+
];
|
|
1112
|
+
exports.PermissionModel$ = [3, n0, _PM,
|
|
1113
|
+
0,
|
|
1114
|
+
[_iRN, _cAR],
|
|
1115
|
+
[0, () => CrossAccountRoleList], 1
|
|
1116
|
+
];
|
|
1117
|
+
exports.Policy$ = [3, n0, _P,
|
|
1118
|
+
0,
|
|
1119
|
+
[_pA, _n, _d, _aS, _mA, _mR, _dR, _kKI, _tag, _aSC, _cA, _uA],
|
|
1120
|
+
[0, 0, 0, () => exports.AvailabilitySlo$, () => exports.MultiAzTargets$, () => exports.MultiRegionTargets$, () => exports.DataRecoveryTargets$, 0, [() => TagMap, 0], 1, 4, 4], 2
|
|
1121
|
+
];
|
|
1122
|
+
exports.PolicySummary$ = [3, n0, _PS,
|
|
1123
|
+
0,
|
|
1124
|
+
[_pA, _n, _aS, _mA, _mR, _dR, _aSC, _cA, _uA],
|
|
1125
|
+
[0, 0, () => exports.AvailabilitySlo$, () => exports.MultiAzTargets$, () => exports.MultiRegionTargets$, () => exports.DataRecoveryTargets$, 1, 4, 4], 2
|
|
1126
|
+
];
|
|
1127
|
+
exports.QueryDataPoint$ = [3, n0, _QDP,
|
|
1128
|
+
0,
|
|
1129
|
+
[_ti, _qC],
|
|
1130
|
+
[4, 1], 2
|
|
1131
|
+
];
|
|
1132
|
+
exports.QueryRange$ = [3, n0, _QR,
|
|
1133
|
+
0,
|
|
1134
|
+
[_sT, _eTn, _g, _dP],
|
|
1135
|
+
[4, 4, 0, () => QueryDataPointList], 4
|
|
1136
|
+
];
|
|
1137
|
+
exports.ReportGenerationResult$ = [3, n0, _RGR,
|
|
1138
|
+
0,
|
|
1139
|
+
[_rTe, _st, _sA, _aIs, _cA, _rO],
|
|
1140
|
+
[0, 0, 0, 0, 4, () => exports.ReportOutput$], 2
|
|
1141
|
+
];
|
|
1142
|
+
exports.Resource$ = [3, n0, _R,
|
|
1143
|
+
0,
|
|
1144
|
+
[_i, _aR, _aAI, _rT],
|
|
1145
|
+
[0, 0, 0, 0], 1
|
|
1146
|
+
];
|
|
1147
|
+
exports.ResourceDiscoveryStatus$ = [3, n0, _RDS,
|
|
1148
|
+
0,
|
|
1149
|
+
[_st, _lRA, _eC, _eM],
|
|
1150
|
+
[0, 4, 0, 0]
|
|
1151
|
+
];
|
|
1152
|
+
exports.ResourceTag$ = [3, n0, _RT,
|
|
1153
|
+
0,
|
|
1154
|
+
[_k, _va],
|
|
1155
|
+
[0, 64 | 0], 2
|
|
1156
|
+
];
|
|
1157
|
+
exports.S3ReportOutput$ = [3, n0, _SRO,
|
|
1158
|
+
0,
|
|
1159
|
+
[_sOK],
|
|
1160
|
+
[0], 1
|
|
1161
|
+
];
|
|
1162
|
+
exports.S3ReportOutputConfiguration$ = [3, n0, _SROC,
|
|
1163
|
+
0,
|
|
1164
|
+
[_bP, _bO],
|
|
1165
|
+
[0, 0], 2
|
|
1166
|
+
];
|
|
1167
|
+
exports.Service$ = [3, n0, _S,
|
|
1168
|
+
0,
|
|
1169
|
+
[_sA, _n, _d, _aSsso, _pA, _reg, _pM, _dD, _ePV, _ac, _rCe, _kKI, _tag, _eAC, _rD, _aSs, _rAe, _oFC, _rFC, _oIr, _oI, _aIc, _cA, _uA],
|
|
1170
|
+
[0, 0, 0, () => AssociatedSystemList, 0, 64 | 0, () => exports.PermissionModel$, () => exports.DependencyDiscoveryConfig$, () => exports.EffectivePolicyValues$, () => exports.Achievability$, () => exports.ServiceReportConfiguration$, 0, [() => TagMap, 0], () => exports.AssessmentCost$, () => exports.ResourceDiscoveryStatus$, 0, 2, 1, 1, 0, 0, 0, 4, 4], 2
|
|
1171
|
+
];
|
|
1172
|
+
exports.ServiceAchievabilityUpdatedMetadata$ = [3, n0, _SAUM,
|
|
1173
|
+
0,
|
|
1174
|
+
[_aIs, _aS, _mARR, _mRRR],
|
|
1175
|
+
[0, 0, 0, 0]
|
|
1176
|
+
];
|
|
1177
|
+
exports.ServiceCreatedMetadata$ = [3, n0, _SCM,
|
|
1178
|
+
0,
|
|
1179
|
+
[],
|
|
1180
|
+
[]
|
|
1181
|
+
];
|
|
1182
|
+
exports.ServiceDeletedMetadata$ = [3, n0, _SDM,
|
|
1183
|
+
0,
|
|
1184
|
+
[],
|
|
1185
|
+
[]
|
|
1186
|
+
];
|
|
1187
|
+
exports.ServiceEvent$ = [3, n0, _SE,
|
|
1188
|
+
0,
|
|
1189
|
+
[_eIv, _ti, _eTv, _sA, _act, _eD],
|
|
1190
|
+
[0, 4, 0, 0, () => exports.EventActor$, () => exports.ServiceEventDetails$], 6
|
|
1191
|
+
];
|
|
1192
|
+
exports.ServiceEventDetails$ = [3, n0, _SED,
|
|
1193
|
+
0,
|
|
1194
|
+
[_tit, _d, _eMv],
|
|
1195
|
+
[0, 0, () => exports.ServiceEventMetadata$], 2
|
|
1196
|
+
];
|
|
1197
|
+
exports.ServiceFunction$ = [3, n0, _SF,
|
|
1198
|
+
0,
|
|
1199
|
+
[_sA, _sFI, _n, _cr, _d, _rCes, _so, _cA, _uA],
|
|
1200
|
+
[0, 0, 0, 0, 0, 1, 0, 4, 4], 4
|
|
1201
|
+
];
|
|
1202
|
+
exports.ServiceFunctionCreatedMetadata$ = [3, n0, _SFCM,
|
|
1203
|
+
0,
|
|
1204
|
+
[_sFI, _sFN],
|
|
1205
|
+
[0, 0]
|
|
1206
|
+
];
|
|
1207
|
+
exports.ServiceFunctionDeletedMetadata$ = [3, n0, _SFDM,
|
|
1208
|
+
0,
|
|
1209
|
+
[_sFI, _sFN],
|
|
1210
|
+
[0, 0]
|
|
1211
|
+
];
|
|
1212
|
+
exports.ServiceFunctionResourcesAddedMetadata$ = [3, n0, _SFRAM,
|
|
1213
|
+
0,
|
|
1214
|
+
[_sFI, _sFN, _rAes],
|
|
1215
|
+
[0, 0, 64 | 0]
|
|
1216
|
+
];
|
|
1217
|
+
exports.ServiceFunctionResourcesRemovedMetadata$ = [3, n0, _SFRRM,
|
|
1218
|
+
0,
|
|
1219
|
+
[_sFI, _sFN, _rR],
|
|
1220
|
+
[0, 0, 64 | 0]
|
|
1221
|
+
];
|
|
1222
|
+
exports.ServiceFunctionUpdatedMetadata$ = [3, n0, _SFUM,
|
|
1223
|
+
0,
|
|
1224
|
+
[_sFI, _sFN, _rAes, _rR],
|
|
1225
|
+
[0, 0, 64 | 0, 64 | 0]
|
|
1226
|
+
];
|
|
1227
|
+
exports.ServiceInputSourcesUpdatedMetadata$ = [3, n0, _SISUM,
|
|
1228
|
+
0,
|
|
1229
|
+
[],
|
|
1230
|
+
[]
|
|
1231
|
+
];
|
|
1232
|
+
exports.ServicePolicyAssociatedMetadata$ = [3, n0, _SPAM,
|
|
1233
|
+
0,
|
|
1234
|
+
[_pN, _pA],
|
|
1235
|
+
[0, 0]
|
|
1236
|
+
];
|
|
1237
|
+
exports.ServicePolicyDisassociatedMetadata$ = [3, n0, _SPDM,
|
|
1238
|
+
0,
|
|
1239
|
+
[_pN, _pA],
|
|
1240
|
+
[0, 0]
|
|
1241
|
+
];
|
|
1242
|
+
exports.ServiceReference$ = [3, n0, _SR,
|
|
1243
|
+
0,
|
|
1244
|
+
[_sI, _sNe],
|
|
1245
|
+
[0, 0]
|
|
1246
|
+
];
|
|
1247
|
+
exports.ServiceReferenceChanges$ = [3, n0, _SRC,
|
|
1248
|
+
0,
|
|
1249
|
+
[_ad, _rem],
|
|
1250
|
+
[() => ServiceReferenceList, () => ServiceReferenceList]
|
|
1251
|
+
];
|
|
1252
|
+
exports.ServiceReportConfiguration$ = [3, n0, _SRCe,
|
|
1253
|
+
0,
|
|
1254
|
+
[_rOe],
|
|
1255
|
+
[() => ReportOutputConfigurationList], 1
|
|
1256
|
+
];
|
|
1257
|
+
exports.ServiceResource$ = [3, n0, _SRe,
|
|
1258
|
+
0,
|
|
1259
|
+
[_rIe, _res, _iS],
|
|
1260
|
+
[0, () => exports.Resource$, () => exports.InputSource$], 2
|
|
1261
|
+
];
|
|
1262
|
+
exports.ServiceResourcesAssociatedMetadata$ = [3, n0, _SRAM,
|
|
1263
|
+
0,
|
|
1264
|
+
[_rCes, _rTeso],
|
|
1265
|
+
[1, 64 | 0]
|
|
1266
|
+
];
|
|
1267
|
+
exports.ServiceResourcesDisassociatedMetadata$ = [3, n0, _SRDM,
|
|
1268
|
+
0,
|
|
1269
|
+
[_rCes, _rTeso],
|
|
1270
|
+
[1, 64 | 0]
|
|
1271
|
+
];
|
|
1272
|
+
exports.ServiceSummary$ = [3, n0, _SS,
|
|
1273
|
+
0,
|
|
1274
|
+
[_sA, _n, _aSsso, _reg, _pA, _aSs, _oFC, _rFC, _dD, _ac, _oIr, _oI, _aIc, _cA, _uA],
|
|
1275
|
+
[0, 0, () => AssociatedSystemList, 64 | 0, 0, 0, 1, 1, () => exports.DependencyDiscoveryConfig$, () => exports.Achievability$, 0, 0, 0, 4, 4], 2
|
|
1276
|
+
];
|
|
1277
|
+
exports.ServiceSystemAssociatedMetadata$ = [3, n0, _SSAM,
|
|
1278
|
+
0,
|
|
1279
|
+
[_sN, _sAy],
|
|
1280
|
+
[0, 0]
|
|
1281
|
+
];
|
|
1282
|
+
exports.ServiceSystemDisassociatedMetadata$ = [3, n0, _SSDM,
|
|
1283
|
+
0,
|
|
1284
|
+
[_sIy, _sN, _sAy],
|
|
1285
|
+
[0, 0, 0]
|
|
1286
|
+
];
|
|
1287
|
+
exports.ServiceTopologyEdgeSummary$ = [3, n0, _STES,
|
|
1288
|
+
0,
|
|
1289
|
+
[_sRI, _dRI, _pro],
|
|
1290
|
+
[0, 0, () => EdgePropertyList], 2
|
|
1291
|
+
];
|
|
1292
|
+
exports.ServiceWorkflowUpdatedMetadata$ = [3, n0, _SWUM,
|
|
1293
|
+
0,
|
|
1294
|
+
[_sFI, _sFN],
|
|
1295
|
+
[0, 0]
|
|
1296
|
+
];
|
|
1297
|
+
exports.SloSource$ = [3, n0, _SSl,
|
|
1298
|
+
0,
|
|
1299
|
+
[_v, _pN, _so],
|
|
1300
|
+
[1, 0, 0]
|
|
1301
|
+
];
|
|
1302
|
+
exports.StartFailureModeAssessmentRequest$ = [3, n0, _SFMAR,
|
|
1303
|
+
0,
|
|
1304
|
+
[_sA, _cT],
|
|
1305
|
+
[0, [0, 4]], 1
|
|
1306
|
+
];
|
|
1307
|
+
exports.StartFailureModeAssessmentResponse$ = [3, n0, _SFMARt,
|
|
1308
|
+
0,
|
|
1309
|
+
[_aIs, _sA, _aSs, _sAt],
|
|
1310
|
+
[0, 0, 0, 4]
|
|
1311
|
+
];
|
|
1312
|
+
exports.StringChange$ = [3, n0, _SC,
|
|
1313
|
+
0,
|
|
1314
|
+
[_oV, _nV],
|
|
1315
|
+
[0, 0]
|
|
1316
|
+
];
|
|
1317
|
+
exports.System$ = [3, n0, _Sy,
|
|
1318
|
+
0,
|
|
1319
|
+
[_sAy, _sIy, _n, _d, _sE, _tag, _kKI, _oIr, _oI, _cA, _uA],
|
|
1320
|
+
[0, 0, 0, 0, 2, [() => TagMap, 0], 0, 0, 0, 4, 4], 3
|
|
1321
|
+
];
|
|
1322
|
+
exports.SystemCreatedMetadata$ = [3, n0, _SCMy,
|
|
1323
|
+
0,
|
|
1324
|
+
[],
|
|
1325
|
+
[]
|
|
1326
|
+
];
|
|
1327
|
+
exports.SystemDeletedMetadata$ = [3, n0, _SDMy,
|
|
1328
|
+
0,
|
|
1329
|
+
[],
|
|
1330
|
+
[]
|
|
1331
|
+
];
|
|
1332
|
+
exports.SystemEvent$ = [3, n0, _SEy,
|
|
1333
|
+
0,
|
|
1334
|
+
[_eIv, _ti, _eTv, _sAy, _act, _eD],
|
|
1335
|
+
[0, 4, 0, 0, () => exports.EventActor$, () => exports.SystemEventDetails$], 6
|
|
1336
|
+
];
|
|
1337
|
+
exports.SystemEventDetails$ = [3, n0, _SEDy,
|
|
1338
|
+
0,
|
|
1339
|
+
[_tit, _d, _eMv],
|
|
1340
|
+
[0, 0, () => exports.SystemEventMetadata$], 2
|
|
1341
|
+
];
|
|
1342
|
+
exports.SystemPolicyAssociatedMetadata$ = [3, n0, _SPAMy,
|
|
1343
|
+
0,
|
|
1344
|
+
[_pN, _pA],
|
|
1345
|
+
[0, 0]
|
|
1346
|
+
];
|
|
1347
|
+
exports.SystemPolicyDisassociatedMetadata$ = [3, n0, _SPDMy,
|
|
1348
|
+
0,
|
|
1349
|
+
[_pN, _pA],
|
|
1350
|
+
[0, 0]
|
|
1351
|
+
];
|
|
1352
|
+
exports.SystemServiceAssociatedMetadata$ = [3, n0, _SSAMy,
|
|
1353
|
+
0,
|
|
1354
|
+
[_sNe, _sA, _uJs],
|
|
1355
|
+
[0, 0, 64 | 0]
|
|
1356
|
+
];
|
|
1357
|
+
exports.SystemServiceDisassociatedMetadata$ = [3, n0, _SSDMy,
|
|
1358
|
+
0,
|
|
1359
|
+
[_sNe, _sA, _uJA, _co],
|
|
1360
|
+
[0, 0, 64 | 0, 0]
|
|
1361
|
+
];
|
|
1362
|
+
exports.SystemSummary$ = [3, n0, _SSy,
|
|
1363
|
+
0,
|
|
1364
|
+
[_sIy, _n, _sAy, _uJC, _sCe, _oIr, _oI, _cA, _uA],
|
|
1365
|
+
[0, 0, 0, 1, 1, 0, 0, 4, 4], 2
|
|
1366
|
+
];
|
|
1367
|
+
exports.SystemUserJourneyCreatedMetadata$ = [3, n0, _SUJCM,
|
|
1368
|
+
0,
|
|
1369
|
+
[_uJN, _aSssoc],
|
|
1370
|
+
[0, () => ServiceReferenceList]
|
|
1371
|
+
];
|
|
1372
|
+
exports.SystemUserJourneyDeletedMetadata$ = [3, n0, _SUJDM,
|
|
1373
|
+
0,
|
|
1374
|
+
[_uJN, _aSAD],
|
|
1375
|
+
[0, () => ServiceReferenceList]
|
|
1376
|
+
];
|
|
1377
|
+
exports.SystemUserJourneyUpdatedMetadata$ = [3, n0, _SUJUM,
|
|
1378
|
+
0,
|
|
1379
|
+
[_uJN, _ch],
|
|
1380
|
+
[0, () => exports.UserJourneyChanges$]
|
|
1381
|
+
];
|
|
1382
|
+
exports.TagResourceRequest$ = [3, n0, _TRR,
|
|
1383
|
+
0,
|
|
1384
|
+
[_rA, _tag],
|
|
1385
|
+
[[0, 1], [() => TagMap, 0]], 2
|
|
1386
|
+
];
|
|
1387
|
+
exports.TagResourceResponse$ = [3, n0, _TRRa,
|
|
1388
|
+
0,
|
|
1389
|
+
[],
|
|
1390
|
+
[]
|
|
1391
|
+
];
|
|
1392
|
+
exports.TargetSource$ = [3, n0, _TS,
|
|
1393
|
+
0,
|
|
1394
|
+
[_v, _pN, _so],
|
|
1395
|
+
[1, 0, 0]
|
|
1396
|
+
];
|
|
1397
|
+
exports.TestingRecommendation$ = [3, n0, _TR,
|
|
1398
|
+
0,
|
|
1399
|
+
[_sC],
|
|
1400
|
+
[64 | 0]
|
|
1401
|
+
];
|
|
1402
|
+
exports.UntagResourceRequest$ = [3, n0, _URR,
|
|
1403
|
+
0,
|
|
1404
|
+
[_rA, _tK],
|
|
1405
|
+
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
1406
|
+
];
|
|
1407
|
+
exports.UntagResourceResponse$ = [3, n0, _URRn,
|
|
1408
|
+
0,
|
|
1409
|
+
[],
|
|
1410
|
+
[]
|
|
1411
|
+
];
|
|
1412
|
+
exports.UpdateAssertionRequest$ = [3, n0, _UAR,
|
|
1413
|
+
0,
|
|
1414
|
+
[_sA, _aI, _t],
|
|
1415
|
+
[0, 0, 0], 2
|
|
1416
|
+
];
|
|
1417
|
+
exports.UpdateAssertionResponse$ = [3, n0, _UARp,
|
|
1418
|
+
0,
|
|
1419
|
+
[_as],
|
|
1420
|
+
[() => exports.Assertion$], 1
|
|
1421
|
+
];
|
|
1422
|
+
exports.UpdateDependencyRequest$ = [3, n0, _UDR,
|
|
1423
|
+
0,
|
|
1424
|
+
[_sA, _dI, _cr, _co],
|
|
1425
|
+
[0, 0, 0, 0], 2
|
|
1426
|
+
];
|
|
1427
|
+
exports.UpdateDependencyResponse$ = [3, n0, _UDRp,
|
|
1428
|
+
0,
|
|
1429
|
+
[_dI, _dN, _l, _cr, _uA, _co, _pr],
|
|
1430
|
+
[0, 0, 0, 0, 4, 0, 0], 5
|
|
1431
|
+
];
|
|
1432
|
+
exports.UpdateFailureModeFindingRequest$ = [3, n0, _UFMFR,
|
|
1433
|
+
0,
|
|
1434
|
+
[_fI, _st, _sA, _co],
|
|
1435
|
+
[0, 0, 0, 0], 3
|
|
1436
|
+
];
|
|
1437
|
+
exports.UpdateFailureModeFindingResponse$ = [3, n0, _UFMFRp,
|
|
1438
|
+
0,
|
|
1439
|
+
[_f],
|
|
1440
|
+
[() => exports.Finding$]
|
|
1441
|
+
];
|
|
1442
|
+
exports.UpdatePolicyRequest$ = [3, n0, _UPR,
|
|
1443
|
+
0,
|
|
1444
|
+
[_pA, _d, _aS, _mA, _mR, _dR],
|
|
1445
|
+
[0, 0, () => exports.AvailabilitySlo$, () => exports.MultiAzTargets$, () => exports.MultiRegionTargets$, () => exports.DataRecoveryTargets$], 1
|
|
1446
|
+
];
|
|
1447
|
+
exports.UpdatePolicyResponse$ = [3, n0, _UPRp,
|
|
1448
|
+
0,
|
|
1449
|
+
[_p],
|
|
1450
|
+
[[() => exports.Policy$, 0]], 1
|
|
1451
|
+
];
|
|
1452
|
+
exports.UpdateServiceFunctionRequest$ = [3, n0, _USFR,
|
|
1453
|
+
0,
|
|
1454
|
+
[_sA, _sFI, _n, _d, _cr],
|
|
1455
|
+
[0, 0, 0, 0, 0], 2
|
|
1456
|
+
];
|
|
1457
|
+
exports.UpdateServiceFunctionResponse$ = [3, n0, _USFRp,
|
|
1458
|
+
0,
|
|
1459
|
+
[_sF],
|
|
1460
|
+
[() => exports.ServiceFunction$], 1
|
|
1461
|
+
];
|
|
1462
|
+
exports.UpdateServiceRequest$ = [3, n0, _USR,
|
|
1463
|
+
0,
|
|
1464
|
+
[_sA, _d, _aSsso, _pA, _reg, _pM, _dD, _rCe],
|
|
1465
|
+
[0, 0, () => AssociatedSystemList, 0, 64 | 0, () => exports.PermissionModel$, 0, () => exports.ServiceReportConfiguration$], 1
|
|
1466
|
+
];
|
|
1467
|
+
exports.UpdateServiceResponse$ = [3, n0, _USRp,
|
|
1468
|
+
0,
|
|
1469
|
+
[_ser],
|
|
1470
|
+
[[() => exports.Service$, 0]], 1
|
|
1471
|
+
];
|
|
1472
|
+
exports.UpdateSystemRequest$ = [3, n0, _USRpd,
|
|
1473
|
+
0,
|
|
1474
|
+
[_sAy, _d, _sE],
|
|
1475
|
+
[0, 0, 2], 1
|
|
1476
|
+
];
|
|
1477
|
+
exports.UpdateSystemResponse$ = [3, n0, _USRpda,
|
|
1478
|
+
0,
|
|
1479
|
+
[_sy],
|
|
1480
|
+
[[() => exports.System$, 0]], 1
|
|
1481
|
+
];
|
|
1482
|
+
exports.UpdateUserJourneyRequest$ = [3, n0, _UUJR,
|
|
1483
|
+
0,
|
|
1484
|
+
[_sAy, _uJIs, _n, _d, _pA],
|
|
1485
|
+
[0, 0, 0, 0, 0], 2
|
|
1486
|
+
];
|
|
1487
|
+
exports.UpdateUserJourneyResponse$ = [3, n0, _UUJRp,
|
|
1488
|
+
0,
|
|
1489
|
+
[_uJ],
|
|
1490
|
+
[() => exports.UserJourney$], 1
|
|
1491
|
+
];
|
|
1492
|
+
exports.UserJourney$ = [3, n0, _UJ,
|
|
1493
|
+
0,
|
|
1494
|
+
[_uJIs, _n, _d, _pA, _cA, _uA],
|
|
1495
|
+
[0, 0, 0, 0, 4, 4], 2
|
|
1496
|
+
];
|
|
1497
|
+
exports.UserJourneyChanges$ = [3, n0, _UJC,
|
|
1498
|
+
0,
|
|
1499
|
+
[_jD, _aSssoc],
|
|
1500
|
+
[() => exports.StringChange$, () => exports.ServiceReferenceChanges$]
|
|
1501
|
+
];
|
|
1502
|
+
exports.UserJourneySummary$ = [3, n0, _UJS,
|
|
1503
|
+
0,
|
|
1504
|
+
[_uJIs, _n, _cA, _uA],
|
|
1505
|
+
[0, 0, 4, 4], 2
|
|
1506
|
+
];
|
|
1507
|
+
exports.ValidationExceptionField$ = [3, n0, _VEF,
|
|
1508
|
+
0,
|
|
1509
|
+
[_n, _m],
|
|
1510
|
+
[0, 0], 2
|
|
1511
|
+
];
|
|
1512
|
+
var ArnList = 64 | 0;
|
|
1513
|
+
var AssertionList = [1, n0, _AL,
|
|
1514
|
+
0, () => exports.Assertion$
|
|
1515
|
+
];
|
|
1516
|
+
var AssessmentSummaryList = [1, n0, _ASL,
|
|
1517
|
+
0, () => exports.AssessmentSummary$
|
|
1518
|
+
];
|
|
1519
|
+
var AssociatedSystemList = [1, n0, _ASLs,
|
|
1520
|
+
0, () => exports.AssociatedSystem$
|
|
1521
|
+
];
|
|
1522
|
+
var CrossAccountRoleList = [1, n0, _CARL,
|
|
1523
|
+
0, () => exports.CrossAccountRole$
|
|
1524
|
+
];
|
|
1525
|
+
var DependencySummaryList = [1, n0, _DSL,
|
|
1526
|
+
0, () => exports.DependencySummary$
|
|
1527
|
+
];
|
|
1528
|
+
var EdgePropertyList = [1, n0, _EPL,
|
|
1529
|
+
0, () => exports.EdgePropertySummary$
|
|
1530
|
+
];
|
|
1531
|
+
var EksNamespaceList = 64 | 0;
|
|
1532
|
+
var FindingsList = [1, n0, _FL,
|
|
1533
|
+
0, () => exports.FindingSummary$
|
|
1534
|
+
];
|
|
1535
|
+
var FunctionsList = 64 | 0;
|
|
1536
|
+
var InfrastructureAndCodeRecommendationsList = [1, n0, _IACRL,
|
|
1537
|
+
0, () => exports.InfrastructureAndCodeRecommendation$
|
|
1538
|
+
];
|
|
1539
|
+
var InputSourceSummaryList = [1, n0, _ISSL,
|
|
1540
|
+
0, () => exports.InputSourceSummary$
|
|
1541
|
+
];
|
|
1542
|
+
var ObservabilityRecommendationsList = [1, n0, _ORL,
|
|
1543
|
+
0, () => exports.ObservabilityRecommendation$
|
|
1544
|
+
];
|
|
1545
|
+
var PolicySummaryList = [1, n0, _PSL,
|
|
1546
|
+
0, () => exports.PolicySummary$
|
|
1547
|
+
];
|
|
1548
|
+
var QueryDataPointList = [1, n0, _QDPL,
|
|
1549
|
+
0, () => exports.QueryDataPoint$
|
|
1550
|
+
];
|
|
1551
|
+
var RegionList = 64 | 0;
|
|
1552
|
+
var ReportGenerationResultList = [1, n0, _RGRL,
|
|
1553
|
+
0, () => exports.ReportGenerationResult$
|
|
1554
|
+
];
|
|
1555
|
+
var ReportOutputConfigurationList = [1, n0, _ROCL,
|
|
1556
|
+
0, () => exports.ReportOutputConfiguration$
|
|
1557
|
+
];
|
|
1558
|
+
var ResourceList = 64 | 0;
|
|
1559
|
+
var ResourceTagList = [1, n0, _RTL,
|
|
1560
|
+
0, () => exports.ResourceTag$
|
|
1561
|
+
];
|
|
1562
|
+
var ResourceTypeList = 64 | 0;
|
|
1563
|
+
var ServiceEventList = [1, n0, _SEL,
|
|
1564
|
+
0, () => exports.ServiceEvent$
|
|
1565
|
+
];
|
|
1566
|
+
var ServiceEventTypeList = 64 | 0;
|
|
1567
|
+
var ServiceFunctionList = [1, n0, _SFL,
|
|
1568
|
+
0, () => exports.ServiceFunction$
|
|
1569
|
+
];
|
|
1570
|
+
var ServiceReferenceList = [1, n0, _SRL,
|
|
1571
|
+
0, () => exports.ServiceReference$
|
|
1572
|
+
];
|
|
1573
|
+
var ServiceResourceList = [1, n0, _SRLe,
|
|
1574
|
+
0, () => exports.ServiceResource$
|
|
1575
|
+
];
|
|
1576
|
+
var ServiceSummaryList = [1, n0, _SSL,
|
|
1577
|
+
0, () => exports.ServiceSummary$
|
|
1578
|
+
];
|
|
1579
|
+
var ServiceTopologyEdgeSummaryList = [1, n0, _STESL,
|
|
1580
|
+
0, () => exports.ServiceTopologyEdgeSummary$
|
|
1581
|
+
];
|
|
1582
|
+
var SuggestedChangesList = 64 | 0;
|
|
1583
|
+
var SystemEventList = [1, n0, _SELy,
|
|
1584
|
+
0, () => exports.SystemEvent$
|
|
1585
|
+
];
|
|
1586
|
+
var SystemEventTypeList = 64 | 0;
|
|
1587
|
+
var SystemSummaryList = [1, n0, _SSLy,
|
|
1588
|
+
0, () => exports.SystemSummary$
|
|
1589
|
+
];
|
|
1590
|
+
var TagKeyList = [1, n0, _TKL,
|
|
1591
|
+
8, 0
|
|
1592
|
+
];
|
|
1593
|
+
var TagValueList = 64 | 0;
|
|
1594
|
+
var TestingRecommendationsList = [1, n0, _TRL,
|
|
1595
|
+
0, () => exports.TestingRecommendation$
|
|
1596
|
+
];
|
|
1597
|
+
var UserJourneyIdList = 64 | 0;
|
|
1598
|
+
var UserJourneyNameList = 64 | 0;
|
|
1599
|
+
var UserJourneySummaryList = [1, n0, _UJSL,
|
|
1600
|
+
0, () => exports.UserJourneySummary$
|
|
1601
|
+
];
|
|
1602
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1603
|
+
0, () => exports.ValidationExceptionField$
|
|
1604
|
+
];
|
|
1605
|
+
var TagMap = [2, n0, _TM,
|
|
1606
|
+
8, 0, 0
|
|
1607
|
+
];
|
|
1608
|
+
exports.ReportOutput$ = [4, n0, _RO,
|
|
1609
|
+
0,
|
|
1610
|
+
[_sRO, _fRO],
|
|
1611
|
+
[() => exports.S3ReportOutput$, () => exports.FailedReportOutput$]
|
|
1612
|
+
];
|
|
1613
|
+
exports.ReportOutputConfiguration$ = [4, n0, _ROC,
|
|
1614
|
+
0,
|
|
1615
|
+
[_s_],
|
|
1616
|
+
[() => exports.S3ReportOutputConfiguration$]
|
|
1617
|
+
];
|
|
1618
|
+
exports.ResourceConfiguration$ = [4, n0, _RC,
|
|
1619
|
+
0,
|
|
1620
|
+
[_rTes, _cSA, _tSFU, _ek, _dFSU],
|
|
1621
|
+
[() => ResourceTagList, 0, 0, () => exports.EksSource$, 0]
|
|
1622
|
+
];
|
|
1623
|
+
exports.ServiceEventMetadata$ = [4, n0, _SEM,
|
|
1624
|
+
0,
|
|
1625
|
+
[_sCer, _sD, _sSA, _sSD, _sRA, _sRD, _sWU, _sISU, _sPA, _sPD, _sFC, _sFU, _sFD, _sFRA, _sFRR, _sAU, _aCs, _aU, _aD],
|
|
1626
|
+
[() => exports.ServiceCreatedMetadata$, () => exports.ServiceDeletedMetadata$, () => exports.ServiceSystemAssociatedMetadata$, () => exports.ServiceSystemDisassociatedMetadata$, () => exports.ServiceResourcesAssociatedMetadata$, () => exports.ServiceResourcesDisassociatedMetadata$, () => exports.ServiceWorkflowUpdatedMetadata$, () => exports.ServiceInputSourcesUpdatedMetadata$, () => exports.ServicePolicyAssociatedMetadata$, () => exports.ServicePolicyDisassociatedMetadata$, () => exports.ServiceFunctionCreatedMetadata$, () => exports.ServiceFunctionUpdatedMetadata$, () => exports.ServiceFunctionDeletedMetadata$, () => exports.ServiceFunctionResourcesAddedMetadata$, () => exports.ServiceFunctionResourcesRemovedMetadata$, () => exports.ServiceAchievabilityUpdatedMetadata$, () => exports.AssertionCreatedMetadata$, () => exports.AssertionUpdatedMetadata$, () => exports.AssertionDeletedMetadata$]
|
|
1627
|
+
];
|
|
1628
|
+
exports.SystemEventMetadata$ = [4, n0, _SEMy,
|
|
1629
|
+
0,
|
|
1630
|
+
[_sCy, _sDy, _sUJC, _sUJU, _sUJD, _sSAy, _sSDy, _sPAy, _sPDy],
|
|
1631
|
+
[() => exports.SystemCreatedMetadata$, () => exports.SystemDeletedMetadata$, () => exports.SystemUserJourneyCreatedMetadata$, () => exports.SystemUserJourneyUpdatedMetadata$, () => exports.SystemUserJourneyDeletedMetadata$, () => exports.SystemServiceAssociatedMetadata$, () => exports.SystemServiceDisassociatedMetadata$, () => exports.SystemPolicyAssociatedMetadata$, () => exports.SystemPolicyDisassociatedMetadata$]
|
|
1632
|
+
];
|
|
1633
|
+
exports.CreateAssertion$ = [9, n0, _CA,
|
|
1634
|
+
{ [_h]: ["POST", "/v2/create-assertion", 200] }, () => exports.CreateAssertionRequest$, () => exports.CreateAssertionResponse$
|
|
1635
|
+
];
|
|
1636
|
+
exports.CreateInputSource$ = [9, n0, _CIS,
|
|
1637
|
+
{ [_h]: ["POST", "/v2/create-input-source", 200] }, () => exports.CreateInputSourceRequest$, () => exports.CreateInputSourceResponse$
|
|
1638
|
+
];
|
|
1639
|
+
exports.CreatePolicy$ = [9, n0, _CP,
|
|
1640
|
+
{ [_h]: ["POST", "/v2/create-policy", 200] }, () => exports.CreatePolicyRequest$, () => exports.CreatePolicyResponse$
|
|
1641
|
+
];
|
|
1642
|
+
exports.CreateReport$ = [9, n0, _CR,
|
|
1643
|
+
{ [_h]: ["POST", "/v2/create-report", 200] }, () => exports.CreateReportRequest$, () => exports.CreateReportResponse$
|
|
1644
|
+
];
|
|
1645
|
+
exports.CreateService$ = [9, n0, _CS,
|
|
1646
|
+
{ [_h]: ["POST", "/v2/create-service", 200] }, () => exports.CreateServiceRequest$, () => exports.CreateServiceResponse$
|
|
1647
|
+
];
|
|
1648
|
+
exports.CreateServiceFunction$ = [9, n0, _CSF,
|
|
1649
|
+
{ [_h]: ["POST", "/v2/create-service-function", 200] }, () => exports.CreateServiceFunctionRequest$, () => exports.CreateServiceFunctionResponse$
|
|
1650
|
+
];
|
|
1651
|
+
exports.CreateServiceFunctionResources$ = [9, n0, _CSFRre,
|
|
1652
|
+
{ [_h]: ["POST", "/v2/create-service-function-resources", 200] }, () => exports.CreateServiceFunctionResourcesRequest$, () => exports.CreateServiceFunctionResourcesResponse$
|
|
1653
|
+
];
|
|
1654
|
+
exports.CreateSystem$ = [9, n0, _CSr,
|
|
1655
|
+
{ [_h]: ["POST", "/v2/create-system", 200] }, () => exports.CreateSystemRequest$, () => exports.CreateSystemResponse$
|
|
1656
|
+
];
|
|
1657
|
+
exports.CreateUserJourney$ = [9, n0, _CUJ,
|
|
1658
|
+
{ [_h]: ["POST", "/v2/create-user-journey", 200] }, () => exports.CreateUserJourneyRequest$, () => exports.CreateUserJourneyResponse$
|
|
1659
|
+
];
|
|
1660
|
+
exports.DeleteAssertion$ = [9, n0, _DA,
|
|
1661
|
+
{ [_h]: ["POST", "/v2/delete-assertion", 200] }, () => exports.DeleteAssertionRequest$, () => exports.DeleteAssertionResponse$
|
|
1662
|
+
];
|
|
1663
|
+
exports.DeleteInputSource$ = [9, n0, _DIS,
|
|
1664
|
+
{ [_h]: ["POST", "/v2/delete-input-source", 200] }, () => exports.DeleteInputSourceRequest$, () => exports.DeleteInputSourceResponse$
|
|
1665
|
+
];
|
|
1666
|
+
exports.DeletePolicy$ = [9, n0, _DP,
|
|
1667
|
+
{ [_h]: ["POST", "/v2/delete-policy", 200] }, () => exports.DeletePolicyRequest$, () => exports.DeletePolicyResponse$
|
|
1668
|
+
];
|
|
1669
|
+
exports.DeleteService$ = [9, n0, _DSe,
|
|
1670
|
+
{ [_h]: ["POST", "/v2/delete-service", 200] }, () => exports.DeleteServiceRequest$, () => exports.DeleteServiceResponse$
|
|
1671
|
+
];
|
|
1672
|
+
exports.DeleteServiceFunction$ = [9, n0, _DSF,
|
|
1673
|
+
{ [_h]: ["POST", "/v2/delete-function", 200] }, () => exports.DeleteServiceFunctionRequest$, () => exports.DeleteServiceFunctionResponse$
|
|
1674
|
+
];
|
|
1675
|
+
exports.DeleteServiceFunctionResources$ = [9, n0, _DSFRel,
|
|
1676
|
+
{ [_h]: ["POST", "/v2/delete-service-function-resources", 200] }, () => exports.DeleteServiceFunctionResourcesRequest$, () => exports.DeleteServiceFunctionResourcesResponse$
|
|
1677
|
+
];
|
|
1678
|
+
exports.DeleteSystem$ = [9, n0, _DSel,
|
|
1679
|
+
{ [_h]: ["POST", "/v2/delete-system", 200] }, () => exports.DeleteSystemRequest$, () => exports.DeleteSystemResponse$
|
|
1680
|
+
];
|
|
1681
|
+
exports.DeleteUserJourney$ = [9, n0, _DUJ,
|
|
1682
|
+
{ [_h]: ["POST", "/v2/delete-user-journey", 200] }, () => exports.DeleteUserJourneyRequest$, () => exports.DeleteUserJourneyResponse$
|
|
1683
|
+
];
|
|
1684
|
+
exports.GetFailureModeFinding$ = [9, n0, _GFMF,
|
|
1685
|
+
{ [_h]: ["GET", "/v2/get-failure-mode-finding", 200] }, () => exports.GetFailureModeFindingRequest$, () => exports.GetFailureModeFindingResponse$
|
|
1686
|
+
];
|
|
1687
|
+
exports.GetPolicy$ = [9, n0, _GP,
|
|
1688
|
+
{ [_h]: ["GET", "/v2/get-policy", 200] }, () => exports.GetPolicyRequest$, () => exports.GetPolicyResponse$
|
|
1689
|
+
];
|
|
1690
|
+
exports.GetService$ = [9, n0, _GS,
|
|
1691
|
+
{ [_h]: ["GET", "/v2/get-service", 200] }, () => exports.GetServiceRequest$, () => exports.GetServiceResponse$
|
|
1692
|
+
];
|
|
1693
|
+
exports.GetSystem$ = [9, n0, _GSe,
|
|
1694
|
+
{ [_h]: ["GET", "/v2/get-system", 200] }, () => exports.GetSystemRequest$, () => exports.GetSystemResponse$
|
|
1695
|
+
];
|
|
1696
|
+
exports.GetUserJourney$ = [9, n0, _GUJ,
|
|
1697
|
+
{ [_h]: ["GET", "/v2/get-user-journey", 200] }, () => exports.GetUserJourneyRequest$, () => exports.GetUserJourneyResponse$
|
|
1698
|
+
];
|
|
1699
|
+
exports.ImportApp$ = [9, n0, _IA,
|
|
1700
|
+
{ [_h]: ["POST", "/v2/import-app", 200] }, () => exports.ImportAppRequest$, () => exports.ImportAppResponse$
|
|
1701
|
+
];
|
|
1702
|
+
exports.ImportPolicy$ = [9, n0, _IP,
|
|
1703
|
+
{ [_h]: ["POST", "/v2/import-policy", 200] }, () => exports.ImportPolicyRequest$, () => exports.ImportPolicyResponse$
|
|
1704
|
+
];
|
|
1705
|
+
exports.ListAssertions$ = [9, n0, _LA,
|
|
1706
|
+
{ [_h]: ["GET", "/v2/list-assertions", 200] }, () => exports.ListAssertionsRequest$, () => exports.ListAssertionsResponse$
|
|
1707
|
+
];
|
|
1708
|
+
exports.ListDependencies$ = [9, n0, _LD,
|
|
1709
|
+
{ [_h]: ["GET", "/v2/list-dependencies", 200] }, () => exports.ListDependenciesRequest$, () => exports.ListDependenciesResponse$
|
|
1710
|
+
];
|
|
1711
|
+
exports.ListFailureModeAssessments$ = [9, n0, _LFMA,
|
|
1712
|
+
{ [_h]: ["GET", "/v2/list-failure-mode-assessments", 200] }, () => exports.ListFailureModeAssessmentsRequest$, () => exports.ListFailureModeAssessmentsResponse$
|
|
1713
|
+
];
|
|
1714
|
+
exports.ListFailureModeFindings$ = [9, n0, _LFMF,
|
|
1715
|
+
{ [_h]: ["GET", "/v2/list-failure-mode-findings", 200] }, () => exports.ListFailureModeFindingsRequest$, () => exports.ListFailureModeFindingsResponse$
|
|
1716
|
+
];
|
|
1717
|
+
exports.ListInputSources$ = [9, n0, _LIS,
|
|
1718
|
+
{ [_h]: ["GET", "/v2/list-input-sources", 200] }, () => exports.ListInputSourcesRequest$, () => exports.ListInputSourcesResponse$
|
|
1719
|
+
];
|
|
1720
|
+
exports.ListPolicies$ = [9, n0, _LP,
|
|
1721
|
+
{ [_h]: ["GET", "/v2/list-policies", 200] }, () => exports.ListPoliciesRequest$, () => exports.ListPoliciesResponse$
|
|
1722
|
+
];
|
|
1723
|
+
exports.ListReports$ = [9, n0, _LR,
|
|
1724
|
+
{ [_h]: ["GET", "/v2/list-reports", 200] }, () => exports.ListReportsRequest$, () => exports.ListReportsResponse$
|
|
1725
|
+
];
|
|
1726
|
+
exports.ListResources$ = [9, n0, _LRi,
|
|
1727
|
+
{ [_h]: ["GET", "/v2/list-resources", 200] }, () => exports.ListResourcesRequest$, () => exports.ListResourcesResponse$
|
|
1728
|
+
];
|
|
1729
|
+
exports.ListServiceEvents$ = [9, n0, _LSE,
|
|
1730
|
+
{ [_h]: ["GET", "/v2/list-service-events", 200] }, () => exports.ListServiceEventsRequest$, () => exports.ListServiceEventsResponse$
|
|
1731
|
+
];
|
|
1732
|
+
exports.ListServiceFunctions$ = [9, n0, _LSF,
|
|
1733
|
+
{ [_h]: ["GET", "/v2/list-functions", 200] }, () => exports.ListServiceFunctionsRequest$, () => exports.ListServiceFunctionsResponse$
|
|
1734
|
+
];
|
|
1735
|
+
exports.ListServices$ = [9, n0, _LS,
|
|
1736
|
+
{ [_h]: ["GET", "/v2/list-services", 200] }, () => exports.ListServicesRequest$, () => exports.ListServicesResponse$
|
|
1737
|
+
];
|
|
1738
|
+
exports.ListServiceTopologyEdges$ = [9, n0, _LSTE,
|
|
1739
|
+
{ [_h]: ["GET", "/v2/list-service-topology-edges", 200] }, () => exports.ListServiceTopologyEdgesRequest$, () => exports.ListServiceTopologyEdgesResponse$
|
|
1740
|
+
];
|
|
1741
|
+
exports.ListSystemEvents$ = [9, n0, _LSEi,
|
|
1742
|
+
{ [_h]: ["GET", "/v2/list-system-events", 200] }, () => exports.ListSystemEventsRequest$, () => exports.ListSystemEventsResponse$
|
|
1743
|
+
];
|
|
1744
|
+
exports.ListSystems$ = [9, n0, _LSi,
|
|
1745
|
+
{ [_h]: ["GET", "/v2/list-systems", 200] }, () => exports.ListSystemsRequest$, () => exports.ListSystemsResponse$
|
|
1746
|
+
];
|
|
1747
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
1748
|
+
{ [_h]: ["GET", "/v2/tags/{resourceArn}", 200] }, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
|
|
1749
|
+
];
|
|
1750
|
+
exports.ListUserJourneys$ = [9, n0, _LUJ,
|
|
1751
|
+
{ [_h]: ["GET", "/v2/list-user-journeys", 200] }, () => exports.ListUserJourneysRequest$, () => exports.ListUserJourneysResponse$
|
|
1752
|
+
];
|
|
1753
|
+
exports.StartFailureModeAssessment$ = [9, n0, _SFMA,
|
|
1754
|
+
{ [_h]: ["POST", "/v2/start-failure-mode-assessment", 200] }, () => exports.StartFailureModeAssessmentRequest$, () => exports.StartFailureModeAssessmentResponse$
|
|
1755
|
+
];
|
|
1756
|
+
exports.TagResource$ = [9, n0, _TRa,
|
|
1757
|
+
{ [_h]: ["POST", "/v2/tags/{resourceArn}", 200] }, () => exports.TagResourceRequest$, () => exports.TagResourceResponse$
|
|
1758
|
+
];
|
|
1759
|
+
exports.UntagResource$ = [9, n0, _UR,
|
|
1760
|
+
{ [_h]: ["DELETE", "/v2/tags/{resourceArn}", 200] }, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
|
|
1761
|
+
];
|
|
1762
|
+
exports.UpdateAssertion$ = [9, n0, _UA,
|
|
1763
|
+
{ [_h]: ["POST", "/v2/update-assertion", 200] }, () => exports.UpdateAssertionRequest$, () => exports.UpdateAssertionResponse$
|
|
1764
|
+
];
|
|
1765
|
+
exports.UpdateDependency$ = [9, n0, _UD,
|
|
1766
|
+
{ [_h]: ["POST", "/v2/update-dependency", 200] }, () => exports.UpdateDependencyRequest$, () => exports.UpdateDependencyResponse$
|
|
1767
|
+
];
|
|
1768
|
+
exports.UpdateFailureModeFinding$ = [9, n0, _UFMF,
|
|
1769
|
+
{ [_h]: ["POST", "/v2/update-failure-mode-finding", 200] }, () => exports.UpdateFailureModeFindingRequest$, () => exports.UpdateFailureModeFindingResponse$
|
|
1770
|
+
];
|
|
1771
|
+
exports.UpdatePolicy$ = [9, n0, _UP,
|
|
1772
|
+
{ [_h]: ["POST", "/v2/update-policy", 200] }, () => exports.UpdatePolicyRequest$, () => exports.UpdatePolicyResponse$
|
|
1773
|
+
];
|
|
1774
|
+
exports.UpdateService$ = [9, n0, _US,
|
|
1775
|
+
{ [_h]: ["POST", "/v2/update-service", 200] }, () => exports.UpdateServiceRequest$, () => exports.UpdateServiceResponse$
|
|
1776
|
+
];
|
|
1777
|
+
exports.UpdateServiceFunction$ = [9, n0, _USF,
|
|
1778
|
+
{ [_h]: ["POST", "/v2/update-function", 200] }, () => exports.UpdateServiceFunctionRequest$, () => exports.UpdateServiceFunctionResponse$
|
|
1779
|
+
];
|
|
1780
|
+
exports.UpdateSystem$ = [9, n0, _USp,
|
|
1781
|
+
{ [_h]: ["POST", "/v2/update-system", 200] }, () => exports.UpdateSystemRequest$, () => exports.UpdateSystemResponse$
|
|
1782
|
+
];
|
|
1783
|
+
exports.UpdateUserJourney$ = [9, n0, _UUJ,
|
|
1784
|
+
{ [_h]: ["POST", "/v2/update-user-journey", 200] }, () => exports.UpdateUserJourneyRequest$, () => exports.UpdateUserJourneyResponse$
|
|
1785
|
+
];
|