@aws-sdk/client-fsx 3.864.0 → 3.868.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 (31) hide show
  1. package/dist-cjs/index.js +17 -4
  2. package/dist-es/commands/CreateFileSystemFromBackupCommand.js +2 -1
  3. package/dist-es/models/models_0.js +6 -4
  4. package/dist-es/models/models_1.js +4 -0
  5. package/dist-es/protocols/Aws_json1_1.js +5 -0
  6. package/dist-types/commands/CopyBackupCommand.d.ts +10 -2
  7. package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +10 -2
  8. package/dist-types/commands/CreateAndAttachS3AccessPointCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateBackupCommand.d.ts +10 -2
  10. package/dist-types/commands/CreateFileSystemCommand.d.ts +12 -2
  11. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +14 -3
  12. package/dist-types/commands/CreateSnapshotCommand.d.ts +10 -2
  13. package/dist-types/commands/CreateVolumeCommand.d.ts +10 -2
  14. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +10 -2
  15. package/dist-types/commands/DeleteFileSystemCommand.d.ts +2 -2
  16. package/dist-types/commands/DescribeBackupsCommand.d.ts +10 -2
  17. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +10 -2
  18. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +10 -2
  19. package/dist-types/commands/DescribeVolumesCommand.d.ts +10 -2
  20. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +10 -2
  21. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +10 -2
  22. package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +10 -2
  23. package/dist-types/commands/UpdateFileSystemCommand.d.ts +17 -2
  24. package/dist-types/commands/UpdateSnapshotCommand.d.ts +10 -2
  25. package/dist-types/commands/UpdateVolumeCommand.d.ts +10 -2
  26. package/dist-types/models/models_0.d.ts +85 -24
  27. package/dist-types/models/models_1.d.ts +16 -0
  28. package/dist-types/ts3.4/commands/CreateFileSystemFromBackupCommand.d.ts +2 -4
  29. package/dist-types/ts3.4/models/models_0.d.ts +16 -6
  30. package/dist-types/ts3.4/models/models_1.d.ts +6 -0
  31. package/package.json +1 -1
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../FSxClient";
8
- import {
9
- CreateFileSystemFromBackupRequest,
10
- CreateFileSystemFromBackupResponse,
11
- } from "../models/models_0";
8
+ import { CreateFileSystemFromBackupRequest } from "../models/models_0";
9
+ import { CreateFileSystemFromBackupResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface CreateFileSystemFromBackupCommandInput
@@ -55,10 +55,12 @@ export interface AdministrativeActionFailureDetails {
55
55
  Message?: string | undefined;
56
56
  }
57
57
  export declare const Status: {
58
+ readonly CANCELLED: "CANCELLED";
58
59
  readonly COMPLETED: "COMPLETED";
59
60
  readonly FAILED: "FAILED";
60
61
  readonly IN_PROGRESS: "IN_PROGRESS";
61
62
  readonly OPTIMIZING: "OPTIMIZING";
63
+ readonly PAUSED: "PAUSED";
62
64
  readonly PENDING: "PENDING";
63
65
  readonly UPDATED_OPTIMIZING: "UPDATED_OPTIMIZING";
64
66
  };
@@ -189,6 +191,11 @@ export interface LustreFileSystemConfiguration {
189
191
  ThroughputCapacity?: number | undefined;
190
192
  DataReadCacheConfiguration?: LustreReadCacheConfiguration | undefined;
191
193
  }
194
+ export declare const NetworkType: {
195
+ readonly DUAL: "DUAL";
196
+ readonly IPV4: "IPV4";
197
+ };
198
+ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
192
199
  export declare const OntapDeploymentType: {
193
200
  readonly MULTI_AZ_1: "MULTI_AZ_1";
194
201
  readonly MULTI_AZ_2: "MULTI_AZ_2";
@@ -262,8 +269,10 @@ export interface OpenZFSFileSystemConfiguration {
262
269
  RootVolumeId?: string | undefined;
263
270
  PreferredSubnetId?: string | undefined;
264
271
  EndpointIpAddressRange?: string | undefined;
272
+ EndpointIpv6AddressRange?: string | undefined;
265
273
  RouteTableIds?: string[] | undefined;
266
274
  EndpointIpAddress?: string | undefined;
275
+ EndpointIpv6Address?: string | undefined;
267
276
  ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
268
277
  }
269
278
  export declare const StorageType: {
@@ -1158,6 +1167,7 @@ export interface CreateFileSystemOpenZFSConfiguration {
1158
1167
  RootVolumeConfiguration?: OpenZFSCreateRootVolumeConfiguration | undefined;
1159
1168
  PreferredSubnetId?: string | undefined;
1160
1169
  EndpointIpAddressRange?: string | undefined;
1170
+ EndpointIpv6AddressRange?: string | undefined;
1161
1171
  RouteTableIds?: string[] | undefined;
1162
1172
  ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
1163
1173
  }
@@ -1204,6 +1214,7 @@ export interface CreateFileSystemRequest {
1204
1214
  OntapConfiguration?: CreateFileSystemOntapConfiguration | undefined;
1205
1215
  FileSystemTypeVersion?: string | undefined;
1206
1216
  OpenZFSConfiguration?: CreateFileSystemOpenZFSConfiguration | undefined;
1217
+ NetworkType?: NetworkType | undefined;
1207
1218
  }
1208
1219
  export declare class InvalidExportPath extends __BaseException {
1209
1220
  readonly name: "InvalidExportPath";
@@ -1238,6 +1249,7 @@ export interface CreateFileSystemFromBackupRequest {
1238
1249
  FileSystemTypeVersion?: string | undefined;
1239
1250
  OpenZFSConfiguration?: CreateFileSystemOpenZFSConfiguration | undefined;
1240
1251
  StorageCapacity?: number | undefined;
1252
+ NetworkType?: NetworkType | undefined;
1241
1253
  }
1242
1254
  export interface CreateSnapshotRequest {
1243
1255
  ClientRequestToken?: string | undefined;
@@ -1888,6 +1900,7 @@ export interface UpdateFileSystemOpenZFSConfiguration {
1888
1900
  AddRouteTableIds?: string[] | undefined;
1889
1901
  RemoveRouteTableIds?: string[] | undefined;
1890
1902
  ReadCacheConfiguration?: OpenZFSReadCacheConfiguration | undefined;
1903
+ EndpointIpv6AddressRange?: string | undefined;
1891
1904
  }
1892
1905
  export interface SelfManagedActiveDirectoryConfigurationUpdates {
1893
1906
  UserName?: string | undefined;
@@ -1918,6 +1931,7 @@ export interface UpdateFileSystemRequest {
1918
1931
  OpenZFSConfiguration?: UpdateFileSystemOpenZFSConfiguration | undefined;
1919
1932
  StorageType?: StorageType | undefined;
1920
1933
  FileSystemTypeVersion?: string | undefined;
1934
+ NetworkType?: NetworkType | undefined;
1921
1935
  }
1922
1936
  export interface UpdateSharedVpcConfigurationRequest {
1923
1937
  EnableFsxRouteTableUpdatesFromParticipantAccounts?: string | undefined;
@@ -1993,6 +2007,7 @@ export interface AdministrativeAction {
1993
2007
  TargetSnapshotValues?: Snapshot | undefined;
1994
2008
  TotalTransferBytes?: number | undefined;
1995
2009
  RemainingTransferBytes?: number | undefined;
2010
+ Message?: string | undefined;
1996
2011
  }
1997
2012
  export interface FileSystem {
1998
2013
  OwnerId?: string | undefined;
@@ -2016,6 +2031,7 @@ export interface FileSystem {
2016
2031
  OntapConfiguration?: OntapFileSystemConfiguration | undefined;
2017
2032
  FileSystemTypeVersion?: string | undefined;
2018
2033
  OpenZFSConfiguration?: OpenZFSFileSystemConfiguration | undefined;
2034
+ NetworkType?: NetworkType | undefined;
2019
2035
  }
2020
2036
  export interface Snapshot {
2021
2037
  ResourceARN?: string | undefined;
@@ -2052,9 +2068,6 @@ export interface RestoreVolumeFromSnapshotResponse {
2052
2068
  Lifecycle?: VolumeLifecycle | undefined;
2053
2069
  AdministrativeActions?: AdministrativeAction[] | undefined;
2054
2070
  }
2055
- export interface CreateFileSystemFromBackupResponse {
2056
- FileSystem?: FileSystem | undefined;
2057
- }
2058
2071
  export declare const OntapFileSystemConfigurationFilterSensitiveLog: (
2059
2072
  obj: OntapFileSystemConfiguration
2060
2073
  ) => any;
@@ -2109,6 +2122,3 @@ export declare const CopySnapshotAndUpdateVolumeResponseFilterSensitiveLog: (
2109
2122
  export declare const RestoreVolumeFromSnapshotResponseFilterSensitiveLog: (
2110
2123
  obj: RestoreVolumeFromSnapshotResponse
2111
2124
  ) => any;
2112
- export declare const CreateFileSystemFromBackupResponseFilterSensitiveLog: (
2113
- obj: CreateFileSystemFromBackupResponse
2114
- ) => any;
@@ -9,6 +9,9 @@ import {
9
9
  Tag,
10
10
  Volume,
11
11
  } from "./models_0";
12
+ export interface CreateFileSystemFromBackupResponse {
13
+ FileSystem?: FileSystem | undefined;
14
+ }
12
15
  export interface CreateFileSystemResponse {
13
16
  FileSystem?: FileSystem | undefined;
14
17
  }
@@ -77,6 +80,9 @@ export interface DescribeBackupsResponse {
77
80
  Backups?: Backup[] | undefined;
78
81
  NextToken?: string | undefined;
79
82
  }
83
+ export declare const CreateFileSystemFromBackupResponseFilterSensitiveLog: (
84
+ obj: CreateFileSystemFromBackupResponse
85
+ ) => any;
80
86
  export declare const CreateFileSystemResponseFilterSensitiveLog: (
81
87
  obj: CreateFileSystemResponse
82
88
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fsx",
3
3
  "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
4
- "version": "3.864.0",
4
+ "version": "3.868.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-fsx",