@aws-sdk/client-ssm-incidents 3.169.0 → 3.171.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SSMIncidents.d.ts +497 -150
  3. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +279 -102
  4. package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  22. package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +36 -17
  32. package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +36 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +7 -7
  36. package/dist-types/ts3.4/models/SSMIncidentsServiceException.d.ts +7 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +954 -1173
  39. package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  41. package/dist-types/ts3.4/pagination/ListIncidentRecordsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListRelatedItemsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListReplicationSetsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListResponsePlansPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListTimelineEventsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  52. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  53. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +11 -7
  54. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +11 -7
  55. package/package.json +35 -35
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateReplicationSetInput, UpdateReplicationSetOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface UpdateReplicationSetCommandInput extends UpdateReplicationSetInput {
6
- }
7
- export interface UpdateReplicationSetCommandOutput extends UpdateReplicationSetOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateReplicationSetCommand extends $Command<UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: UpdateReplicationSetCommandInput;
12
- constructor(input: UpdateReplicationSetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateReplicationSetCommandInput, UpdateReplicationSetCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateReplicationSetInput,
10
+ UpdateReplicationSetOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface UpdateReplicationSetCommandInput
18
+ extends UpdateReplicationSetInput {}
19
+ export interface UpdateReplicationSetCommandOutput
20
+ extends UpdateReplicationSetOutput,
21
+ __MetadataBearer {}
22
+ export declare class UpdateReplicationSetCommand extends $Command<
23
+ UpdateReplicationSetCommandInput,
24
+ UpdateReplicationSetCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateReplicationSetCommandInput;
28
+ constructor(input: UpdateReplicationSetCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SSMIncidentsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateReplicationSetCommandInput,
35
+ UpdateReplicationSetCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateResponsePlanInput, UpdateResponsePlanOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface UpdateResponsePlanCommandInput extends UpdateResponsePlanInput {
6
- }
7
- export interface UpdateResponsePlanCommandOutput extends UpdateResponsePlanOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateResponsePlanCommand extends $Command<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: UpdateResponsePlanCommandInput;
12
- constructor(input: UpdateResponsePlanCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateResponsePlanInput,
10
+ UpdateResponsePlanOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface UpdateResponsePlanCommandInput
18
+ extends UpdateResponsePlanInput {}
19
+ export interface UpdateResponsePlanCommandOutput
20
+ extends UpdateResponsePlanOutput,
21
+ __MetadataBearer {}
22
+ export declare class UpdateResponsePlanCommand extends $Command<
23
+ UpdateResponsePlanCommandInput,
24
+ UpdateResponsePlanCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateResponsePlanCommandInput;
28
+ constructor(input: UpdateResponsePlanCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SSMIncidentsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateResponsePlanCommandInput, UpdateResponsePlanCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateTimelineEventInput, UpdateTimelineEventOutput } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient";
5
- export interface UpdateTimelineEventCommandInput extends UpdateTimelineEventInput {
6
- }
7
- export interface UpdateTimelineEventCommandOutput extends UpdateTimelineEventOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateTimelineEventCommand extends $Command<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput, SSMIncidentsClientResolvedConfig> {
11
- readonly input: UpdateTimelineEventCommandInput;
12
- constructor(input: UpdateTimelineEventCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMIncidentsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateTimelineEventInput,
10
+ UpdateTimelineEventOutput,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ SSMIncidentsClientResolvedConfig,
16
+ } from "../SSMIncidentsClient";
17
+ export interface UpdateTimelineEventCommandInput
18
+ extends UpdateTimelineEventInput {}
19
+ export interface UpdateTimelineEventCommandOutput
20
+ extends UpdateTimelineEventOutput,
21
+ __MetadataBearer {}
22
+ export declare class UpdateTimelineEventCommand extends $Command<
23
+ UpdateTimelineEventCommandInput,
24
+ UpdateTimelineEventCommandOutput,
25
+ SSMIncidentsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateTimelineEventCommandInput;
28
+ constructor(input: UpdateTimelineEventCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: SSMIncidentsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,29 +1,29 @@
1
- export * from "./CreateReplicationSetCommand";
2
- export * from "./CreateResponsePlanCommand";
3
- export * from "./CreateTimelineEventCommand";
4
- export * from "./DeleteIncidentRecordCommand";
5
- export * from "./DeleteReplicationSetCommand";
6
- export * from "./DeleteResourcePolicyCommand";
7
- export * from "./DeleteResponsePlanCommand";
8
- export * from "./DeleteTimelineEventCommand";
9
- export * from "./GetIncidentRecordCommand";
10
- export * from "./GetReplicationSetCommand";
11
- export * from "./GetResourcePoliciesCommand";
12
- export * from "./GetResponsePlanCommand";
13
- export * from "./GetTimelineEventCommand";
14
- export * from "./ListIncidentRecordsCommand";
15
- export * from "./ListRelatedItemsCommand";
16
- export * from "./ListReplicationSetsCommand";
17
- export * from "./ListResponsePlansCommand";
18
- export * from "./ListTagsForResourceCommand";
19
- export * from "./ListTimelineEventsCommand";
20
- export * from "./PutResourcePolicyCommand";
21
- export * from "./StartIncidentCommand";
22
- export * from "./TagResourceCommand";
23
- export * from "./UntagResourceCommand";
24
- export * from "./UpdateDeletionProtectionCommand";
25
- export * from "./UpdateIncidentRecordCommand";
26
- export * from "./UpdateRelatedItemsCommand";
27
- export * from "./UpdateReplicationSetCommand";
28
- export * from "./UpdateResponsePlanCommand";
29
- export * from "./UpdateTimelineEventCommand";
1
+ export * from "./CreateReplicationSetCommand";
2
+ export * from "./CreateResponsePlanCommand";
3
+ export * from "./CreateTimelineEventCommand";
4
+ export * from "./DeleteIncidentRecordCommand";
5
+ export * from "./DeleteReplicationSetCommand";
6
+ export * from "./DeleteResourcePolicyCommand";
7
+ export * from "./DeleteResponsePlanCommand";
8
+ export * from "./DeleteTimelineEventCommand";
9
+ export * from "./GetIncidentRecordCommand";
10
+ export * from "./GetReplicationSetCommand";
11
+ export * from "./GetResourcePoliciesCommand";
12
+ export * from "./GetResponsePlanCommand";
13
+ export * from "./GetTimelineEventCommand";
14
+ export * from "./ListIncidentRecordsCommand";
15
+ export * from "./ListRelatedItemsCommand";
16
+ export * from "./ListReplicationSetsCommand";
17
+ export * from "./ListResponsePlansCommand";
18
+ export * from "./ListTagsForResourceCommand";
19
+ export * from "./ListTimelineEventsCommand";
20
+ export * from "./PutResourcePolicyCommand";
21
+ export * from "./StartIncidentCommand";
22
+ export * from "./TagResourceCommand";
23
+ export * from "./UntagResourceCommand";
24
+ export * from "./UpdateDeletionProtectionCommand";
25
+ export * from "./UpdateIncidentRecordCommand";
26
+ export * from "./UpdateRelatedItemsCommand";
27
+ export * from "./UpdateReplicationSetCommand";
28
+ export * from "./UpdateResponsePlanCommand";
29
+ export * from "./UpdateTimelineEventCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./SSMIncidents";
2
- export * from "./SSMIncidentsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { SSMIncidentsServiceException } from "./models/SSMIncidentsServiceException";
1
+ export * from "./SSMIncidents";
2
+ export * from "./SSMIncidentsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { SSMIncidentsServiceException } from "./models/SSMIncidentsServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SSMIncidentsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class SSMIncidentsServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";