aws-sdk-fsx 1.114.0 → 1.115.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +254 -10
- data/lib/aws-sdk-fsx/client_api.rb +183 -0
- data/lib/aws-sdk-fsx/errors.rb +100 -0
- data/lib/aws-sdk-fsx/types.rb +503 -1
- data/lib/aws-sdk-fsx.rb +1 -1
- data/sig/client.rbs +60 -0
- data/sig/errors.rbs +19 -0
- data/sig/types.rbs +129 -0
- metadata +1 -1
data/sig/errors.rbs
CHANGED
@@ -11,6 +11,10 @@ module Aws
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccessPointAlreadyOwnedByYou < ::Aws::Errors::ServiceError
|
15
|
+
def error_code: () -> ::String
|
16
|
+
def message: () -> ::String
|
17
|
+
end
|
14
18
|
class ActiveDirectoryError < ::Aws::Errors::ServiceError
|
15
19
|
def active_directory_id: () -> ::String
|
16
20
|
def type: () -> ::String
|
@@ -61,6 +65,10 @@ module Aws
|
|
61
65
|
class InternalServerError < ::Aws::Errors::ServiceError
|
62
66
|
def message: () -> ::String
|
63
67
|
end
|
68
|
+
class InvalidAccessPoint < ::Aws::Errors::ServiceError
|
69
|
+
def error_code: () -> ::String
|
70
|
+
def message: () -> ::String
|
71
|
+
end
|
64
72
|
class InvalidDataRepositoryType < ::Aws::Errors::ServiceError
|
65
73
|
def message: () -> ::String
|
66
74
|
end
|
@@ -85,6 +93,10 @@ module Aws
|
|
85
93
|
class InvalidRegion < ::Aws::Errors::ServiceError
|
86
94
|
def message: () -> ::String
|
87
95
|
end
|
96
|
+
class InvalidRequest < ::Aws::Errors::ServiceError
|
97
|
+
def error_code: () -> ::String
|
98
|
+
def message: () -> ::String
|
99
|
+
end
|
88
100
|
class InvalidSourceKmsKey < ::Aws::Errors::ServiceError
|
89
101
|
def message: () -> ::String
|
90
102
|
end
|
@@ -109,6 +121,9 @@ module Aws
|
|
109
121
|
def resource_arn: () -> ::String
|
110
122
|
def message: () -> ::String
|
111
123
|
end
|
124
|
+
class S3AccessPointAttachmentNotFound < ::Aws::Errors::ServiceError
|
125
|
+
def message: () -> ::String
|
126
|
+
end
|
112
127
|
class ServiceLimitExceeded < ::Aws::Errors::ServiceError
|
113
128
|
def limit: () -> ::String
|
114
129
|
def message: () -> ::String
|
@@ -123,6 +138,10 @@ module Aws
|
|
123
138
|
class StorageVirtualMachineNotFound < ::Aws::Errors::ServiceError
|
124
139
|
def message: () -> ::String
|
125
140
|
end
|
141
|
+
class TooManyAccessPoints < ::Aws::Errors::ServiceError
|
142
|
+
def error_code: () -> ::String
|
143
|
+
def message: () -> ::String
|
144
|
+
end
|
126
145
|
class UnsupportedOperation < ::Aws::Errors::ServiceError
|
127
146
|
def message: () -> ::String
|
128
147
|
end
|
data/sig/types.rbs
CHANGED
@@ -8,6 +8,12 @@
|
|
8
8
|
module Aws::FSx
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AccessPointAlreadyOwnedByYou
|
12
|
+
attr_accessor error_code: ::String
|
13
|
+
attr_accessor message: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
11
17
|
class ActiveDirectoryBackupAttributes
|
12
18
|
attr_accessor domain_name: ::String
|
13
19
|
attr_accessor active_directory_id: ::String
|
@@ -190,6 +196,32 @@ module Aws::FSx
|
|
190
196
|
SENSITIVE: []
|
191
197
|
end
|
192
198
|
|
199
|
+
class CreateAndAttachS3AccessPointOpenZFSConfiguration
|
200
|
+
attr_accessor volume_id: ::String
|
201
|
+
attr_accessor file_system_identity: Types::OpenZFSFileSystemIdentity
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateAndAttachS3AccessPointRequest
|
206
|
+
attr_accessor client_request_token: ::String
|
207
|
+
attr_accessor name: ::String
|
208
|
+
attr_accessor type: ("OPENZFS")
|
209
|
+
attr_accessor open_zfs_configuration: Types::CreateAndAttachS3AccessPointOpenZFSConfiguration
|
210
|
+
attr_accessor s3_access_point: Types::CreateAndAttachS3AccessPointS3Configuration
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateAndAttachS3AccessPointResponse
|
215
|
+
attr_accessor s3_access_point_attachment: Types::S3AccessPointAttachment
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class CreateAndAttachS3AccessPointS3Configuration
|
220
|
+
attr_accessor vpc_configuration: Types::S3AccessPointVpcConfiguration
|
221
|
+
attr_accessor policy: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
193
225
|
class CreateBackupRequest
|
194
226
|
attr_accessor file_system_id: ::String
|
195
227
|
attr_accessor client_request_token: ::String
|
@@ -823,6 +855,20 @@ module Aws::FSx
|
|
823
855
|
SENSITIVE: []
|
824
856
|
end
|
825
857
|
|
858
|
+
class DescribeS3AccessPointAttachmentsRequest
|
859
|
+
attr_accessor names: ::Array[::String]
|
860
|
+
attr_accessor filters: ::Array[Types::S3AccessPointAttachmentsFilter]
|
861
|
+
attr_accessor max_results: ::Integer
|
862
|
+
attr_accessor next_token: ::String
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
866
|
+
class DescribeS3AccessPointAttachmentsResponse
|
867
|
+
attr_accessor s3_access_point_attachments: ::Array[Types::S3AccessPointAttachment]
|
868
|
+
attr_accessor next_token: ::String
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
826
872
|
class DescribeSharedVpcConfigurationRequest < Aws::EmptyStructure
|
827
873
|
end
|
828
874
|
|
@@ -874,6 +920,18 @@ module Aws::FSx
|
|
874
920
|
SENSITIVE: []
|
875
921
|
end
|
876
922
|
|
923
|
+
class DetachAndDeleteS3AccessPointRequest
|
924
|
+
attr_accessor client_request_token: ::String
|
925
|
+
attr_accessor name: ::String
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class DetachAndDeleteS3AccessPointResponse
|
930
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
|
931
|
+
attr_accessor name: ::String
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
877
935
|
class DisassociateFileSystemAliasesRequest
|
878
936
|
attr_accessor client_request_token: ::String
|
879
937
|
attr_accessor file_system_id: ::String
|
@@ -1054,6 +1112,12 @@ module Aws::FSx
|
|
1054
1112
|
SENSITIVE: []
|
1055
1113
|
end
|
1056
1114
|
|
1115
|
+
class InvalidAccessPoint
|
1116
|
+
attr_accessor error_code: ::String
|
1117
|
+
attr_accessor message: ::String
|
1118
|
+
SENSITIVE: []
|
1119
|
+
end
|
1120
|
+
|
1057
1121
|
class InvalidDataRepositoryType
|
1058
1122
|
attr_accessor message: ::String
|
1059
1123
|
SENSITIVE: []
|
@@ -1092,6 +1156,12 @@ module Aws::FSx
|
|
1092
1156
|
SENSITIVE: []
|
1093
1157
|
end
|
1094
1158
|
|
1159
|
+
class InvalidRequest
|
1160
|
+
attr_accessor error_code: ::String
|
1161
|
+
attr_accessor message: ::String
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1095
1165
|
class InvalidSourceKmsKey
|
1096
1166
|
attr_accessor message: ::String
|
1097
1167
|
SENSITIVE: []
|
@@ -1258,6 +1328,12 @@ module Aws::FSx
|
|
1258
1328
|
SENSITIVE: []
|
1259
1329
|
end
|
1260
1330
|
|
1331
|
+
class OpenZFSFileSystemIdentity
|
1332
|
+
attr_accessor type: ("POSIX")
|
1333
|
+
attr_accessor posix_user: Types::OpenZFSPosixFileSystemUser
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1261
1337
|
class OpenZFSNfsExport
|
1262
1338
|
attr_accessor client_configurations: ::Array[Types::OpenZFSClientConfiguration]
|
1263
1339
|
SENSITIVE: []
|
@@ -1269,6 +1345,13 @@ module Aws::FSx
|
|
1269
1345
|
SENSITIVE: []
|
1270
1346
|
end
|
1271
1347
|
|
1348
|
+
class OpenZFSPosixFileSystemUser
|
1349
|
+
attr_accessor uid: ::Integer
|
1350
|
+
attr_accessor gid: ::Integer
|
1351
|
+
attr_accessor secondary_gids: ::Array[::Integer]
|
1352
|
+
SENSITIVE: []
|
1353
|
+
end
|
1354
|
+
|
1272
1355
|
class OpenZFSReadCacheConfiguration
|
1273
1356
|
attr_accessor sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")
|
1274
1357
|
attr_accessor size_gi_b: ::Integer
|
@@ -1353,6 +1436,46 @@ module Aws::FSx
|
|
1353
1436
|
SENSITIVE: []
|
1354
1437
|
end
|
1355
1438
|
|
1439
|
+
class S3AccessPoint
|
1440
|
+
attr_accessor resource_arn: ::String
|
1441
|
+
attr_accessor alias: ::String
|
1442
|
+
attr_accessor vpc_configuration: Types::S3AccessPointVpcConfiguration
|
1443
|
+
SENSITIVE: []
|
1444
|
+
end
|
1445
|
+
|
1446
|
+
class S3AccessPointAttachment
|
1447
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
|
1448
|
+
attr_accessor lifecycle_transition_reason: Types::LifecycleTransitionReason
|
1449
|
+
attr_accessor creation_time: ::Time
|
1450
|
+
attr_accessor name: ::String
|
1451
|
+
attr_accessor type: ("OPENZFS")
|
1452
|
+
attr_accessor open_zfs_configuration: Types::S3AccessPointOpenZFSConfiguration
|
1453
|
+
attr_accessor s3_access_point: Types::S3AccessPoint
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class S3AccessPointAttachmentNotFound
|
1458
|
+
attr_accessor message: ::String
|
1459
|
+
SENSITIVE: []
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
class S3AccessPointAttachmentsFilter
|
1463
|
+
attr_accessor name: ("file-system-id" | "volume-id" | "type")
|
1464
|
+
attr_accessor values: ::Array[::String]
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class S3AccessPointOpenZFSConfiguration
|
1469
|
+
attr_accessor volume_id: ::String
|
1470
|
+
attr_accessor file_system_identity: Types::OpenZFSFileSystemIdentity
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class S3AccessPointVpcConfiguration
|
1475
|
+
attr_accessor vpc_id: ::String
|
1476
|
+
SENSITIVE: []
|
1477
|
+
end
|
1478
|
+
|
1356
1479
|
class S3DataRepositoryConfiguration
|
1357
1480
|
attr_accessor auto_import_policy: Types::AutoImportPolicy
|
1358
1481
|
attr_accessor auto_export_policy: Types::AutoExportPolicy
|
@@ -1521,6 +1644,12 @@ module Aws::FSx
|
|
1521
1644
|
SENSITIVE: []
|
1522
1645
|
end
|
1523
1646
|
|
1647
|
+
class TooManyAccessPoints
|
1648
|
+
attr_accessor error_code: ::String
|
1649
|
+
attr_accessor message: ::String
|
1650
|
+
SENSITIVE: []
|
1651
|
+
end
|
1652
|
+
|
1524
1653
|
class UnsupportedOperation
|
1525
1654
|
attr_accessor message: ::String
|
1526
1655
|
SENSITIVE: []
|