@aws-sdk/client-gamelift 3.52.0 → 3.53.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/GameLiftServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +217 -6
- package/dist-cjs/protocols/Aws_json1_1.js +951 -3696
- package/dist-es/index.js +1 -0
- package/dist-es/models/GameLiftServiceException.js +12 -0
- package/dist-es/models/models_0.js +197 -1
- package/dist-es/protocols/Aws_json1_1.js +2150 -4047
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GameLiftServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +107 -46
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/GameLiftServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -46
- package/package.json +25 -25
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 GameLiftServiceException = (function (_super) {
|
|
4
|
+
__extends(GameLiftServiceException, _super);
|
|
5
|
+
function GameLiftServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, GameLiftServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return GameLiftServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { GameLiftServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { GameLiftServiceException as __BaseException } from "./GameLiftServiceException";
|
|
3
4
|
export var AcceptMatchInput;
|
|
4
5
|
(function (AcceptMatchInput) {
|
|
5
6
|
AcceptMatchInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -8,6 +9,58 @@ export var AcceptMatchOutput;
|
|
|
8
9
|
(function (AcceptMatchOutput) {
|
|
9
10
|
AcceptMatchOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
11
|
})(AcceptMatchOutput || (AcceptMatchOutput = {}));
|
|
12
|
+
var InternalServiceException = (function (_super) {
|
|
13
|
+
__extends(InternalServiceException, _super);
|
|
14
|
+
function InternalServiceException(opts) {
|
|
15
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceException", $fault: "server" }, opts)) || this;
|
|
16
|
+
_this.name = "InternalServiceException";
|
|
17
|
+
_this.$fault = "server";
|
|
18
|
+
Object.setPrototypeOf(_this, InternalServiceException.prototype);
|
|
19
|
+
_this.Message = opts.Message;
|
|
20
|
+
return _this;
|
|
21
|
+
}
|
|
22
|
+
return InternalServiceException;
|
|
23
|
+
}(__BaseException));
|
|
24
|
+
export { InternalServiceException };
|
|
25
|
+
var InvalidRequestException = (function (_super) {
|
|
26
|
+
__extends(InvalidRequestException, _super);
|
|
27
|
+
function InvalidRequestException(opts) {
|
|
28
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
29
|
+
_this.name = "InvalidRequestException";
|
|
30
|
+
_this.$fault = "client";
|
|
31
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
32
|
+
_this.Message = opts.Message;
|
|
33
|
+
return _this;
|
|
34
|
+
}
|
|
35
|
+
return InvalidRequestException;
|
|
36
|
+
}(__BaseException));
|
|
37
|
+
export { InvalidRequestException };
|
|
38
|
+
var NotFoundException = (function (_super) {
|
|
39
|
+
__extends(NotFoundException, _super);
|
|
40
|
+
function NotFoundException(opts) {
|
|
41
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
42
|
+
_this.name = "NotFoundException";
|
|
43
|
+
_this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
45
|
+
_this.Message = opts.Message;
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return NotFoundException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { NotFoundException };
|
|
51
|
+
var UnsupportedRegionException = (function (_super) {
|
|
52
|
+
__extends(UnsupportedRegionException, _super);
|
|
53
|
+
function UnsupportedRegionException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedRegionException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "UnsupportedRegionException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, UnsupportedRegionException.prototype);
|
|
58
|
+
_this.Message = opts.Message;
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return UnsupportedRegionException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { UnsupportedRegionException };
|
|
11
64
|
export var RoutingStrategyType;
|
|
12
65
|
(function (RoutingStrategyType) {
|
|
13
66
|
RoutingStrategyType["SIMPLE"] = "SIMPLE";
|
|
@@ -86,6 +139,45 @@ export var ClaimGameServerOutput;
|
|
|
86
139
|
(function (ClaimGameServerOutput) {
|
|
87
140
|
ClaimGameServerOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
88
141
|
})(ClaimGameServerOutput || (ClaimGameServerOutput = {}));
|
|
142
|
+
var ConflictException = (function (_super) {
|
|
143
|
+
__extends(ConflictException, _super);
|
|
144
|
+
function ConflictException(opts) {
|
|
145
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
146
|
+
_this.name = "ConflictException";
|
|
147
|
+
_this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
149
|
+
_this.Message = opts.Message;
|
|
150
|
+
return _this;
|
|
151
|
+
}
|
|
152
|
+
return ConflictException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { ConflictException };
|
|
155
|
+
var OutOfCapacityException = (function (_super) {
|
|
156
|
+
__extends(OutOfCapacityException, _super);
|
|
157
|
+
function OutOfCapacityException(opts) {
|
|
158
|
+
var _this = _super.call(this, __assign({ name: "OutOfCapacityException", $fault: "client" }, opts)) || this;
|
|
159
|
+
_this.name = "OutOfCapacityException";
|
|
160
|
+
_this.$fault = "client";
|
|
161
|
+
Object.setPrototypeOf(_this, OutOfCapacityException.prototype);
|
|
162
|
+
_this.Message = opts.Message;
|
|
163
|
+
return _this;
|
|
164
|
+
}
|
|
165
|
+
return OutOfCapacityException;
|
|
166
|
+
}(__BaseException));
|
|
167
|
+
export { OutOfCapacityException };
|
|
168
|
+
var UnauthorizedException = (function (_super) {
|
|
169
|
+
__extends(UnauthorizedException, _super);
|
|
170
|
+
function UnauthorizedException(opts) {
|
|
171
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
|
|
172
|
+
_this.name = "UnauthorizedException";
|
|
173
|
+
_this.$fault = "client";
|
|
174
|
+
Object.setPrototypeOf(_this, UnauthorizedException.prototype);
|
|
175
|
+
_this.Message = opts.Message;
|
|
176
|
+
return _this;
|
|
177
|
+
}
|
|
178
|
+
return UnauthorizedException;
|
|
179
|
+
}(__BaseException));
|
|
180
|
+
export { UnauthorizedException };
|
|
89
181
|
export var ComparisonOperatorType;
|
|
90
182
|
(function (ComparisonOperatorType) {
|
|
91
183
|
ComparisonOperatorType["GreaterThanOrEqualToThreshold"] = "GreaterThanOrEqualToThreshold";
|
|
@@ -105,6 +197,32 @@ export var CreateAliasOutput;
|
|
|
105
197
|
(function (CreateAliasOutput) {
|
|
106
198
|
CreateAliasOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
199
|
})(CreateAliasOutput || (CreateAliasOutput = {}));
|
|
200
|
+
var LimitExceededException = (function (_super) {
|
|
201
|
+
__extends(LimitExceededException, _super);
|
|
202
|
+
function LimitExceededException(opts) {
|
|
203
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
204
|
+
_this.name = "LimitExceededException";
|
|
205
|
+
_this.$fault = "client";
|
|
206
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
207
|
+
_this.Message = opts.Message;
|
|
208
|
+
return _this;
|
|
209
|
+
}
|
|
210
|
+
return LimitExceededException;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { LimitExceededException };
|
|
213
|
+
var TaggingFailedException = (function (_super) {
|
|
214
|
+
__extends(TaggingFailedException, _super);
|
|
215
|
+
function TaggingFailedException(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "TaggingFailedException", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "TaggingFailedException";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, TaggingFailedException.prototype);
|
|
220
|
+
_this.Message = opts.Message;
|
|
221
|
+
return _this;
|
|
222
|
+
}
|
|
223
|
+
return TaggingFailedException;
|
|
224
|
+
}(__BaseException));
|
|
225
|
+
export { TaggingFailedException };
|
|
108
226
|
export var S3Location;
|
|
109
227
|
(function (S3Location) {
|
|
110
228
|
S3Location.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -192,6 +310,19 @@ export var CreateFleetLocationsOutput;
|
|
|
192
310
|
(function (CreateFleetLocationsOutput) {
|
|
193
311
|
CreateFleetLocationsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
312
|
})(CreateFleetLocationsOutput || (CreateFleetLocationsOutput = {}));
|
|
313
|
+
var InvalidFleetStatusException = (function (_super) {
|
|
314
|
+
__extends(InvalidFleetStatusException, _super);
|
|
315
|
+
function InvalidFleetStatusException(opts) {
|
|
316
|
+
var _this = _super.call(this, __assign({ name: "InvalidFleetStatusException", $fault: "client" }, opts)) || this;
|
|
317
|
+
_this.name = "InvalidFleetStatusException";
|
|
318
|
+
_this.$fault = "client";
|
|
319
|
+
Object.setPrototypeOf(_this, InvalidFleetStatusException.prototype);
|
|
320
|
+
_this.Message = opts.Message;
|
|
321
|
+
return _this;
|
|
322
|
+
}
|
|
323
|
+
return InvalidFleetStatusException;
|
|
324
|
+
}(__BaseException));
|
|
325
|
+
export { InvalidFleetStatusException };
|
|
195
326
|
export var TargetTrackingConfiguration;
|
|
196
327
|
(function (TargetTrackingConfiguration) {
|
|
197
328
|
TargetTrackingConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -272,6 +403,45 @@ export var CreateGameSessionOutput;
|
|
|
272
403
|
(function (CreateGameSessionOutput) {
|
|
273
404
|
CreateGameSessionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
405
|
})(CreateGameSessionOutput || (CreateGameSessionOutput = {}));
|
|
406
|
+
var FleetCapacityExceededException = (function (_super) {
|
|
407
|
+
__extends(FleetCapacityExceededException, _super);
|
|
408
|
+
function FleetCapacityExceededException(opts) {
|
|
409
|
+
var _this = _super.call(this, __assign({ name: "FleetCapacityExceededException", $fault: "client" }, opts)) || this;
|
|
410
|
+
_this.name = "FleetCapacityExceededException";
|
|
411
|
+
_this.$fault = "client";
|
|
412
|
+
Object.setPrototypeOf(_this, FleetCapacityExceededException.prototype);
|
|
413
|
+
_this.Message = opts.Message;
|
|
414
|
+
return _this;
|
|
415
|
+
}
|
|
416
|
+
return FleetCapacityExceededException;
|
|
417
|
+
}(__BaseException));
|
|
418
|
+
export { FleetCapacityExceededException };
|
|
419
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
420
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
421
|
+
function IdempotentParameterMismatchException(opts) {
|
|
422
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
423
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
424
|
+
_this.$fault = "client";
|
|
425
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
426
|
+
_this.Message = opts.Message;
|
|
427
|
+
return _this;
|
|
428
|
+
}
|
|
429
|
+
return IdempotentParameterMismatchException;
|
|
430
|
+
}(__BaseException));
|
|
431
|
+
export { IdempotentParameterMismatchException };
|
|
432
|
+
var TerminalRoutingStrategyException = (function (_super) {
|
|
433
|
+
__extends(TerminalRoutingStrategyException, _super);
|
|
434
|
+
function TerminalRoutingStrategyException(opts) {
|
|
435
|
+
var _this = _super.call(this, __assign({ name: "TerminalRoutingStrategyException", $fault: "client" }, opts)) || this;
|
|
436
|
+
_this.name = "TerminalRoutingStrategyException";
|
|
437
|
+
_this.$fault = "client";
|
|
438
|
+
Object.setPrototypeOf(_this, TerminalRoutingStrategyException.prototype);
|
|
439
|
+
_this.Message = opts.Message;
|
|
440
|
+
return _this;
|
|
441
|
+
}
|
|
442
|
+
return TerminalRoutingStrategyException;
|
|
443
|
+
}(__BaseException));
|
|
444
|
+
export { TerminalRoutingStrategyException };
|
|
275
445
|
export var GameSessionQueueDestination;
|
|
276
446
|
(function (GameSessionQueueDestination) {
|
|
277
447
|
GameSessionQueueDestination.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -355,6 +525,32 @@ export var CreatePlayerSessionOutput;
|
|
|
355
525
|
(function (CreatePlayerSessionOutput) {
|
|
356
526
|
CreatePlayerSessionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
527
|
})(CreatePlayerSessionOutput || (CreatePlayerSessionOutput = {}));
|
|
528
|
+
var GameSessionFullException = (function (_super) {
|
|
529
|
+
__extends(GameSessionFullException, _super);
|
|
530
|
+
function GameSessionFullException(opts) {
|
|
531
|
+
var _this = _super.call(this, __assign({ name: "GameSessionFullException", $fault: "client" }, opts)) || this;
|
|
532
|
+
_this.name = "GameSessionFullException";
|
|
533
|
+
_this.$fault = "client";
|
|
534
|
+
Object.setPrototypeOf(_this, GameSessionFullException.prototype);
|
|
535
|
+
_this.Message = opts.Message;
|
|
536
|
+
return _this;
|
|
537
|
+
}
|
|
538
|
+
return GameSessionFullException;
|
|
539
|
+
}(__BaseException));
|
|
540
|
+
export { GameSessionFullException };
|
|
541
|
+
var InvalidGameSessionStatusException = (function (_super) {
|
|
542
|
+
__extends(InvalidGameSessionStatusException, _super);
|
|
543
|
+
function InvalidGameSessionStatusException(opts) {
|
|
544
|
+
var _this = _super.call(this, __assign({ name: "InvalidGameSessionStatusException", $fault: "client" }, opts)) || this;
|
|
545
|
+
_this.name = "InvalidGameSessionStatusException";
|
|
546
|
+
_this.$fault = "client";
|
|
547
|
+
Object.setPrototypeOf(_this, InvalidGameSessionStatusException.prototype);
|
|
548
|
+
_this.Message = opts.Message;
|
|
549
|
+
return _this;
|
|
550
|
+
}
|
|
551
|
+
return InvalidGameSessionStatusException;
|
|
552
|
+
}(__BaseException));
|
|
553
|
+
export { InvalidGameSessionStatusException };
|
|
358
554
|
export var CreatePlayerSessionsInput;
|
|
359
555
|
(function (CreatePlayerSessionsInput) {
|
|
360
556
|
CreatePlayerSessionsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|