@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.
Files changed (28) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +23 -120
  3. package/dist-cjs/models/models_0.js +13 -3
  4. package/dist-cjs/protocols/Aws_json1_1.js +264 -412
  5. package/dist-es/models/models_0.js +7 -0
  6. package/dist-es/protocols/Aws_json1_1.js +433 -437
  7. package/dist-types/GlobalAccelerator.d.ts +66 -158
  8. package/dist-types/GlobalAcceleratorClient.d.ts +25 -120
  9. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +4 -4
  10. package/dist-types/commands/CreateAcceleratorCommand.d.ts +3 -2
  11. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +4 -3
  12. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +4 -4
  15. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +3 -3
  16. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -3
  17. package/dist-types/commands/ListAcceleratorsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +4 -4
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  21. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +3 -3
  22. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  23. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +3 -2
  25. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +3 -3
  26. package/dist-types/models/models_0.d.ts +188 -129
  27. package/dist-types/ts3.4/models/models_0.d.ts +20 -0
  28. package/package.json +6 -6
@@ -1,14 +1,28 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
3
+
4
+ export interface AcceleratorEvent {
5
+
6
+ Message?: string;
7
+
8
+ Timestamp?: Date;
9
+ }
3
10
  export declare enum IpAddressType {
11
+ DUAL_STACK = "DUAL_STACK",
4
12
  IPV4 = "IPV4"
5
13
  }
14
+ export declare enum IpAddressFamily {
15
+ IPv4 = "IPv4",
16
+ IPv6 = "IPv6"
17
+ }
6
18
 
7
19
  export interface IpSet {
8
20
 
9
21
  IpFamily?: string;
10
22
 
11
23
  IpAddresses?: string[];
24
+
25
+ IpAddressFamily?: IpAddressFamily | string;
12
26
  }
13
27
  export declare type AcceleratorStatus = "DEPLOYED" | "IN_PROGRESS";
14
28
 
@@ -31,6 +45,10 @@ export interface Accelerator {
31
45
  CreatedTime?: Date;
32
46
 
33
47
  LastModifiedTime?: Date;
48
+
49
+ DualStackDnsName?: string;
50
+
51
+ Events?: AcceleratorEvent[];
34
52
  }
35
53
 
36
54
  export interface AcceleratorAttributes {
@@ -958,6 +976,8 @@ export interface WithdrawByoipCidrResponse {
958
976
  ByoipCidr?: ByoipCidr;
959
977
  }
960
978
 
979
+ export declare const AcceleratorEventFilterSensitiveLog: (obj: AcceleratorEvent) => any;
980
+
961
981
  export declare const IpSetFilterSensitiveLog: (obj: IpSet) => any;
962
982
 
963
983
  export declare const AcceleratorFilterSensitiveLog: (obj: Accelerator) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-global-accelerator",
3
3
  "description": "AWS SDK for JavaScript Global Accelerator Client for Node.js, Browser and React Native",
4
- "version": "3.137.0",
4
+ "version": "3.142.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.137.0",
21
+ "@aws-sdk/client-sts": "3.142.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.137.0",
23
+ "@aws-sdk/credential-provider-node": "3.142.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.137.0",
39
+ "@aws-sdk/smithy-client": "3.142.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.137.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.142.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.142.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",