@aws-sdk/client-efs 3.1087.0 → 3.1088.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-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/EFS.d.ts +102 -123
  3. package/dist-types/ts3.4/EFSClient.d.ts +16 -32
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
  6. package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
  7. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +5 -11
  8. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +3 -8
  9. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +5 -11
  10. package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +2 -2
  12. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +3 -4
  13. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +2 -2
  14. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +3 -4
  15. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +3 -4
  16. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -2
  18. package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +4 -9
  19. package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +4 -9
  26. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +3 -5
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  29. package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +5 -10
  31. package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +4 -9
  32. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +5 -10
  33. package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +4 -6
  34. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
  36. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +4 -9
  37. package/dist-types/ts3.4/commands/UpdateFileSystemProtectionCommand.d.ts +4 -6
  38. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  40. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  41. package/dist-types/ts3.4/models/enums.d.ts +6 -12
  42. package/dist-types/ts3.4/models/errors.d.ts +23 -72
  43. package/dist-types/ts3.4/models/models_0.d.ts +1 -3
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  48. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  50. package/package.json +38 -38
@@ -6,36 +6,28 @@ export declare class AccessPointAlreadyExists extends __BaseException {
6
6
  ErrorCode: string | undefined;
7
7
  Message?: string | undefined;
8
8
  AccessPointId: string | undefined;
9
- constructor(
10
- opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>
11
- );
9
+ constructor(opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>);
12
10
  }
13
11
  export declare class AccessPointLimitExceeded extends __BaseException {
14
12
  readonly name: "AccessPointLimitExceeded";
15
13
  readonly $fault: "client";
16
14
  ErrorCode: string | undefined;
17
15
  Message?: string | undefined;
18
- constructor(
19
- opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>
20
- );
16
+ constructor(opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>);
21
17
  }
22
18
  export declare class AccessPointNotFound extends __BaseException {
23
19
  readonly name: "AccessPointNotFound";
24
20
  readonly $fault: "client";
25
21
  ErrorCode: string | undefined;
26
22
  Message?: string | undefined;
27
- constructor(
28
- opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>
29
- );
23
+ constructor(opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>);
30
24
  }
31
25
  export declare class AvailabilityZonesMismatch extends __BaseException {
32
26
  readonly name: "AvailabilityZonesMismatch";
33
27
  readonly $fault: "client";
34
28
  ErrorCode?: string | undefined;
35
29
  Message?: string | undefined;
36
- constructor(
37
- opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>
38
- );
30
+ constructor(opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>);
39
31
  }
40
32
  export declare class BadRequest extends __BaseException {
41
33
  readonly name: "BadRequest";
@@ -63,30 +55,21 @@ export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
63
55
  readonly $fault: "client";
64
56
  ErrorCode: string | undefined;
65
57
  Message?: string | undefined;
66
- constructor(
67
- opts: __ExceptionOptionType<
68
- IncorrectFileSystemLifeCycleState,
69
- __BaseException
70
- >
71
- );
58
+ constructor(opts: __ExceptionOptionType<IncorrectFileSystemLifeCycleState, __BaseException>);
72
59
  }
73
60
  export declare class InternalServerError extends __BaseException {
74
61
  readonly name: "InternalServerError";
75
62
  readonly $fault: "server";
76
63
  ErrorCode: string | undefined;
77
64
  Message?: string | undefined;
78
- constructor(
79
- opts: __ExceptionOptionType<InternalServerError, __BaseException>
80
- );
65
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
81
66
  }
82
67
  export declare class ThrottlingException extends __BaseException {
83
68
  readonly name: "ThrottlingException";
84
69
  readonly $fault: "client";
85
70
  ErrorCode?: string | undefined;
86
71
  Message?: string | undefined;
87
- constructor(
88
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
89
- );
72
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
90
73
  }
91
74
  export declare class FileSystemAlreadyExists extends __BaseException {
92
75
  readonly name: "FileSystemAlreadyExists";
@@ -94,45 +77,35 @@ export declare class FileSystemAlreadyExists extends __BaseException {
94
77
  ErrorCode: string | undefined;
95
78
  Message?: string | undefined;
96
79
  FileSystemId: string | undefined;
97
- constructor(
98
- opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>
99
- );
80
+ constructor(opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>);
100
81
  }
101
82
  export declare class FileSystemLimitExceeded extends __BaseException {
102
83
  readonly name: "FileSystemLimitExceeded";
103
84
  readonly $fault: "client";
104
85
  ErrorCode: string | undefined;
105
86
  Message?: string | undefined;
106
- constructor(
107
- opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>
108
- );
87
+ constructor(opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>);
109
88
  }
110
89
  export declare class InsufficientThroughputCapacity extends __BaseException {
111
90
  readonly name: "InsufficientThroughputCapacity";
112
91
  readonly $fault: "server";
113
92
  ErrorCode: string | undefined;
114
93
  Message?: string | undefined;
115
- constructor(
116
- opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>
117
- );
94
+ constructor(opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>);
118
95
  }
119
96
  export declare class ThroughputLimitExceeded extends __BaseException {
120
97
  readonly name: "ThroughputLimitExceeded";
121
98
  readonly $fault: "client";
122
99
  ErrorCode: string | undefined;
123
100
  Message?: string | undefined;
124
- constructor(
125
- opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>
126
- );
101
+ constructor(opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>);
127
102
  }
128
103
  export declare class UnsupportedAvailabilityZone extends __BaseException {
129
104
  readonly name: "UnsupportedAvailabilityZone";
130
105
  readonly $fault: "client";
131
106
  ErrorCode: string | undefined;
132
107
  Message?: string | undefined;
133
- constructor(
134
- opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>
135
- );
108
+ constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>);
136
109
  }
137
110
  export declare class IpAddressInUse extends __BaseException {
138
111
  readonly name: "IpAddressInUse";
@@ -146,45 +119,35 @@ export declare class MountTargetConflict extends __BaseException {
146
119
  readonly $fault: "client";
147
120
  ErrorCode: string | undefined;
148
121
  Message?: string | undefined;
149
- constructor(
150
- opts: __ExceptionOptionType<MountTargetConflict, __BaseException>
151
- );
122
+ constructor(opts: __ExceptionOptionType<MountTargetConflict, __BaseException>);
152
123
  }
153
124
  export declare class NetworkInterfaceLimitExceeded extends __BaseException {
154
125
  readonly name: "NetworkInterfaceLimitExceeded";
155
126
  readonly $fault: "client";
156
127
  ErrorCode: string | undefined;
157
128
  Message?: string | undefined;
158
- constructor(
159
- opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>
160
- );
129
+ constructor(opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>);
161
130
  }
162
131
  export declare class NoFreeAddressesInSubnet extends __BaseException {
163
132
  readonly name: "NoFreeAddressesInSubnet";
164
133
  readonly $fault: "client";
165
134
  ErrorCode: string | undefined;
166
135
  Message?: string | undefined;
167
- constructor(
168
- opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>
169
- );
136
+ constructor(opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>);
170
137
  }
171
138
  export declare class SecurityGroupLimitExceeded extends __BaseException {
172
139
  readonly name: "SecurityGroupLimitExceeded";
173
140
  readonly $fault: "client";
174
141
  ErrorCode: string | undefined;
175
142
  Message?: string | undefined;
176
- constructor(
177
- opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>
178
- );
143
+ constructor(opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>);
179
144
  }
180
145
  export declare class SecurityGroupNotFound extends __BaseException {
181
146
  readonly name: "SecurityGroupNotFound";
182
147
  readonly $fault: "client";
183
148
  ErrorCode: string | undefined;
184
149
  Message?: string | undefined;
185
- constructor(
186
- opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>
187
- );
150
+ constructor(opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>);
188
151
  }
189
152
  export declare class SubnetNotFound extends __BaseException {
190
153
  readonly name: "SubnetNotFound";
@@ -198,18 +161,14 @@ export declare class ReplicationNotFound extends __BaseException {
198
161
  readonly $fault: "client";
199
162
  ErrorCode?: string | undefined;
200
163
  Message?: string | undefined;
201
- constructor(
202
- opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>
203
- );
164
+ constructor(opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>);
204
165
  }
205
166
  export declare class ValidationException extends __BaseException {
206
167
  readonly name: "ValidationException";
207
168
  readonly $fault: "client";
208
169
  ErrorCode: string | undefined;
209
170
  Message?: string | undefined;
210
- constructor(
211
- opts: __ExceptionOptionType<ValidationException, __BaseException>
212
- );
171
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
213
172
  }
214
173
  export declare class FileSystemInUse extends __BaseException {
215
174
  readonly name: "FileSystemInUse";
@@ -230,9 +189,7 @@ export declare class MountTargetNotFound extends __BaseException {
230
189
  readonly $fault: "client";
231
190
  ErrorCode: string | undefined;
232
191
  Message?: string | undefined;
233
- constructor(
234
- opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>
235
- );
192
+ constructor(opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>);
236
193
  }
237
194
  export declare class PolicyNotFound extends __BaseException {
238
195
  readonly name: "PolicyNotFound";
@@ -246,18 +203,14 @@ export declare class IncorrectMountTargetState extends __BaseException {
246
203
  readonly $fault: "client";
247
204
  ErrorCode: string | undefined;
248
205
  Message?: string | undefined;
249
- constructor(
250
- opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>
251
- );
206
+ constructor(opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>);
252
207
  }
253
208
  export declare class InvalidPolicyException extends __BaseException {
254
209
  readonly name: "InvalidPolicyException";
255
210
  readonly $fault: "client";
256
211
  ErrorCode?: string | undefined;
257
212
  Message?: string | undefined;
258
- constructor(
259
- opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
260
- );
213
+ constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
261
214
  }
262
215
  export declare class TooManyRequests extends __BaseException {
263
216
  readonly name: "TooManyRequests";
@@ -271,7 +224,5 @@ export declare class ReplicationAlreadyExists extends __BaseException {
271
224
  readonly $fault: "client";
272
225
  ErrorCode?: string | undefined;
273
226
  Message?: string | undefined;
274
- constructor(
275
- opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>
276
- );
227
+ constructor(opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>);
277
228
  }
@@ -219,9 +219,7 @@ export interface DescribeLifecycleConfigurationRequest {
219
219
  }
220
220
  export interface LifecyclePolicy {
221
221
  TransitionToIA?: TransitionToIARules | undefined;
222
- TransitionToPrimaryStorageClass?:
223
- | TransitionToPrimaryStorageClassRules
224
- | undefined;
222
+ TransitionToPrimaryStorageClass?: TransitionToPrimaryStorageClassRules | undefined;
225
223
  TransitionToArchive?: TransitionToArchiveRules | undefined;
226
224
  }
227
225
  export interface LifecycleConfigurationDescription {
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
10
10
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((
12
- _: unknown
13
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
12
  defaultUserAgentProvider: (
15
- config?: import("@aws-sdk/core/client").PreviouslyResolved
13
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
16
  region: string | import("@smithy/types").Provider<any>;
19
- requestHandler:
20
- | import("@smithy/core/protocols").HttpHandler<any>
21
- | RequestHandler;
17
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
22
18
  retryMode: string | import("@smithy/types").Provider<string>;
23
19
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
20
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
21
  ) => Promise<Uint8Array>;
30
22
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
23
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
53
45
  logger: import("@smithy/types").Logger;
54
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- userAgentAppId?:
57
- | string
58
- | undefined
59
- | import("@smithy/types").Provider<string | undefined>;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2;
48
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
63
50
  endpoint?:
64
51
  | ((
65
52
  | string
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
81
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
69
  context?: {
83
70
  logger?: import("@smithy/types").Logger;
84
- }
71
+ },
85
72
  ) => import("@smithy/types").EndpointV2;
86
73
  tls?: boolean;
87
74
  serviceConfiguredEndpoint?: never;
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
94
81
  signer?:
95
82
  | import("@smithy/types").RequestSigner
96
83
  | ((
97
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
98
85
  ) => Promise<import("@smithy/types").RequestSigner>);
99
86
  signingEscapePath?: boolean;
100
87
  systemClockOffset?: number;
101
88
  signingRegion?: string;
102
89
  signerConstructor?: new (
103
90
  options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
105
92
  ) => import("@smithy/types").RequestSigner;
106
93
  };
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
10
10
  credentialDefaultProvider:
11
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
12
  | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
14
  ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
15
  defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved
16
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
17
  ) => Promise<import("@smithy/types").UserAgent>;
18
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
19
19
  region: string | import("@smithy/types").Provider<string>;
20
- requestHandler:
21
- | RequestHandler
22
- | import("@smithy/core/protocols").HttpHandler<any>;
20
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
23
21
  retryMode: string | import("@smithy/types").Provider<string>;
24
22
  streamCollector: (
25
- stream:
26
- | import("stream").Readable
27
- | import("stream/web").ReadableStream
28
- | ReadableStream
29
- | Blob
23
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
30
24
  ) => Promise<Uint8Array>;
31
25
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
26
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
53
47
  logger: import("@smithy/types").Logger;
54
48
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
49
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- retryStrategy?:
57
- | import("@smithy/types").RetryStrategy
58
- | import("@smithy/types").RetryStrategyV2;
50
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
59
51
  endpoint?:
60
52
  | ((
61
53
  | string
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
77
69
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
78
70
  context?: {
79
71
  logger?: import("@smithy/types").Logger;
80
- }
72
+ },
81
73
  ) => import("@smithy/types").EndpointV2;
82
74
  tls?: boolean;
83
75
  serviceConfiguredEndpoint?: never;
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
89
81
  signer?:
90
82
  | import("@smithy/types").RequestSigner
91
83
  | ((
92
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
93
85
  ) => Promise<import("@smithy/types").RequestSigner>);
94
86
  signingEscapePath?: boolean;
95
87
  systemClockOffset?: number;
96
88
  signingRegion?: string;
97
89
  signerConstructor?: new (
98
90
  options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
100
92
  ) => import("@smithy/types").RequestSigner;
101
93
  };
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
23
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
24
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
25
  ) => Promise<Uint8Array>;
30
26
  base64Decoder: import("@smithy/types").Decoder;
31
27
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
40
36
  region: string | import("@smithy/types").Provider<any>;
41
37
  profile?: string;
42
38
  defaultUserAgentProvider: (
43
- config?: import("@aws-sdk/core/client").PreviouslyResolved
39
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
44
40
  ) => Promise<import("@smithy/types").UserAgent>;
45
41
  credentialDefaultProvider:
46
42
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
47
- | ((
48
- _: unknown
49
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
43
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
50
44
  maxAttempts: number | import("@smithy/types").Provider<number>;
51
45
  retryMode: string | import("@smithy/types").Provider<string>;
52
46
  logger: import("@smithy/types").Logger;
53
47
  extensions: import("./runtimeExtensions").RuntimeExtension[];
54
48
  defaultsMode:
55
49
  | import("@smithy/core/client").DefaultsMode
56
- | import("@smithy/types").Provider<
57
- import("@smithy/core/client").DefaultsMode
58
- >;
50
+ | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
59
51
  customUserAgent?: string | import("@smithy/types").UserAgent;
60
- userAgentAppId?:
61
- | string
62
- | undefined
63
- | import("@smithy/types").Provider<string | undefined>;
64
- retryStrategy?:
65
- | import("@smithy/types").RetryStrategy
66
- | import("@smithy/types").RetryStrategyV2;
52
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
53
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
67
54
  endpoint?:
68
55
  | ((
69
56
  | string
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
85
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
86
73
  context?: {
87
74
  logger?: import("@smithy/types").Logger;
88
- }
75
+ },
89
76
  ) => import("@smithy/types").EndpointV2;
90
77
  tls?: boolean;
91
78
  serviceConfiguredEndpoint?: never;
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
98
85
  signer?:
99
86
  | import("@smithy/types").RequestSigner
100
87
  | ((
101
- authScheme?: import("@smithy/types").AuthScheme
88
+ authScheme?: import("@smithy/types").AuthScheme,
102
89
  ) => Promise<import("@smithy/types").RequestSigner>);
103
90
  signingEscapePath?: boolean;
104
91
  systemClockOffset?: number;
105
92
  signingRegion?: string;
106
93
  signerConstructor?: new (
107
94
  options: import("@smithy/signature-v4").SignatureV4Init &
108
- import("@smithy/signature-v4").SignatureV4CryptoInit
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
109
96
  ) => import("@smithy/types").RequestSigner;
110
97
  };
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: EFSClientConfig) => {
9
9
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
10
  context?: {
11
11
  logger?: import("@smithy/types").Logger;
12
- }
12
+ },
13
13
  ) => import("@smithy/types").EndpointV2;
14
14
  extensions: import("./runtimeExtensions").RuntimeExtension[];
15
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EFSHttpAuthSchemeProvider;
@@ -7,5 +7,5 @@ export interface RuntimeExtensionsConfig {
7
7
  }
8
8
  export declare const resolveRuntimeExtensions: (
9
9
  runtimeConfig: any,
10
- extensions: RuntimeExtension[]
10
+ extensions: RuntimeExtension[],
11
11
  ) => any;
@@ -1,9 +1,5 @@
1
1
  import { TypeRegistry } from "@smithy/core/schema";
2
- import {
3
- StaticErrorSchema,
4
- StaticOperationSchema,
5
- StaticStructureSchema,
6
- } from "@smithy/types";
2
+ import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
7
3
  export declare var EFSServiceException$: StaticErrorSchema;
8
4
  export declare var AccessPointAlreadyExists$: StaticErrorSchema;
9
5
  export declare var AccessPointLimitExceeded$: StaticErrorSchema;
package/package.json CHANGED
@@ -1,7 +1,38 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-efs",
3
+ "version": "3.1088.0",
3
4
  "description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native",
4
- "version": "3.1087.0",
5
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-efs",
6
+ "license": "Apache-2.0",
7
+ "author": {
8
+ "name": "AWS SDK for JavaScript Team",
9
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
14
+ "directory": "clients/client-efs"
15
+ },
16
+ "files": [
17
+ "dist-*/**"
18
+ ],
19
+ "sideEffects": false,
20
+ "main": "./dist-cjs/index.js",
21
+ "module": "./dist-es/index.js",
22
+ "browser": {
23
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
24
+ },
25
+ "types": "./dist-types/index.d.ts",
26
+ "typesVersions": {
27
+ "<4.5": {
28
+ "dist-types/*": [
29
+ "dist-types/ts3.4/*"
30
+ ]
31
+ }
32
+ },
33
+ "react-native": {
34
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
35
+ },
5
36
  "scripts": {
6
37
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
38
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -16,17 +47,13 @@
16
47
  "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
17
48
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
18
49
  },
19
- "main": "./dist-cjs/index.js",
20
- "types": "./dist-types/index.d.ts",
21
- "module": "./dist-es/index.js",
22
- "sideEffects": false,
23
50
  "dependencies": {
24
- "@aws-sdk/core": "^3.975.2",
25
- "@aws-sdk/credential-provider-node": "^3.972.68",
26
- "@aws-sdk/types": "^3.974.1",
27
- "@smithy/core": "^3.29.3",
28
- "@smithy/fetch-http-handler": "^5.6.5",
29
- "@smithy/node-http-handler": "^4.9.5",
51
+ "@aws-sdk/core": "^3.975.3",
52
+ "@aws-sdk/credential-provider-node": "^3.972.69",
53
+ "@aws-sdk/types": "^3.974.2",
54
+ "@smithy/core": "^3.29.4",
55
+ "@smithy/fetch-http-handler": "^5.6.6",
56
+ "@smithy/node-http-handler": "^4.9.6",
30
57
  "@smithy/types": "^4.16.1",
31
58
  "tslib": "^2.6.2"
32
59
  },
@@ -40,32 +67,5 @@
40
67
  },
41
68
  "engines": {
42
69
  "node": ">=20.0.0"
43
- },
44
- "typesVersions": {
45
- "<4.5": {
46
- "dist-types/*": [
47
- "dist-types/ts3.4/*"
48
- ]
49
- }
50
- },
51
- "files": [
52
- "dist-*/**"
53
- ],
54
- "author": {
55
- "name": "AWS SDK for JavaScript Team",
56
- "url": "https://aws.amazon.com/sdk-for-javascript/"
57
- },
58
- "license": "Apache-2.0",
59
- "browser": {
60
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
61
- },
62
- "react-native": {
63
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
64
- },
65
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-efs",
66
- "repository": {
67
- "type": "git",
68
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
69
- "directory": "clients/client-efs"
70
70
  }
71
71
  }