@aws-sdk/client-ssm-incidents 3.51.0 → 3.54.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/index.js +3 -0
- package/dist-cjs/models/SSMIncidentsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +107 -2
- package/dist-cjs/protocols/Aws_restJson1.js +335 -1286
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSMIncidentsServiceException.js +12 -0
- package/dist-es/models/models_0.js +98 -1
- package/dist-es/protocols/Aws_restJson1.js +703 -1411
- package/dist-types/SSMIncidentsClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSMIncidentsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +52 -29
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SSMIncidentsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SSMIncidentsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -29
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var SSMIncidentsServiceException = (function (_super) {
|
|
4
|
+
__extends(SSMIncidentsServiceException, _super);
|
|
5
|
+
function SSMIncidentsServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SSMIncidentsServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return SSMIncidentsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SSMIncidentsServiceException };
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
2
15
|
export var SsmTargetAccount;
|
|
3
16
|
(function (SsmTargetAccount) {
|
|
4
17
|
SsmTargetAccount["IMPACTED_ACCOUNT"] = "IMPACTED_ACCOUNT";
|
|
@@ -115,6 +128,21 @@ export var ResourceType;
|
|
|
115
128
|
ResourceType["RESPONSE_PLAN"] = "RESPONSE_PLAN";
|
|
116
129
|
ResourceType["TIMELINE_EVENT"] = "TIMELINE_EVENT";
|
|
117
130
|
})(ResourceType || (ResourceType = {}));
|
|
131
|
+
var ConflictException = (function (_super) {
|
|
132
|
+
__extends(ConflictException, _super);
|
|
133
|
+
function ConflictException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
135
|
+
_this.name = "ConflictException";
|
|
136
|
+
_this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
138
|
+
_this.resourceIdentifier = opts.resourceIdentifier;
|
|
139
|
+
_this.resourceType = opts.resourceType;
|
|
140
|
+
_this.retryAfter = opts.retryAfter;
|
|
141
|
+
return _this;
|
|
142
|
+
}
|
|
143
|
+
return ConflictException;
|
|
144
|
+
}(__BaseException));
|
|
145
|
+
export { ConflictException };
|
|
118
146
|
export var RegionMapInputValue;
|
|
119
147
|
(function (RegionMapInputValue) {
|
|
120
148
|
RegionMapInputValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -127,10 +155,64 @@ export var CreateReplicationSetOutput;
|
|
|
127
155
|
(function (CreateReplicationSetOutput) {
|
|
128
156
|
CreateReplicationSetOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
157
|
})(CreateReplicationSetOutput || (CreateReplicationSetOutput = {}));
|
|
158
|
+
var InternalServerException = (function (_super) {
|
|
159
|
+
__extends(InternalServerException, _super);
|
|
160
|
+
function InternalServerException(opts) {
|
|
161
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
162
|
+
_this.name = "InternalServerException";
|
|
163
|
+
_this.$fault = "server";
|
|
164
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
165
|
+
return _this;
|
|
166
|
+
}
|
|
167
|
+
return InternalServerException;
|
|
168
|
+
}(__BaseException));
|
|
169
|
+
export { InternalServerException };
|
|
130
170
|
export var ServiceCode;
|
|
131
171
|
(function (ServiceCode) {
|
|
132
172
|
ServiceCode["SSM_INCIDENTS"] = "ssm-incidents";
|
|
133
173
|
})(ServiceCode || (ServiceCode = {}));
|
|
174
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
175
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
176
|
+
function ServiceQuotaExceededException(opts) {
|
|
177
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
178
|
+
_this.name = "ServiceQuotaExceededException";
|
|
179
|
+
_this.$fault = "client";
|
|
180
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
181
|
+
_this.resourceIdentifier = opts.resourceIdentifier;
|
|
182
|
+
_this.resourceType = opts.resourceType;
|
|
183
|
+
_this.serviceCode = opts.serviceCode;
|
|
184
|
+
_this.quotaCode = opts.quotaCode;
|
|
185
|
+
return _this;
|
|
186
|
+
}
|
|
187
|
+
return ServiceQuotaExceededException;
|
|
188
|
+
}(__BaseException));
|
|
189
|
+
export { ServiceQuotaExceededException };
|
|
190
|
+
var ThrottlingException = (function (_super) {
|
|
191
|
+
__extends(ThrottlingException, _super);
|
|
192
|
+
function ThrottlingException(opts) {
|
|
193
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
194
|
+
_this.name = "ThrottlingException";
|
|
195
|
+
_this.$fault = "client";
|
|
196
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
197
|
+
_this.serviceCode = opts.serviceCode;
|
|
198
|
+
_this.quotaCode = opts.quotaCode;
|
|
199
|
+
return _this;
|
|
200
|
+
}
|
|
201
|
+
return ThrottlingException;
|
|
202
|
+
}(__BaseException));
|
|
203
|
+
export { ThrottlingException };
|
|
204
|
+
var ValidationException = (function (_super) {
|
|
205
|
+
__extends(ValidationException, _super);
|
|
206
|
+
function ValidationException(opts) {
|
|
207
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
208
|
+
_this.name = "ValidationException";
|
|
209
|
+
_this.$fault = "client";
|
|
210
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
211
|
+
return _this;
|
|
212
|
+
}
|
|
213
|
+
return ValidationException;
|
|
214
|
+
}(__BaseException));
|
|
215
|
+
export { ValidationException };
|
|
134
216
|
export var NotificationTargetItem;
|
|
135
217
|
(function (NotificationTargetItem) {
|
|
136
218
|
NotificationTargetItem.visit = function (value, visitor) {
|
|
@@ -160,6 +242,20 @@ export var CreateResponsePlanOutput;
|
|
|
160
242
|
(function (CreateResponsePlanOutput) {
|
|
161
243
|
CreateResponsePlanOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
244
|
})(CreateResponsePlanOutput || (CreateResponsePlanOutput = {}));
|
|
245
|
+
var ResourceNotFoundException = (function (_super) {
|
|
246
|
+
__extends(ResourceNotFoundException, _super);
|
|
247
|
+
function ResourceNotFoundException(opts) {
|
|
248
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
249
|
+
_this.name = "ResourceNotFoundException";
|
|
250
|
+
_this.$fault = "client";
|
|
251
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
252
|
+
_this.resourceIdentifier = opts.resourceIdentifier;
|
|
253
|
+
_this.resourceType = opts.resourceType;
|
|
254
|
+
return _this;
|
|
255
|
+
}
|
|
256
|
+
return ResourceNotFoundException;
|
|
257
|
+
}(__BaseException));
|
|
258
|
+
export { ResourceNotFoundException };
|
|
163
259
|
export var CreateTimelineEventInput;
|
|
164
260
|
(function (CreateTimelineEventInput) {
|
|
165
261
|
CreateTimelineEventInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -316,6 +412,7 @@ export var ItemType;
|
|
|
316
412
|
(function (ItemType) {
|
|
317
413
|
ItemType["ANALYSIS"] = "ANALYSIS";
|
|
318
414
|
ItemType["ATTACHMENT"] = "ATTACHMENT";
|
|
415
|
+
ItemType["AUTOMATION"] = "AUTOMATION";
|
|
319
416
|
ItemType["INCIDENT"] = "INCIDENT";
|
|
320
417
|
ItemType["METRIC"] = "METRIC";
|
|
321
418
|
ItemType["OTHER"] = "OTHER";
|