@aws-sdk/client-global-accelerator 3.137.0 → 3.142.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 +33 -0
- package/README.md +23 -120
- package/dist-cjs/models/models_0.js +13 -3
- package/dist-cjs/protocols/Aws_json1_1.js +264 -412
- package/dist-es/models/models_0.js +7 -0
- package/dist-es/protocols/Aws_json1_1.js +433 -437
- package/dist-types/GlobalAccelerator.d.ts +66 -158
- package/dist-types/GlobalAcceleratorClient.d.ts +25 -120
- package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +4 -4
- package/dist-types/commands/CreateAcceleratorCommand.d.ts +3 -2
- package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +4 -3
- package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAcceleratorCommand.d.ts +4 -4
- package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +3 -3
- package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -3
- package/dist-types/commands/ListAcceleratorsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +1 -1
- package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAcceleratorCommand.d.ts +3 -2
- package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +188 -129
- package/dist-types/ts3.4/models/models_0.d.ts +20 -0
- package/package.json +6 -6
|
@@ -2,8 +2,14 @@ import { __assign, __extends } from "tslib";
|
|
|
2
2
|
import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
|
|
3
3
|
export var IpAddressType;
|
|
4
4
|
(function (IpAddressType) {
|
|
5
|
+
IpAddressType["DUAL_STACK"] = "DUAL_STACK";
|
|
5
6
|
IpAddressType["IPV4"] = "IPV4";
|
|
6
7
|
})(IpAddressType || (IpAddressType = {}));
|
|
8
|
+
export var IpAddressFamily;
|
|
9
|
+
(function (IpAddressFamily) {
|
|
10
|
+
IpAddressFamily["IPv4"] = "IPv4";
|
|
11
|
+
IpAddressFamily["IPv6"] = "IPv6";
|
|
12
|
+
})(IpAddressFamily || (IpAddressFamily = {}));
|
|
7
13
|
var AcceleratorNotDisabledException = (function (_super) {
|
|
8
14
|
__extends(AcceleratorNotDisabledException, _super);
|
|
9
15
|
function AcceleratorNotDisabledException(opts) {
|
|
@@ -273,6 +279,7 @@ var InvalidNextTokenException = (function (_super) {
|
|
|
273
279
|
return InvalidNextTokenException;
|
|
274
280
|
}(__BaseException));
|
|
275
281
|
export { InvalidNextTokenException };
|
|
282
|
+
export var AcceleratorEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
283
|
export var IpSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
284
|
export var AcceleratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
285
|
export var AcceleratorAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|