@aws-sdk/client-global-accelerator 3.614.0 → 3.616.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/dist-cjs/index.js +5 -5
- package/dist-es/GlobalAcceleratorClient.js +5 -5
- package/dist-types/GlobalAcceleratorClient.d.ts +2 -2
- package/dist-types/commands/CreateAcceleratorCommand.d.ts +6 -0
- package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAcceleratorCommand.d.ts +3 -0
- package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +3 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateAcceleratorCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +6 -0
- 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/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 +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -228,19 +228,19 @@ var _GlobalAcceleratorClient = class _GlobalAcceleratorClient extends import_smi
|
|
|
228
228
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
229
229
|
const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
|
|
230
230
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
231
|
-
const _config_4 = (0,
|
|
232
|
-
const _config_5 = (0,
|
|
233
|
-
const _config_6 = (0,
|
|
231
|
+
const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
|
|
232
|
+
const _config_5 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_4);
|
|
233
|
+
const _config_6 = (0, import_middleware_retry.resolveRetryConfig)(_config_5);
|
|
234
234
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
235
235
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
236
236
|
super(_config_8);
|
|
237
237
|
this.config = _config_8;
|
|
238
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
239
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
240
238
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
241
239
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
242
240
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
243
241
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
242
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
243
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
244
244
|
this.middlewareStack.use(
|
|
245
245
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
246
246
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
@@ -19,19 +19,19 @@ export class GlobalAcceleratorClient extends __Client {
|
|
|
19
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
20
20
|
const _config_2 = resolveRegionConfig(_config_1);
|
|
21
21
|
const _config_3 = resolveEndpointConfig(_config_2);
|
|
22
|
-
const _config_4 =
|
|
23
|
-
const _config_5 =
|
|
24
|
-
const _config_6 =
|
|
22
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
23
|
+
const _config_5 = resolveUserAgentConfig(_config_4);
|
|
24
|
+
const _config_6 = resolveRetryConfig(_config_5);
|
|
25
25
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
26
26
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
27
27
|
super(_config_8);
|
|
28
28
|
this.config = _config_8;
|
|
29
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
30
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
31
29
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
32
30
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
33
31
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
34
32
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
35
35
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
36
36
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
37
37
|
identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
|
|
@@ -187,7 +187,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
187
187
|
/**
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
export type GlobalAcceleratorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> &
|
|
190
|
+
export type GlobalAcceleratorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & UserAgentInputConfig & RetryInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
191
191
|
/**
|
|
192
192
|
* @public
|
|
193
193
|
*
|
|
@@ -198,7 +198,7 @@ export interface GlobalAcceleratorClientConfig extends GlobalAcceleratorClientCo
|
|
|
198
198
|
/**
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
export type GlobalAcceleratorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> &
|
|
201
|
+
export type GlobalAcceleratorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
202
202
|
/**
|
|
203
203
|
* @public
|
|
204
204
|
*
|
|
@@ -94,6 +94,9 @@ declare const CreateAcceleratorCommand_base: {
|
|
|
94
94
|
* @see {@link CreateAcceleratorCommandOutput} for command's `response` shape.
|
|
95
95
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
96
96
|
*
|
|
97
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
98
|
+
* <p>You don't have access permission.</p>
|
|
99
|
+
*
|
|
97
100
|
* @throws {@link InternalServiceErrorException} (server fault)
|
|
98
101
|
* <p>There was an internal error for Global Accelerator.</p>
|
|
99
102
|
*
|
|
@@ -103,6 +106,9 @@ declare const CreateAcceleratorCommand_base: {
|
|
|
103
106
|
* @throws {@link LimitExceededException} (client fault)
|
|
104
107
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
105
108
|
*
|
|
109
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
110
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
111
|
+
*
|
|
106
112
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
107
113
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
108
114
|
*
|
|
@@ -103,6 +103,9 @@ declare const CreateCustomRoutingAcceleratorCommand_base: {
|
|
|
103
103
|
* @throws {@link LimitExceededException} (client fault)
|
|
104
104
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
105
105
|
*
|
|
106
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
107
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
108
|
+
*
|
|
106
109
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
107
110
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
108
111
|
*
|
|
@@ -78,6 +78,9 @@ declare const DeleteAcceleratorCommand_base: {
|
|
|
78
78
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
79
79
|
* <p>An argument that you specified is invalid.</p>
|
|
80
80
|
*
|
|
81
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
82
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
83
|
+
*
|
|
81
84
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
82
85
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
83
86
|
*
|
|
@@ -78,6 +78,9 @@ declare const DeleteCustomRoutingAcceleratorCommand_base: {
|
|
|
78
78
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
79
79
|
* <p>An argument that you specified is invalid.</p>
|
|
80
80
|
*
|
|
81
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
82
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
83
|
+
*
|
|
81
84
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
82
85
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
83
86
|
*
|
|
@@ -61,12 +61,21 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
61
61
|
* @throws {@link AcceleratorNotFoundException} (client fault)
|
|
62
62
|
* <p>The accelerator that you specified doesn't exist.</p>
|
|
63
63
|
*
|
|
64
|
+
* @throws {@link AttachmentNotFoundException} (client fault)
|
|
65
|
+
* <p>No cross-account attachment was found.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link EndpointGroupNotFoundException} (client fault)
|
|
68
|
+
* <p>The endpoint group that you specified doesn't exist.</p>
|
|
69
|
+
*
|
|
64
70
|
* @throws {@link InternalServiceErrorException} (server fault)
|
|
65
71
|
* <p>There was an internal error for Global Accelerator.</p>
|
|
66
72
|
*
|
|
67
73
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
68
74
|
* <p>An argument that you specified is invalid.</p>
|
|
69
75
|
*
|
|
76
|
+
* @throws {@link ListenerNotFoundException} (client fault)
|
|
77
|
+
* <p>The listener that you specified doesn't exist.</p>
|
|
78
|
+
*
|
|
70
79
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
71
80
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
72
81
|
*
|
|
@@ -70,6 +70,9 @@ declare const UpdateAcceleratorAttributesCommand_base: {
|
|
|
70
70
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
71
71
|
* <p>An argument that you specified is invalid.</p>
|
|
72
72
|
*
|
|
73
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
74
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
75
|
+
*
|
|
73
76
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
74
77
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
75
78
|
*
|
|
@@ -110,12 +110,18 @@ declare const UpdateAcceleratorCommand_base: {
|
|
|
110
110
|
* @throws {@link AccessDeniedException} (client fault)
|
|
111
111
|
* <p>You don't have access permission.</p>
|
|
112
112
|
*
|
|
113
|
+
* @throws {@link ConflictException} (client fault)
|
|
114
|
+
* <p>You can't use both of those options.</p>
|
|
115
|
+
*
|
|
113
116
|
* @throws {@link InternalServiceErrorException} (server fault)
|
|
114
117
|
* <p>There was an internal error for Global Accelerator.</p>
|
|
115
118
|
*
|
|
116
119
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
117
120
|
* <p>An argument that you specified is invalid.</p>
|
|
118
121
|
*
|
|
122
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
123
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
124
|
+
*
|
|
119
125
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
120
126
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
121
127
|
*
|
|
@@ -70,6 +70,9 @@ declare const UpdateCustomRoutingAcceleratorAttributesCommand_base: {
|
|
|
70
70
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
71
71
|
* <p>An argument that you specified is invalid.</p>
|
|
72
72
|
*
|
|
73
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
74
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
75
|
+
*
|
|
73
76
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
74
77
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
75
78
|
*
|
|
@@ -78,12 +78,18 @@ declare const UpdateCustomRoutingAcceleratorCommand_base: {
|
|
|
78
78
|
* @throws {@link AcceleratorNotFoundException} (client fault)
|
|
79
79
|
* <p>The accelerator that you specified doesn't exist.</p>
|
|
80
80
|
*
|
|
81
|
+
* @throws {@link ConflictException} (client fault)
|
|
82
|
+
* <p>You can't use both of those options.</p>
|
|
83
|
+
*
|
|
81
84
|
* @throws {@link InternalServiceErrorException} (server fault)
|
|
82
85
|
* <p>There was an internal error for Global Accelerator.</p>
|
|
83
86
|
*
|
|
84
87
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
85
88
|
* <p>An argument that you specified is invalid.</p>
|
|
86
89
|
*
|
|
90
|
+
* @throws {@link TransactionInProgressException} (client fault)
|
|
91
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
92
|
+
*
|
|
87
93
|
* @throws {@link GlobalAcceleratorServiceException}
|
|
88
94
|
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
89
95
|
*
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: GlobalAcceleratorClientConfig) =
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -32,8 +32,8 @@ export declare const getRuntimeConfig: (config: GlobalAcceleratorClientConfig) =
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -31,8 +31,8 @@ export declare const getRuntimeConfig: (config: GlobalAcceleratorClientConfig) =
|
|
|
31
31
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
32
|
}) => import("@smithy/types").EndpointV2;
|
|
33
33
|
tls?: boolean | undefined;
|
|
34
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
34
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -421,9 +421,9 @@ export type GlobalAcceleratorClientConfigType = Partial<
|
|
|
421
421
|
ClientDefaults &
|
|
422
422
|
RegionInputConfig &
|
|
423
423
|
EndpointInputConfig<EndpointParameters> &
|
|
424
|
-
RetryInputConfig &
|
|
425
424
|
HostHeaderInputConfig &
|
|
426
425
|
UserAgentInputConfig &
|
|
426
|
+
RetryInputConfig &
|
|
427
427
|
HttpAuthSchemeInputConfig &
|
|
428
428
|
ClientInputEndpointParameters;
|
|
429
429
|
export interface GlobalAcceleratorClientConfig
|
|
@@ -434,9 +434,9 @@ export type GlobalAcceleratorClientResolvedConfigType =
|
|
|
434
434
|
RuntimeExtensionsConfig &
|
|
435
435
|
RegionResolvedConfig &
|
|
436
436
|
EndpointResolvedConfig<EndpointParameters> &
|
|
437
|
-
RetryResolvedConfig &
|
|
438
437
|
HostHeaderResolvedConfig &
|
|
439
438
|
UserAgentResolvedConfig &
|
|
439
|
+
RetryResolvedConfig &
|
|
440
440
|
HttpAuthSchemeResolvedConfig &
|
|
441
441
|
ClientResolvedEndpointParameters;
|
|
442
442
|
export interface GlobalAcceleratorClientResolvedConfig
|
|
@@ -58,11 +58,11 @@ export declare const getRuntimeConfig: (
|
|
|
58
58
|
}
|
|
59
59
|
) => import("@smithy/types").EndpointV2;
|
|
60
60
|
tls?: boolean | undefined;
|
|
61
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
61
62
|
retryStrategy?:
|
|
62
63
|
| import("@smithy/types").RetryStrategy
|
|
63
64
|
| import("@smithy/types").RetryStrategyV2
|
|
64
65
|
| undefined;
|
|
65
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
68
68
|
credentials?:
|
|
@@ -62,11 +62,11 @@ export declare const getRuntimeConfig: (
|
|
|
62
62
|
}
|
|
63
63
|
) => import("@smithy/types").EndpointV2;
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
65
66
|
retryStrategy?:
|
|
66
67
|
| import("@smithy/types").RetryStrategy
|
|
67
68
|
| import("@smithy/types").RetryStrategyV2
|
|
68
69
|
| undefined;
|
|
69
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
72
72
|
credentials?:
|
|
@@ -52,11 +52,11 @@ export declare const getRuntimeConfig: (
|
|
|
52
52
|
}
|
|
53
53
|
) => import("@smithy/types").EndpointV2;
|
|
54
54
|
tls?: boolean | undefined;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
55
56
|
retryStrategy?:
|
|
56
57
|
| import("@smithy/types").RetryStrategy
|
|
57
58
|
| import("@smithy/types").RetryStrategyV2
|
|
58
59
|
| undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlobalAcceleratorHttpAuthSchemeProvider;
|
|
62
62
|
credentials?:
|
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.616.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",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.616.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.616.0",
|
|
25
|
+
"@aws-sdk/core": "3.616.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.616.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.616.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.616.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.616.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.2.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.2",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.4",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.0.5",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.10",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
|
-
"@smithy/node-http-handler": "^3.1.
|
|
48
|
-
"@smithy/protocol-http": "^4.0.
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
47
|
+
"@smithy/node-http-handler": "^3.1.3",
|
|
48
|
+
"@smithy/protocol-http": "^4.0.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.8",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.10",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.10",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|