forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelasticfilesystem-2015-02-01.examples.json
222 lines (222 loc) · 6.3 KB
/
elasticfilesystem-2015-02-01.examples.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"version": "1.0",
"examples": {
"CreateFileSystem": [
{
"input": {
"CreationToken": "tokenstring",
"PerformanceMode": "generalPurpose"
},
"output": {
"CreationTime": "1481841524.0",
"CreationToken": "tokenstring",
"FileSystemId": "fs-01234567",
"LifeCycleState": "creating",
"NumberOfMountTargets": 0,
"OwnerId": "012345678912",
"PerformanceMode": "generalPurpose",
"SizeInBytes": {
"Value": 0
}
},
"comments": {
"input": {
},
"output": {
}
},
"description": "This operation creates a new file system with the default generalpurpose performance mode.",
"id": "to-create-a-new-file-system-1481840798547",
"title": "To create a new file system"
}
],
"CreateMountTarget": [
{
"input": {
"FileSystemId": "fs-01234567",
"SubnetId": "subnet-1234abcd"
},
"output": {
"FileSystemId": "fs-01234567",
"IpAddress": "192.0.0.2",
"LifeCycleState": "creating",
"MountTargetId": "fsmt-12340abc",
"NetworkInterfaceId": "eni-cedf6789",
"OwnerId": "012345678912",
"SubnetId": "subnet-1234abcd"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "This operation creates a new mount target for an EFS file system.",
"id": "to-create-a-new-mount-target-1481842289329",
"title": "To create a new mount target"
}
],
"CreateTags": [
{
"input": {
"FileSystemId": "fs-01234567",
"Tags": [
{
"Key": "Name",
"Value": "MyFileSystem"
}
]
},
"comments": {
},
"description": "This operation creates a new tag for an EFS file system.",
"id": "to-create-a-new-tag-1481843409357",
"title": "To create a new tag"
}
],
"DeleteFileSystem": [
{
"input": {
"FileSystemId": "fs-01234567"
},
"comments": {
},
"description": "This operation deletes an EFS file system.",
"id": "to-delete-a-file-system-1481847318348",
"title": "To delete a file system"
}
],
"DeleteMountTarget": [
{
"input": {
"MountTargetId": "fsmt-12340abc"
},
"comments": {
},
"description": "This operation deletes a mount target.",
"id": "to-delete-a-mount-target-1481847635607",
"title": "To delete a mount target"
}
],
"DeleteTags": [
{
"input": {
"FileSystemId": "fs-01234567",
"TagKeys": [
"Name"
]
},
"comments": {
},
"description": "This operation deletes tags for an EFS file system.",
"id": "to-delete-tags-for-an-efs-file-system-1481848189061",
"title": "To delete tags for an EFS file system"
}
],
"DescribeFileSystems": [
{
"input": {
},
"output": {
"FileSystems": [
{
"CreationTime": "1481841524.0",
"CreationToken": "tokenstring",
"FileSystemId": "fs-01234567",
"LifeCycleState": "available",
"Name": "MyFileSystem",
"NumberOfMountTargets": 1,
"OwnerId": "012345678912",
"PerformanceMode": "generalPurpose",
"SizeInBytes": {
"Value": 6144
}
}
]
},
"comments": {
},
"description": "This operation describes all of the EFS file systems in an account.",
"id": "to-describe-an-efs-file-system-1481848448460",
"title": "To describe an EFS file system"
}
],
"DescribeMountTargetSecurityGroups": [
{
"input": {
"MountTargetId": "fsmt-12340abc"
},
"output": {
"SecurityGroups": [
"sg-fghi4567"
]
},
"comments": {
},
"description": "This operation describes all of the security groups for a file system's mount target.",
"id": "to-describe-the-security-groups-for-a-mount-target-1481849317823",
"title": "To describe the security groups for a mount target"
}
],
"DescribeMountTargets": [
{
"input": {
"FileSystemId": "fs-01234567"
},
"output": {
"MountTargets": [
{
"FileSystemId": "fs-01234567",
"IpAddress": "192.0.0.2",
"LifeCycleState": "available",
"MountTargetId": "fsmt-12340abc",
"NetworkInterfaceId": "eni-cedf6789",
"OwnerId": "012345678912",
"SubnetId": "subnet-1234abcd"
}
]
},
"comments": {
},
"description": "This operation describes all of a file system's mount targets.",
"id": "to-describe-the-mount-targets-for-a-file-system-1481849958584",
"title": "To describe the mount targets for a file system"
}
],
"DescribeTags": [
{
"input": {
"FileSystemId": "fs-01234567"
},
"output": {
"Tags": [
{
"Key": "Name",
"Value": "MyFileSystem"
}
]
},
"comments": {
},
"description": "This operation describes all of a file system's tags.",
"id": "to-describe-the-tags-for-a-file-system-1481850497090",
"title": "To describe the tags for a file system"
}
],
"ModifyMountTargetSecurityGroups": [
{
"input": {
"MountTargetId": "fsmt-12340abc",
"SecurityGroups": [
"sg-abcd1234"
]
},
"comments": {
},
"description": "This operation modifies the security groups associated with a mount target for a file system.",
"id": "to-modify-the-security-groups-associated-with-a-mount-target-for-a-file-system-1481850772562",
"title": "To modify the security groups associated with a mount target for a file system"
}
]
}
}