@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,143 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreatePolicyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreatePolicyCommandInput extends CreatePolicyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreatePolicyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePolicyCommandOutput extends CreatePolicyResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreatePolicyCommand_base: {
|
|
25
|
+
new (input: CreatePolicyCommandInput): import("@smithy/core/client").CommandImpl<CreatePolicyCommandInput, CreatePolicyCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreatePolicyCommandInput): import("@smithy/core/client").CommandImpl<CreatePolicyCommandInput, CreatePolicyCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a resilience policy that defines availability and disaster recovery requirements.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, CreatePolicyCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, CreatePolicyCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // CreatePolicyRequest
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* description: "STRING_VALUE",
|
|
44
|
+
* availabilitySlo: { // AvailabilitySlo
|
|
45
|
+
* target: Number("double"),
|
|
46
|
+
* },
|
|
47
|
+
* multiAz: { // MultiAzTargets
|
|
48
|
+
* rtoInMinutes: Number("int"),
|
|
49
|
+
* rpoInMinutes: Number("int"),
|
|
50
|
+
* disasterRecoveryApproach: "ACTIVE_ACTIVE" || "HOT_STANDBY" || "WARM_STANDBY" || "PILOT_LIGHT" || "BACKUP_AND_RESTORE",
|
|
51
|
+
* },
|
|
52
|
+
* multiRegion: { // MultiRegionTargets
|
|
53
|
+
* rtoInMinutes: Number("int"),
|
|
54
|
+
* rpoInMinutes: Number("int"),
|
|
55
|
+
* disasterRecoveryApproach: "ACTIVE_ACTIVE" || "HOT_STANDBY" || "WARM_STANDBY" || "PILOT_LIGHT" || "BACKUP_AND_RESTORE",
|
|
56
|
+
* },
|
|
57
|
+
* dataRecovery: { // DataRecoveryTargets
|
|
58
|
+
* timeBetweenBackupsInMinutes: Number("int"),
|
|
59
|
+
* },
|
|
60
|
+
* kmsKeyId: "STRING_VALUE",
|
|
61
|
+
* tags: { // TagMap
|
|
62
|
+
* "<keys>": "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* clientToken: "STRING_VALUE",
|
|
65
|
+
* };
|
|
66
|
+
* const command = new CreatePolicyCommand(input);
|
|
67
|
+
* const response = await client.send(command);
|
|
68
|
+
* // { // CreatePolicyResponse
|
|
69
|
+
* // policy: { // Policy
|
|
70
|
+
* // policyArn: "STRING_VALUE", // required
|
|
71
|
+
* // name: "STRING_VALUE", // required
|
|
72
|
+
* // description: "STRING_VALUE",
|
|
73
|
+
* // availabilitySlo: { // AvailabilitySlo
|
|
74
|
+
* // target: Number("double"),
|
|
75
|
+
* // },
|
|
76
|
+
* // multiAz: { // MultiAzTargets
|
|
77
|
+
* // rtoInMinutes: Number("int"),
|
|
78
|
+
* // rpoInMinutes: Number("int"),
|
|
79
|
+
* // disasterRecoveryApproach: "ACTIVE_ACTIVE" || "HOT_STANDBY" || "WARM_STANDBY" || "PILOT_LIGHT" || "BACKUP_AND_RESTORE",
|
|
80
|
+
* // },
|
|
81
|
+
* // multiRegion: { // MultiRegionTargets
|
|
82
|
+
* // rtoInMinutes: Number("int"),
|
|
83
|
+
* // rpoInMinutes: Number("int"),
|
|
84
|
+
* // disasterRecoveryApproach: "ACTIVE_ACTIVE" || "HOT_STANDBY" || "WARM_STANDBY" || "PILOT_LIGHT" || "BACKUP_AND_RESTORE",
|
|
85
|
+
* // },
|
|
86
|
+
* // dataRecovery: { // DataRecoveryTargets
|
|
87
|
+
* // timeBetweenBackupsInMinutes: Number("int"),
|
|
88
|
+
* // },
|
|
89
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
90
|
+
* // tags: { // TagMap
|
|
91
|
+
* // "<keys>": "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // associatedServiceCount: Number("int"),
|
|
94
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
95
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
96
|
+
* // },
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
99
|
+
* ```
|
|
100
|
+
*
|
|
101
|
+
* @param CreatePolicyCommandInput - {@link CreatePolicyCommandInput}
|
|
102
|
+
* @returns {@link CreatePolicyCommandOutput}
|
|
103
|
+
* @see {@link CreatePolicyCommandInput} for command's `input` shape.
|
|
104
|
+
* @see {@link CreatePolicyCommandOutput} for command's `response` shape.
|
|
105
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
108
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link ConflictException} (client fault)
|
|
111
|
+
* <p>Conflict — resource already exists.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link InternalServerException} (server fault)
|
|
114
|
+
* <p>Internal service error.</p>
|
|
115
|
+
*
|
|
116
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
117
|
+
* <p>Resource not found.</p>
|
|
118
|
+
*
|
|
119
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
120
|
+
* <p>Service quota exceeded.</p>
|
|
121
|
+
*
|
|
122
|
+
* @throws {@link ValidationException} (client fault)
|
|
123
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
124
|
+
*
|
|
125
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
127
|
+
*
|
|
128
|
+
*
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export declare class CreatePolicyCommand extends CreatePolicyCommand_base {
|
|
132
|
+
/** @internal type navigation helper, not in runtime. */
|
|
133
|
+
protected static __types: {
|
|
134
|
+
api: {
|
|
135
|
+
input: CreatePolicyRequest;
|
|
136
|
+
output: CreatePolicyResponse;
|
|
137
|
+
};
|
|
138
|
+
sdk: {
|
|
139
|
+
input: CreatePolicyCommandInput;
|
|
140
|
+
output: CreatePolicyCommandOutput;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreateReportRequest, CreateReportResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateReportCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateReportCommandInput extends CreateReportRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateReportCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateReportCommandOutput extends CreateReportResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateReportCommand_base: {
|
|
25
|
+
new (input: CreateReportCommandInput): import("@smithy/core/client").CommandImpl<CreateReportCommandInput, CreateReportCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateReportCommandInput): import("@smithy/core/client").CommandImpl<CreateReportCommandInput, CreateReportCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>On-demand report creation. Idempotent — duplicate requests with same clientToken return existing result.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, CreateReportCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, CreateReportCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // CreateReportRequest
|
|
42
|
+
* serviceArn: "STRING_VALUE", // required
|
|
43
|
+
* reportType: "FAILURE_MODE", // required
|
|
44
|
+
* clientToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new CreateReportCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // CreateReportResponse
|
|
49
|
+
* // reportGenerationResult: { // ReportGenerationResult
|
|
50
|
+
* // reportType: "FAILURE_MODE", // required
|
|
51
|
+
* // status: "PENDING" || "SUCCEEDED" || "FAILED", // required
|
|
52
|
+
* // serviceArn: "STRING_VALUE",
|
|
53
|
+
* // assessmentId: "STRING_VALUE",
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // reportOutput: { // ReportOutput Union: only one key present
|
|
56
|
+
* // s3ReportOutput: { // S3ReportOutput
|
|
57
|
+
* // s3ObjectKey: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // failedReportOutput: { // FailedReportOutput
|
|
60
|
+
* // errorCode: "INSUFFICIENT_PERMISSIONS" || "CONFIGURATION_ERROR" || "INTERNAL_ERROR", // required
|
|
61
|
+
* // errorMessage: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @param CreateReportCommandInput - {@link CreateReportCommandInput}
|
|
70
|
+
* @returns {@link CreateReportCommandOutput}
|
|
71
|
+
* @see {@link CreateReportCommandInput} for command's `input` shape.
|
|
72
|
+
* @see {@link CreateReportCommandOutput} for command's `response` shape.
|
|
73
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
76
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ConflictException} (client fault)
|
|
79
|
+
* <p>Conflict — resource already exists.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InternalServerException} (server fault)
|
|
82
|
+
* <p>Internal service error.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
|
+
* <p>Resource not found.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
88
|
+
* <p>Too many requests — rate limit exceeded.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ValidationException} (client fault)
|
|
91
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
95
|
+
*
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class CreateReportCommand extends CreateReportCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: CreateReportRequest;
|
|
104
|
+
output: CreateReportResponse;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: CreateReportCommandInput;
|
|
108
|
+
output: CreateReportCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateServiceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateServiceCommandInput extends CreateServiceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateServiceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateServiceCommand_base: {
|
|
25
|
+
new (input: CreateServiceCommandInput): import("@smithy/core/client").CommandImpl<CreateServiceCommandInput, CreateServiceCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateServiceCommandInput): import("@smithy/core/client").CommandImpl<CreateServiceCommandInput, CreateServiceCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a service.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, CreateServiceCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, CreateServiceCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // CreateServiceRequest
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* description: "STRING_VALUE",
|
|
44
|
+
* associatedSystems: [ // AssociatedSystemList
|
|
45
|
+
* { // AssociatedSystem
|
|
46
|
+
* systemArn: "STRING_VALUE", // required
|
|
47
|
+
* systemName: "STRING_VALUE",
|
|
48
|
+
* userJourneyIds: [ // UserJourneyIdList
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* policyArn: "STRING_VALUE",
|
|
54
|
+
* regions: [ // RegionList // required
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
57
|
+
* permissionModel: { // PermissionModel
|
|
58
|
+
* invokerRoleName: "STRING_VALUE", // required
|
|
59
|
+
* crossAccountRoles: [ // CrossAccountRoleList
|
|
60
|
+
* { // CrossAccountRole
|
|
61
|
+
* crossAccountRoleArn: "STRING_VALUE", // required
|
|
62
|
+
* externalId: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* dependencyDiscovery: "ENABLED" || "DISABLED",
|
|
67
|
+
* reportConfiguration: { // ServiceReportConfiguration
|
|
68
|
+
* reportOutputs: [ // ReportOutputConfigurationList // required
|
|
69
|
+
* { // ReportOutputConfiguration Union: only one key present
|
|
70
|
+
* s3: { // S3ReportOutputConfiguration
|
|
71
|
+
* bucketPath: "STRING_VALUE", // required
|
|
72
|
+
* bucketOwner: "STRING_VALUE", // required
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* },
|
|
77
|
+
* kmsKeyId: "STRING_VALUE",
|
|
78
|
+
* tags: { // TagMap
|
|
79
|
+
* "<keys>": "STRING_VALUE",
|
|
80
|
+
* },
|
|
81
|
+
* clientToken: "STRING_VALUE",
|
|
82
|
+
* };
|
|
83
|
+
* const command = new CreateServiceCommand(input);
|
|
84
|
+
* const response = await client.send(command);
|
|
85
|
+
* // { // CreateServiceResponse
|
|
86
|
+
* // service: { // Service
|
|
87
|
+
* // serviceArn: "STRING_VALUE", // required
|
|
88
|
+
* // name: "STRING_VALUE", // required
|
|
89
|
+
* // description: "STRING_VALUE",
|
|
90
|
+
* // associatedSystems: [ // AssociatedSystemList
|
|
91
|
+
* // { // AssociatedSystem
|
|
92
|
+
* // systemArn: "STRING_VALUE", // required
|
|
93
|
+
* // systemName: "STRING_VALUE",
|
|
94
|
+
* // userJourneyIds: [ // UserJourneyIdList
|
|
95
|
+
* // "STRING_VALUE",
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // policyArn: "STRING_VALUE",
|
|
100
|
+
* // regions: [ // RegionList
|
|
101
|
+
* // "STRING_VALUE",
|
|
102
|
+
* // ],
|
|
103
|
+
* // permissionModel: { // PermissionModel
|
|
104
|
+
* // invokerRoleName: "STRING_VALUE", // required
|
|
105
|
+
* // crossAccountRoles: [ // CrossAccountRoleList
|
|
106
|
+
* // { // CrossAccountRole
|
|
107
|
+
* // crossAccountRoleArn: "STRING_VALUE", // required
|
|
108
|
+
* // externalId: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
112
|
+
* // dependencyDiscovery: { // DependencyDiscoveryConfig
|
|
113
|
+
* // status: "ENABLED" || "INITIALIZING" || "DISABLED", // required
|
|
114
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
115
|
+
* // },
|
|
116
|
+
* // effectivePolicyValues: { // EffectivePolicyValues
|
|
117
|
+
* // availabilitySlo: { // SloSource
|
|
118
|
+
* // value: Number("double"),
|
|
119
|
+
* // policyName: "STRING_VALUE",
|
|
120
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
121
|
+
* // },
|
|
122
|
+
* // multiAzRto: { // TargetSource
|
|
123
|
+
* // value: Number("int"),
|
|
124
|
+
* // policyName: "STRING_VALUE",
|
|
125
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
126
|
+
* // },
|
|
127
|
+
* // multiAzRpo: {
|
|
128
|
+
* // value: Number("int"),
|
|
129
|
+
* // policyName: "STRING_VALUE",
|
|
130
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
131
|
+
* // },
|
|
132
|
+
* // multiAzDrApproach: { // DisasterRecoverySource
|
|
133
|
+
* // value: "STRING_VALUE",
|
|
134
|
+
* // policyName: "STRING_VALUE",
|
|
135
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
136
|
+
* // },
|
|
137
|
+
* // multiRegionRto: {
|
|
138
|
+
* // value: Number("int"),
|
|
139
|
+
* // policyName: "STRING_VALUE",
|
|
140
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
141
|
+
* // },
|
|
142
|
+
* // multiRegionRpo: {
|
|
143
|
+
* // value: Number("int"),
|
|
144
|
+
* // policyName: "STRING_VALUE",
|
|
145
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
146
|
+
* // },
|
|
147
|
+
* // multiRegionDrApproach: {
|
|
148
|
+
* // value: "STRING_VALUE",
|
|
149
|
+
* // policyName: "STRING_VALUE",
|
|
150
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
151
|
+
* // },
|
|
152
|
+
* // dataRecoveryTimeBetweenBackups: {
|
|
153
|
+
* // value: Number("int"),
|
|
154
|
+
* // policyName: "STRING_VALUE",
|
|
155
|
+
* // source: "SELF" || "CROSS_ACCOUNT",
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // achievability: { // Achievability
|
|
159
|
+
* // availabilitySlo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
160
|
+
* // multiAzRtoRpo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
161
|
+
* // multiRegionRtoRpo: "ACHIEVABLE" || "NOT_ACHIEVABLE",
|
|
162
|
+
* // },
|
|
163
|
+
* // reportConfiguration: { // ServiceReportConfiguration
|
|
164
|
+
* // reportOutputs: [ // ReportOutputConfigurationList // required
|
|
165
|
+
* // { // ReportOutputConfiguration Union: only one key present
|
|
166
|
+
* // s3: { // S3ReportOutputConfiguration
|
|
167
|
+
* // bucketPath: "STRING_VALUE", // required
|
|
168
|
+
* // bucketOwner: "STRING_VALUE", // required
|
|
169
|
+
* // },
|
|
170
|
+
* // },
|
|
171
|
+
* // ],
|
|
172
|
+
* // },
|
|
173
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
174
|
+
* // tags: { // TagMap
|
|
175
|
+
* // "<keys>": "STRING_VALUE",
|
|
176
|
+
* // },
|
|
177
|
+
* // estimatedAssessmentCost: { // AssessmentCost
|
|
178
|
+
* // amount: Number("double"),
|
|
179
|
+
* // currency: "USD",
|
|
180
|
+
* // },
|
|
181
|
+
* // resourceDiscovery: { // ResourceDiscoveryStatus
|
|
182
|
+
* // status: "RUNNING" || "SUCCEEDED" || "FAILED" || "COMPLETED_WITH_FAILURES" || "NOT_STARTED",
|
|
183
|
+
* // lastRunAt: new Date("TIMESTAMP"),
|
|
184
|
+
* // errorCode: "INVALID_PERMISSIONS" || "STACK_NOT_FOUND" || "CLUSTER_NOT_FOUND" || "STATE_FILE_NOT_FOUND" || "ACCESS_DENIED" || "UNSUPPORTED_CLUSTER" || "INTERNAL_ERROR",
|
|
185
|
+
* // errorMessage: "STRING_VALUE",
|
|
186
|
+
* // },
|
|
187
|
+
* // assessmentStatus: "NOT_STARTED" || "PENDING" || "IN_PROGRESS" || "FAILED" || "SUCCESS",
|
|
188
|
+
* // rerunAssessment: true || false,
|
|
189
|
+
* // openFindingsCount: Number("int"),
|
|
190
|
+
* // resolvedFindingsCount: Number("int"),
|
|
191
|
+
* // organizationId: "STRING_VALUE",
|
|
192
|
+
* // ouId: "STRING_VALUE",
|
|
193
|
+
* // accountId: "STRING_VALUE",
|
|
194
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
195
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
196
|
+
* // },
|
|
197
|
+
* // };
|
|
198
|
+
*
|
|
199
|
+
* ```
|
|
200
|
+
*
|
|
201
|
+
* @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
|
|
202
|
+
* @returns {@link CreateServiceCommandOutput}
|
|
203
|
+
* @see {@link CreateServiceCommandInput} for command's `input` shape.
|
|
204
|
+
* @see {@link CreateServiceCommandOutput} for command's `response` shape.
|
|
205
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
206
|
+
*
|
|
207
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
208
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link ConflictException} (client fault)
|
|
211
|
+
* <p>Conflict — resource already exists.</p>
|
|
212
|
+
*
|
|
213
|
+
* @throws {@link InternalServerException} (server fault)
|
|
214
|
+
* <p>Internal service error.</p>
|
|
215
|
+
*
|
|
216
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
217
|
+
* <p>Resource not found.</p>
|
|
218
|
+
*
|
|
219
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
220
|
+
* <p>Service quota exceeded.</p>
|
|
221
|
+
*
|
|
222
|
+
* @throws {@link ValidationException} (client fault)
|
|
223
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
224
|
+
*
|
|
225
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
226
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
227
|
+
*
|
|
228
|
+
*
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
export declare class CreateServiceCommand extends CreateServiceCommand_base {
|
|
232
|
+
/** @internal type navigation helper, not in runtime. */
|
|
233
|
+
protected static __types: {
|
|
234
|
+
api: {
|
|
235
|
+
input: CreateServiceRequest;
|
|
236
|
+
output: CreateServiceResponse;
|
|
237
|
+
};
|
|
238
|
+
sdk: {
|
|
239
|
+
input: CreateServiceCommandInput;
|
|
240
|
+
output: CreateServiceCommandOutput;
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreateServiceFunctionRequest, CreateServiceFunctionResponse } from "../models/models_0";
|
|
4
|
+
import type { Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Resiliencehubv2Client";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateServiceFunctionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateServiceFunctionCommandInput extends CreateServiceFunctionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateServiceFunctionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateServiceFunctionCommandOutput extends CreateServiceFunctionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateServiceFunctionCommand_base: {
|
|
25
|
+
new (input: CreateServiceFunctionCommandInput): import("@smithy/core/client").CommandImpl<CreateServiceFunctionCommandInput, CreateServiceFunctionCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateServiceFunctionCommandInput): import("@smithy/core/client").CommandImpl<CreateServiceFunctionCommandInput, CreateServiceFunctionCommandOutput, Resiliencehubv2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a service function within a service.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { Resiliencehubv2Client, CreateServiceFunctionCommand } from "@aws-sdk/client-resiliencehubv2"; // ES Modules import
|
|
37
|
+
* // const { Resiliencehubv2Client, CreateServiceFunctionCommand } = require("@aws-sdk/client-resiliencehubv2"); // CommonJS import
|
|
38
|
+
* // import type { Resiliencehubv2ClientConfig } from "@aws-sdk/client-resiliencehubv2";
|
|
39
|
+
* const config = {}; // type is Resiliencehubv2ClientConfig
|
|
40
|
+
* const client = new Resiliencehubv2Client(config);
|
|
41
|
+
* const input = { // CreateServiceFunctionRequest
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* serviceArn: "STRING_VALUE", // required
|
|
44
|
+
* description: "STRING_VALUE",
|
|
45
|
+
* criticality: "PRIMARY" || "SUPPLEMENTAL", // required
|
|
46
|
+
* clientToken: "STRING_VALUE",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new CreateServiceFunctionCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateServiceFunctionResponse
|
|
51
|
+
* // serviceFunction: { // ServiceFunction
|
|
52
|
+
* // serviceArn: "STRING_VALUE", // required
|
|
53
|
+
* // serviceFunctionId: "STRING_VALUE", // required
|
|
54
|
+
* // name: "STRING_VALUE", // required
|
|
55
|
+
* // description: "STRING_VALUE",
|
|
56
|
+
* // criticality: "PRIMARY" || "SUPPLEMENTAL", // required
|
|
57
|
+
* // resourceCount: Number("int"),
|
|
58
|
+
* // source: "AI_GENERATED" || "USER",
|
|
59
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param CreateServiceFunctionCommandInput - {@link CreateServiceFunctionCommandInput}
|
|
67
|
+
* @returns {@link CreateServiceFunctionCommandOutput}
|
|
68
|
+
* @see {@link CreateServiceFunctionCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link CreateServiceFunctionCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link Resiliencehubv2ClientResolvedConfig | config} for Resiliencehubv2Client's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>Access denied — caller lacks required permissions.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ConflictException} (client fault)
|
|
76
|
+
* <p>Conflict — resource already exists.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InternalServerException} (server fault)
|
|
79
|
+
* <p>Internal service error.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>Resource not found.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
85
|
+
* <p>Service quota exceeded.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ValidationException} (client fault)
|
|
88
|
+
* <p>Validation error — invalid input parameters.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link Resiliencehubv2ServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from Resiliencehubv2 service.</p>
|
|
92
|
+
*
|
|
93
|
+
*
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class CreateServiceFunctionCommand extends CreateServiceFunctionCommand_base {
|
|
97
|
+
/** @internal type navigation helper, not in runtime. */
|
|
98
|
+
protected static __types: {
|
|
99
|
+
api: {
|
|
100
|
+
input: CreateServiceFunctionRequest;
|
|
101
|
+
output: CreateServiceFunctionResponse;
|
|
102
|
+
};
|
|
103
|
+
sdk: {
|
|
104
|
+
input: CreateServiceFunctionCommandInput;
|
|
105
|
+
output: CreateServiceFunctionCommandOutput;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
}
|