@aws-sdk/client-global-accelerator 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/GlobalAcceleratorServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +256 -3
- package/dist-cjs/protocols/Aws_json1_1.js +476 -1721
- package/dist-es/index.js +1 -0
- package/dist-es/models/GlobalAcceleratorServiceException.js +12 -0
- package/dist-es/models/models_0.js +236 -1
- package/dist-es/protocols/Aws_json1_1.js +1043 -1874
- package/dist-types/GlobalAcceleratorClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GlobalAcceleratorServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +128 -55
- 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/GlobalAcceleratorClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/GlobalAcceleratorServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -55
- 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 +27 -27
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 GlobalAcceleratorServiceException = (function (_super) {
|
|
4
|
+
__extends(GlobalAcceleratorServiceException, _super);
|
|
5
|
+
function GlobalAcceleratorServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, GlobalAcceleratorServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return GlobalAcceleratorServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { GlobalAcceleratorServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
|
|
2
3
|
export var IpAddressType;
|
|
3
4
|
(function (IpAddressType) {
|
|
4
5
|
IpAddressType["IPV4"] = "IPV4";
|
|
@@ -15,6 +16,45 @@ export var AcceleratorAttributes;
|
|
|
15
16
|
(function (AcceleratorAttributes) {
|
|
16
17
|
AcceleratorAttributes.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
17
18
|
})(AcceleratorAttributes || (AcceleratorAttributes = {}));
|
|
19
|
+
var AcceleratorNotDisabledException = (function (_super) {
|
|
20
|
+
__extends(AcceleratorNotDisabledException, _super);
|
|
21
|
+
function AcceleratorNotDisabledException(opts) {
|
|
22
|
+
var _this = _super.call(this, __assign({ name: "AcceleratorNotDisabledException", $fault: "client" }, opts)) || this;
|
|
23
|
+
_this.name = "AcceleratorNotDisabledException";
|
|
24
|
+
_this.$fault = "client";
|
|
25
|
+
Object.setPrototypeOf(_this, AcceleratorNotDisabledException.prototype);
|
|
26
|
+
_this.Message = opts.Message;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return AcceleratorNotDisabledException;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { AcceleratorNotDisabledException };
|
|
32
|
+
var AcceleratorNotFoundException = (function (_super) {
|
|
33
|
+
__extends(AcceleratorNotFoundException, _super);
|
|
34
|
+
function AcceleratorNotFoundException(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "AcceleratorNotFoundException", $fault: "client" }, opts)) || this;
|
|
36
|
+
_this.name = "AcceleratorNotFoundException";
|
|
37
|
+
_this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(_this, AcceleratorNotFoundException.prototype);
|
|
39
|
+
_this.Message = opts.Message;
|
|
40
|
+
return _this;
|
|
41
|
+
}
|
|
42
|
+
return AcceleratorNotFoundException;
|
|
43
|
+
}(__BaseException));
|
|
44
|
+
export { AcceleratorNotFoundException };
|
|
45
|
+
var AccessDeniedException = (function (_super) {
|
|
46
|
+
__extends(AccessDeniedException, _super);
|
|
47
|
+
function AccessDeniedException(opts) {
|
|
48
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
49
|
+
_this.name = "AccessDeniedException";
|
|
50
|
+
_this.$fault = "client";
|
|
51
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
52
|
+
_this.Message = opts.Message;
|
|
53
|
+
return _this;
|
|
54
|
+
}
|
|
55
|
+
return AccessDeniedException;
|
|
56
|
+
}(__BaseException));
|
|
57
|
+
export { AccessDeniedException };
|
|
18
58
|
export var CustomRoutingEndpointConfiguration;
|
|
19
59
|
(function (CustomRoutingEndpointConfiguration) {
|
|
20
60
|
CustomRoutingEndpointConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -31,6 +71,84 @@ export var AddCustomRoutingEndpointsResponse;
|
|
|
31
71
|
(function (AddCustomRoutingEndpointsResponse) {
|
|
32
72
|
AddCustomRoutingEndpointsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
73
|
})(AddCustomRoutingEndpointsResponse || (AddCustomRoutingEndpointsResponse = {}));
|
|
74
|
+
var ConflictException = (function (_super) {
|
|
75
|
+
__extends(ConflictException, _super);
|
|
76
|
+
function ConflictException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
78
|
+
_this.name = "ConflictException";
|
|
79
|
+
_this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
81
|
+
_this.Message = opts.Message;
|
|
82
|
+
return _this;
|
|
83
|
+
}
|
|
84
|
+
return ConflictException;
|
|
85
|
+
}(__BaseException));
|
|
86
|
+
export { ConflictException };
|
|
87
|
+
var EndpointAlreadyExistsException = (function (_super) {
|
|
88
|
+
__extends(EndpointAlreadyExistsException, _super);
|
|
89
|
+
function EndpointAlreadyExistsException(opts) {
|
|
90
|
+
var _this = _super.call(this, __assign({ name: "EndpointAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
91
|
+
_this.name = "EndpointAlreadyExistsException";
|
|
92
|
+
_this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(_this, EndpointAlreadyExistsException.prototype);
|
|
94
|
+
_this.Message = opts.Message;
|
|
95
|
+
return _this;
|
|
96
|
+
}
|
|
97
|
+
return EndpointAlreadyExistsException;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { EndpointAlreadyExistsException };
|
|
100
|
+
var EndpointGroupNotFoundException = (function (_super) {
|
|
101
|
+
__extends(EndpointGroupNotFoundException, _super);
|
|
102
|
+
function EndpointGroupNotFoundException(opts) {
|
|
103
|
+
var _this = _super.call(this, __assign({ name: "EndpointGroupNotFoundException", $fault: "client" }, opts)) || this;
|
|
104
|
+
_this.name = "EndpointGroupNotFoundException";
|
|
105
|
+
_this.$fault = "client";
|
|
106
|
+
Object.setPrototypeOf(_this, EndpointGroupNotFoundException.prototype);
|
|
107
|
+
_this.Message = opts.Message;
|
|
108
|
+
return _this;
|
|
109
|
+
}
|
|
110
|
+
return EndpointGroupNotFoundException;
|
|
111
|
+
}(__BaseException));
|
|
112
|
+
export { EndpointGroupNotFoundException };
|
|
113
|
+
var InternalServiceErrorException = (function (_super) {
|
|
114
|
+
__extends(InternalServiceErrorException, _super);
|
|
115
|
+
function InternalServiceErrorException(opts) {
|
|
116
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceErrorException", $fault: "server" }, opts)) || this;
|
|
117
|
+
_this.name = "InternalServiceErrorException";
|
|
118
|
+
_this.$fault = "server";
|
|
119
|
+
Object.setPrototypeOf(_this, InternalServiceErrorException.prototype);
|
|
120
|
+
_this.Message = opts.Message;
|
|
121
|
+
return _this;
|
|
122
|
+
}
|
|
123
|
+
return InternalServiceErrorException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { InternalServiceErrorException };
|
|
126
|
+
var InvalidArgumentException = (function (_super) {
|
|
127
|
+
__extends(InvalidArgumentException, _super);
|
|
128
|
+
function InvalidArgumentException(opts) {
|
|
129
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
|
|
130
|
+
_this.name = "InvalidArgumentException";
|
|
131
|
+
_this.$fault = "client";
|
|
132
|
+
Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
|
|
133
|
+
_this.Message = opts.Message;
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return InvalidArgumentException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { InvalidArgumentException };
|
|
139
|
+
var LimitExceededException = (function (_super) {
|
|
140
|
+
__extends(LimitExceededException, _super);
|
|
141
|
+
function LimitExceededException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
143
|
+
_this.name = "LimitExceededException";
|
|
144
|
+
_this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
146
|
+
_this.Message = opts.Message;
|
|
147
|
+
return _this;
|
|
148
|
+
}
|
|
149
|
+
return LimitExceededException;
|
|
150
|
+
}(__BaseException));
|
|
151
|
+
export { LimitExceededException };
|
|
34
152
|
export var AdvertiseByoipCidrRequest;
|
|
35
153
|
(function (AdvertiseByoipCidrRequest) {
|
|
36
154
|
AdvertiseByoipCidrRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -61,10 +179,62 @@ export var AdvertiseByoipCidrResponse;
|
|
|
61
179
|
(function (AdvertiseByoipCidrResponse) {
|
|
62
180
|
AdvertiseByoipCidrResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
63
181
|
})(AdvertiseByoipCidrResponse || (AdvertiseByoipCidrResponse = {}));
|
|
182
|
+
var ByoipCidrNotFoundException = (function (_super) {
|
|
183
|
+
__extends(ByoipCidrNotFoundException, _super);
|
|
184
|
+
function ByoipCidrNotFoundException(opts) {
|
|
185
|
+
var _this = _super.call(this, __assign({ name: "ByoipCidrNotFoundException", $fault: "client" }, opts)) || this;
|
|
186
|
+
_this.name = "ByoipCidrNotFoundException";
|
|
187
|
+
_this.$fault = "client";
|
|
188
|
+
Object.setPrototypeOf(_this, ByoipCidrNotFoundException.prototype);
|
|
189
|
+
_this.Message = opts.Message;
|
|
190
|
+
return _this;
|
|
191
|
+
}
|
|
192
|
+
return ByoipCidrNotFoundException;
|
|
193
|
+
}(__BaseException));
|
|
194
|
+
export { ByoipCidrNotFoundException };
|
|
195
|
+
var IncorrectCidrStateException = (function (_super) {
|
|
196
|
+
__extends(IncorrectCidrStateException, _super);
|
|
197
|
+
function IncorrectCidrStateException(opts) {
|
|
198
|
+
var _this = _super.call(this, __assign({ name: "IncorrectCidrStateException", $fault: "client" }, opts)) || this;
|
|
199
|
+
_this.name = "IncorrectCidrStateException";
|
|
200
|
+
_this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(_this, IncorrectCidrStateException.prototype);
|
|
202
|
+
_this.Message = opts.Message;
|
|
203
|
+
return _this;
|
|
204
|
+
}
|
|
205
|
+
return IncorrectCidrStateException;
|
|
206
|
+
}(__BaseException));
|
|
207
|
+
export { IncorrectCidrStateException };
|
|
64
208
|
export var AllowCustomRoutingTrafficRequest;
|
|
65
209
|
(function (AllowCustomRoutingTrafficRequest) {
|
|
66
210
|
AllowCustomRoutingTrafficRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
67
211
|
})(AllowCustomRoutingTrafficRequest || (AllowCustomRoutingTrafficRequest = {}));
|
|
212
|
+
var AssociatedEndpointGroupFoundException = (function (_super) {
|
|
213
|
+
__extends(AssociatedEndpointGroupFoundException, _super);
|
|
214
|
+
function AssociatedEndpointGroupFoundException(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "AssociatedEndpointGroupFoundException", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "AssociatedEndpointGroupFoundException";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, AssociatedEndpointGroupFoundException.prototype);
|
|
219
|
+
_this.Message = opts.Message;
|
|
220
|
+
return _this;
|
|
221
|
+
}
|
|
222
|
+
return AssociatedEndpointGroupFoundException;
|
|
223
|
+
}(__BaseException));
|
|
224
|
+
export { AssociatedEndpointGroupFoundException };
|
|
225
|
+
var AssociatedListenerFoundException = (function (_super) {
|
|
226
|
+
__extends(AssociatedListenerFoundException, _super);
|
|
227
|
+
function AssociatedListenerFoundException(opts) {
|
|
228
|
+
var _this = _super.call(this, __assign({ name: "AssociatedListenerFoundException", $fault: "client" }, opts)) || this;
|
|
229
|
+
_this.name = "AssociatedListenerFoundException";
|
|
230
|
+
_this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(_this, AssociatedListenerFoundException.prototype);
|
|
232
|
+
_this.Message = opts.Message;
|
|
233
|
+
return _this;
|
|
234
|
+
}
|
|
235
|
+
return AssociatedListenerFoundException;
|
|
236
|
+
}(__BaseException));
|
|
237
|
+
export { AssociatedListenerFoundException };
|
|
68
238
|
export var CidrAuthorizationContext;
|
|
69
239
|
(function (CidrAuthorizationContext) {
|
|
70
240
|
CidrAuthorizationContext.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -123,6 +293,45 @@ export var CreateCustomRoutingEndpointGroupResponse;
|
|
|
123
293
|
(function (CreateCustomRoutingEndpointGroupResponse) {
|
|
124
294
|
CreateCustomRoutingEndpointGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
295
|
})(CreateCustomRoutingEndpointGroupResponse || (CreateCustomRoutingEndpointGroupResponse = {}));
|
|
296
|
+
var EndpointGroupAlreadyExistsException = (function (_super) {
|
|
297
|
+
__extends(EndpointGroupAlreadyExistsException, _super);
|
|
298
|
+
function EndpointGroupAlreadyExistsException(opts) {
|
|
299
|
+
var _this = _super.call(this, __assign({ name: "EndpointGroupAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
300
|
+
_this.name = "EndpointGroupAlreadyExistsException";
|
|
301
|
+
_this.$fault = "client";
|
|
302
|
+
Object.setPrototypeOf(_this, EndpointGroupAlreadyExistsException.prototype);
|
|
303
|
+
_this.Message = opts.Message;
|
|
304
|
+
return _this;
|
|
305
|
+
}
|
|
306
|
+
return EndpointGroupAlreadyExistsException;
|
|
307
|
+
}(__BaseException));
|
|
308
|
+
export { EndpointGroupAlreadyExistsException };
|
|
309
|
+
var InvalidPortRangeException = (function (_super) {
|
|
310
|
+
__extends(InvalidPortRangeException, _super);
|
|
311
|
+
function InvalidPortRangeException(opts) {
|
|
312
|
+
var _this = _super.call(this, __assign({ name: "InvalidPortRangeException", $fault: "client" }, opts)) || this;
|
|
313
|
+
_this.name = "InvalidPortRangeException";
|
|
314
|
+
_this.$fault = "client";
|
|
315
|
+
Object.setPrototypeOf(_this, InvalidPortRangeException.prototype);
|
|
316
|
+
_this.Message = opts.Message;
|
|
317
|
+
return _this;
|
|
318
|
+
}
|
|
319
|
+
return InvalidPortRangeException;
|
|
320
|
+
}(__BaseException));
|
|
321
|
+
export { InvalidPortRangeException };
|
|
322
|
+
var ListenerNotFoundException = (function (_super) {
|
|
323
|
+
__extends(ListenerNotFoundException, _super);
|
|
324
|
+
function ListenerNotFoundException(opts) {
|
|
325
|
+
var _this = _super.call(this, __assign({ name: "ListenerNotFoundException", $fault: "client" }, opts)) || this;
|
|
326
|
+
_this.name = "ListenerNotFoundException";
|
|
327
|
+
_this.$fault = "client";
|
|
328
|
+
Object.setPrototypeOf(_this, ListenerNotFoundException.prototype);
|
|
329
|
+
_this.Message = opts.Message;
|
|
330
|
+
return _this;
|
|
331
|
+
}
|
|
332
|
+
return ListenerNotFoundException;
|
|
333
|
+
}(__BaseException));
|
|
334
|
+
export { ListenerNotFoundException };
|
|
126
335
|
export var PortRange;
|
|
127
336
|
(function (PortRange) {
|
|
128
337
|
PortRange.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -298,6 +507,32 @@ export var DestinationPortMapping;
|
|
|
298
507
|
(function (DestinationPortMapping) {
|
|
299
508
|
DestinationPortMapping.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
509
|
})(DestinationPortMapping || (DestinationPortMapping = {}));
|
|
510
|
+
var EndpointNotFoundException = (function (_super) {
|
|
511
|
+
__extends(EndpointNotFoundException, _super);
|
|
512
|
+
function EndpointNotFoundException(opts) {
|
|
513
|
+
var _this = _super.call(this, __assign({ name: "EndpointNotFoundException", $fault: "client" }, opts)) || this;
|
|
514
|
+
_this.name = "EndpointNotFoundException";
|
|
515
|
+
_this.$fault = "client";
|
|
516
|
+
Object.setPrototypeOf(_this, EndpointNotFoundException.prototype);
|
|
517
|
+
_this.Message = opts.Message;
|
|
518
|
+
return _this;
|
|
519
|
+
}
|
|
520
|
+
return EndpointNotFoundException;
|
|
521
|
+
}(__BaseException));
|
|
522
|
+
export { EndpointNotFoundException };
|
|
523
|
+
var InvalidNextTokenException = (function (_super) {
|
|
524
|
+
__extends(InvalidNextTokenException, _super);
|
|
525
|
+
function InvalidNextTokenException(opts) {
|
|
526
|
+
var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
|
|
527
|
+
_this.name = "InvalidNextTokenException";
|
|
528
|
+
_this.$fault = "client";
|
|
529
|
+
Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
|
|
530
|
+
_this.Message = opts.Message;
|
|
531
|
+
return _this;
|
|
532
|
+
}
|
|
533
|
+
return InvalidNextTokenException;
|
|
534
|
+
}(__BaseException));
|
|
535
|
+
export { InvalidNextTokenException };
|
|
301
536
|
export var ListAcceleratorsRequest;
|
|
302
537
|
(function (ListAcceleratorsRequest) {
|
|
303
538
|
ListAcceleratorsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|