@aws-sdk/client-global-accelerator 3.321.1 → 3.326.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 (50) hide show
  1. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +11 -0
  2. package/dist-types/commands/AddEndpointsCommand.d.ts +15 -0
  3. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +15 -0
  4. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +4 -0
  5. package/dist-types/commands/CreateAcceleratorCommand.d.ts +31 -0
  6. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +24 -0
  7. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +23 -0
  8. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +14 -0
  9. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +30 -0
  10. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteListenerCommand.d.ts +4 -0
  17. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +4 -0
  18. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +15 -0
  19. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +10 -0
  20. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +31 -0
  21. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
  22. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +24 -0
  23. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +23 -0
  24. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +14 -0
  25. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +30 -0
  26. package/dist-types/commands/DescribeListenerCommand.d.ts +16 -0
  27. package/dist-types/commands/ListAcceleratorsCommand.d.ts +34 -0
  28. package/dist-types/commands/ListByoipCidrsCommand.d.ts +18 -0
  29. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +27 -0
  30. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +26 -0
  31. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +17 -0
  32. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +26 -0
  33. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +21 -0
  34. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +33 -0
  35. package/dist-types/commands/ListListenersCommand.d.ts +19 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  37. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +15 -0
  38. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +4 -0
  39. package/dist-types/commands/RemoveEndpointsCommand.d.ts +4 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  42. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +10 -0
  43. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +31 -0
  44. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
  45. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +24 -0
  46. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +14 -0
  47. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +30 -0
  48. package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
  49. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +15 -0
  50. package/package.json +16 -16
@@ -40,6 +40,35 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
40
40
  * };
41
41
  * const command = new UpdateAcceleratorCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // UpdateAcceleratorResponse
44
+ * // Accelerator: { // Accelerator
45
+ * // AcceleratorArn: "STRING_VALUE",
46
+ * // Name: "STRING_VALUE",
47
+ * // IpAddressType: "IPV4" || "DUAL_STACK",
48
+ * // Enabled: true || false,
49
+ * // IpSets: [ // IpSets
50
+ * // { // IpSet
51
+ * // IpFamily: "STRING_VALUE",
52
+ * // IpAddresses: [ // IpAddresses
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // IpAddressFamily: "IPv4" || "IPv6",
56
+ * // },
57
+ * // ],
58
+ * // DnsName: "STRING_VALUE",
59
+ * // Status: "DEPLOYED" || "IN_PROGRESS",
60
+ * // CreatedTime: new Date("TIMESTAMP"),
61
+ * // LastModifiedTime: new Date("TIMESTAMP"),
62
+ * // DualStackDnsName: "STRING_VALUE",
63
+ * // Events: [ // AcceleratorEvents
64
+ * // { // AcceleratorEvent
65
+ * // Message: "STRING_VALUE",
66
+ * // Timestamp: new Date("TIMESTAMP"),
67
+ * // },
68
+ * // ],
69
+ * // },
70
+ * // };
71
+ *
43
72
  * ```
44
73
  *
45
74
  * @param UpdateAcceleratorCommandInput - {@link UpdateAcceleratorCommandInput}
@@ -60,6 +89,8 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
60
89
  * @throws {@link InvalidArgumentException} (client fault)
61
90
  * <p>An argument that you specified is invalid.</p>
62
91
  *
92
+ * @throws {@link GlobalAcceleratorServiceException}
93
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
63
94
  *
64
95
  */
65
96
  export declare class UpdateAcceleratorCommand extends $Command<UpdateAcceleratorCommandInput, UpdateAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -34,6 +34,14 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
34
34
  * };
35
35
  * const command = new UpdateCustomRoutingAcceleratorAttributesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateCustomRoutingAcceleratorAttributesResponse
38
+ * // AcceleratorAttributes: { // CustomRoutingAcceleratorAttributes
39
+ * // FlowLogsEnabled: true || false,
40
+ * // FlowLogsS3Bucket: "STRING_VALUE",
41
+ * // FlowLogsS3Prefix: "STRING_VALUE",
42
+ * // },
43
+ * // };
44
+ *
37
45
  * ```
38
46
  *
39
47
  * @param UpdateCustomRoutingAcceleratorAttributesCommandInput - {@link UpdateCustomRoutingAcceleratorAttributesCommandInput}
@@ -54,6 +62,8 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
54
62
  * @throws {@link InvalidArgumentException} (client fault)
55
63
  * <p>An argument that you specified is invalid.</p>
56
64
  *
65
+ * @throws {@link GlobalAcceleratorServiceException}
66
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
57
67
  *
58
68
  */
59
69
  export declare class UpdateCustomRoutingAcceleratorAttributesCommand extends $Command<UpdateCustomRoutingAcceleratorAttributesCommandInput, UpdateCustomRoutingAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -34,6 +34,28 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
34
34
  * };
35
35
  * const command = new UpdateCustomRoutingAcceleratorCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateCustomRoutingAcceleratorResponse
38
+ * // Accelerator: { // CustomRoutingAccelerator
39
+ * // AcceleratorArn: "STRING_VALUE",
40
+ * // Name: "STRING_VALUE",
41
+ * // IpAddressType: "IPV4" || "DUAL_STACK",
42
+ * // Enabled: true || false,
43
+ * // IpSets: [ // IpSets
44
+ * // { // IpSet
45
+ * // IpFamily: "STRING_VALUE",
46
+ * // IpAddresses: [ // IpAddresses
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // IpAddressFamily: "IPv4" || "IPv6",
50
+ * // },
51
+ * // ],
52
+ * // DnsName: "STRING_VALUE",
53
+ * // Status: "DEPLOYED" || "IN_PROGRESS",
54
+ * // CreatedTime: new Date("TIMESTAMP"),
55
+ * // LastModifiedTime: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // };
58
+ *
37
59
  * ```
38
60
  *
39
61
  * @param UpdateCustomRoutingAcceleratorCommandInput - {@link UpdateCustomRoutingAcceleratorCommandInput}
@@ -51,6 +73,8 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
51
73
  * @throws {@link InvalidArgumentException} (client fault)
52
74
  * <p>An argument that you specified is invalid.</p>
53
75
  *
76
+ * @throws {@link GlobalAcceleratorServiceException}
77
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
54
78
  *
55
79
  */
56
80
  export declare class UpdateCustomRoutingAcceleratorCommand extends $Command<UpdateCustomRoutingAcceleratorCommandInput, UpdateCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -37,6 +37,18 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
37
37
  * };
38
38
  * const command = new UpdateCustomRoutingListenerCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // UpdateCustomRoutingListenerResponse
41
+ * // Listener: { // CustomRoutingListener
42
+ * // ListenerArn: "STRING_VALUE",
43
+ * // PortRanges: [ // PortRanges
44
+ * // { // PortRange
45
+ * // FromPort: Number("int"),
46
+ * // ToPort: Number("int"),
47
+ * // },
48
+ * // ],
49
+ * // },
50
+ * // };
51
+ *
40
52
  * ```
41
53
  *
42
54
  * @param UpdateCustomRoutingListenerCommandInput - {@link UpdateCustomRoutingListenerCommandInput}
@@ -60,6 +72,8 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
60
72
  * @throws {@link ListenerNotFoundException} (client fault)
61
73
  * <p>The listener that you specified doesn't exist.</p>
62
74
  *
75
+ * @throws {@link GlobalAcceleratorServiceException}
76
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
63
77
  *
64
78
  */
65
79
  export declare class UpdateCustomRoutingListenerCommand extends $Command<UpdateCustomRoutingListenerCommandInput, UpdateCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -50,6 +50,34 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
50
50
  * };
51
51
  * const command = new UpdateEndpointGroupCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // UpdateEndpointGroupResponse
54
+ * // EndpointGroup: { // EndpointGroup
55
+ * // EndpointGroupArn: "STRING_VALUE",
56
+ * // EndpointGroupRegion: "STRING_VALUE",
57
+ * // EndpointDescriptions: [ // EndpointDescriptions
58
+ * // { // EndpointDescription
59
+ * // EndpointId: "STRING_VALUE",
60
+ * // Weight: Number("int"),
61
+ * // HealthState: "INITIAL" || "HEALTHY" || "UNHEALTHY",
62
+ * // HealthReason: "STRING_VALUE",
63
+ * // ClientIPPreservationEnabled: true || false,
64
+ * // },
65
+ * // ],
66
+ * // TrafficDialPercentage: Number("float"),
67
+ * // HealthCheckPort: Number("int"),
68
+ * // HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
69
+ * // HealthCheckPath: "STRING_VALUE",
70
+ * // HealthCheckIntervalSeconds: Number("int"),
71
+ * // ThresholdCount: Number("int"),
72
+ * // PortOverrides: [ // PortOverrides
73
+ * // { // PortOverride
74
+ * // ListenerPort: Number("int"),
75
+ * // EndpointPort: Number("int"),
76
+ * // },
77
+ * // ],
78
+ * // },
79
+ * // };
80
+ *
53
81
  * ```
54
82
  *
55
83
  * @param UpdateEndpointGroupCommandInput - {@link UpdateEndpointGroupCommandInput}
@@ -73,6 +101,8 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
73
101
  * @throws {@link LimitExceededException} (client fault)
74
102
  * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
75
103
  *
104
+ * @throws {@link GlobalAcceleratorServiceException}
105
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
76
106
  *
77
107
  */
78
108
  export declare class UpdateEndpointGroupCommand extends $Command<UpdateEndpointGroupCommandInput, UpdateEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -39,6 +39,20 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
39
39
  * };
40
40
  * const command = new UpdateListenerCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // UpdateListenerResponse
43
+ * // Listener: { // Listener
44
+ * // ListenerArn: "STRING_VALUE",
45
+ * // PortRanges: [ // PortRanges
46
+ * // { // PortRange
47
+ * // FromPort: Number("int"),
48
+ * // ToPort: Number("int"),
49
+ * // },
50
+ * // ],
51
+ * // Protocol: "TCP" || "UDP",
52
+ * // ClientAffinity: "NONE" || "SOURCE_IP",
53
+ * // },
54
+ * // };
55
+ *
42
56
  * ```
43
57
  *
44
58
  * @param UpdateListenerCommandInput - {@link UpdateListenerCommandInput}
@@ -62,6 +76,8 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
62
76
  * @throws {@link ListenerNotFoundException} (client fault)
63
77
  * <p>The listener that you specified doesn't exist.</p>
64
78
  *
79
+ * @throws {@link GlobalAcceleratorServiceException}
80
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
65
81
  *
66
82
  */
67
83
  export declare class UpdateListenerCommand extends $Command<UpdateListenerCommandInput, UpdateListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -37,6 +37,19 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
37
37
  * };
38
38
  * const command = new WithdrawByoipCidrCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // WithdrawByoipCidrResponse
41
+ * // ByoipCidr: { // ByoipCidr
42
+ * // Cidr: "STRING_VALUE",
43
+ * // State: "PENDING_PROVISIONING" || "READY" || "PENDING_ADVERTISING" || "ADVERTISING" || "PENDING_WITHDRAWING" || "PENDING_DEPROVISIONING" || "DEPROVISIONED" || "FAILED_PROVISION" || "FAILED_ADVERTISING" || "FAILED_WITHDRAW" || "FAILED_DEPROVISION",
44
+ * // Events: [ // ByoipCidrEvents
45
+ * // { // ByoipCidrEvent
46
+ * // Message: "STRING_VALUE",
47
+ * // Timestamp: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ],
50
+ * // },
51
+ * // };
52
+ *
40
53
  * ```
41
54
  *
42
55
  * @param WithdrawByoipCidrCommandInput - {@link WithdrawByoipCidrCommandInput}
@@ -61,6 +74,8 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
61
74
  * @throws {@link InvalidArgumentException} (client fault)
62
75
  * <p>An argument that you specified is invalid.</p>
63
76
  *
77
+ * @throws {@link GlobalAcceleratorServiceException}
78
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
64
79
  *
65
80
  */
66
81
  export declare class WithdrawByoipCidrCommand extends $Command<WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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",
@@ -21,33 +21,33 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",