aws-sdk-fsx 1.42.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2289ba4839bdfd493db51424f197e38c7816fe2674b1bfa3666ec7d560fc8bde
4
- data.tar.gz: a12ba9cac1fdb3eb8e3a89503319f88fa268e0c378f404b1cc490f6b9bccd5fd
3
+ metadata.gz: 6641cb7bc27de1fcc8d021100c9d83823c1fc3db9dcae4aa0b3ca003dc97e196
4
+ data.tar.gz: 6540082909d085f36a35987abbc10de644a93a23ca868af866d49ba13feae778
5
5
  SHA512:
6
- metadata.gz: 7448ae94a027839fae45c4c30bed757d18416b7edf490f4c59602f04aec19c141e98cd66dae5adf31e492fb5dfe86dfccb986250cbff8fafd4c1c5b13dc6d8a5
7
- data.tar.gz: 5a6951ccc4767be597efc8b4a6444d607bc7adf88b7e5f06e0f95e7a761556bdbdc2dddeaa04f1f0d8b717c5f7cb8e8d4d3ed1c8c87bc148d26e9f5138dfa2ec
6
+ metadata.gz: 3d5ce8e7d9ef2c82a99b437002c004c49b49d6c114e3918ace7b0c081599296200b30f70d2deb0d39ac0435991087db5ec14f7a8d72c13e717889fc9a3c80c11
7
+ data.tar.gz: b8a67e0801cc1d4ab41d237ed30a1905e9b7db44d7b7e55410cd8b9f9c8b229df2188b68cd33938b55388701f2ec5f79f904ed7bc82b4235ed36c03843b44b2c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-10-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Lustre 2.12 to FSx for Lustre.
8
+
4
9
  1.42.0 (2021-09-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -716,6 +716,7 @@ module Aws::FSx
716
716
  # resp.backup.file_system.ontap_configuration.route_table_ids[0] #=> String
717
717
  # resp.backup.file_system.ontap_configuration.throughput_capacity #=> Integer
718
718
  # resp.backup.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
719
+ # resp.backup.file_system.file_system_type_version #=> String
719
720
  # resp.backup.directory_information.domain_name #=> String
720
721
  # resp.backup.directory_information.active_directory_id #=> String
721
722
  # resp.backup.directory_information.resource_arn #=> String
@@ -1010,6 +1011,7 @@ module Aws::FSx
1010
1011
  # resp.backup.file_system.ontap_configuration.route_table_ids[0] #=> String
1011
1012
  # resp.backup.file_system.ontap_configuration.throughput_capacity #=> Integer
1012
1013
  # resp.backup.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
1014
+ # resp.backup.file_system.file_system_type_version #=> String
1013
1015
  # resp.backup.directory_information.domain_name #=> String
1014
1016
  # resp.backup.directory_information.active_directory_id #=> String
1015
1017
  # resp.backup.directory_information.resource_arn #=> String
@@ -1312,6 +1314,16 @@ module Aws::FSx
1312
1314
  # The ONTAP configuration properties of the FSx for NetApp ONTAP file
1313
1315
  # system that you are creating.
1314
1316
  #
1317
+ # @option params [String] :file_system_type_version
1318
+ # Sets the version of the Amazon FSx for Lustre file system you're
1319
+ # creating. Valid values are `2.10` and `2.12`.
1320
+ #
1321
+ # * Set the value to `2.10` to create a Lustre 2.10 file system.
1322
+ #
1323
+ # * Set the value to `2.12` to create a Lustre 2.12 file system.
1324
+ #
1325
+ # Default value is `2.10`.
1326
+ #
1315
1327
  # @return [Types::CreateFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1316
1328
  #
1317
1329
  # * {Types::CreateFileSystemResponse#file_system #file_system} => Types::FileSystem
@@ -1458,6 +1470,7 @@ module Aws::FSx
1458
1470
  # throughput_capacity: 1, # required
1459
1471
  # weekly_maintenance_start_time: "WeeklyTime",
1460
1472
  # },
1473
+ # file_system_type_version: "FileSystemTypeVersion",
1461
1474
  # })
1462
1475
  #
1463
1476
  # @example Response structure
@@ -1566,6 +1579,7 @@ module Aws::FSx
1566
1579
  # resp.file_system.ontap_configuration.route_table_ids[0] #=> String
1567
1580
  # resp.file_system.ontap_configuration.throughput_capacity #=> Integer
1568
1581
  # resp.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
1582
+ # resp.file_system.file_system_type_version #=> String
1569
1583
  #
1570
1584
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystem AWS API Documentation
1571
1585
  #
@@ -1689,6 +1703,15 @@ module Aws::FSx
1689
1703
  #
1690
1704
  # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
1691
1705
  #
1706
+ # @option params [String] :file_system_type_version
1707
+ # Sets the version for the Amazon FSx for Lustre file system you're
1708
+ # creating from a backup. Valid values are `2.10` and `2.12`.
1709
+ #
1710
+ # You don't need to specify `FileSystemTypeVersion` because it will be
1711
+ # applied using the backup's `FileSystemTypeVersion` setting. If you
1712
+ # choose to specify `FileSystemTypeVersion` when creating from backup,
1713
+ # the value must match the backup's `FileSystemTypeVersion` setting.
1714
+ #
1692
1715
  # @return [Types::CreateFileSystemFromBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1693
1716
  #
1694
1717
  # * {Types::CreateFileSystemFromBackupResponse#file_system #file_system} => Types::FileSystem
@@ -1802,6 +1825,7 @@ module Aws::FSx
1802
1825
  # },
1803
1826
  # storage_type: "SSD", # accepts SSD, HDD
1804
1827
  # kms_key_id: "KmsKeyId",
1828
+ # file_system_type_version: "FileSystemTypeVersion",
1805
1829
  # })
1806
1830
  #
1807
1831
  # @example Response structure
@@ -1910,6 +1934,7 @@ module Aws::FSx
1910
1934
  # resp.file_system.ontap_configuration.route_table_ids[0] #=> String
1911
1935
  # resp.file_system.ontap_configuration.throughput_capacity #=> Integer
1912
1936
  # resp.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
1937
+ # resp.file_system.file_system_type_version #=> String
1913
1938
  #
1914
1939
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackup AWS API Documentation
1915
1940
  #
@@ -2722,6 +2747,7 @@ module Aws::FSx
2722
2747
  # resp.backups[0].file_system.ontap_configuration.route_table_ids[0] #=> String
2723
2748
  # resp.backups[0].file_system.ontap_configuration.throughput_capacity #=> Integer
2724
2749
  # resp.backups[0].file_system.ontap_configuration.weekly_maintenance_start_time #=> String
2750
+ # resp.backups[0].file_system.file_system_type_version #=> String
2725
2751
  # resp.backups[0].directory_information.domain_name #=> String
2726
2752
  # resp.backups[0].directory_information.active_directory_id #=> String
2727
2753
  # resp.backups[0].directory_information.resource_arn #=> String
@@ -3127,6 +3153,7 @@ module Aws::FSx
3127
3153
  # resp.file_systems[0].ontap_configuration.route_table_ids[0] #=> String
3128
3154
  # resp.file_systems[0].ontap_configuration.throughput_capacity #=> Integer
3129
3155
  # resp.file_systems[0].ontap_configuration.weekly_maintenance_start_time #=> String
3156
+ # resp.file_systems[0].file_system_type_version #=> String
3130
3157
  # resp.next_token #=> String
3131
3158
  #
3132
3159
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystems AWS API Documentation
@@ -3832,6 +3859,7 @@ module Aws::FSx
3832
3859
  # resp.file_system.ontap_configuration.route_table_ids[0] #=> String
3833
3860
  # resp.file_system.ontap_configuration.throughput_capacity #=> Integer
3834
3861
  # resp.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
3862
+ # resp.file_system.file_system_type_version #=> String
3835
3863
  #
3836
3864
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystem AWS API Documentation
3837
3865
  #
@@ -4013,7 +4041,7 @@ module Aws::FSx
4013
4041
  params: params,
4014
4042
  config: config)
4015
4043
  context[:gem_name] = 'aws-sdk-fsx'
4016
- context[:gem_version] = '1.42.0'
4044
+ context[:gem_version] = '1.43.0'
4017
4045
  Seahorse::Client::Request.new(handlers, context)
4018
4046
  end
4019
4047
 
@@ -144,6 +144,7 @@ module Aws::FSx
144
144
  FileSystemMaintenanceOperations = Shapes::ListShape.new(name: 'FileSystemMaintenanceOperations')
145
145
  FileSystemNotFound = Shapes::StructureShape.new(name: 'FileSystemNotFound')
146
146
  FileSystemType = Shapes::StringShape.new(name: 'FileSystemType')
147
+ FileSystemTypeVersion = Shapes::StringShape.new(name: 'FileSystemTypeVersion')
147
148
  FileSystems = Shapes::ListShape.new(name: 'FileSystems')
148
149
  Filter = Shapes::StructureShape.new(name: 'Filter')
149
150
  FilterName = Shapes::StringShape.new(name: 'FilterName')
@@ -422,6 +423,7 @@ module Aws::FSx
422
423
  CreateFileSystemFromBackupRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
423
424
  CreateFileSystemFromBackupRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
424
425
  CreateFileSystemFromBackupRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
426
+ CreateFileSystemFromBackupRequest.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
425
427
  CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
426
428
 
427
429
  CreateFileSystemFromBackupResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
@@ -464,6 +466,7 @@ module Aws::FSx
464
466
  CreateFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
465
467
  CreateFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
466
468
  CreateFileSystemRequest.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemOntapConfiguration, location_name: "OntapConfiguration"))
469
+ CreateFileSystemRequest.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
467
470
  CreateFileSystemRequest.struct_class = Types::CreateFileSystemRequest
468
471
 
469
472
  CreateFileSystemResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
@@ -736,6 +739,7 @@ module Aws::FSx
736
739
  FileSystem.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: LustreFileSystemConfiguration, location_name: "LustreConfiguration"))
737
740
  FileSystem.add_member(:administrative_actions, Shapes::ShapeRef.new(shape: AdministrativeActions, location_name: "AdministrativeActions"))
738
741
  FileSystem.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: OntapFileSystemConfiguration, location_name: "OntapConfiguration"))
742
+ FileSystem.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
739
743
  FileSystem.struct_class = Types::FileSystem
740
744
 
741
745
  FileSystemEndpoint.add_member(:dns_name, Shapes::ShapeRef.new(shape: DNSName, location_name: "DNSName"))
@@ -964,6 +964,7 @@ module Aws::FSx
964
964
  # },
965
965
  # storage_type: "SSD", # accepts SSD, HDD
966
966
  # kms_key_id: "KmsKeyId",
967
+ # file_system_type_version: "FileSystemTypeVersion",
967
968
  # }
968
969
  #
969
970
  # @!attribute [rw] backup_id
@@ -1052,6 +1053,17 @@ module Aws::FSx
1052
1053
  # [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
1053
1054
  # @return [String]
1054
1055
  #
1056
+ # @!attribute [rw] file_system_type_version
1057
+ # Sets the version for the Amazon FSx for Lustre file system you're
1058
+ # creating from a backup. Valid values are `2.10` and `2.12`.
1059
+ #
1060
+ # You don't need to specify `FileSystemTypeVersion` because it will
1061
+ # be applied using the backup's `FileSystemTypeVersion` setting. If
1062
+ # you choose to specify `FileSystemTypeVersion` when creating from
1063
+ # backup, the value must match the backup's `FileSystemTypeVersion`
1064
+ # setting.
1065
+ # @return [String]
1066
+ #
1055
1067
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackupRequest AWS API Documentation
1056
1068
  #
1057
1069
  class CreateFileSystemFromBackupRequest < Struct.new(
@@ -1063,7 +1075,8 @@ module Aws::FSx
1063
1075
  :windows_configuration,
1064
1076
  :lustre_configuration,
1065
1077
  :storage_type,
1066
- :kms_key_id)
1078
+ :kms_key_id,
1079
+ :file_system_type_version)
1067
1080
  SENSITIVE = []
1068
1081
  include Aws::Structure
1069
1082
  end
@@ -1481,6 +1494,7 @@ module Aws::FSx
1481
1494
  # throughput_capacity: 1, # required
1482
1495
  # weekly_maintenance_start_time: "WeeklyTime",
1483
1496
  # },
1497
+ # file_system_type_version: "FileSystemTypeVersion",
1484
1498
  # }
1485
1499
  #
1486
1500
  # @!attribute [rw] client_request_token
@@ -1611,6 +1625,17 @@ module Aws::FSx
1611
1625
  # system that you are creating.
1612
1626
  # @return [Types::CreateFileSystemOntapConfiguration]
1613
1627
  #
1628
+ # @!attribute [rw] file_system_type_version
1629
+ # Sets the version of the Amazon FSx for Lustre file system you're
1630
+ # creating. Valid values are `2.10` and `2.12`.
1631
+ #
1632
+ # * Set the value to `2.10` to create a Lustre 2.10 file system.
1633
+ #
1634
+ # * Set the value to `2.12` to create a Lustre 2.12 file system.
1635
+ #
1636
+ # Default value is `2.10`.
1637
+ # @return [String]
1638
+ #
1614
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemRequest AWS API Documentation
1615
1640
  #
1616
1641
  class CreateFileSystemRequest < Struct.new(
@@ -1624,7 +1649,8 @@ module Aws::FSx
1624
1649
  :kms_key_id,
1625
1650
  :windows_configuration,
1626
1651
  :lustre_configuration,
1627
- :ontap_configuration)
1652
+ :ontap_configuration,
1653
+ :file_system_type_version)
1628
1654
  SENSITIVE = []
1629
1655
  include Aws::Structure
1630
1656
  end
@@ -1681,12 +1707,12 @@ module Aws::FSx
1681
1707
  # @return [String]
1682
1708
  #
1683
1709
  # @!attribute [rw] self_managed_active_directory_configuration
1684
- # The configuration that Amazon FSx uses to join a Amazon FSx for
1685
- # Windows File Server file system or an ONTAP storage virtual machine
1686
- # (SVM) to a self-managed (including on-premises) Microsoft Active
1687
- # Directory (AD) directory. For more information, see [ Using Amazon
1688
- # FSx with your self-managed Microsoft Active Directory][1] or
1689
- # [Managing SVMs][2].
1710
+ # The configuration that Amazon FSx uses to join a FSx for Windows
1711
+ # File Server file system or an ONTAP storage virtual machine (SVM) to
1712
+ # a self-managed (including on-premises) Microsoft Active Directory
1713
+ # (AD) directory. For more information, see [ Using Amazon FSx with
1714
+ # your self-managed Microsoft Active Directory][1] or [Managing
1715
+ # SVMs][2].
1690
1716
  #
1691
1717
  #
1692
1718
  #
@@ -2032,12 +2058,12 @@ module Aws::FSx
2032
2058
  # @return [String]
2033
2059
  #
2034
2060
  # @!attribute [rw] self_managed_active_directory_configuration
2035
- # The configuration that Amazon FSx uses to join a Amazon FSx for
2036
- # Windows File Server file system or an ONTAP storage virtual machine
2037
- # (SVM) to a self-managed (including on-premises) Microsoft Active
2038
- # Directory (AD) directory. For more information, see [ Using Amazon
2039
- # FSx with your self-managed Microsoft Active Directory][1] or
2040
- # [Managing SVMs][2].
2061
+ # The configuration that Amazon FSx uses to join a FSx for Windows
2062
+ # File Server file system or an ONTAP storage virtual machine (SVM) to
2063
+ # a self-managed (including on-premises) Microsoft Active Directory
2064
+ # (AD) directory. For more information, see [ Using Amazon FSx with
2065
+ # your self-managed Microsoft Active Directory][1] or [Managing
2066
+ # SVMs][2].
2041
2067
  #
2042
2068
  #
2043
2069
  #
@@ -3673,6 +3699,11 @@ module Aws::FSx
3673
3699
  # The configuration for this FSx for NetApp ONTAP file system.
3674
3700
  # @return [Types::OntapFileSystemConfiguration]
3675
3701
  #
3702
+ # @!attribute [rw] file_system_type_version
3703
+ # The version of your Amazon FSx for Lustre file system, either `2.10`
3704
+ # or `2.12`.
3705
+ # @return [String]
3706
+ #
3676
3707
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/FileSystem AWS API Documentation
3677
3708
  #
3678
3709
  class FileSystem < Struct.new(
@@ -3694,7 +3725,8 @@ module Aws::FSx
3694
3725
  :windows_configuration,
3695
3726
  :lustre_configuration,
3696
3727
  :administrative_actions,
3697
- :ontap_configuration)
3728
+ :ontap_configuration,
3729
+ :file_system_type_version)
3698
3730
  SENSITIVE = []
3699
3731
  include Aws::Structure
3700
3732
  end
@@ -4458,7 +4490,7 @@ module Aws::FSx
4458
4490
  # @return [String]
4459
4491
  #
4460
4492
  # @!attribute [rw] dns_ips
4461
- # A list of up to two IP addresses of DNS servers or domain
4493
+ # A list of up to three IP addresses of DNS servers or domain
4462
4494
  # controllers in the self-managed AD directory.
4463
4495
  # @return [Array<String>]
4464
4496
  #
@@ -4474,12 +4506,11 @@ module Aws::FSx
4474
4506
  include Aws::Structure
4475
4507
  end
4476
4508
 
4477
- # The configuration that Amazon FSx uses to join a Amazon FSx for
4478
- # Windows File Server file system or an ONTAP storage virtual machine
4479
- # (SVM) to a self-managed (including on-premises) Microsoft Active
4480
- # Directory (AD) directory. For more information, see [ Using Amazon FSx
4481
- # with your self-managed Microsoft Active Directory][1] or [Managing
4482
- # SVMs][2].
4509
+ # The configuration that Amazon FSx uses to join a FSx for Windows File
4510
+ # Server file system or an ONTAP storage virtual machine (SVM) to a
4511
+ # self-managed (including on-premises) Microsoft Active Directory (AD)
4512
+ # directory. For more information, see [ Using Amazon FSx with your
4513
+ # self-managed Microsoft Active Directory][1] or [Managing SVMs][2].
4483
4514
  #
4484
4515
  #
4485
4516
  #
@@ -4544,7 +4575,7 @@ module Aws::FSx
4544
4575
  # @return [String]
4545
4576
  #
4546
4577
  # @!attribute [rw] dns_ips
4547
- # A list of up to two IP addresses of DNS servers or domain
4578
+ # A list of up to three IP addresses of DNS servers or domain
4548
4579
  # controllers in the self-managed AD directory.
4549
4580
  # @return [Array<String>]
4550
4581
  #
@@ -4587,7 +4618,7 @@ module Aws::FSx
4587
4618
  # @return [String]
4588
4619
  #
4589
4620
  # @!attribute [rw] dns_ips
4590
- # A list of up to two IP addresses of DNS servers or domain
4621
+ # A list of up to three IP addresses of DNS servers or domain
4591
4622
  # controllers in the self-managed AD directory.
4592
4623
  # @return [Array<String>]
4593
4624
  #
data/lib/aws-sdk-fsx.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-fsx/customizations'
48
48
  # @!group service
49
49
  module Aws::FSx
50
50
 
51
- GEM_VERSION = '1.42.0'
51
+ GEM_VERSION = '1.43.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-fsx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-02 00:00:00.000000000 Z
11
+ date: 2021-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core