@aws-sdk/client-ssm-incidents 3.490.0 → 3.495.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/SSMIncidents.js +1 -73
- package/dist-cjs/SSMIncidentsClient.js +1 -43
- package/dist-cjs/commands/BatchGetIncidentFindingsCommand.js +1 -28
- package/dist-cjs/commands/CreateReplicationSetCommand.js +1 -28
- package/dist-cjs/commands/CreateResponsePlanCommand.js +1 -28
- package/dist-cjs/commands/CreateTimelineEventCommand.js +1 -28
- package/dist-cjs/commands/DeleteIncidentRecordCommand.js +1 -28
- package/dist-cjs/commands/DeleteReplicationSetCommand.js +1 -28
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteResponsePlanCommand.js +1 -28
- package/dist-cjs/commands/DeleteTimelineEventCommand.js +1 -28
- package/dist-cjs/commands/GetIncidentRecordCommand.js +1 -28
- package/dist-cjs/commands/GetReplicationSetCommand.js +1 -28
- package/dist-cjs/commands/GetResourcePoliciesCommand.js +1 -28
- package/dist-cjs/commands/GetResponsePlanCommand.js +1 -28
- package/dist-cjs/commands/GetTimelineEventCommand.js +1 -28
- package/dist-cjs/commands/ListIncidentFindingsCommand.js +1 -28
- package/dist-cjs/commands/ListIncidentRecordsCommand.js +1 -28
- package/dist-cjs/commands/ListRelatedItemsCommand.js +1 -28
- package/dist-cjs/commands/ListReplicationSetsCommand.js +1 -28
- package/dist-cjs/commands/ListResponsePlansCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListTimelineEventsCommand.js +1 -28
- package/dist-cjs/commands/PutResourcePolicyCommand.js +1 -28
- package/dist-cjs/commands/StartIncidentCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateDeletionProtectionCommand.js +1 -28
- package/dist-cjs/commands/UpdateIncidentRecordCommand.js +1 -28
- package/dist-cjs/commands/UpdateRelatedItemsCommand.js +1 -28
- package/dist-cjs/commands/UpdateReplicationSetCommand.js +1 -28
- package/dist-cjs/commands/UpdateResponsePlanCommand.js +1 -28
- package/dist-cjs/commands/UpdateTimelineEventCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -34
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3539 -12
- package/dist-cjs/models/SSMIncidentsServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -285
- package/dist-cjs/pagination/GetResourcePoliciesPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListIncidentFindingsPaginator.js +1 -7
- package/dist-cjs/pagination/ListIncidentRecordsPaginator.js +1 -7
- package/dist-cjs/pagination/ListRelatedItemsPaginator.js +1 -7
- package/dist-cjs/pagination/ListReplicationSetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListResponsePlansPaginator.js +1 -7
- package/dist-cjs/pagination/ListTimelineEventsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -11
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2250
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-cjs/waiters/index.js +1 -5
- package/dist-cjs/waiters/waitForWaitForReplicationSetActive.js +1 -63
- package/dist-cjs/waiters/waitForWaitForReplicationSetDeleted.js +1 -48
- package/package.json +41 -41
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SSMIncidentsServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class SSMIncidentsServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, SSMIncidentsServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.SSMIncidentsServiceException = SSMIncidentsServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,285 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateReplicationSetAction = exports.RelatedItemsUpdate = exports.SortOrder = exports.TimelineEventSort = exports.ItemValue = exports.ItemType = exports.ReplicationSetStatus = exports.RegionStatus = exports.IncidentRecordStatus = exports.EventReference = exports.Integration = exports.NotificationTargetItem = exports.ServiceQuotaExceededException = exports.ConflictException = exports.Condition = exports.ChatChannel = exports.ValidationException = exports.ThrottlingException = exports.ServiceCode = exports.ResourceNotFoundException = exports.ResourceType = exports.InternalServerException = exports.FindingDetails = exports.AutomationExecution = exports.AttributeValueList = exports.Action = exports.SsmTargetAccount = exports.DynamicSsmParameterValue = exports.VariableType = exports.AccessDeniedException = void 0;
|
|
4
|
-
const SSMIncidentsServiceException_1 = require("./SSMIncidentsServiceException");
|
|
5
|
-
class AccessDeniedException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "AccessDeniedException";
|
|
13
|
-
this.$fault = "client";
|
|
14
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
exports.VariableType = {
|
|
19
|
-
INCIDENT_RECORD_ARN: "INCIDENT_RECORD_ARN",
|
|
20
|
-
INVOLVED_RESOURCES: "INVOLVED_RESOURCES",
|
|
21
|
-
};
|
|
22
|
-
var DynamicSsmParameterValue;
|
|
23
|
-
(function (DynamicSsmParameterValue) {
|
|
24
|
-
DynamicSsmParameterValue.visit = (value, visitor) => {
|
|
25
|
-
if (value.variable !== undefined)
|
|
26
|
-
return visitor.variable(value.variable);
|
|
27
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
28
|
-
};
|
|
29
|
-
})(DynamicSsmParameterValue = exports.DynamicSsmParameterValue || (exports.DynamicSsmParameterValue = {}));
|
|
30
|
-
exports.SsmTargetAccount = {
|
|
31
|
-
IMPACTED_ACCOUNT: "IMPACTED_ACCOUNT",
|
|
32
|
-
RESPONSE_PLAN_OWNER_ACCOUNT: "RESPONSE_PLAN_OWNER_ACCOUNT",
|
|
33
|
-
};
|
|
34
|
-
var Action;
|
|
35
|
-
(function (Action) {
|
|
36
|
-
Action.visit = (value, visitor) => {
|
|
37
|
-
if (value.ssmAutomation !== undefined)
|
|
38
|
-
return visitor.ssmAutomation(value.ssmAutomation);
|
|
39
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
40
|
-
};
|
|
41
|
-
})(Action = exports.Action || (exports.Action = {}));
|
|
42
|
-
var AttributeValueList;
|
|
43
|
-
(function (AttributeValueList) {
|
|
44
|
-
AttributeValueList.visit = (value, visitor) => {
|
|
45
|
-
if (value.stringValues !== undefined)
|
|
46
|
-
return visitor.stringValues(value.stringValues);
|
|
47
|
-
if (value.integerValues !== undefined)
|
|
48
|
-
return visitor.integerValues(value.integerValues);
|
|
49
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
50
|
-
};
|
|
51
|
-
})(AttributeValueList = exports.AttributeValueList || (exports.AttributeValueList = {}));
|
|
52
|
-
var AutomationExecution;
|
|
53
|
-
(function (AutomationExecution) {
|
|
54
|
-
AutomationExecution.visit = (value, visitor) => {
|
|
55
|
-
if (value.ssmExecutionArn !== undefined)
|
|
56
|
-
return visitor.ssmExecutionArn(value.ssmExecutionArn);
|
|
57
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
58
|
-
};
|
|
59
|
-
})(AutomationExecution = exports.AutomationExecution || (exports.AutomationExecution = {}));
|
|
60
|
-
var FindingDetails;
|
|
61
|
-
(function (FindingDetails) {
|
|
62
|
-
FindingDetails.visit = (value, visitor) => {
|
|
63
|
-
if (value.codeDeployDeployment !== undefined)
|
|
64
|
-
return visitor.codeDeployDeployment(value.codeDeployDeployment);
|
|
65
|
-
if (value.cloudFormationStackUpdate !== undefined)
|
|
66
|
-
return visitor.cloudFormationStackUpdate(value.cloudFormationStackUpdate);
|
|
67
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
68
|
-
};
|
|
69
|
-
})(FindingDetails = exports.FindingDetails || (exports.FindingDetails = {}));
|
|
70
|
-
class InternalServerException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
71
|
-
constructor(opts) {
|
|
72
|
-
super({
|
|
73
|
-
name: "InternalServerException",
|
|
74
|
-
$fault: "server",
|
|
75
|
-
...opts,
|
|
76
|
-
});
|
|
77
|
-
this.name = "InternalServerException";
|
|
78
|
-
this.$fault = "server";
|
|
79
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
exports.InternalServerException = InternalServerException;
|
|
83
|
-
exports.ResourceType = {
|
|
84
|
-
INCIDENT_RECORD: "INCIDENT_RECORD",
|
|
85
|
-
REPLICATION_SET: "REPLICATION_SET",
|
|
86
|
-
RESOURCE_POLICY: "RESOURCE_POLICY",
|
|
87
|
-
RESPONSE_PLAN: "RESPONSE_PLAN",
|
|
88
|
-
TIMELINE_EVENT: "TIMELINE_EVENT",
|
|
89
|
-
};
|
|
90
|
-
class ResourceNotFoundException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
91
|
-
constructor(opts) {
|
|
92
|
-
super({
|
|
93
|
-
name: "ResourceNotFoundException",
|
|
94
|
-
$fault: "client",
|
|
95
|
-
...opts,
|
|
96
|
-
});
|
|
97
|
-
this.name = "ResourceNotFoundException";
|
|
98
|
-
this.$fault = "client";
|
|
99
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
100
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
101
|
-
this.resourceType = opts.resourceType;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
105
|
-
exports.ServiceCode = {
|
|
106
|
-
SSM_INCIDENTS: "ssm-incidents",
|
|
107
|
-
};
|
|
108
|
-
class ThrottlingException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
109
|
-
constructor(opts) {
|
|
110
|
-
super({
|
|
111
|
-
name: "ThrottlingException",
|
|
112
|
-
$fault: "client",
|
|
113
|
-
...opts,
|
|
114
|
-
});
|
|
115
|
-
this.name = "ThrottlingException";
|
|
116
|
-
this.$fault = "client";
|
|
117
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
118
|
-
this.serviceCode = opts.serviceCode;
|
|
119
|
-
this.quotaCode = opts.quotaCode;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
exports.ThrottlingException = ThrottlingException;
|
|
123
|
-
class ValidationException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "ValidationException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
this.name = "ValidationException";
|
|
131
|
-
this.$fault = "client";
|
|
132
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
exports.ValidationException = ValidationException;
|
|
136
|
-
var ChatChannel;
|
|
137
|
-
(function (ChatChannel) {
|
|
138
|
-
ChatChannel.visit = (value, visitor) => {
|
|
139
|
-
if (value.empty !== undefined)
|
|
140
|
-
return visitor.empty(value.empty);
|
|
141
|
-
if (value.chatbotSns !== undefined)
|
|
142
|
-
return visitor.chatbotSns(value.chatbotSns);
|
|
143
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
144
|
-
};
|
|
145
|
-
})(ChatChannel = exports.ChatChannel || (exports.ChatChannel = {}));
|
|
146
|
-
var Condition;
|
|
147
|
-
(function (Condition) {
|
|
148
|
-
Condition.visit = (value, visitor) => {
|
|
149
|
-
if (value.before !== undefined)
|
|
150
|
-
return visitor.before(value.before);
|
|
151
|
-
if (value.after !== undefined)
|
|
152
|
-
return visitor.after(value.after);
|
|
153
|
-
if (value.equals !== undefined)
|
|
154
|
-
return visitor.equals(value.equals);
|
|
155
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
156
|
-
};
|
|
157
|
-
})(Condition = exports.Condition || (exports.Condition = {}));
|
|
158
|
-
class ConflictException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ConflictException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
this.name = "ConflictException";
|
|
166
|
-
this.$fault = "client";
|
|
167
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
168
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
169
|
-
this.resourceType = opts.resourceType;
|
|
170
|
-
this.retryAfter = opts.retryAfter;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
exports.ConflictException = ConflictException;
|
|
174
|
-
class ServiceQuotaExceededException extends SSMIncidentsServiceException_1.SSMIncidentsServiceException {
|
|
175
|
-
constructor(opts) {
|
|
176
|
-
super({
|
|
177
|
-
name: "ServiceQuotaExceededException",
|
|
178
|
-
$fault: "client",
|
|
179
|
-
...opts,
|
|
180
|
-
});
|
|
181
|
-
this.name = "ServiceQuotaExceededException";
|
|
182
|
-
this.$fault = "client";
|
|
183
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
184
|
-
this.resourceIdentifier = opts.resourceIdentifier;
|
|
185
|
-
this.resourceType = opts.resourceType;
|
|
186
|
-
this.serviceCode = opts.serviceCode;
|
|
187
|
-
this.quotaCode = opts.quotaCode;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
191
|
-
var NotificationTargetItem;
|
|
192
|
-
(function (NotificationTargetItem) {
|
|
193
|
-
NotificationTargetItem.visit = (value, visitor) => {
|
|
194
|
-
if (value.snsTopicArn !== undefined)
|
|
195
|
-
return visitor.snsTopicArn(value.snsTopicArn);
|
|
196
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
197
|
-
};
|
|
198
|
-
})(NotificationTargetItem = exports.NotificationTargetItem || (exports.NotificationTargetItem = {}));
|
|
199
|
-
var Integration;
|
|
200
|
-
(function (Integration) {
|
|
201
|
-
Integration.visit = (value, visitor) => {
|
|
202
|
-
if (value.pagerDutyConfiguration !== undefined)
|
|
203
|
-
return visitor.pagerDutyConfiguration(value.pagerDutyConfiguration);
|
|
204
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
205
|
-
};
|
|
206
|
-
})(Integration = exports.Integration || (exports.Integration = {}));
|
|
207
|
-
var EventReference;
|
|
208
|
-
(function (EventReference) {
|
|
209
|
-
EventReference.visit = (value, visitor) => {
|
|
210
|
-
if (value.resource !== undefined)
|
|
211
|
-
return visitor.resource(value.resource);
|
|
212
|
-
if (value.relatedItemId !== undefined)
|
|
213
|
-
return visitor.relatedItemId(value.relatedItemId);
|
|
214
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
215
|
-
};
|
|
216
|
-
})(EventReference = exports.EventReference || (exports.EventReference = {}));
|
|
217
|
-
exports.IncidentRecordStatus = {
|
|
218
|
-
OPEN: "OPEN",
|
|
219
|
-
RESOLVED: "RESOLVED",
|
|
220
|
-
};
|
|
221
|
-
exports.RegionStatus = {
|
|
222
|
-
ACTIVE: "ACTIVE",
|
|
223
|
-
CREATING: "CREATING",
|
|
224
|
-
DELETING: "DELETING",
|
|
225
|
-
FAILED: "FAILED",
|
|
226
|
-
};
|
|
227
|
-
exports.ReplicationSetStatus = {
|
|
228
|
-
ACTIVE: "ACTIVE",
|
|
229
|
-
CREATING: "CREATING",
|
|
230
|
-
DELETING: "DELETING",
|
|
231
|
-
FAILED: "FAILED",
|
|
232
|
-
UPDATING: "UPDATING",
|
|
233
|
-
};
|
|
234
|
-
exports.ItemType = {
|
|
235
|
-
ANALYSIS: "ANALYSIS",
|
|
236
|
-
ATTACHMENT: "ATTACHMENT",
|
|
237
|
-
AUTOMATION: "AUTOMATION",
|
|
238
|
-
INCIDENT: "INCIDENT",
|
|
239
|
-
INVOLVED_RESOURCE: "INVOLVED_RESOURCE",
|
|
240
|
-
METRIC: "METRIC",
|
|
241
|
-
OTHER: "OTHER",
|
|
242
|
-
PARENT: "PARENT",
|
|
243
|
-
TASK: "TASK",
|
|
244
|
-
};
|
|
245
|
-
var ItemValue;
|
|
246
|
-
(function (ItemValue) {
|
|
247
|
-
ItemValue.visit = (value, visitor) => {
|
|
248
|
-
if (value.arn !== undefined)
|
|
249
|
-
return visitor.arn(value.arn);
|
|
250
|
-
if (value.url !== undefined)
|
|
251
|
-
return visitor.url(value.url);
|
|
252
|
-
if (value.metricDefinition !== undefined)
|
|
253
|
-
return visitor.metricDefinition(value.metricDefinition);
|
|
254
|
-
if (value.pagerDutyIncidentDetail !== undefined)
|
|
255
|
-
return visitor.pagerDutyIncidentDetail(value.pagerDutyIncidentDetail);
|
|
256
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
257
|
-
};
|
|
258
|
-
})(ItemValue = exports.ItemValue || (exports.ItemValue = {}));
|
|
259
|
-
exports.TimelineEventSort = {
|
|
260
|
-
EVENT_TIME: "EVENT_TIME",
|
|
261
|
-
};
|
|
262
|
-
exports.SortOrder = {
|
|
263
|
-
ASCENDING: "ASCENDING",
|
|
264
|
-
DESCENDING: "DESCENDING",
|
|
265
|
-
};
|
|
266
|
-
var RelatedItemsUpdate;
|
|
267
|
-
(function (RelatedItemsUpdate) {
|
|
268
|
-
RelatedItemsUpdate.visit = (value, visitor) => {
|
|
269
|
-
if (value.itemToAdd !== undefined)
|
|
270
|
-
return visitor.itemToAdd(value.itemToAdd);
|
|
271
|
-
if (value.itemToRemove !== undefined)
|
|
272
|
-
return visitor.itemToRemove(value.itemToRemove);
|
|
273
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
274
|
-
};
|
|
275
|
-
})(RelatedItemsUpdate = exports.RelatedItemsUpdate || (exports.RelatedItemsUpdate = {}));
|
|
276
|
-
var UpdateReplicationSetAction;
|
|
277
|
-
(function (UpdateReplicationSetAction) {
|
|
278
|
-
UpdateReplicationSetAction.visit = (value, visitor) => {
|
|
279
|
-
if (value.addRegionAction !== undefined)
|
|
280
|
-
return visitor.addRegionAction(value.addRegionAction);
|
|
281
|
-
if (value.deleteRegionAction !== undefined)
|
|
282
|
-
return visitor.deleteRegionAction(value.deleteRegionAction);
|
|
283
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
284
|
-
};
|
|
285
|
-
})(UpdateReplicationSetAction = exports.UpdateReplicationSetAction || (exports.UpdateReplicationSetAction = {}));
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateGetResourcePolicies = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const GetResourcePoliciesCommand_1 = require("../commands/GetResourcePoliciesCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateGetResourcePolicies = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, GetResourcePoliciesCommand_1.GetResourcePoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListIncidentFindings = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListIncidentFindingsCommand_1 = require("../commands/ListIncidentFindingsCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListIncidentFindings = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListIncidentFindingsCommand_1.ListIncidentFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListIncidentRecords = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListIncidentRecordsCommand_1 = require("../commands/ListIncidentRecordsCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListIncidentRecords = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListIncidentRecordsCommand_1.ListIncidentRecordsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListRelatedItems = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListRelatedItemsCommand_1 = require("../commands/ListRelatedItemsCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListRelatedItems = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListRelatedItemsCommand_1.ListRelatedItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListReplicationSets = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListReplicationSetsCommand_1 = require("../commands/ListReplicationSetsCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListReplicationSets = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListReplicationSetsCommand_1.ListReplicationSetsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListResponsePlans = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListResponsePlansCommand_1 = require("../commands/ListResponsePlansCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListResponsePlans = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListResponsePlansCommand_1.ListResponsePlansCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListTimelineEvents = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListTimelineEventsCommand_1 = require("../commands/ListTimelineEventsCommand");
|
|
6
|
-
const SSMIncidentsClient_1 = require("../SSMIncidentsClient");
|
|
7
|
-
exports.paginateListTimelineEvents = (0, core_1.createPaginator)(SSMIncidentsClient_1.SSMIncidentsClient, ListTimelineEventsCommand_1.ListTimelineEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,11 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./GetResourcePoliciesPaginator"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListIncidentFindingsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListIncidentRecordsPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListRelatedItemsPaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./ListReplicationSetsPaginator"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./ListResponsePlansPaginator"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./ListTimelineEventsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|