@aws-sdk/client-ssm-incidents 3.118.1 → 3.127.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/CHANGELOG.md +30 -0
- package/dist-cjs/protocols/Aws_restJson1.js +281 -288
- package/dist-es/protocols/Aws_restJson1.js +219 -229
- package/dist-types/models/models_0.d.ts +25 -11
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +27 -27
|
@@ -21,7 +21,8 @@ export declare enum VariableType {
|
|
|
21
21
|
export declare type DynamicSsmParameterValue = DynamicSsmParameterValue.VariableMember | DynamicSsmParameterValue.$UnknownMember;
|
|
22
22
|
export declare namespace DynamicSsmParameterValue {
|
|
23
23
|
/**
|
|
24
|
-
* <p>Variable dynamic parameters. A parameter value is determined when an incident is
|
|
24
|
+
* <p>Variable dynamic parameters. A parameter value is determined when an incident is
|
|
25
|
+
* created.</p>
|
|
25
26
|
*/
|
|
26
27
|
interface VariableMember {
|
|
27
28
|
variable: VariableType | string;
|
|
@@ -73,7 +74,8 @@ export interface SsmAutomation {
|
|
|
73
74
|
*/
|
|
74
75
|
parameters?: Record<string, string[]>;
|
|
75
76
|
/**
|
|
76
|
-
* <p>The key-value pair to resolve dynamic parameter values when processing a Systems Manager
|
|
77
|
+
* <p>The key-value pair to resolve dynamic parameter values when processing a Systems Manager
|
|
78
|
+
* Automation runbook.</p>
|
|
77
79
|
*/
|
|
78
80
|
dynamicParameters?: Record<string, DynamicSsmParameterValue>;
|
|
79
81
|
}
|
|
@@ -502,6 +504,10 @@ export interface IncidentTemplate {
|
|
|
502
504
|
* incident.</p>
|
|
503
505
|
*/
|
|
504
506
|
notificationTargets?: NotificationTargetItem[];
|
|
507
|
+
/**
|
|
508
|
+
* <p>Tags to apply to an incident when calling the <code>StartIncident</code> API action.</p>
|
|
509
|
+
*/
|
|
510
|
+
incidentTags?: Record<string, string>;
|
|
505
511
|
}
|
|
506
512
|
export declare namespace IncidentTemplate {
|
|
507
513
|
/**
|
|
@@ -1799,7 +1805,8 @@ export interface StartIncidentInput {
|
|
|
1799
1805
|
clientToken?: string;
|
|
1800
1806
|
/**
|
|
1801
1807
|
* <p>The Amazon Resource Name (ARN) of the response plan that pre-defines summary, chat
|
|
1802
|
-
* channels, Amazon SNS topics, runbooks, title, and impact of the incident.
|
|
1808
|
+
* channels, Amazon SNS topics, runbooks, title, and impact of the incident.
|
|
1809
|
+
* </p>
|
|
1803
1810
|
*/
|
|
1804
1811
|
responsePlanArn: string | undefined;
|
|
1805
1812
|
/**
|
|
@@ -1826,12 +1833,12 @@ export interface StartIncidentInput {
|
|
|
1826
1833
|
* </li>
|
|
1827
1834
|
* <li>
|
|
1828
1835
|
* <p>
|
|
1829
|
-
* <code>3</code> -
|
|
1836
|
+
* <code>3</code> - Medium impact, the application is providing reduced service
|
|
1830
1837
|
* to customers.</p>
|
|
1831
1838
|
* </li>
|
|
1832
1839
|
* <li>
|
|
1833
1840
|
* <p>
|
|
1834
|
-
* <code>4</code> -
|
|
1841
|
+
* <code>4</code> - Low impact, customer might aren't impacted by the problem
|
|
1835
1842
|
* yet.</p>
|
|
1836
1843
|
* </li>
|
|
1837
1844
|
* <li>
|
|
@@ -2156,23 +2163,23 @@ export interface UpdateResponsePlanInput {
|
|
|
2156
2163
|
* </p>
|
|
2157
2164
|
* <ul>
|
|
2158
2165
|
* <li>
|
|
2159
|
-
*
|
|
2166
|
+
* <p>
|
|
2160
2167
|
* <code>5</code> - Severe impact</p>
|
|
2161
2168
|
* </li>
|
|
2162
2169
|
* <li>
|
|
2163
|
-
*
|
|
2170
|
+
* <p>
|
|
2164
2171
|
* <code>4</code> - High impact</p>
|
|
2165
2172
|
* </li>
|
|
2166
2173
|
* <li>
|
|
2167
|
-
*
|
|
2174
|
+
* <p>
|
|
2168
2175
|
* <code>3</code> - Medium impact</p>
|
|
2169
2176
|
* </li>
|
|
2170
2177
|
* <li>
|
|
2171
|
-
*
|
|
2178
|
+
* <p>
|
|
2172
2179
|
* <code>2</code> - Low impact</p>
|
|
2173
2180
|
* </li>
|
|
2174
2181
|
* <li>
|
|
2175
|
-
*
|
|
2182
|
+
* <p>
|
|
2176
2183
|
* <code>1</code> - No impact</p>
|
|
2177
2184
|
* </li>
|
|
2178
2185
|
* </ul>
|
|
@@ -2200,13 +2207,20 @@ export interface UpdateResponsePlanInput {
|
|
|
2200
2207
|
*/
|
|
2201
2208
|
chatChannel?: ChatChannel;
|
|
2202
2209
|
/**
|
|
2203
|
-
* <p>The contacts and escalation plans that Incident Manager engages at the start of the
|
|
2210
|
+
* <p>The contacts and escalation plans that Incident Manager engages at the start of the
|
|
2211
|
+
* incident.</p>
|
|
2204
2212
|
*/
|
|
2205
2213
|
engagements?: string[];
|
|
2206
2214
|
/**
|
|
2207
2215
|
* <p>The actions that this response plan takes at the beginning of an incident.</p>
|
|
2208
2216
|
*/
|
|
2209
2217
|
actions?: Action[];
|
|
2218
|
+
/**
|
|
2219
|
+
* <p>Tags to apply to an incident when calling the <code>StartIncident</code> API action.
|
|
2220
|
+
* To call this action, you must also have permission to call the <code>TagResource</code>
|
|
2221
|
+
* API action for the incident record resource.</p>
|
|
2222
|
+
*/
|
|
2223
|
+
incidentTemplateTags?: Record<string, string>;
|
|
2210
2224
|
}
|
|
2211
2225
|
export declare namespace UpdateResponsePlanInput {
|
|
2212
2226
|
/**
|
|
@@ -353,6 +353,8 @@ export interface IncidentTemplate {
|
|
|
353
353
|
dedupeString?: string;
|
|
354
354
|
|
|
355
355
|
notificationTargets?: NotificationTargetItem[];
|
|
356
|
+
|
|
357
|
+
incidentTags?: Record<string, string>;
|
|
356
358
|
}
|
|
357
359
|
export declare namespace IncidentTemplate {
|
|
358
360
|
|
|
@@ -1286,6 +1288,8 @@ export interface UpdateResponsePlanInput {
|
|
|
1286
1288
|
engagements?: string[];
|
|
1287
1289
|
|
|
1288
1290
|
actions?: Action[];
|
|
1291
|
+
|
|
1292
|
+
incidentTemplateTags?: Record<string, string>;
|
|
1289
1293
|
}
|
|
1290
1294
|
export declare namespace UpdateResponsePlanInput {
|
|
1291
1295
|
|
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.127.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",
|
|
@@ -18,38 +18,38 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.127.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.127.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.127.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
|
-
"@aws-sdk/util-waiter": "3.
|
|
52
|
+
"@aws-sdk/util-waiter": "3.127.0",
|
|
53
53
|
"tslib": "^2.3.1",
|
|
54
54
|
"uuid": "^8.3.2"
|
|
55
55
|
},
|