@aws-sdk/client-ssm-incidents 3.296.0 → 3.297.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/dist-types/SSMIncidents.d.ts +30 -0
- package/dist-types/SSMIncidentsClient.d.ts +24 -4
- package/dist-types/commands/CreateReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/CreateTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/GetIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/GetReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
- package/dist-types/commands/GetResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/GetTimelineEventCommand.d.ts +16 -0
- package/dist-types/commands/ListIncidentRecordsCommand.d.ts +16 -0
- package/dist-types/commands/ListRelatedItemsCommand.d.ts +16 -0
- package/dist-types/commands/ListReplicationSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListResponsePlansCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTimelineEventsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartIncidentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDeletionProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIncidentRecordCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRelatedItemsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReplicationSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResponsePlanCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTimelineEventCommand.d.ts +16 -0
- package/dist-types/models/SSMIncidentsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +281 -0
- package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListIncidentRecordsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRelatedItemsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReplicationSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResponsePlansPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTimelineEventsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput } from "../commands/GetResourcePoliciesCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateGetResourcePolicies(config: SSMIncidentsPaginationConfiguration, input: GetResourcePoliciesCommandInput, ...additionalArguments: any): Paginator<GetResourcePoliciesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListIncidentRecordsCommandInput, ListIncidentRecordsCommandOutput } from "../commands/ListIncidentRecordsCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListIncidentRecords(config: SSMIncidentsPaginationConfiguration, input: ListIncidentRecordsCommandInput, ...additionalArguments: any): Paginator<ListIncidentRecordsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListRelatedItemsCommandInput, ListRelatedItemsCommandOutput } from "../commands/ListRelatedItemsCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListRelatedItems(config: SSMIncidentsPaginationConfiguration, input: ListRelatedItemsCommandInput, ...additionalArguments: any): Paginator<ListRelatedItemsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListReplicationSetsCommandInput, ListReplicationSetsCommandOutput } from "../commands/ListReplicationSetsCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListReplicationSets(config: SSMIncidentsPaginationConfiguration, input: ListReplicationSetsCommandInput, ...additionalArguments: any): Paginator<ListReplicationSetsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListResponsePlansCommandInput, ListResponsePlansCommandOutput } from "../commands/ListResponsePlansCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListResponsePlans(config: SSMIncidentsPaginationConfiguration, input: ListResponsePlansCommandInput, ...additionalArguments: any): Paginator<ListResponsePlansCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTimelineEventsCommandInput, ListTimelineEventsCommandOutput } from "../commands/ListTimelineEventsCommand";
|
|
3
3
|
import { SSMIncidentsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTimelineEvents(config: SSMIncidentsPaginationConfiguration, input: ListTimelineEventsCommandInput, ...additionalArguments: any): Paginator<ListTimelineEventsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-incidents",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Incidents Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|