@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.
Files changed (41) hide show
  1. package/dist-types/SSMIncidents.d.ts +30 -0
  2. package/dist-types/SSMIncidentsClient.d.ts +24 -4
  3. package/dist-types/commands/CreateReplicationSetCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateResponsePlanCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateTimelineEventCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteIncidentRecordCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteReplicationSetCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteResponsePlanCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteTimelineEventCommand.d.ts +16 -0
  11. package/dist-types/commands/GetIncidentRecordCommand.d.ts +16 -0
  12. package/dist-types/commands/GetReplicationSetCommand.d.ts +16 -0
  13. package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
  14. package/dist-types/commands/GetResponsePlanCommand.d.ts +16 -0
  15. package/dist-types/commands/GetTimelineEventCommand.d.ts +16 -0
  16. package/dist-types/commands/ListIncidentRecordsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListRelatedItemsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListReplicationSetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListResponsePlansCommand.d.ts +16 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/ListTimelineEventsCommand.d.ts +16 -0
  22. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  23. package/dist-types/commands/StartIncidentCommand.d.ts +16 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateDeletionProtectionCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateIncidentRecordCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateRelatedItemsCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateReplicationSetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateResponsePlanCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateTimelineEventCommand.d.ts +16 -0
  32. package/dist-types/models/SSMIncidentsServiceException.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +281 -0
  34. package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
  35. package/dist-types/pagination/Interfaces.d.ts +3 -0
  36. package/dist-types/pagination/ListIncidentRecordsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListRelatedItemsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListReplicationSetsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListResponsePlansPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListTimelineEventsPaginator.d.ts +3 -0
  41. 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,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { SSMIncidentsClient } from "../SSMIncidentsClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface SSMIncidentsPaginationConfiguration extends PaginationConfiguration {
4
7
  client: SSMIncidentsClient;
5
8
  }
@@ -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.296.0",
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.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
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",