aws-sdk-fsx 1.128.0 → 1.129.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9e1e8837d05077114fae893b4fd8ebd95b397413b7dc123e1cea9baf0794321
4
- data.tar.gz: fa0fa607441c01848e43e07e073e4a26461fbdccc0de11131bd4b28a1fbd6924
3
+ metadata.gz: 7b3ae7334ecb60678f9fc6306c12769c360479887bfe3205fbb9389483e73942
4
+ data.tar.gz: 319542c58864463327ee54ff7298d256353251222b89672268159ebda634dc4c
5
5
  SHA512:
6
- metadata.gz: 5b40f2e4c5e89fd5da737158ceb17d8e8d964cbeec0d497d74527b0708ea9f6486481b24739e61393a964ae888fad9d739cab98cd76a283e30828455d6fd90d1
7
- data.tar.gz: d4a09a912d41c3cb20af5411781e76ecea9502fdf0e07ec5b91a296b0c8f4d3b0aefde1932424b0db8b403dee2a2745091a2d813d0d35cc1f296dc5bf7692b3e
6
+ metadata.gz: e5bef3507b376586b51848f9c88fc663e0cc00b5a2d945a036af3379060518f6923aa7f0fe58e0645b8f3b0b9017795a7e39b48477c250dae7351ed5324ffe12
7
+ data.tar.gz: b9615511cc0bd6526901b546248a7d7c3247c418408ac0fb6dabb5d23e231ed866a1d29b4486406cf23dabdef2114024baa7dd47eea0349745002bc31c6d7007
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.129.0 (2025-12-02)
5
+ ------------------
6
+
7
+ * Feature - S3 Access Points support for FSx for NetApp ONTAP
8
+
4
9
  1.128.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.128.0
1
+ 1.129.0
@@ -1568,6 +1568,10 @@ module Aws::FSx
1568
1568
  # Specifies the configuration to use when creating and attaching an S3
1569
1569
  # access point to an FSx for OpenZFS volume.
1570
1570
  #
1571
+ # @option params [Types::CreateAndAttachS3AccessPointOntapConfiguration] :ontap_configuration
1572
+ # Specifies the FSx for ONTAP volume that the S3 access point will be
1573
+ # attached to, and the file system user identity.
1574
+ #
1571
1575
  # @option params [Types::CreateAndAttachS3AccessPointS3Configuration] :s3_access_point
1572
1576
  # Specifies the virtual private cloud (VPC) configuration if you're
1573
1577
  # creating an access point that is restricted to a VPC. For more
@@ -1587,7 +1591,7 @@ module Aws::FSx
1587
1591
  # resp = client.create_and_attach_s3_access_point({
1588
1592
  # client_request_token: "ClientRequestToken",
1589
1593
  # name: "S3AccessPointAttachmentName", # required
1590
- # type: "OPENZFS", # required, accepts OPENZFS
1594
+ # type: "OPENZFS", # required, accepts OPENZFS, ONTAP
1591
1595
  # open_zfs_configuration: {
1592
1596
  # volume_id: "VolumeId", # required
1593
1597
  # file_system_identity: { # required
@@ -1599,6 +1603,18 @@ module Aws::FSx
1599
1603
  # },
1600
1604
  # },
1601
1605
  # },
1606
+ # ontap_configuration: {
1607
+ # volume_id: "VolumeId", # required
1608
+ # file_system_identity: { # required
1609
+ # type: "UNIX", # required, accepts UNIX, WINDOWS
1610
+ # unix_user: {
1611
+ # name: "OntapFileSystemUserName", # required
1612
+ # },
1613
+ # windows_user: {
1614
+ # name: "OntapFileSystemUserName", # required
1615
+ # },
1616
+ # },
1617
+ # },
1602
1618
  # s3_access_point: {
1603
1619
  # vpc_configuration: {
1604
1620
  # vpc_id: "VpcId",
@@ -1609,17 +1625,21 @@ module Aws::FSx
1609
1625
  #
1610
1626
  # @example Response structure
1611
1627
  #
1612
- # resp.s3_access_point_attachment.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
1628
+ # resp.s3_access_point_attachment.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED", "MISCONFIGURED"
1613
1629
  # resp.s3_access_point_attachment.lifecycle_transition_reason.message #=> String
1614
1630
  # resp.s3_access_point_attachment.creation_time #=> Time
1615
1631
  # resp.s3_access_point_attachment.name #=> String
1616
- # resp.s3_access_point_attachment.type #=> String, one of "OPENZFS"
1632
+ # resp.s3_access_point_attachment.type #=> String, one of "OPENZFS", "ONTAP"
1617
1633
  # resp.s3_access_point_attachment.open_zfs_configuration.volume_id #=> String
1618
1634
  # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.type #=> String, one of "POSIX"
1619
1635
  # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.uid #=> Integer
1620
1636
  # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.gid #=> Integer
1621
1637
  # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.secondary_gids #=> Array
1622
1638
  # resp.s3_access_point_attachment.open_zfs_configuration.file_system_identity.posix_user.secondary_gids[0] #=> Integer
1639
+ # resp.s3_access_point_attachment.ontap_configuration.volume_id #=> String
1640
+ # resp.s3_access_point_attachment.ontap_configuration.file_system_identity.type #=> String, one of "UNIX", "WINDOWS"
1641
+ # resp.s3_access_point_attachment.ontap_configuration.file_system_identity.unix_user.name #=> String
1642
+ # resp.s3_access_point_attachment.ontap_configuration.file_system_identity.windows_user.name #=> String
1623
1643
  # resp.s3_access_point_attachment.s3_access_point.resource_arn #=> String
1624
1644
  # resp.s3_access_point_attachment.s3_access_point.alias #=> String
1625
1645
  # resp.s3_access_point_attachment.s3_access_point.vpc_configuration.vpc_id #=> String
@@ -6897,17 +6917,21 @@ module Aws::FSx
6897
6917
  # @example Response structure
6898
6918
  #
6899
6919
  # resp.s3_access_point_attachments #=> Array
6900
- # resp.s3_access_point_attachments[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
6920
+ # resp.s3_access_point_attachments[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED", "MISCONFIGURED"
6901
6921
  # resp.s3_access_point_attachments[0].lifecycle_transition_reason.message #=> String
6902
6922
  # resp.s3_access_point_attachments[0].creation_time #=> Time
6903
6923
  # resp.s3_access_point_attachments[0].name #=> String
6904
- # resp.s3_access_point_attachments[0].type #=> String, one of "OPENZFS"
6924
+ # resp.s3_access_point_attachments[0].type #=> String, one of "OPENZFS", "ONTAP"
6905
6925
  # resp.s3_access_point_attachments[0].open_zfs_configuration.volume_id #=> String
6906
6926
  # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.type #=> String, one of "POSIX"
6907
6927
  # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.uid #=> Integer
6908
6928
  # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.gid #=> Integer
6909
6929
  # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.secondary_gids #=> Array
6910
6930
  # resp.s3_access_point_attachments[0].open_zfs_configuration.file_system_identity.posix_user.secondary_gids[0] #=> Integer
6931
+ # resp.s3_access_point_attachments[0].ontap_configuration.volume_id #=> String
6932
+ # resp.s3_access_point_attachments[0].ontap_configuration.file_system_identity.type #=> String, one of "UNIX", "WINDOWS"
6933
+ # resp.s3_access_point_attachments[0].ontap_configuration.file_system_identity.unix_user.name #=> String
6934
+ # resp.s3_access_point_attachments[0].ontap_configuration.file_system_identity.windows_user.name #=> String
6911
6935
  # resp.s3_access_point_attachments[0].s3_access_point.resource_arn #=> String
6912
6936
  # resp.s3_access_point_attachments[0].s3_access_point.alias #=> String
6913
6937
  # resp.s3_access_point_attachments[0].s3_access_point.vpc_configuration.vpc_id #=> String
@@ -7642,7 +7666,7 @@ module Aws::FSx
7642
7666
  #
7643
7667
  # @example Response structure
7644
7668
  #
7645
- # resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED"
7669
+ # resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "UPDATING", "FAILED", "MISCONFIGURED"
7646
7670
  # resp.name #=> String
7647
7671
  #
7648
7672
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DetachAndDeleteS3AccessPoint AWS API Documentation
@@ -10138,7 +10162,7 @@ module Aws::FSx
10138
10162
  tracer: tracer
10139
10163
  )
10140
10164
  context[:gem_name] = 'aws-sdk-fsx'
10141
- context[:gem_version] = '1.128.0'
10165
+ context[:gem_version] = '1.129.0'
10142
10166
  Seahorse::Client::Request.new(handlers, context)
10143
10167
  end
10144
10168
 
@@ -70,6 +70,7 @@ module Aws::FSx
70
70
  CopySnapshotAndUpdateVolumeResponse = Shapes::StructureShape.new(name: 'CopySnapshotAndUpdateVolumeResponse')
71
71
  CopyTagsToDataRepositoryAssociations = Shapes::BooleanShape.new(name: 'CopyTagsToDataRepositoryAssociations')
72
72
  CreateAggregateConfiguration = Shapes::StructureShape.new(name: 'CreateAggregateConfiguration')
73
+ CreateAndAttachS3AccessPointOntapConfiguration = Shapes::StructureShape.new(name: 'CreateAndAttachS3AccessPointOntapConfiguration')
73
74
  CreateAndAttachS3AccessPointOpenZFSConfiguration = Shapes::StructureShape.new(name: 'CreateAndAttachS3AccessPointOpenZFSConfiguration')
74
75
  CreateAndAttachS3AccessPointRequest = Shapes::StructureShape.new(name: 'CreateAndAttachS3AccessPointRequest')
75
76
  CreateAndAttachS3AccessPointResponse = Shapes::StructureShape.new(name: 'CreateAndAttachS3AccessPointResponse')
@@ -306,8 +307,13 @@ module Aws::FSx
306
307
  OntapDeploymentType = Shapes::StringShape.new(name: 'OntapDeploymentType')
307
308
  OntapEndpointIpAddresses = Shapes::ListShape.new(name: 'OntapEndpointIpAddresses')
308
309
  OntapFileSystemConfiguration = Shapes::StructureShape.new(name: 'OntapFileSystemConfiguration')
310
+ OntapFileSystemIdentity = Shapes::StructureShape.new(name: 'OntapFileSystemIdentity')
311
+ OntapFileSystemUserName = Shapes::StringShape.new(name: 'OntapFileSystemUserName')
312
+ OntapFileSystemUserType = Shapes::StringShape.new(name: 'OntapFileSystemUserType')
313
+ OntapUnixFileSystemUser = Shapes::StructureShape.new(name: 'OntapUnixFileSystemUser')
309
314
  OntapVolumeConfiguration = Shapes::StructureShape.new(name: 'OntapVolumeConfiguration')
310
315
  OntapVolumeType = Shapes::StringShape.new(name: 'OntapVolumeType')
316
+ OntapWindowsFileSystemUser = Shapes::StructureShape.new(name: 'OntapWindowsFileSystemUser')
311
317
  OpenZFSClientConfiguration = Shapes::StructureShape.new(name: 'OpenZFSClientConfiguration')
312
318
  OpenZFSClientConfigurations = Shapes::ListShape.new(name: 'OpenZFSClientConfigurations')
313
319
  OpenZFSClients = Shapes::StringShape.new(name: 'OpenZFSClients')
@@ -373,6 +379,7 @@ module Aws::FSx
373
379
  S3AccessPointAttachmentsFilterValue = Shapes::StringShape.new(name: 'S3AccessPointAttachmentsFilterValue')
374
380
  S3AccessPointAttachmentsFilterValues = Shapes::ListShape.new(name: 'S3AccessPointAttachmentsFilterValues')
375
381
  S3AccessPointAttachmentsFilters = Shapes::ListShape.new(name: 'S3AccessPointAttachmentsFilters')
382
+ S3AccessPointOntapConfiguration = Shapes::StructureShape.new(name: 'S3AccessPointOntapConfiguration')
376
383
  S3AccessPointOpenZFSConfiguration = Shapes::StructureShape.new(name: 'S3AccessPointOpenZFSConfiguration')
377
384
  S3AccessPointVpcConfiguration = Shapes::StructureShape.new(name: 'S3AccessPointVpcConfiguration')
378
385
  S3DataRepositoryConfiguration = Shapes::StructureShape.new(name: 'S3DataRepositoryConfiguration')
@@ -653,6 +660,10 @@ module Aws::FSx
653
660
  CreateAggregateConfiguration.add_member(:constituents_per_aggregate, Shapes::ShapeRef.new(shape: AggregateListMultiplier, location_name: "ConstituentsPerAggregate"))
654
661
  CreateAggregateConfiguration.struct_class = Types::CreateAggregateConfiguration
655
662
 
663
+ CreateAndAttachS3AccessPointOntapConfiguration.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
664
+ CreateAndAttachS3AccessPointOntapConfiguration.add_member(:file_system_identity, Shapes::ShapeRef.new(shape: OntapFileSystemIdentity, required: true, location_name: "FileSystemIdentity"))
665
+ CreateAndAttachS3AccessPointOntapConfiguration.struct_class = Types::CreateAndAttachS3AccessPointOntapConfiguration
666
+
656
667
  CreateAndAttachS3AccessPointOpenZFSConfiguration.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
657
668
  CreateAndAttachS3AccessPointOpenZFSConfiguration.add_member(:file_system_identity, Shapes::ShapeRef.new(shape: OpenZFSFileSystemIdentity, required: true, location_name: "FileSystemIdentity"))
658
669
  CreateAndAttachS3AccessPointOpenZFSConfiguration.struct_class = Types::CreateAndAttachS3AccessPointOpenZFSConfiguration
@@ -661,6 +672,7 @@ module Aws::FSx
661
672
  CreateAndAttachS3AccessPointRequest.add_member(:name, Shapes::ShapeRef.new(shape: S3AccessPointAttachmentName, required: true, location_name: "Name"))
662
673
  CreateAndAttachS3AccessPointRequest.add_member(:type, Shapes::ShapeRef.new(shape: S3AccessPointAttachmentType, required: true, location_name: "Type"))
663
674
  CreateAndAttachS3AccessPointRequest.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: CreateAndAttachS3AccessPointOpenZFSConfiguration, location_name: "OpenZFSConfiguration"))
675
+ CreateAndAttachS3AccessPointRequest.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: CreateAndAttachS3AccessPointOntapConfiguration, location_name: "OntapConfiguration"))
664
676
  CreateAndAttachS3AccessPointRequest.add_member(:s3_access_point, Shapes::ShapeRef.new(shape: CreateAndAttachS3AccessPointS3Configuration, location_name: "S3AccessPoint"))
665
677
  CreateAndAttachS3AccessPointRequest.struct_class = Types::CreateAndAttachS3AccessPointRequest
666
678
 
@@ -1506,6 +1518,14 @@ module Aws::FSx
1506
1518
  OntapFileSystemConfiguration.add_member(:endpoint_ipv_6_address_range, Shapes::ShapeRef.new(shape: Ipv6AddressRange, location_name: "EndpointIpv6AddressRange"))
1507
1519
  OntapFileSystemConfiguration.struct_class = Types::OntapFileSystemConfiguration
1508
1520
 
1521
+ OntapFileSystemIdentity.add_member(:type, Shapes::ShapeRef.new(shape: OntapFileSystemUserType, required: true, location_name: "Type"))
1522
+ OntapFileSystemIdentity.add_member(:unix_user, Shapes::ShapeRef.new(shape: OntapUnixFileSystemUser, location_name: "UnixUser"))
1523
+ OntapFileSystemIdentity.add_member(:windows_user, Shapes::ShapeRef.new(shape: OntapWindowsFileSystemUser, location_name: "WindowsUser"))
1524
+ OntapFileSystemIdentity.struct_class = Types::OntapFileSystemIdentity
1525
+
1526
+ OntapUnixFileSystemUser.add_member(:name, Shapes::ShapeRef.new(shape: OntapFileSystemUserName, required: true, location_name: "Name"))
1527
+ OntapUnixFileSystemUser.struct_class = Types::OntapUnixFileSystemUser
1528
+
1509
1529
  OntapVolumeConfiguration.add_member(:flex_cache_endpoint_type, Shapes::ShapeRef.new(shape: FlexCacheEndpointType, location_name: "FlexCacheEndpointType"))
1510
1530
  OntapVolumeConfiguration.add_member(:junction_path, Shapes::ShapeRef.new(shape: JunctionPath, location_name: "JunctionPath"))
1511
1531
  OntapVolumeConfiguration.add_member(:security_style, Shapes::ShapeRef.new(shape: SecurityStyle, location_name: "SecurityStyle"))
@@ -1524,6 +1544,9 @@ module Aws::FSx
1524
1544
  OntapVolumeConfiguration.add_member(:size_in_bytes, Shapes::ShapeRef.new(shape: VolumeCapacityBytes, location_name: "SizeInBytes"))
1525
1545
  OntapVolumeConfiguration.struct_class = Types::OntapVolumeConfiguration
1526
1546
 
1547
+ OntapWindowsFileSystemUser.add_member(:name, Shapes::ShapeRef.new(shape: OntapFileSystemUserName, required: true, location_name: "Name"))
1548
+ OntapWindowsFileSystemUser.struct_class = Types::OntapWindowsFileSystemUser
1549
+
1527
1550
  OpenZFSClientConfiguration.add_member(:clients, Shapes::ShapeRef.new(shape: OpenZFSClients, required: true, location_name: "Clients"))
1528
1551
  OpenZFSClientConfiguration.add_member(:options, Shapes::ShapeRef.new(shape: OpenZFSNfsExportOptions, required: true, location_name: "Options"))
1529
1552
  OpenZFSClientConfiguration.struct_class = Types::OpenZFSClientConfiguration
@@ -1657,6 +1680,7 @@ module Aws::FSx
1657
1680
  S3AccessPointAttachment.add_member(:name, Shapes::ShapeRef.new(shape: S3AccessPointAttachmentName, location_name: "Name"))
1658
1681
  S3AccessPointAttachment.add_member(:type, Shapes::ShapeRef.new(shape: S3AccessPointAttachmentType, location_name: "Type"))
1659
1682
  S3AccessPointAttachment.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: S3AccessPointOpenZFSConfiguration, location_name: "OpenZFSConfiguration"))
1683
+ S3AccessPointAttachment.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: S3AccessPointOntapConfiguration, location_name: "OntapConfiguration"))
1660
1684
  S3AccessPointAttachment.add_member(:s3_access_point, Shapes::ShapeRef.new(shape: S3AccessPoint, location_name: "S3AccessPoint"))
1661
1685
  S3AccessPointAttachment.struct_class = Types::S3AccessPointAttachment
1662
1686
 
@@ -1675,6 +1699,10 @@ module Aws::FSx
1675
1699
 
1676
1700
  S3AccessPointAttachmentsFilters.member = Shapes::ShapeRef.new(shape: S3AccessPointAttachmentsFilter)
1677
1701
 
1702
+ S3AccessPointOntapConfiguration.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "VolumeId"))
1703
+ S3AccessPointOntapConfiguration.add_member(:file_system_identity, Shapes::ShapeRef.new(shape: OntapFileSystemIdentity, location_name: "FileSystemIdentity"))
1704
+ S3AccessPointOntapConfiguration.struct_class = Types::S3AccessPointOntapConfiguration
1705
+
1678
1706
  S3AccessPointOpenZFSConfiguration.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "VolumeId"))
1679
1707
  S3AccessPointOpenZFSConfiguration.add_member(:file_system_identity, Shapes::ShapeRef.new(shape: OpenZFSFileSystemIdentity, location_name: "FileSystemIdentity"))
1680
1708
  S3AccessPointOpenZFSConfiguration.struct_class = Types::S3AccessPointOpenZFSConfiguration
@@ -1118,6 +1118,28 @@ module Aws::FSx
1118
1118
  include Aws::Structure
1119
1119
  end
1120
1120
 
1121
+ # Specifies the FSx for ONTAP volume that the S3 access point will be
1122
+ # attached to, and the file system user identity.
1123
+ #
1124
+ # @!attribute [rw] volume_id
1125
+ # The ID of the FSx for ONTAP volume to which you want the S3 access
1126
+ # point attached.
1127
+ # @return [String]
1128
+ #
1129
+ # @!attribute [rw] file_system_identity
1130
+ # Specifies the file system user identity to use for authorizing file
1131
+ # read and write requests that are made using this S3 access point.
1132
+ # @return [Types::OntapFileSystemIdentity]
1133
+ #
1134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateAndAttachS3AccessPointOntapConfiguration AWS API Documentation
1135
+ #
1136
+ class CreateAndAttachS3AccessPointOntapConfiguration < Struct.new(
1137
+ :volume_id,
1138
+ :file_system_identity)
1139
+ SENSITIVE = []
1140
+ include Aws::Structure
1141
+ end
1142
+
1121
1143
  # Specifies the FSx for OpenZFS volume that the S3 access point will be
1122
1144
  # attached to, and the file system user identity.
1123
1145
  #
@@ -1164,6 +1186,11 @@ module Aws::FSx
1164
1186
  # access point to an FSx for OpenZFS volume.
1165
1187
  # @return [Types::CreateAndAttachS3AccessPointOpenZFSConfiguration]
1166
1188
  #
1189
+ # @!attribute [rw] ontap_configuration
1190
+ # Specifies the FSx for ONTAP volume that the S3 access point will be
1191
+ # attached to, and the file system user identity.
1192
+ # @return [Types::CreateAndAttachS3AccessPointOntapConfiguration]
1193
+ #
1167
1194
  # @!attribute [rw] s3_access_point
1168
1195
  # Specifies the virtual private cloud (VPC) configuration if you're
1169
1196
  # creating an access point that is restricted to a VPC. For more
@@ -1182,6 +1209,7 @@ module Aws::FSx
1182
1209
  :name,
1183
1210
  :type,
1184
1211
  :open_zfs_configuration,
1212
+ :ontap_configuration,
1185
1213
  :s3_access_point)
1186
1214
  SENSITIVE = []
1187
1215
  include Aws::Structure
@@ -7447,6 +7475,49 @@ module Aws::FSx
7447
7475
  include Aws::Structure
7448
7476
  end
7449
7477
 
7478
+ # Specifies the file system user identity that will be used for
7479
+ # authorizing all file access requests that are made using the S3 access
7480
+ # point. The identity can be either a UNIX user or a Windows user.
7481
+ #
7482
+ # @!attribute [rw] type
7483
+ # Specifies the FSx for ONTAP user identity type. Valid values are
7484
+ # `UNIX` and `WINDOWS`.
7485
+ # @return [String]
7486
+ #
7487
+ # @!attribute [rw] unix_user
7488
+ # Specifies the UNIX user identity for file system operations.
7489
+ # @return [Types::OntapUnixFileSystemUser]
7490
+ #
7491
+ # @!attribute [rw] windows_user
7492
+ # Specifies the Windows user identity for file system operations.
7493
+ # @return [Types::OntapWindowsFileSystemUser]
7494
+ #
7495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OntapFileSystemIdentity AWS API Documentation
7496
+ #
7497
+ class OntapFileSystemIdentity < Struct.new(
7498
+ :type,
7499
+ :unix_user,
7500
+ :windows_user)
7501
+ SENSITIVE = []
7502
+ include Aws::Structure
7503
+ end
7504
+
7505
+ # The FSx for ONTAP UNIX file system user that is used for authorizing
7506
+ # all file access requests that are made using the S3 access point.
7507
+ #
7508
+ # @!attribute [rw] name
7509
+ # The name of the UNIX user. The name can be up to 256 characters
7510
+ # long.
7511
+ # @return [String]
7512
+ #
7513
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OntapUnixFileSystemUser AWS API Documentation
7514
+ #
7515
+ class OntapUnixFileSystemUser < Struct.new(
7516
+ :name)
7517
+ SENSITIVE = []
7518
+ include Aws::Structure
7519
+ end
7520
+
7450
7521
  # The configuration of an Amazon FSx for NetApp ONTAP volume.
7451
7522
  #
7452
7523
  # @!attribute [rw] flex_cache_endpoint_type
@@ -7610,6 +7681,23 @@ module Aws::FSx
7610
7681
  include Aws::Structure
7611
7682
  end
7612
7683
 
7684
+ # The FSx for ONTAP Windows file system user that is used for
7685
+ # authorizing all file access requests that are made using the S3 access
7686
+ # point.
7687
+ #
7688
+ # @!attribute [rw] name
7689
+ # The name of the Windows user. The name can be up to 256 characters
7690
+ # long and supports Active Directory users.
7691
+ # @return [String]
7692
+ #
7693
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OntapWindowsFileSystemUser AWS API Documentation
7694
+ #
7695
+ class OntapWindowsFileSystemUser < Struct.new(
7696
+ :name)
7697
+ SENSITIVE = []
7698
+ include Aws::Structure
7699
+ end
7700
+
7613
7701
  # Specifies who can mount an OpenZFS file system and the options
7614
7702
  # available while mounting the file system.
7615
7703
  #
@@ -8491,6 +8579,10 @@ module Aws::FSx
8491
8579
  # The OpenZFSConfiguration of the S3 access point attachment.
8492
8580
  # @return [Types::S3AccessPointOpenZFSConfiguration]
8493
8581
  #
8582
+ # @!attribute [rw] ontap_configuration
8583
+ # The ONTAP configuration of the S3 access point attachment.
8584
+ # @return [Types::S3AccessPointOntapConfiguration]
8585
+ #
8494
8586
  # @!attribute [rw] s3_access_point
8495
8587
  # The S3 access point configuration of the S3 access point attachment.
8496
8588
  # @return [Types::S3AccessPoint]
@@ -8504,6 +8596,7 @@ module Aws::FSx
8504
8596
  :name,
8505
8597
  :type,
8506
8598
  :open_zfs_configuration,
8599
+ :ontap_configuration,
8507
8600
  :s3_access_point)
8508
8601
  SENSITIVE = []
8509
8602
  include Aws::Structure
@@ -8543,6 +8636,28 @@ module Aws::FSx
8543
8636
  include Aws::Structure
8544
8637
  end
8545
8638
 
8639
+ # Describes the FSx for ONTAP attachment configuration of an S3 access
8640
+ # point attachment.
8641
+ #
8642
+ # @!attribute [rw] volume_id
8643
+ # The ID of the FSx for ONTAP volume that the S3 access point is
8644
+ # attached to.
8645
+ # @return [String]
8646
+ #
8647
+ # @!attribute [rw] file_system_identity
8648
+ # The file system identity used to authorize file access requests made
8649
+ # using the S3 access point.
8650
+ # @return [Types::OntapFileSystemIdentity]
8651
+ #
8652
+ # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/S3AccessPointOntapConfiguration AWS API Documentation
8653
+ #
8654
+ class S3AccessPointOntapConfiguration < Struct.new(
8655
+ :volume_id,
8656
+ :file_system_identity)
8657
+ SENSITIVE = []
8658
+ include Aws::Structure
8659
+ end
8660
+
8546
8661
  # Describes the FSx for OpenZFS attachment configuration of an S3 access
8547
8662
  # point attachment.
8548
8663
  #
data/lib/aws-sdk-fsx.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::FSx
54
54
  autoload :EndpointProvider, 'aws-sdk-fsx/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-fsx/endpoints'
56
56
 
57
- GEM_VERSION = '1.128.0'
57
+ GEM_VERSION = '1.129.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -146,7 +146,7 @@ module Aws
146
146
  def create_and_attach_s3_access_point: (
147
147
  ?client_request_token: ::String,
148
148
  name: ::String,
149
- type: ("OPENZFS"),
149
+ type: ("OPENZFS" | "ONTAP"),
150
150
  ?open_zfs_configuration: {
151
151
  volume_id: ::String,
152
152
  file_system_identity: {
@@ -158,6 +158,18 @@ module Aws
158
158
  }?
159
159
  }
160
160
  },
161
+ ?ontap_configuration: {
162
+ volume_id: ::String,
163
+ file_system_identity: {
164
+ type: ("UNIX" | "WINDOWS"),
165
+ unix_user: {
166
+ name: ::String
167
+ }?,
168
+ windows_user: {
169
+ name: ::String
170
+ }?
171
+ }
172
+ },
161
173
  ?s3_access_point: {
162
174
  vpc_configuration: {
163
175
  vpc_id: ::String?
@@ -1092,7 +1104,7 @@ module Aws
1092
1104
 
1093
1105
  interface _DetachAndDeleteS3AccessPointResponseSuccess
1094
1106
  include ::Seahorse::Client::_ResponseSuccess[Types::DetachAndDeleteS3AccessPointResponse]
1095
- def lifecycle: () -> ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
1107
+ def lifecycle: () -> ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED" | "MISCONFIGURED")
1096
1108
  def name: () -> ::String
1097
1109
  end
1098
1110
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/FSx/Client.html#detach_and_delete_s3_access_point-instance_method
data/sig/types.rbs CHANGED
@@ -197,6 +197,12 @@ module Aws::FSx
197
197
  SENSITIVE: []
198
198
  end
199
199
 
200
+ class CreateAndAttachS3AccessPointOntapConfiguration
201
+ attr_accessor volume_id: ::String
202
+ attr_accessor file_system_identity: Types::OntapFileSystemIdentity
203
+ SENSITIVE: []
204
+ end
205
+
200
206
  class CreateAndAttachS3AccessPointOpenZFSConfiguration
201
207
  attr_accessor volume_id: ::String
202
208
  attr_accessor file_system_identity: Types::OpenZFSFileSystemIdentity
@@ -206,8 +212,9 @@ module Aws::FSx
206
212
  class CreateAndAttachS3AccessPointRequest
207
213
  attr_accessor client_request_token: ::String
208
214
  attr_accessor name: ::String
209
- attr_accessor type: ("OPENZFS")
215
+ attr_accessor type: ("OPENZFS" | "ONTAP")
210
216
  attr_accessor open_zfs_configuration: Types::CreateAndAttachS3AccessPointOpenZFSConfiguration
217
+ attr_accessor ontap_configuration: Types::CreateAndAttachS3AccessPointOntapConfiguration
211
218
  attr_accessor s3_access_point: Types::CreateAndAttachS3AccessPointS3Configuration
212
219
  SENSITIVE: []
213
220
  end
@@ -933,7 +940,7 @@ module Aws::FSx
933
940
  end
934
941
 
935
942
  class DetachAndDeleteS3AccessPointResponse
936
- attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
943
+ attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED" | "MISCONFIGURED")
937
944
  attr_accessor name: ::String
938
945
  SENSITIVE: []
939
946
  end
@@ -1283,6 +1290,18 @@ module Aws::FSx
1283
1290
  SENSITIVE: [:fsx_admin_password]
1284
1291
  end
1285
1292
 
1293
+ class OntapFileSystemIdentity
1294
+ attr_accessor type: ("UNIX" | "WINDOWS")
1295
+ attr_accessor unix_user: Types::OntapUnixFileSystemUser
1296
+ attr_accessor windows_user: Types::OntapWindowsFileSystemUser
1297
+ SENSITIVE: []
1298
+ end
1299
+
1300
+ class OntapUnixFileSystemUser
1301
+ attr_accessor name: ::String
1302
+ SENSITIVE: []
1303
+ end
1304
+
1286
1305
  class OntapVolumeConfiguration
1287
1306
  attr_accessor flex_cache_endpoint_type: ("NONE" | "ORIGIN" | "CACHE")
1288
1307
  attr_accessor junction_path: ::String
@@ -1303,6 +1322,11 @@ module Aws::FSx
1303
1322
  SENSITIVE: []
1304
1323
  end
1305
1324
 
1325
+ class OntapWindowsFileSystemUser
1326
+ attr_accessor name: ::String
1327
+ SENSITIVE: []
1328
+ end
1329
+
1306
1330
  class OpenZFSClientConfiguration
1307
1331
  attr_accessor clients: ::String
1308
1332
  attr_accessor options: ::Array[::String]
@@ -1455,12 +1479,13 @@ module Aws::FSx
1455
1479
  end
1456
1480
 
1457
1481
  class S3AccessPointAttachment
1458
- attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
1482
+ attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED" | "MISCONFIGURED")
1459
1483
  attr_accessor lifecycle_transition_reason: Types::LifecycleTransitionReason
1460
1484
  attr_accessor creation_time: ::Time
1461
1485
  attr_accessor name: ::String
1462
- attr_accessor type: ("OPENZFS")
1486
+ attr_accessor type: ("OPENZFS" | "ONTAP")
1463
1487
  attr_accessor open_zfs_configuration: Types::S3AccessPointOpenZFSConfiguration
1488
+ attr_accessor ontap_configuration: Types::S3AccessPointOntapConfiguration
1464
1489
  attr_accessor s3_access_point: Types::S3AccessPoint
1465
1490
  SENSITIVE: []
1466
1491
  end
@@ -1476,6 +1501,12 @@ module Aws::FSx
1476
1501
  SENSITIVE: []
1477
1502
  end
1478
1503
 
1504
+ class S3AccessPointOntapConfiguration
1505
+ attr_accessor volume_id: ::String
1506
+ attr_accessor file_system_identity: Types::OntapFileSystemIdentity
1507
+ SENSITIVE: []
1508
+ end
1509
+
1479
1510
  class S3AccessPointOpenZFSConfiguration
1480
1511
  attr_accessor volume_id: ::String
1481
1512
  attr_accessor file_system_identity: Types::OpenZFSFileSystemIdentity
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-fsx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.128.0
4
+ version: 1.129.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services