@aws-sdk/client-global-accelerator 3.590.0 → 3.591.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.
|
@@ -59,6 +59,9 @@ declare const UpdateAcceleratorCommand_base: {
|
|
|
59
59
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
60
60
|
* Name: "STRING_VALUE",
|
|
61
61
|
* IpAddressType: "IPV4" || "DUAL_STACK",
|
|
62
|
+
* IpAddresses: [ // IpAddresses
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
62
65
|
* Enabled: true || false,
|
|
63
66
|
* };
|
|
64
67
|
* const command = new UpdateAcceleratorCommand(input);
|
|
@@ -37,6 +37,9 @@ declare const UpdateCustomRoutingAcceleratorCommand_base: {
|
|
|
37
37
|
* AcceleratorArn: "STRING_VALUE", // required
|
|
38
38
|
* Name: "STRING_VALUE",
|
|
39
39
|
* IpAddressType: "IPV4" || "DUAL_STACK",
|
|
40
|
+
* IpAddresses: [ // IpAddresses
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
40
43
|
* Enabled: true || false,
|
|
41
44
|
* };
|
|
42
45
|
* const command = new UpdateCustomRoutingAcceleratorCommand(input);
|
|
@@ -2735,6 +2735,11 @@ export interface UpdateAcceleratorRequest {
|
|
|
2735
2735
|
* @public
|
|
2736
2736
|
*/
|
|
2737
2737
|
IpAddressType?: IpAddressType;
|
|
2738
|
+
/**
|
|
2739
|
+
* <p>The IP addresses for an accelerator.</p>
|
|
2740
|
+
* @public
|
|
2741
|
+
*/
|
|
2742
|
+
IpAddresses?: string[];
|
|
2738
2743
|
/**
|
|
2739
2744
|
* <p>Indicates whether an accelerator is enabled. The value is true or false. The default value is true. </p>
|
|
2740
2745
|
* <p>If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.</p>
|
|
@@ -2871,6 +2876,11 @@ export interface UpdateCustomRoutingAcceleratorRequest {
|
|
|
2871
2876
|
* @public
|
|
2872
2877
|
*/
|
|
2873
2878
|
IpAddressType?: IpAddressType;
|
|
2879
|
+
/**
|
|
2880
|
+
* <p>The IP addresses for an accelerator.</p>
|
|
2881
|
+
* @public
|
|
2882
|
+
*/
|
|
2883
|
+
IpAddresses?: string[];
|
|
2874
2884
|
/**
|
|
2875
2885
|
* <p>Indicates whether an accelerator is enabled. The value is true or false. The default value is true. </p>
|
|
2876
2886
|
* <p>If the value is set to true, the accelerator cannot be deleted. If set to false, the accelerator can be deleted.</p>
|
|
@@ -745,6 +745,7 @@ export interface UpdateAcceleratorRequest {
|
|
|
745
745
|
AcceleratorArn: string | undefined;
|
|
746
746
|
Name?: string;
|
|
747
747
|
IpAddressType?: IpAddressType;
|
|
748
|
+
IpAddresses?: string[];
|
|
748
749
|
Enabled?: boolean;
|
|
749
750
|
}
|
|
750
751
|
export interface UpdateAcceleratorResponse {
|
|
@@ -774,6 +775,7 @@ export interface UpdateCustomRoutingAcceleratorRequest {
|
|
|
774
775
|
AcceleratorArn: string | undefined;
|
|
775
776
|
Name?: string;
|
|
776
777
|
IpAddressType?: IpAddressType;
|
|
778
|
+
IpAddresses?: string[];
|
|
777
779
|
Enabled?: boolean;
|
|
778
780
|
}
|
|
779
781
|
export interface UpdateCustomRoutingAcceleratorResponse {
|
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.
|
|
4
|
+
"version": "3.591.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-global-accelerator",
|