@aws-sdk/client-ssm-incidents 3.300.0 → 3.303.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-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +53 -63
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +53 -63
- package/dist-types/SSMIncidents.d.ts +20 -22
- package/dist-types/commands/CreateReplicationSetCommand.d.ts +5 -5
- package/dist-types/commands/CreateResponsePlanCommand.d.ts +22 -22
- package/dist-types/commands/CreateTimelineEventCommand.d.ts +6 -6
- package/dist-types/commands/DeleteIncidentRecordCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReplicationSetCommand.d.ts +2 -2
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteResponsePlanCommand.d.ts +3 -3
- package/dist-types/commands/DeleteTimelineEventCommand.d.ts +1 -1
- package/dist-types/commands/GetIncidentRecordCommand.d.ts +1 -1
- package/dist-types/commands/GetReplicationSetCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
- package/dist-types/commands/GetResponsePlanCommand.d.ts +1 -1
- package/dist-types/commands/GetTimelineEventCommand.d.ts +1 -1
- package/dist-types/commands/ListIncidentRecordsCommand.d.ts +8 -8
- package/dist-types/commands/ListRelatedItemsCommand.d.ts +1 -1
- package/dist-types/commands/ListReplicationSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListResponsePlansCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTimelineEventsCommand.d.ts +7 -7
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -4
- package/dist-types/commands/StartIncidentCommand.d.ts +8 -8
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDeletionProtectionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateIncidentRecordCommand.d.ts +8 -8
- package/dist-types/commands/UpdateRelatedItemsCommand.d.ts +7 -7
- package/dist-types/commands/UpdateReplicationSetCommand.d.ts +5 -5
- package/dist-types/commands/UpdateResponsePlanCommand.d.ts +18 -18
- package/dist-types/commands/UpdateTimelineEventCommand.d.ts +4 -5
- package/dist-types/models/models_0.d.ts +313 -289
- package/dist-types/ts3.4/models/models_0.d.ts +67 -53
- package/package.json +35 -35
|
@@ -7,10 +7,11 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare
|
|
11
|
-
INCIDENT_RECORD_ARN
|
|
12
|
-
INVOLVED_RESOURCES
|
|
13
|
-
}
|
|
10
|
+
export declare const VariableType: {
|
|
11
|
+
readonly INCIDENT_RECORD_ARN: "INCIDENT_RECORD_ARN";
|
|
12
|
+
readonly INVOLVED_RESOURCES: "INVOLVED_RESOURCES";
|
|
13
|
+
};
|
|
14
|
+
export type VariableType = (typeof VariableType)[keyof typeof VariableType];
|
|
14
15
|
export type DynamicSsmParameterValue =
|
|
15
16
|
| DynamicSsmParameterValue.VariableMember
|
|
16
17
|
| DynamicSsmParameterValue.$UnknownMember;
|
|
@@ -29,10 +30,12 @@ export declare namespace DynamicSsmParameterValue {
|
|
|
29
30
|
}
|
|
30
31
|
const visit: <T>(value: DynamicSsmParameterValue, visitor: Visitor<T>) => T;
|
|
31
32
|
}
|
|
32
|
-
export declare
|
|
33
|
-
IMPACTED_ACCOUNT
|
|
34
|
-
RESPONSE_PLAN_OWNER_ACCOUNT
|
|
35
|
-
}
|
|
33
|
+
export declare const SsmTargetAccount: {
|
|
34
|
+
readonly IMPACTED_ACCOUNT: "IMPACTED_ACCOUNT";
|
|
35
|
+
readonly RESPONSE_PLAN_OWNER_ACCOUNT: "RESPONSE_PLAN_OWNER_ACCOUNT";
|
|
36
|
+
};
|
|
37
|
+
export type SsmTargetAccount =
|
|
38
|
+
(typeof SsmTargetAccount)[keyof typeof SsmTargetAccount];
|
|
36
39
|
export interface SsmAutomation {
|
|
37
40
|
roleArn: string | undefined;
|
|
38
41
|
documentName: string | undefined;
|
|
@@ -172,13 +175,14 @@ export declare namespace Condition {
|
|
|
172
175
|
}
|
|
173
176
|
const visit: <T>(value: Condition, visitor: Visitor<T>) => T;
|
|
174
177
|
}
|
|
175
|
-
export declare
|
|
176
|
-
INCIDENT_RECORD
|
|
177
|
-
REPLICATION_SET
|
|
178
|
-
RESOURCE_POLICY
|
|
179
|
-
RESPONSE_PLAN
|
|
180
|
-
TIMELINE_EVENT
|
|
181
|
-
}
|
|
178
|
+
export declare const ResourceType: {
|
|
179
|
+
readonly INCIDENT_RECORD: "INCIDENT_RECORD";
|
|
180
|
+
readonly REPLICATION_SET: "REPLICATION_SET";
|
|
181
|
+
readonly RESOURCE_POLICY: "RESOURCE_POLICY";
|
|
182
|
+
readonly RESPONSE_PLAN: "RESPONSE_PLAN";
|
|
183
|
+
readonly TIMELINE_EVENT: "TIMELINE_EVENT";
|
|
184
|
+
};
|
|
185
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
182
186
|
export declare class ConflictException extends __BaseException {
|
|
183
187
|
readonly name: "ConflictException";
|
|
184
188
|
readonly $fault: "client";
|
|
@@ -205,9 +209,10 @@ export declare class InternalServerException extends __BaseException {
|
|
|
205
209
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
206
210
|
);
|
|
207
211
|
}
|
|
208
|
-
export declare
|
|
209
|
-
SSM_INCIDENTS
|
|
210
|
-
}
|
|
212
|
+
export declare const ServiceCode: {
|
|
213
|
+
readonly SSM_INCIDENTS: "ssm-incidents";
|
|
214
|
+
};
|
|
215
|
+
export type ServiceCode = (typeof ServiceCode)[keyof typeof ServiceCode];
|
|
211
216
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
212
217
|
readonly name: "ServiceQuotaExceededException";
|
|
213
218
|
readonly $fault: "client";
|
|
@@ -395,10 +400,12 @@ export interface IncidentRecordSource {
|
|
|
395
400
|
resourceArn?: string;
|
|
396
401
|
source: string | undefined;
|
|
397
402
|
}
|
|
398
|
-
export declare
|
|
399
|
-
OPEN
|
|
400
|
-
RESOLVED
|
|
401
|
-
}
|
|
403
|
+
export declare const IncidentRecordStatus: {
|
|
404
|
+
readonly OPEN: "OPEN";
|
|
405
|
+
readonly RESOLVED: "RESOLVED";
|
|
406
|
+
};
|
|
407
|
+
export type IncidentRecordStatus =
|
|
408
|
+
(typeof IncidentRecordStatus)[keyof typeof IncidentRecordStatus];
|
|
402
409
|
export interface IncidentRecord {
|
|
403
410
|
arn: string | undefined;
|
|
404
411
|
title: string | undefined;
|
|
@@ -421,25 +428,28 @@ export interface GetIncidentRecordOutput {
|
|
|
421
428
|
export interface GetReplicationSetInput {
|
|
422
429
|
arn: string | undefined;
|
|
423
430
|
}
|
|
424
|
-
export declare
|
|
425
|
-
ACTIVE
|
|
426
|
-
CREATING
|
|
427
|
-
DELETING
|
|
428
|
-
FAILED
|
|
429
|
-
}
|
|
431
|
+
export declare const RegionStatus: {
|
|
432
|
+
readonly ACTIVE: "ACTIVE";
|
|
433
|
+
readonly CREATING: "CREATING";
|
|
434
|
+
readonly DELETING: "DELETING";
|
|
435
|
+
readonly FAILED: "FAILED";
|
|
436
|
+
};
|
|
437
|
+
export type RegionStatus = (typeof RegionStatus)[keyof typeof RegionStatus];
|
|
430
438
|
export interface RegionInfo {
|
|
431
439
|
sseKmsKeyId?: string;
|
|
432
440
|
status: RegionStatus | string | undefined;
|
|
433
441
|
statusMessage?: string;
|
|
434
442
|
statusUpdateDateTime: Date | undefined;
|
|
435
443
|
}
|
|
436
|
-
export declare
|
|
437
|
-
ACTIVE
|
|
438
|
-
CREATING
|
|
439
|
-
DELETING
|
|
440
|
-
FAILED
|
|
441
|
-
UPDATING
|
|
442
|
-
}
|
|
444
|
+
export declare const ReplicationSetStatus: {
|
|
445
|
+
readonly ACTIVE: "ACTIVE";
|
|
446
|
+
readonly CREATING: "CREATING";
|
|
447
|
+
readonly DELETING: "DELETING";
|
|
448
|
+
readonly FAILED: "FAILED";
|
|
449
|
+
readonly UPDATING: "UPDATING";
|
|
450
|
+
};
|
|
451
|
+
export type ReplicationSetStatus =
|
|
452
|
+
(typeof ReplicationSetStatus)[keyof typeof ReplicationSetStatus];
|
|
443
453
|
export interface ReplicationSet {
|
|
444
454
|
arn?: string;
|
|
445
455
|
regionMap: Record<string, RegionInfo> | undefined;
|
|
@@ -505,17 +515,18 @@ export interface IncidentRecordSummary {
|
|
|
505
515
|
resolvedTime?: Date;
|
|
506
516
|
incidentRecordSource: IncidentRecordSource | undefined;
|
|
507
517
|
}
|
|
508
|
-
export declare
|
|
509
|
-
ANALYSIS
|
|
510
|
-
ATTACHMENT
|
|
511
|
-
AUTOMATION
|
|
512
|
-
INCIDENT
|
|
513
|
-
INVOLVED_RESOURCE
|
|
514
|
-
METRIC
|
|
515
|
-
OTHER
|
|
516
|
-
PARENT
|
|
517
|
-
TASK
|
|
518
|
-
}
|
|
518
|
+
export declare const ItemType: {
|
|
519
|
+
readonly ANALYSIS: "ANALYSIS";
|
|
520
|
+
readonly ATTACHMENT: "ATTACHMENT";
|
|
521
|
+
readonly AUTOMATION: "AUTOMATION";
|
|
522
|
+
readonly INCIDENT: "INCIDENT";
|
|
523
|
+
readonly INVOLVED_RESOURCE: "INVOLVED_RESOURCE";
|
|
524
|
+
readonly METRIC: "METRIC";
|
|
525
|
+
readonly OTHER: "OTHER";
|
|
526
|
+
readonly PARENT: "PARENT";
|
|
527
|
+
readonly TASK: "TASK";
|
|
528
|
+
};
|
|
529
|
+
export type ItemType = (typeof ItemType)[keyof typeof ItemType];
|
|
519
530
|
export interface PagerDutyIncidentDetail {
|
|
520
531
|
id: string | undefined;
|
|
521
532
|
autoResolve?: boolean;
|
|
@@ -626,13 +637,16 @@ export interface ListTagsForResourceRequest {
|
|
|
626
637
|
export interface ListTagsForResourceResponse {
|
|
627
638
|
tags: Record<string, string> | undefined;
|
|
628
639
|
}
|
|
629
|
-
export declare
|
|
630
|
-
EVENT_TIME
|
|
631
|
-
}
|
|
632
|
-
export
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
640
|
+
export declare const TimelineEventSort: {
|
|
641
|
+
readonly EVENT_TIME: "EVENT_TIME";
|
|
642
|
+
};
|
|
643
|
+
export type TimelineEventSort =
|
|
644
|
+
(typeof TimelineEventSort)[keyof typeof TimelineEventSort];
|
|
645
|
+
export declare const SortOrder: {
|
|
646
|
+
readonly ASCENDING: "ASCENDING";
|
|
647
|
+
readonly DESCENDING: "DESCENDING";
|
|
648
|
+
};
|
|
649
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
636
650
|
export interface ListTimelineEventsInput {
|
|
637
651
|
incidentRecordArn: string | undefined;
|
|
638
652
|
filters?: Filter[];
|
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.303.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",
|
|
@@ -21,44 +21,44 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
56
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
|
+
"@aws-sdk/util-waiter": "3.303.0",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"@types/uuid": "^8.3.0",
|