aws-sdk-s3files 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3files/client.rb +1564 -0
- data/lib/aws-sdk-s3files/client_api.rb +758 -0
- data/lib/aws-sdk-s3files/customizations.rb +0 -0
- data/lib/aws-sdk-s3files/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-s3files/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-s3files/endpoints.rb +20 -0
- data/lib/aws-sdk-s3files/errors.rb +174 -0
- data/lib/aws-sdk-s3files/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-s3files/resource.rb +26 -0
- data/lib/aws-sdk-s3files/types.rb +1555 -0
- data/lib/aws-sdk-s3files/waiters.rb +15 -0
- data/lib/aws-sdk-s3files.rb +62 -0
- data/sig/client.rbs +417 -0
- data/sig/errors.rbs +42 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +417 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
module Aws::S3Files
|
|
12
|
+
# @api private
|
|
13
|
+
module ClientApi
|
|
14
|
+
|
|
15
|
+
include Seahorse::Model
|
|
16
|
+
|
|
17
|
+
AccessPointArn = Shapes::StringShape.new(name: 'AccessPointArn')
|
|
18
|
+
AccessPointId = Shapes::StringShape.new(name: 'AccessPointId')
|
|
19
|
+
AccessPoints = Shapes::ListShape.new(name: 'AccessPoints')
|
|
20
|
+
AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
|
|
21
|
+
AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
|
|
22
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
23
|
+
BucketArn = Shapes::StringShape.new(name: 'BucketArn')
|
|
24
|
+
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
25
|
+
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
26
|
+
CreateAccessPointRequest = Shapes::StructureShape.new(name: 'CreateAccessPointRequest')
|
|
27
|
+
CreateAccessPointResponse = Shapes::StructureShape.new(name: 'CreateAccessPointResponse')
|
|
28
|
+
CreateFileSystemRequest = Shapes::StructureShape.new(name: 'CreateFileSystemRequest')
|
|
29
|
+
CreateFileSystemRequestPrefixString = Shapes::StringShape.new(name: 'CreateFileSystemRequestPrefixString')
|
|
30
|
+
CreateFileSystemResponse = Shapes::StructureShape.new(name: 'CreateFileSystemResponse')
|
|
31
|
+
CreateMountTargetRequest = Shapes::StructureShape.new(name: 'CreateMountTargetRequest')
|
|
32
|
+
CreateMountTargetResponse = Shapes::StructureShape.new(name: 'CreateMountTargetResponse')
|
|
33
|
+
CreationPermissions = Shapes::StructureShape.new(name: 'CreationPermissions')
|
|
34
|
+
CreationToken = Shapes::StringShape.new(name: 'CreationToken')
|
|
35
|
+
DeleteAccessPointRequest = Shapes::StructureShape.new(name: 'DeleteAccessPointRequest')
|
|
36
|
+
DeleteFileSystemPolicyRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemPolicyRequest')
|
|
37
|
+
DeleteFileSystemRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemRequest')
|
|
38
|
+
DeleteMountTargetRequest = Shapes::StructureShape.new(name: 'DeleteMountTargetRequest')
|
|
39
|
+
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
40
|
+
ExpirationDataRule = Shapes::StructureShape.new(name: 'ExpirationDataRule')
|
|
41
|
+
ExpirationDataRuleDaysAfterLastAccessInteger = Shapes::IntegerShape.new(name: 'ExpirationDataRuleDaysAfterLastAccessInteger')
|
|
42
|
+
FileSystemArn = Shapes::StringShape.new(name: 'FileSystemArn')
|
|
43
|
+
FileSystemId = Shapes::StringShape.new(name: 'FileSystemId')
|
|
44
|
+
FileSystems = Shapes::ListShape.new(name: 'FileSystems')
|
|
45
|
+
GetAccessPointRequest = Shapes::StructureShape.new(name: 'GetAccessPointRequest')
|
|
46
|
+
GetAccessPointResponse = Shapes::StructureShape.new(name: 'GetAccessPointResponse')
|
|
47
|
+
GetFileSystemPolicyRequest = Shapes::StructureShape.new(name: 'GetFileSystemPolicyRequest')
|
|
48
|
+
GetFileSystemPolicyResponse = Shapes::StructureShape.new(name: 'GetFileSystemPolicyResponse')
|
|
49
|
+
GetFileSystemRequest = Shapes::StructureShape.new(name: 'GetFileSystemRequest')
|
|
50
|
+
GetFileSystemResponse = Shapes::StructureShape.new(name: 'GetFileSystemResponse')
|
|
51
|
+
GetMountTargetRequest = Shapes::StructureShape.new(name: 'GetMountTargetRequest')
|
|
52
|
+
GetMountTargetResponse = Shapes::StructureShape.new(name: 'GetMountTargetResponse')
|
|
53
|
+
GetSynchronizationConfigurationRequest = Shapes::StructureShape.new(name: 'GetSynchronizationConfigurationRequest')
|
|
54
|
+
GetSynchronizationConfigurationResponse = Shapes::StructureShape.new(name: 'GetSynchronizationConfigurationResponse')
|
|
55
|
+
GetSynchronizationConfigurationResponseExpirationDataRulesList = Shapes::ListShape.new(name: 'GetSynchronizationConfigurationResponseExpirationDataRulesList')
|
|
56
|
+
GetSynchronizationConfigurationResponseImportDataRulesList = Shapes::ListShape.new(name: 'GetSynchronizationConfigurationResponseImportDataRulesList')
|
|
57
|
+
Gid = Shapes::IntegerShape.new(name: 'Gid')
|
|
58
|
+
ImportDataRule = Shapes::StructureShape.new(name: 'ImportDataRule')
|
|
59
|
+
ImportDataRulePrefixString = Shapes::StringShape.new(name: 'ImportDataRulePrefixString')
|
|
60
|
+
ImportDataRuleSizeLessThanLong = Shapes::IntegerShape.new(name: 'ImportDataRuleSizeLessThanLong')
|
|
61
|
+
ImportTrigger = Shapes::StringShape.new(name: 'ImportTrigger')
|
|
62
|
+
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
63
|
+
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
64
|
+
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
|
65
|
+
Ipv4Address = Shapes::StringShape.new(name: 'Ipv4Address')
|
|
66
|
+
Ipv6Address = Shapes::StringShape.new(name: 'Ipv6Address')
|
|
67
|
+
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
|
68
|
+
LifeCycleState = Shapes::StringShape.new(name: 'LifeCycleState')
|
|
69
|
+
ListAccessPointsDescription = Shapes::StructureShape.new(name: 'ListAccessPointsDescription')
|
|
70
|
+
ListAccessPointsRequest = Shapes::StructureShape.new(name: 'ListAccessPointsRequest')
|
|
71
|
+
ListAccessPointsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAccessPointsRequestMaxResultsInteger')
|
|
72
|
+
ListAccessPointsResponse = Shapes::StructureShape.new(name: 'ListAccessPointsResponse')
|
|
73
|
+
ListFileSystemsDescription = Shapes::StructureShape.new(name: 'ListFileSystemsDescription')
|
|
74
|
+
ListFileSystemsRequest = Shapes::StructureShape.new(name: 'ListFileSystemsRequest')
|
|
75
|
+
ListFileSystemsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListFileSystemsRequestMaxResultsInteger')
|
|
76
|
+
ListFileSystemsResponse = Shapes::StructureShape.new(name: 'ListFileSystemsResponse')
|
|
77
|
+
ListMountTargetsDescription = Shapes::StructureShape.new(name: 'ListMountTargetsDescription')
|
|
78
|
+
ListMountTargetsRequest = Shapes::StructureShape.new(name: 'ListMountTargetsRequest')
|
|
79
|
+
ListMountTargetsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListMountTargetsRequestMaxResultsInteger')
|
|
80
|
+
ListMountTargetsResponse = Shapes::StructureShape.new(name: 'ListMountTargetsResponse')
|
|
81
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
82
|
+
ListTagsForResourceRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListTagsForResourceRequestMaxResultsInteger')
|
|
83
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
84
|
+
MountTargetId = Shapes::StringShape.new(name: 'MountTargetId')
|
|
85
|
+
MountTargets = Shapes::ListShape.new(name: 'MountTargets')
|
|
86
|
+
NetworkInterfaceId = Shapes::StringShape.new(name: 'NetworkInterfaceId')
|
|
87
|
+
OwnerGid = Shapes::IntegerShape.new(name: 'OwnerGid')
|
|
88
|
+
OwnerUid = Shapes::IntegerShape.new(name: 'OwnerUid')
|
|
89
|
+
Path = Shapes::StringShape.new(name: 'Path')
|
|
90
|
+
Permissions = Shapes::StringShape.new(name: 'Permissions')
|
|
91
|
+
PosixUser = Shapes::StructureShape.new(name: 'PosixUser')
|
|
92
|
+
PutFileSystemPolicyRequest = Shapes::StructureShape.new(name: 'PutFileSystemPolicyRequest')
|
|
93
|
+
PutFileSystemPolicyResponse = Shapes::StructureShape.new(name: 'PutFileSystemPolicyResponse')
|
|
94
|
+
PutSynchronizationConfigurationRequest = Shapes::StructureShape.new(name: 'PutSynchronizationConfigurationRequest')
|
|
95
|
+
PutSynchronizationConfigurationRequestExpirationDataRulesList = Shapes::ListShape.new(name: 'PutSynchronizationConfigurationRequestExpirationDataRulesList')
|
|
96
|
+
PutSynchronizationConfigurationRequestImportDataRulesList = Shapes::ListShape.new(name: 'PutSynchronizationConfigurationRequestImportDataRulesList')
|
|
97
|
+
PutSynchronizationConfigurationResponse = Shapes::StructureShape.new(name: 'PutSynchronizationConfigurationResponse')
|
|
98
|
+
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
99
|
+
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
100
|
+
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
101
|
+
RootDirectory = Shapes::StructureShape.new(name: 'RootDirectory')
|
|
102
|
+
SecondaryGids = Shapes::ListShape.new(name: 'SecondaryGids')
|
|
103
|
+
SecurityGroup = Shapes::StringShape.new(name: 'SecurityGroup')
|
|
104
|
+
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
|
105
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
106
|
+
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
|
107
|
+
String = Shapes::StringShape.new(name: 'String')
|
|
108
|
+
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
109
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
110
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
111
|
+
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
|
112
|
+
TagList = Shapes::ListShape.new(name: 'TagList')
|
|
113
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
114
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
115
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
116
|
+
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
117
|
+
Uid = Shapes::IntegerShape.new(name: 'Uid')
|
|
118
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
119
|
+
UpdateMountTargetRequest = Shapes::StructureShape.new(name: 'UpdateMountTargetRequest')
|
|
120
|
+
UpdateMountTargetResponse = Shapes::StructureShape.new(name: 'UpdateMountTargetResponse')
|
|
121
|
+
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
122
|
+
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
123
|
+
|
|
124
|
+
AccessPoints.member = Shapes::ShapeRef.new(shape: ListAccessPointsDescription)
|
|
125
|
+
|
|
126
|
+
ConflictException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
127
|
+
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
128
|
+
ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
|
129
|
+
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
|
130
|
+
ConflictException.struct_class = Types::ConflictException
|
|
131
|
+
|
|
132
|
+
CreateAccessPointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
133
|
+
CreateAccessPointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
134
|
+
CreateAccessPointRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
135
|
+
CreateAccessPointRequest.add_member(:posix_user, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posixUser"))
|
|
136
|
+
CreateAccessPointRequest.add_member(:root_directory, Shapes::ShapeRef.new(shape: RootDirectory, location_name: "rootDirectory"))
|
|
137
|
+
CreateAccessPointRequest.struct_class = Types::CreateAccessPointRequest
|
|
138
|
+
|
|
139
|
+
CreateAccessPointResponse.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: AccessPointArn, required: true, location_name: "accessPointArn"))
|
|
140
|
+
CreateAccessPointResponse.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, required: true, location_name: "accessPointId"))
|
|
141
|
+
CreateAccessPointResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken"))
|
|
142
|
+
CreateAccessPointResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
143
|
+
CreateAccessPointResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, required: true, location_name: "status"))
|
|
144
|
+
CreateAccessPointResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
145
|
+
CreateAccessPointResponse.add_member(:posix_user, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posixUser"))
|
|
146
|
+
CreateAccessPointResponse.add_member(:root_directory, Shapes::ShapeRef.new(shape: RootDirectory, location_name: "rootDirectory"))
|
|
147
|
+
CreateAccessPointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
148
|
+
CreateAccessPointResponse.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
149
|
+
CreateAccessPointResponse.struct_class = Types::CreateAccessPointResponse
|
|
150
|
+
|
|
151
|
+
CreateFileSystemRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketArn, required: true, location_name: "bucket"))
|
|
152
|
+
CreateFileSystemRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: CreateFileSystemRequestPrefixString, location_name: "prefix"))
|
|
153
|
+
CreateFileSystemRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: CreationToken, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
154
|
+
CreateFileSystemRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
|
155
|
+
CreateFileSystemRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
|
156
|
+
CreateFileSystemRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
157
|
+
CreateFileSystemRequest.add_member(:accept_bucket_warning, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptBucketWarning"))
|
|
158
|
+
CreateFileSystemRequest.struct_class = Types::CreateFileSystemRequest
|
|
159
|
+
|
|
160
|
+
CreateFileSystemResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
|
|
161
|
+
CreateFileSystemResponse.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: FileSystemArn, location_name: "fileSystemArn"))
|
|
162
|
+
CreateFileSystemResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
163
|
+
CreateFileSystemResponse.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketArn, location_name: "bucket"))
|
|
164
|
+
CreateFileSystemResponse.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "prefix"))
|
|
165
|
+
CreateFileSystemResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
|
|
166
|
+
CreateFileSystemResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
|
167
|
+
CreateFileSystemResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
168
|
+
CreateFileSystemResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
169
|
+
CreateFileSystemResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
|
170
|
+
CreateFileSystemResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "ownerId"))
|
|
171
|
+
CreateFileSystemResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
172
|
+
CreateFileSystemResponse.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
173
|
+
CreateFileSystemResponse.struct_class = Types::CreateFileSystemResponse
|
|
174
|
+
|
|
175
|
+
CreateMountTargetRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
176
|
+
CreateMountTargetRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
|
177
|
+
CreateMountTargetRequest.add_member(:ipv4_address, Shapes::ShapeRef.new(shape: Ipv4Address, location_name: "ipv4Address"))
|
|
178
|
+
CreateMountTargetRequest.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: Ipv6Address, location_name: "ipv6Address"))
|
|
179
|
+
CreateMountTargetRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
|
180
|
+
CreateMountTargetRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
|
181
|
+
CreateMountTargetRequest.struct_class = Types::CreateMountTargetRequest
|
|
182
|
+
|
|
183
|
+
CreateMountTargetResponse.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
|
|
184
|
+
CreateMountTargetResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
185
|
+
CreateMountTargetResponse.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location_name: "mountTargetId"))
|
|
186
|
+
CreateMountTargetResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
187
|
+
CreateMountTargetResponse.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
|
188
|
+
CreateMountTargetResponse.add_member(:ipv4_address, Shapes::ShapeRef.new(shape: Ipv4Address, location_name: "ipv4Address"))
|
|
189
|
+
CreateMountTargetResponse.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: Ipv6Address, location_name: "ipv6Address"))
|
|
190
|
+
CreateMountTargetResponse.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
|
191
|
+
CreateMountTargetResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
192
|
+
CreateMountTargetResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
|
193
|
+
CreateMountTargetResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
194
|
+
CreateMountTargetResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
195
|
+
CreateMountTargetResponse.struct_class = Types::CreateMountTargetResponse
|
|
196
|
+
|
|
197
|
+
CreationPermissions.add_member(:owner_uid, Shapes::ShapeRef.new(shape: OwnerUid, required: true, location_name: "ownerUid"))
|
|
198
|
+
CreationPermissions.add_member(:owner_gid, Shapes::ShapeRef.new(shape: OwnerGid, required: true, location_name: "ownerGid"))
|
|
199
|
+
CreationPermissions.add_member(:permissions, Shapes::ShapeRef.new(shape: Permissions, required: true, location_name: "permissions"))
|
|
200
|
+
CreationPermissions.struct_class = Types::CreationPermissions
|
|
201
|
+
|
|
202
|
+
DeleteAccessPointRequest.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, required: true, location: "uri", location_name: "accessPointId"))
|
|
203
|
+
DeleteAccessPointRequest.struct_class = Types::DeleteAccessPointRequest
|
|
204
|
+
|
|
205
|
+
DeleteFileSystemPolicyRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
206
|
+
DeleteFileSystemPolicyRequest.struct_class = Types::DeleteFileSystemPolicyRequest
|
|
207
|
+
|
|
208
|
+
DeleteFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
209
|
+
DeleteFileSystemRequest.add_member(:force_delete, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "forceDelete"))
|
|
210
|
+
DeleteFileSystemRequest.struct_class = Types::DeleteFileSystemRequest
|
|
211
|
+
|
|
212
|
+
DeleteMountTargetRequest.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location: "uri", location_name: "mountTargetId"))
|
|
213
|
+
DeleteMountTargetRequest.struct_class = Types::DeleteMountTargetRequest
|
|
214
|
+
|
|
215
|
+
ExpirationDataRule.add_member(:days_after_last_access, Shapes::ShapeRef.new(shape: ExpirationDataRuleDaysAfterLastAccessInteger, required: true, location_name: "daysAfterLastAccess"))
|
|
216
|
+
ExpirationDataRule.struct_class = Types::ExpirationDataRule
|
|
217
|
+
|
|
218
|
+
FileSystems.member = Shapes::ShapeRef.new(shape: ListFileSystemsDescription)
|
|
219
|
+
|
|
220
|
+
GetAccessPointRequest.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, required: true, location: "uri", location_name: "accessPointId"))
|
|
221
|
+
GetAccessPointRequest.struct_class = Types::GetAccessPointRequest
|
|
222
|
+
|
|
223
|
+
GetAccessPointResponse.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: AccessPointArn, required: true, location_name: "accessPointArn"))
|
|
224
|
+
GetAccessPointResponse.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, required: true, location_name: "accessPointId"))
|
|
225
|
+
GetAccessPointResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken"))
|
|
226
|
+
GetAccessPointResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
227
|
+
GetAccessPointResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, required: true, location_name: "status"))
|
|
228
|
+
GetAccessPointResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
229
|
+
GetAccessPointResponse.add_member(:posix_user, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posixUser"))
|
|
230
|
+
GetAccessPointResponse.add_member(:root_directory, Shapes::ShapeRef.new(shape: RootDirectory, location_name: "rootDirectory"))
|
|
231
|
+
GetAccessPointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
232
|
+
GetAccessPointResponse.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
233
|
+
GetAccessPointResponse.struct_class = Types::GetAccessPointResponse
|
|
234
|
+
|
|
235
|
+
GetFileSystemPolicyRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
236
|
+
GetFileSystemPolicyRequest.struct_class = Types::GetFileSystemPolicyRequest
|
|
237
|
+
|
|
238
|
+
GetFileSystemPolicyResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
239
|
+
GetFileSystemPolicyResponse.add_member(:policy, Shapes::ShapeRef.new(shape: String, required: true, location_name: "policy"))
|
|
240
|
+
GetFileSystemPolicyResponse.struct_class = Types::GetFileSystemPolicyResponse
|
|
241
|
+
|
|
242
|
+
GetFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
243
|
+
GetFileSystemRequest.struct_class = Types::GetFileSystemRequest
|
|
244
|
+
|
|
245
|
+
GetFileSystemResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
|
|
246
|
+
GetFileSystemResponse.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: FileSystemArn, location_name: "fileSystemArn"))
|
|
247
|
+
GetFileSystemResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
248
|
+
GetFileSystemResponse.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketArn, location_name: "bucket"))
|
|
249
|
+
GetFileSystemResponse.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "prefix"))
|
|
250
|
+
GetFileSystemResponse.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
|
|
251
|
+
GetFileSystemResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "kmsKeyId"))
|
|
252
|
+
GetFileSystemResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
253
|
+
GetFileSystemResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
254
|
+
GetFileSystemResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
|
255
|
+
GetFileSystemResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "ownerId"))
|
|
256
|
+
GetFileSystemResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
257
|
+
GetFileSystemResponse.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
258
|
+
GetFileSystemResponse.struct_class = Types::GetFileSystemResponse
|
|
259
|
+
|
|
260
|
+
GetMountTargetRequest.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location: "uri", location_name: "mountTargetId"))
|
|
261
|
+
GetMountTargetRequest.struct_class = Types::GetMountTargetRequest
|
|
262
|
+
|
|
263
|
+
GetMountTargetResponse.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
|
|
264
|
+
GetMountTargetResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
265
|
+
GetMountTargetResponse.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location_name: "mountTargetId"))
|
|
266
|
+
GetMountTargetResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
267
|
+
GetMountTargetResponse.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
|
268
|
+
GetMountTargetResponse.add_member(:ipv4_address, Shapes::ShapeRef.new(shape: Ipv4Address, location_name: "ipv4Address"))
|
|
269
|
+
GetMountTargetResponse.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: Ipv6Address, location_name: "ipv6Address"))
|
|
270
|
+
GetMountTargetResponse.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
|
271
|
+
GetMountTargetResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
272
|
+
GetMountTargetResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
|
273
|
+
GetMountTargetResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
274
|
+
GetMountTargetResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
275
|
+
GetMountTargetResponse.struct_class = Types::GetMountTargetResponse
|
|
276
|
+
|
|
277
|
+
GetSynchronizationConfigurationRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
278
|
+
GetSynchronizationConfigurationRequest.struct_class = Types::GetSynchronizationConfigurationRequest
|
|
279
|
+
|
|
280
|
+
GetSynchronizationConfigurationResponse.add_member(:latest_version_number, Shapes::ShapeRef.new(shape: Integer, location_name: "latestVersionNumber"))
|
|
281
|
+
GetSynchronizationConfigurationResponse.add_member(:import_data_rules, Shapes::ShapeRef.new(shape: GetSynchronizationConfigurationResponseImportDataRulesList, required: true, location_name: "importDataRules"))
|
|
282
|
+
GetSynchronizationConfigurationResponse.add_member(:expiration_data_rules, Shapes::ShapeRef.new(shape: GetSynchronizationConfigurationResponseExpirationDataRulesList, required: true, location_name: "expirationDataRules"))
|
|
283
|
+
GetSynchronizationConfigurationResponse.struct_class = Types::GetSynchronizationConfigurationResponse
|
|
284
|
+
|
|
285
|
+
GetSynchronizationConfigurationResponseExpirationDataRulesList.member = Shapes::ShapeRef.new(shape: ExpirationDataRule)
|
|
286
|
+
|
|
287
|
+
GetSynchronizationConfigurationResponseImportDataRulesList.member = Shapes::ShapeRef.new(shape: ImportDataRule)
|
|
288
|
+
|
|
289
|
+
ImportDataRule.add_member(:prefix, Shapes::ShapeRef.new(shape: ImportDataRulePrefixString, required: true, location_name: "prefix"))
|
|
290
|
+
ImportDataRule.add_member(:trigger, Shapes::ShapeRef.new(shape: ImportTrigger, required: true, location_name: "trigger"))
|
|
291
|
+
ImportDataRule.add_member(:size_less_than, Shapes::ShapeRef.new(shape: ImportDataRuleSizeLessThanLong, required: true, location_name: "sizeLessThan"))
|
|
292
|
+
ImportDataRule.struct_class = Types::ImportDataRule
|
|
293
|
+
|
|
294
|
+
InternalServerException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
295
|
+
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
296
|
+
InternalServerException.struct_class = Types::InternalServerException
|
|
297
|
+
|
|
298
|
+
ListAccessPointsDescription.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: AccessPointArn, required: true, location_name: "accessPointArn"))
|
|
299
|
+
ListAccessPointsDescription.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, required: true, location_name: "accessPointId"))
|
|
300
|
+
ListAccessPointsDescription.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
301
|
+
ListAccessPointsDescription.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, required: true, location_name: "status"))
|
|
302
|
+
ListAccessPointsDescription.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
303
|
+
ListAccessPointsDescription.add_member(:posix_user, Shapes::ShapeRef.new(shape: PosixUser, location_name: "posixUser"))
|
|
304
|
+
ListAccessPointsDescription.add_member(:root_directory, Shapes::ShapeRef.new(shape: RootDirectory, location_name: "rootDirectory"))
|
|
305
|
+
ListAccessPointsDescription.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
306
|
+
ListAccessPointsDescription.struct_class = Types::ListAccessPointsDescription
|
|
307
|
+
|
|
308
|
+
ListAccessPointsRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "querystring", location_name: "fileSystemId"))
|
|
309
|
+
ListAccessPointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAccessPointsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
310
|
+
ListAccessPointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
|
311
|
+
ListAccessPointsRequest.struct_class = Types::ListAccessPointsRequest
|
|
312
|
+
|
|
313
|
+
ListAccessPointsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
314
|
+
ListAccessPointsResponse.add_member(:access_points, Shapes::ShapeRef.new(shape: AccessPoints, required: true, location_name: "accessPoints"))
|
|
315
|
+
ListAccessPointsResponse.struct_class = Types::ListAccessPointsResponse
|
|
316
|
+
|
|
317
|
+
ListFileSystemsDescription.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "creationTime"))
|
|
318
|
+
ListFileSystemsDescription.add_member(:file_system_arn, Shapes::ShapeRef.new(shape: FileSystemArn, required: true, location_name: "fileSystemArn"))
|
|
319
|
+
ListFileSystemsDescription.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "fileSystemId"))
|
|
320
|
+
ListFileSystemsDescription.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "name"))
|
|
321
|
+
ListFileSystemsDescription.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketArn, required: true, location_name: "bucket"))
|
|
322
|
+
ListFileSystemsDescription.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, required: true, location_name: "status"))
|
|
323
|
+
ListFileSystemsDescription.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
324
|
+
ListFileSystemsDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
|
325
|
+
ListFileSystemsDescription.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
326
|
+
ListFileSystemsDescription.struct_class = Types::ListFileSystemsDescription
|
|
327
|
+
|
|
328
|
+
ListFileSystemsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketArn, location: "querystring", location_name: "bucket"))
|
|
329
|
+
ListFileSystemsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListFileSystemsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
330
|
+
ListFileSystemsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
|
331
|
+
ListFileSystemsRequest.struct_class = Types::ListFileSystemsRequest
|
|
332
|
+
|
|
333
|
+
ListFileSystemsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
334
|
+
ListFileSystemsResponse.add_member(:file_systems, Shapes::ShapeRef.new(shape: FileSystems, required: true, location_name: "fileSystems"))
|
|
335
|
+
ListFileSystemsResponse.struct_class = Types::ListFileSystemsResponse
|
|
336
|
+
|
|
337
|
+
ListMountTargetsDescription.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
|
|
338
|
+
ListMountTargetsDescription.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
339
|
+
ListMountTargetsDescription.add_member(:ipv4_address, Shapes::ShapeRef.new(shape: Ipv4Address, location_name: "ipv4Address"))
|
|
340
|
+
ListMountTargetsDescription.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: Ipv6Address, location_name: "ipv6Address"))
|
|
341
|
+
ListMountTargetsDescription.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
342
|
+
ListMountTargetsDescription.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
343
|
+
ListMountTargetsDescription.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location_name: "mountTargetId"))
|
|
344
|
+
ListMountTargetsDescription.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
|
345
|
+
ListMountTargetsDescription.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
346
|
+
ListMountTargetsDescription.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
|
347
|
+
ListMountTargetsDescription.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
348
|
+
ListMountTargetsDescription.struct_class = Types::ListMountTargetsDescription
|
|
349
|
+
|
|
350
|
+
ListMountTargetsRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location: "querystring", location_name: "fileSystemId"))
|
|
351
|
+
ListMountTargetsRequest.add_member(:access_point_id, Shapes::ShapeRef.new(shape: AccessPointId, location: "querystring", location_name: "accessPointId"))
|
|
352
|
+
ListMountTargetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListMountTargetsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
353
|
+
ListMountTargetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
|
354
|
+
ListMountTargetsRequest.struct_class = Types::ListMountTargetsRequest
|
|
355
|
+
|
|
356
|
+
ListMountTargetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
357
|
+
ListMountTargetsResponse.add_member(:mount_targets, Shapes::ShapeRef.new(shape: MountTargets, required: true, location_name: "mountTargets"))
|
|
358
|
+
ListMountTargetsResponse.struct_class = Types::ListMountTargetsResponse
|
|
359
|
+
|
|
360
|
+
ListTagsForResourceRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "resourceId"))
|
|
361
|
+
ListTagsForResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListTagsForResourceRequestMaxResultsInteger, location: "querystring", location_name: "MaxResults"))
|
|
362
|
+
ListTagsForResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "NextToken"))
|
|
363
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
364
|
+
|
|
365
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
|
366
|
+
ListTagsForResourceResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
367
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
|
368
|
+
|
|
369
|
+
MountTargets.member = Shapes::ShapeRef.new(shape: ListMountTargetsDescription)
|
|
370
|
+
|
|
371
|
+
PosixUser.add_member(:uid, Shapes::ShapeRef.new(shape: Uid, required: true, location_name: "uid"))
|
|
372
|
+
PosixUser.add_member(:gid, Shapes::ShapeRef.new(shape: Gid, required: true, location_name: "gid"))
|
|
373
|
+
PosixUser.add_member(:secondary_gids, Shapes::ShapeRef.new(shape: SecondaryGids, location_name: "secondaryGids"))
|
|
374
|
+
PosixUser.struct_class = Types::PosixUser
|
|
375
|
+
|
|
376
|
+
PutFileSystemPolicyRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
377
|
+
PutFileSystemPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: String, required: true, location_name: "policy"))
|
|
378
|
+
PutFileSystemPolicyRequest.struct_class = Types::PutFileSystemPolicyRequest
|
|
379
|
+
|
|
380
|
+
PutFileSystemPolicyResponse.struct_class = Types::PutFileSystemPolicyResponse
|
|
381
|
+
|
|
382
|
+
PutSynchronizationConfigurationRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location: "uri", location_name: "fileSystemId"))
|
|
383
|
+
PutSynchronizationConfigurationRequest.add_member(:latest_version_number, Shapes::ShapeRef.new(shape: Integer, location_name: "latestVersionNumber"))
|
|
384
|
+
PutSynchronizationConfigurationRequest.add_member(:import_data_rules, Shapes::ShapeRef.new(shape: PutSynchronizationConfigurationRequestImportDataRulesList, required: true, location_name: "importDataRules"))
|
|
385
|
+
PutSynchronizationConfigurationRequest.add_member(:expiration_data_rules, Shapes::ShapeRef.new(shape: PutSynchronizationConfigurationRequestExpirationDataRulesList, required: true, location_name: "expirationDataRules"))
|
|
386
|
+
PutSynchronizationConfigurationRequest.struct_class = Types::PutSynchronizationConfigurationRequest
|
|
387
|
+
|
|
388
|
+
PutSynchronizationConfigurationRequestExpirationDataRulesList.member = Shapes::ShapeRef.new(shape: ExpirationDataRule)
|
|
389
|
+
|
|
390
|
+
PutSynchronizationConfigurationRequestImportDataRulesList.member = Shapes::ShapeRef.new(shape: ImportDataRule)
|
|
391
|
+
|
|
392
|
+
PutSynchronizationConfigurationResponse.struct_class = Types::PutSynchronizationConfigurationResponse
|
|
393
|
+
|
|
394
|
+
ResourceNotFoundException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
395
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
396
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
397
|
+
|
|
398
|
+
RootDirectory.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "path"))
|
|
399
|
+
RootDirectory.add_member(:creation_permissions, Shapes::ShapeRef.new(shape: CreationPermissions, location_name: "creationPermissions"))
|
|
400
|
+
RootDirectory.struct_class = Types::RootDirectory
|
|
401
|
+
|
|
402
|
+
SecondaryGids.member = Shapes::ShapeRef.new(shape: Gid)
|
|
403
|
+
|
|
404
|
+
SecurityGroups.member = Shapes::ShapeRef.new(shape: SecurityGroup)
|
|
405
|
+
|
|
406
|
+
ServiceQuotaExceededException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
407
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
408
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
409
|
+
|
|
410
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "key"))
|
|
411
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "value"))
|
|
412
|
+
Tag.struct_class = Types::Tag
|
|
413
|
+
|
|
414
|
+
TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
415
|
+
|
|
416
|
+
TagList.member = Shapes::ShapeRef.new(shape: Tag)
|
|
417
|
+
|
|
418
|
+
TagResourceRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "resourceId"))
|
|
419
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "tags"))
|
|
420
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
|
421
|
+
|
|
422
|
+
ThrottlingException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
423
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
424
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
|
425
|
+
|
|
426
|
+
UntagResourceRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "resourceId"))
|
|
427
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location: "querystring", location_name: "tagKeys"))
|
|
428
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
|
429
|
+
|
|
430
|
+
UpdateMountTargetRequest.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location: "uri", location_name: "mountTargetId"))
|
|
431
|
+
UpdateMountTargetRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, required: true, location_name: "securityGroups"))
|
|
432
|
+
UpdateMountTargetRequest.struct_class = Types::UpdateMountTargetRequest
|
|
433
|
+
|
|
434
|
+
UpdateMountTargetResponse.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
|
|
435
|
+
UpdateMountTargetResponse.add_member(:owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "ownerId"))
|
|
436
|
+
UpdateMountTargetResponse.add_member(:mount_target_id, Shapes::ShapeRef.new(shape: MountTargetId, required: true, location_name: "mountTargetId"))
|
|
437
|
+
UpdateMountTargetResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "fileSystemId"))
|
|
438
|
+
UpdateMountTargetResponse.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
|
|
439
|
+
UpdateMountTargetResponse.add_member(:ipv4_address, Shapes::ShapeRef.new(shape: Ipv4Address, location_name: "ipv4Address"))
|
|
440
|
+
UpdateMountTargetResponse.add_member(:ipv6_address, Shapes::ShapeRef.new(shape: Ipv6Address, location_name: "ipv6Address"))
|
|
441
|
+
UpdateMountTargetResponse.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
|
442
|
+
UpdateMountTargetResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
443
|
+
UpdateMountTargetResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
|
444
|
+
UpdateMountTargetResponse.add_member(:status, Shapes::ShapeRef.new(shape: LifeCycleState, location_name: "status"))
|
|
445
|
+
UpdateMountTargetResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "statusMessage"))
|
|
446
|
+
UpdateMountTargetResponse.struct_class = Types::UpdateMountTargetResponse
|
|
447
|
+
|
|
448
|
+
ValidationException.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, required: true, location_name: "errorCode"))
|
|
449
|
+
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
450
|
+
ValidationException.struct_class = Types::ValidationException
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
# @api private
|
|
454
|
+
API = Seahorse::Model::Api.new.tap do |api|
|
|
455
|
+
|
|
456
|
+
api.version = "2025-05-05"
|
|
457
|
+
|
|
458
|
+
api.metadata = {
|
|
459
|
+
"apiVersion" => "2025-05-05",
|
|
460
|
+
"auth" => ["aws.auth#sigv4"],
|
|
461
|
+
"endpointPrefix" => "s3files",
|
|
462
|
+
"protocol" => "rest-json",
|
|
463
|
+
"protocols" => ["rest-json"],
|
|
464
|
+
"serviceFullName" => "Amazon S3 Files",
|
|
465
|
+
"serviceId" => "S3Files",
|
|
466
|
+
"signatureVersion" => "v4",
|
|
467
|
+
"signingName" => "s3files",
|
|
468
|
+
"uid" => "s3files-2025-05-05",
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
api.add_operation(:create_access_point, Seahorse::Model::Operation.new.tap do |o|
|
|
472
|
+
o.name = "CreateAccessPoint"
|
|
473
|
+
o.http_method = "PUT"
|
|
474
|
+
o.http_request_uri = "/access-points"
|
|
475
|
+
o.input = Shapes::ShapeRef.new(shape: CreateAccessPointRequest)
|
|
476
|
+
o.output = Shapes::ShapeRef.new(shape: CreateAccessPointResponse)
|
|
477
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
478
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
479
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
480
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
481
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
482
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
483
|
+
end)
|
|
484
|
+
|
|
485
|
+
api.add_operation(:create_file_system, Seahorse::Model::Operation.new.tap do |o|
|
|
486
|
+
o.name = "CreateFileSystem"
|
|
487
|
+
o.http_method = "PUT"
|
|
488
|
+
o.http_request_uri = "/file-systems"
|
|
489
|
+
o.input = Shapes::ShapeRef.new(shape: CreateFileSystemRequest)
|
|
490
|
+
o.output = Shapes::ShapeRef.new(shape: CreateFileSystemResponse)
|
|
491
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
492
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
493
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
494
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
495
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
496
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
497
|
+
end)
|
|
498
|
+
|
|
499
|
+
api.add_operation(:create_mount_target, Seahorse::Model::Operation.new.tap do |o|
|
|
500
|
+
o.name = "CreateMountTarget"
|
|
501
|
+
o.http_method = "PUT"
|
|
502
|
+
o.http_request_uri = "/mount-targets"
|
|
503
|
+
o.input = Shapes::ShapeRef.new(shape: CreateMountTargetRequest)
|
|
504
|
+
o.output = Shapes::ShapeRef.new(shape: CreateMountTargetResponse)
|
|
505
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
506
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
507
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
508
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
509
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
510
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
511
|
+
end)
|
|
512
|
+
|
|
513
|
+
api.add_operation(:delete_access_point, Seahorse::Model::Operation.new.tap do |o|
|
|
514
|
+
o.name = "DeleteAccessPoint"
|
|
515
|
+
o.http_method = "DELETE"
|
|
516
|
+
o.http_request_uri = "/access-points/{accessPointId}"
|
|
517
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteAccessPointRequest)
|
|
518
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
519
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
520
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
521
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
522
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
523
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
524
|
+
end)
|
|
525
|
+
|
|
526
|
+
api.add_operation(:delete_file_system, Seahorse::Model::Operation.new.tap do |o|
|
|
527
|
+
o.name = "DeleteFileSystem"
|
|
528
|
+
o.http_method = "DELETE"
|
|
529
|
+
o.http_request_uri = "/file-systems/{fileSystemId}"
|
|
530
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteFileSystemRequest)
|
|
531
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
532
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
533
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
534
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
535
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
536
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
537
|
+
end)
|
|
538
|
+
|
|
539
|
+
api.add_operation(:delete_file_system_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
540
|
+
o.name = "DeleteFileSystemPolicy"
|
|
541
|
+
o.http_method = "DELETE"
|
|
542
|
+
o.http_request_uri = "/file-systems/{fileSystemId}/policy"
|
|
543
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteFileSystemPolicyRequest)
|
|
544
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
545
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
546
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
547
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
548
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
549
|
+
end)
|
|
550
|
+
|
|
551
|
+
api.add_operation(:delete_mount_target, Seahorse::Model::Operation.new.tap do |o|
|
|
552
|
+
o.name = "DeleteMountTarget"
|
|
553
|
+
o.http_method = "DELETE"
|
|
554
|
+
o.http_request_uri = "/mount-targets/{mountTargetId}"
|
|
555
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteMountTargetRequest)
|
|
556
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
557
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
558
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
559
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
560
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
561
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
562
|
+
end)
|
|
563
|
+
|
|
564
|
+
api.add_operation(:get_access_point, Seahorse::Model::Operation.new.tap do |o|
|
|
565
|
+
o.name = "GetAccessPoint"
|
|
566
|
+
o.http_method = "GET"
|
|
567
|
+
o.http_request_uri = "/access-points/{accessPointId}"
|
|
568
|
+
o.input = Shapes::ShapeRef.new(shape: GetAccessPointRequest)
|
|
569
|
+
o.output = Shapes::ShapeRef.new(shape: GetAccessPointResponse)
|
|
570
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
571
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
573
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
574
|
+
end)
|
|
575
|
+
|
|
576
|
+
api.add_operation(:get_file_system, Seahorse::Model::Operation.new.tap do |o|
|
|
577
|
+
o.name = "GetFileSystem"
|
|
578
|
+
o.http_method = "GET"
|
|
579
|
+
o.http_request_uri = "/file-systems/{fileSystemId}"
|
|
580
|
+
o.input = Shapes::ShapeRef.new(shape: GetFileSystemRequest)
|
|
581
|
+
o.output = Shapes::ShapeRef.new(shape: GetFileSystemResponse)
|
|
582
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
583
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
584
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
585
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
586
|
+
end)
|
|
587
|
+
|
|
588
|
+
api.add_operation(:get_file_system_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
589
|
+
o.name = "GetFileSystemPolicy"
|
|
590
|
+
o.http_method = "GET"
|
|
591
|
+
o.http_request_uri = "/file-systems/{fileSystemId}/policy"
|
|
592
|
+
o.input = Shapes::ShapeRef.new(shape: GetFileSystemPolicyRequest)
|
|
593
|
+
o.output = Shapes::ShapeRef.new(shape: GetFileSystemPolicyResponse)
|
|
594
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
595
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
596
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
597
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
598
|
+
end)
|
|
599
|
+
|
|
600
|
+
api.add_operation(:get_mount_target, Seahorse::Model::Operation.new.tap do |o|
|
|
601
|
+
o.name = "GetMountTarget"
|
|
602
|
+
o.http_method = "GET"
|
|
603
|
+
o.http_request_uri = "/mount-targets/{mountTargetId}"
|
|
604
|
+
o.input = Shapes::ShapeRef.new(shape: GetMountTargetRequest)
|
|
605
|
+
o.output = Shapes::ShapeRef.new(shape: GetMountTargetResponse)
|
|
606
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
607
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
608
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
609
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
610
|
+
end)
|
|
611
|
+
|
|
612
|
+
api.add_operation(:get_synchronization_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
613
|
+
o.name = "GetSynchronizationConfiguration"
|
|
614
|
+
o.http_method = "GET"
|
|
615
|
+
o.http_request_uri = "/file-systems/{fileSystemId}/synchronization-configuration"
|
|
616
|
+
o.input = Shapes::ShapeRef.new(shape: GetSynchronizationConfigurationRequest)
|
|
617
|
+
o.output = Shapes::ShapeRef.new(shape: GetSynchronizationConfigurationResponse)
|
|
618
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
619
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
620
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
621
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
622
|
+
end)
|
|
623
|
+
|
|
624
|
+
api.add_operation(:list_access_points, Seahorse::Model::Operation.new.tap do |o|
|
|
625
|
+
o.name = "ListAccessPoints"
|
|
626
|
+
o.http_method = "GET"
|
|
627
|
+
o.http_request_uri = "/access-points"
|
|
628
|
+
o.input = Shapes::ShapeRef.new(shape: ListAccessPointsRequest)
|
|
629
|
+
o.output = Shapes::ShapeRef.new(shape: ListAccessPointsResponse)
|
|
630
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
631
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
632
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
633
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
634
|
+
o[:pager] = Aws::Pager.new(
|
|
635
|
+
limit_key: "max_results",
|
|
636
|
+
tokens: {
|
|
637
|
+
"next_token" => "next_token"
|
|
638
|
+
}
|
|
639
|
+
)
|
|
640
|
+
end)
|
|
641
|
+
|
|
642
|
+
api.add_operation(:list_file_systems, Seahorse::Model::Operation.new.tap do |o|
|
|
643
|
+
o.name = "ListFileSystems"
|
|
644
|
+
o.http_method = "GET"
|
|
645
|
+
o.http_request_uri = "/file-systems"
|
|
646
|
+
o.input = Shapes::ShapeRef.new(shape: ListFileSystemsRequest)
|
|
647
|
+
o.output = Shapes::ShapeRef.new(shape: ListFileSystemsResponse)
|
|
648
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
649
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
650
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
651
|
+
o[:pager] = Aws::Pager.new(
|
|
652
|
+
limit_key: "max_results",
|
|
653
|
+
tokens: {
|
|
654
|
+
"next_token" => "next_token"
|
|
655
|
+
}
|
|
656
|
+
)
|
|
657
|
+
end)
|
|
658
|
+
|
|
659
|
+
api.add_operation(:list_mount_targets, Seahorse::Model::Operation.new.tap do |o|
|
|
660
|
+
o.name = "ListMountTargets"
|
|
661
|
+
o.http_method = "GET"
|
|
662
|
+
o.http_request_uri = "/mount-targets"
|
|
663
|
+
o.input = Shapes::ShapeRef.new(shape: ListMountTargetsRequest)
|
|
664
|
+
o.output = Shapes::ShapeRef.new(shape: ListMountTargetsResponse)
|
|
665
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
666
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
667
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
668
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
669
|
+
o[:pager] = Aws::Pager.new(
|
|
670
|
+
limit_key: "max_results",
|
|
671
|
+
tokens: {
|
|
672
|
+
"next_token" => "next_token"
|
|
673
|
+
}
|
|
674
|
+
)
|
|
675
|
+
end)
|
|
676
|
+
|
|
677
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
678
|
+
o.name = "ListTagsForResource"
|
|
679
|
+
o.http_method = "GET"
|
|
680
|
+
o.http_request_uri = "/resource-tags/{resourceId}"
|
|
681
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
|
682
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
|
683
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
684
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
685
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
686
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
687
|
+
o[:pager] = Aws::Pager.new(
|
|
688
|
+
limit_key: "max_results",
|
|
689
|
+
tokens: {
|
|
690
|
+
"next_token" => "next_token"
|
|
691
|
+
}
|
|
692
|
+
)
|
|
693
|
+
end)
|
|
694
|
+
|
|
695
|
+
api.add_operation(:put_file_system_policy, Seahorse::Model::Operation.new.tap do |o|
|
|
696
|
+
o.name = "PutFileSystemPolicy"
|
|
697
|
+
o.http_method = "PUT"
|
|
698
|
+
o.http_request_uri = "/file-systems/{fileSystemId}/policy"
|
|
699
|
+
o.input = Shapes::ShapeRef.new(shape: PutFileSystemPolicyRequest)
|
|
700
|
+
o.output = Shapes::ShapeRef.new(shape: PutFileSystemPolicyResponse)
|
|
701
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
702
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
703
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
704
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
705
|
+
end)
|
|
706
|
+
|
|
707
|
+
api.add_operation(:put_synchronization_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
708
|
+
o.name = "PutSynchronizationConfiguration"
|
|
709
|
+
o.http_method = "PUT"
|
|
710
|
+
o.http_request_uri = "/file-systems/{fileSystemId}/synchronization-configuration"
|
|
711
|
+
o.input = Shapes::ShapeRef.new(shape: PutSynchronizationConfigurationRequest)
|
|
712
|
+
o.output = Shapes::ShapeRef.new(shape: PutSynchronizationConfigurationResponse)
|
|
713
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
714
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
715
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
716
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
717
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
718
|
+
end)
|
|
719
|
+
|
|
720
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
721
|
+
o.name = "TagResource"
|
|
722
|
+
o.http_method = "POST"
|
|
723
|
+
o.http_request_uri = "/resource-tags/{resourceId}"
|
|
724
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
|
725
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
726
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
727
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
728
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
729
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
730
|
+
end)
|
|
731
|
+
|
|
732
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
733
|
+
o.name = "UntagResource"
|
|
734
|
+
o.http_method = "DELETE"
|
|
735
|
+
o.http_request_uri = "/resource-tags/{resourceId}"
|
|
736
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
|
737
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
738
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
739
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
740
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
741
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
742
|
+
end)
|
|
743
|
+
|
|
744
|
+
api.add_operation(:update_mount_target, Seahorse::Model::Operation.new.tap do |o|
|
|
745
|
+
o.name = "UpdateMountTarget"
|
|
746
|
+
o.http_method = "PUT"
|
|
747
|
+
o.http_request_uri = "/mount-targets/{mountTargetId}"
|
|
748
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateMountTargetRequest)
|
|
749
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateMountTargetResponse)
|
|
750
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
751
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
752
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
753
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
754
|
+
end)
|
|
755
|
+
end
|
|
756
|
+
|
|
757
|
+
end
|
|
758
|
+
end
|