aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,440 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CreateAssociation": "<p>Associates the specified configuration document with the specified instance.</p> <p>When you associate a configuration document with an instance, the configuration agent on the instance processes the configuration document and configures the instance as specified.</p> <p>If you associate a configuration document with an instance that already has an associated configuration document, we replace the current configuration document with the new configuration document.</p>",
5
- "CreateAssociationBatch": "<p>Associates the specified configuration documents with the specified instances.</p> <p>When you associate a configuration document with an instance, the configuration agent on the instance processes the configuration document and configures the instance as specified.</p> <p>If you associate a configuration document with an instance that already has an associated configuration document, we replace the current configuration document with the new configuration document.</p>",
6
- "CreateDocument": "<p>Creates a configuration document.</p> <p>After you create a configuration document, you can use <a>CreateAssociation</a> to associate it with one or more running instances.</p>",
7
- "DeleteAssociation": "<p>Disassociates the specified configuration document from the specified instance.</p> <p>When you disassociate a configuration document from an instance, it does not change the configuration of the instance. To change the configuration state of an instance after you disassociate a configuration document, you must create a new configuration document with the desired configuration and associate it with the instance.</p>",
8
- "DeleteDocument": "<p>Deletes the specified configuration document.</p> <p>You must use <a>DeleteAssociation</a> to disassociate all instances that are associated with the configuration document before you can delete it.</p>",
9
- "DescribeAssociation": "<p>Describes the associations for the specified configuration document or instance.</p>",
10
- "DescribeDocument": "<p>Describes the specified configuration document.</p>",
11
- "GetDocument": "<p>Gets the contents of the specified configuration document.</p>",
12
- "ListAssociations": "<p>Lists the associations for the specified configuration document or instance.</p>",
13
- "ListDocuments": "<p>Describes one or more of your configuration documents.</p>",
14
- "UpdateAssociationStatus": "<p>Updates the status of the configuration document associated with the specified instance.</p>"
15
- },
16
- "service": "<p>Amazon EC2 Simple Systems Manager (SSM) enables you to configure and manage your EC2 instances. You can create a configuration document and then associate it with one or more running instances.</p> <p>You can use a configuration document to automate the following tasks for your Windows instances:</p> <ul> <li><p>Join an AWS Directory</p></li> <li><p>Install, repair, or uninstall software using an MSI package</p></li> <li><p>Run PowerShell scripts</p></li> <li><p>Configure CloudWatch Logs to monitor applications and systems</p></li> </ul> <p>Note that configuration documents are not supported on Linux instances.</p>",
17
- "shapes": {
18
- "AssociatedInstances": {
19
- "base": "<p>You must disassociate a configuration document from all instances before you can delete it.</p>",
20
- "refs": {
21
- }
22
- },
23
- "Association": {
24
- "base": "<p>Describes an association of a configuration document and an instance.</p>",
25
- "refs": {
26
- "AssociationList$member": null
27
- }
28
- },
29
- "AssociationAlreadyExists": {
30
- "base": "<p>The specified association already exists.</p>",
31
- "refs": {
32
- }
33
- },
34
- "AssociationDescription": {
35
- "base": "<p>Describes an association.</p>",
36
- "refs": {
37
- "AssociationDescriptionList$member": null,
38
- "CreateAssociationResult$AssociationDescription": "<p>Information about the association.</p>",
39
- "DescribeAssociationResult$AssociationDescription": "<p>Information about the association.</p>",
40
- "UpdateAssociationStatusResult$AssociationDescription": "<p>Information about the association.</p>"
41
- }
42
- },
43
- "AssociationDescriptionList": {
44
- "base": null,
45
- "refs": {
46
- "CreateAssociationBatchResult$Successful": "<p>Information about the associations that succeeded.</p>"
47
- }
48
- },
49
- "AssociationDoesNotExist": {
50
- "base": "<p>The specified association does not exist.</p>",
51
- "refs": {
52
- }
53
- },
54
- "AssociationFilter": {
55
- "base": "<p>Describes a filter.</p>",
56
- "refs": {
57
- "AssociationFilterList$member": null
58
- }
59
- },
60
- "AssociationFilterKey": {
61
- "base": null,
62
- "refs": {
63
- "AssociationFilter$key": "<p>The name of the filter.</p>"
64
- }
65
- },
66
- "AssociationFilterList": {
67
- "base": null,
68
- "refs": {
69
- "ListAssociationsRequest$AssociationFilterList": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
70
- }
71
- },
72
- "AssociationFilterValue": {
73
- "base": null,
74
- "refs": {
75
- "AssociationFilter$value": "<p>The filter value.</p>"
76
- }
77
- },
78
- "AssociationLimitExceeded": {
79
- "base": "<p>You can have at most 2,000 active associations.</p>",
80
- "refs": {
81
- }
82
- },
83
- "AssociationList": {
84
- "base": null,
85
- "refs": {
86
- "ListAssociationsResult$Associations": "<p>The associations.</p>"
87
- }
88
- },
89
- "AssociationStatus": {
90
- "base": "<p>Describes an association status.</p>",
91
- "refs": {
92
- "AssociationDescription$Status": "<p>The association status.</p>",
93
- "UpdateAssociationStatusRequest$AssociationStatus": "<p>The association status.</p>"
94
- }
95
- },
96
- "AssociationStatusName": {
97
- "base": null,
98
- "refs": {
99
- "AssociationStatus$Name": "<p>The status.</p>"
100
- }
101
- },
102
- "BatchErrorMessage": {
103
- "base": null,
104
- "refs": {
105
- "FailedCreateAssociation$Message": "<p>A description of the failure.</p>"
106
- }
107
- },
108
- "CreateAssociationBatchRequest": {
109
- "base": null,
110
- "refs": {
111
- }
112
- },
113
- "CreateAssociationBatchRequestEntries": {
114
- "base": null,
115
- "refs": {
116
- "CreateAssociationBatchRequest$Entries": "<p>One or more associations.</p>"
117
- }
118
- },
119
- "CreateAssociationBatchRequestEntry": {
120
- "base": "<p>Describes the association of a configuration document and an instance.</p>",
121
- "refs": {
122
- "CreateAssociationBatchRequestEntries$member": null,
123
- "FailedCreateAssociation$Entry": "<p>The association.</p>"
124
- }
125
- },
126
- "CreateAssociationBatchResult": {
127
- "base": null,
128
- "refs": {
129
- }
130
- },
131
- "CreateAssociationRequest": {
132
- "base": null,
133
- "refs": {
134
- }
135
- },
136
- "CreateAssociationResult": {
137
- "base": null,
138
- "refs": {
139
- }
140
- },
141
- "CreateDocumentRequest": {
142
- "base": null,
143
- "refs": {
144
- }
145
- },
146
- "CreateDocumentResult": {
147
- "base": null,
148
- "refs": {
149
- }
150
- },
151
- "DateTime": {
152
- "base": null,
153
- "refs": {
154
- "AssociationDescription$Date": "<p>The date when the association was made.</p>",
155
- "AssociationStatus$Date": "<p>The date when the status changed.</p>",
156
- "DocumentDescription$CreatedDate": "<p>The date when the configuration document was created.</p>"
157
- }
158
- },
159
- "DeleteAssociationRequest": {
160
- "base": null,
161
- "refs": {
162
- }
163
- },
164
- "DeleteAssociationResult": {
165
- "base": null,
166
- "refs": {
167
- }
168
- },
169
- "DeleteDocumentRequest": {
170
- "base": null,
171
- "refs": {
172
- }
173
- },
174
- "DeleteDocumentResult": {
175
- "base": null,
176
- "refs": {
177
- }
178
- },
179
- "DescribeAssociationRequest": {
180
- "base": null,
181
- "refs": {
182
- }
183
- },
184
- "DescribeAssociationResult": {
185
- "base": null,
186
- "refs": {
187
- }
188
- },
189
- "DescribeDocumentRequest": {
190
- "base": null,
191
- "refs": {
192
- }
193
- },
194
- "DescribeDocumentResult": {
195
- "base": null,
196
- "refs": {
197
- }
198
- },
199
- "DocumentAlreadyExists": {
200
- "base": "<p>The specified configuration document already exists.</p>",
201
- "refs": {
202
- }
203
- },
204
- "DocumentContent": {
205
- "base": null,
206
- "refs": {
207
- "CreateDocumentRequest$Content": "<p>A valid JSON file. For more information about the contents of this file, see <a href=\"http://docs.aws.amazon.com/ssm/latest/APIReference/aws-ssm-document.html\">Configuration Document</a>.</p>",
208
- "GetDocumentResult$Content": "<p>The contents of the configuration document.</p>"
209
- }
210
- },
211
- "DocumentDescription": {
212
- "base": "<p>Describes a configuration document.</p>",
213
- "refs": {
214
- "CreateDocumentResult$DocumentDescription": "<p>Information about the configuration document.</p>",
215
- "DescribeDocumentResult$Document": "<p>Information about the configuration document.</p>"
216
- }
217
- },
218
- "DocumentFilter": {
219
- "base": "<p>Describes a filter.</p>",
220
- "refs": {
221
- "DocumentFilterList$member": null
222
- }
223
- },
224
- "DocumentFilterKey": {
225
- "base": null,
226
- "refs": {
227
- "DocumentFilter$key": "<p>The name of the filter.</p>"
228
- }
229
- },
230
- "DocumentFilterList": {
231
- "base": null,
232
- "refs": {
233
- "ListDocumentsRequest$DocumentFilterList": "<p>One or more filters. Use a filter to return a more specific list of results.</p>"
234
- }
235
- },
236
- "DocumentFilterValue": {
237
- "base": null,
238
- "refs": {
239
- "DocumentFilter$value": "<p>The value of the filter.</p>"
240
- }
241
- },
242
- "DocumentIdentifier": {
243
- "base": "<p>Describes the name of a configuration document.</p>",
244
- "refs": {
245
- "DocumentIdentifierList$member": null
246
- }
247
- },
248
- "DocumentIdentifierList": {
249
- "base": null,
250
- "refs": {
251
- "ListDocumentsResult$DocumentIdentifiers": "<p>The names of the configuration documents.</p>"
252
- }
253
- },
254
- "DocumentLimitExceeded": {
255
- "base": "<p>You can have at most 100 active configuration documents.</p>",
256
- "refs": {
257
- }
258
- },
259
- "DocumentName": {
260
- "base": null,
261
- "refs": {
262
- "Association$Name": "<p>The name of the configuration document.</p>",
263
- "AssociationDescription$Name": "<p>The name of the configuration document.</p>",
264
- "CreateAssociationBatchRequestEntry$Name": "<p>The name of the configuration document.</p>",
265
- "CreateAssociationRequest$Name": "<p>The name of the configuration document.</p>",
266
- "CreateDocumentRequest$Name": "<p>A name for the configuration document.</p>",
267
- "DeleteAssociationRequest$Name": "<p>The name of the configuration document.</p>",
268
- "DeleteDocumentRequest$Name": "<p>The name of the configuration document.</p>",
269
- "DescribeAssociationRequest$Name": "<p>The name of the configuration document.</p>",
270
- "DescribeDocumentRequest$Name": "<p>The name of the configuration document.</p>",
271
- "DocumentDescription$Name": "<p>The name of the configuration document.</p>",
272
- "DocumentIdentifier$Name": "<p>The name of the configuration document.</p>",
273
- "GetDocumentRequest$Name": "<p>The name of the configuration document.</p>",
274
- "GetDocumentResult$Name": "<p>The name of the configuration document.</p>",
275
- "UpdateAssociationStatusRequest$Name": "<p>The name of the configuration document.</p>"
276
- }
277
- },
278
- "DocumentSha1": {
279
- "base": null,
280
- "refs": {
281
- "DocumentDescription$Sha1": "<p>The SHA1 hash of the document, which you can use for verification purposes.</p>"
282
- }
283
- },
284
- "DocumentStatus": {
285
- "base": null,
286
- "refs": {
287
- "DocumentDescription$Status": "<p>The status of the configuration document.</p>"
288
- }
289
- },
290
- "DuplicateInstanceId": {
291
- "base": "<p>You cannot specify an instance ID in more than one association.</p>",
292
- "refs": {
293
- }
294
- },
295
- "FailedCreateAssociation": {
296
- "base": "<p>Describes a failed association.</p>",
297
- "refs": {
298
- "FailedCreateAssociationList$member": null
299
- }
300
- },
301
- "FailedCreateAssociationList": {
302
- "base": null,
303
- "refs": {
304
- "CreateAssociationBatchResult$Failed": "<p>Information about the associations that failed.</p>"
305
- }
306
- },
307
- "Fault": {
308
- "base": null,
309
- "refs": {
310
- "FailedCreateAssociation$Fault": "<p>The source of the failure.</p>"
311
- }
312
- },
313
- "GetDocumentRequest": {
314
- "base": null,
315
- "refs": {
316
- }
317
- },
318
- "GetDocumentResult": {
319
- "base": null,
320
- "refs": {
321
- }
322
- },
323
- "InstanceId": {
324
- "base": null,
325
- "refs": {
326
- "Association$InstanceId": "<p>The ID of the instance.</p>",
327
- "AssociationDescription$InstanceId": "<p>The ID of the instance.</p>",
328
- "CreateAssociationBatchRequestEntry$InstanceId": "<p>The ID of the instance.</p>",
329
- "CreateAssociationRequest$InstanceId": "<p>The ID of the instance.</p>",
330
- "DeleteAssociationRequest$InstanceId": "<p>The ID of the instance.</p>",
331
- "DescribeAssociationRequest$InstanceId": "<p>The ID of the instance.</p>",
332
- "UpdateAssociationStatusRequest$InstanceId": "<p>The ID of the instance.</p>"
333
- }
334
- },
335
- "InternalServerError": {
336
- "base": "<p>An error occurred on the server side.</p>",
337
- "refs": {
338
- }
339
- },
340
- "InvalidDocument": {
341
- "base": "<p>The configuration document is not valid.</p>",
342
- "refs": {
343
- }
344
- },
345
- "InvalidDocumentContent": {
346
- "base": "<p>The content for the configuration document is not valid.</p>",
347
- "refs": {
348
- }
349
- },
350
- "InvalidInstanceId": {
351
- "base": "<p>You must specify the ID of a running instance.</p>",
352
- "refs": {
353
- }
354
- },
355
- "InvalidNextToken": {
356
- "base": "<p>The specified token is not valid.</p>",
357
- "refs": {
358
- }
359
- },
360
- "ListAssociationsRequest": {
361
- "base": null,
362
- "refs": {
363
- }
364
- },
365
- "ListAssociationsResult": {
366
- "base": null,
367
- "refs": {
368
- }
369
- },
370
- "ListDocumentsRequest": {
371
- "base": null,
372
- "refs": {
373
- }
374
- },
375
- "ListDocumentsResult": {
376
- "base": null,
377
- "refs": {
378
- }
379
- },
380
- "MaxDocumentSizeExceeded": {
381
- "base": "<p>The size limit of a configuration document is 64 KB.</p>",
382
- "refs": {
383
- }
384
- },
385
- "MaxResults": {
386
- "base": null,
387
- "refs": {
388
- "ListAssociationsRequest$MaxResults": "<p>The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.</p>",
389
- "ListDocumentsRequest$MaxResults": "<p>The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.</p>"
390
- }
391
- },
392
- "NextToken": {
393
- "base": null,
394
- "refs": {
395
- "ListAssociationsRequest$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
396
- "ListAssociationsResult$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>",
397
- "ListDocumentsRequest$NextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
398
- "ListDocumentsResult$NextToken": "<p>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.</p>"
399
- }
400
- },
401
- "StatusAdditionalInfo": {
402
- "base": null,
403
- "refs": {
404
- "AssociationStatus$AdditionalInfo": "<p>A user-defined string.</p>"
405
- }
406
- },
407
- "StatusMessage": {
408
- "base": null,
409
- "refs": {
410
- "AssociationStatus$Message": "<p>The reason for the status.</p>"
411
- }
412
- },
413
- "StatusUnchanged": {
414
- "base": "<p>The updated status is the same as the current status.</p>",
415
- "refs": {
416
- }
417
- },
418
- "String": {
419
- "base": null,
420
- "refs": {
421
- "InvalidDocumentContent$message": "<p>A description of the validation error.</p>"
422
- }
423
- },
424
- "TooManyUpdates": {
425
- "base": "<p>There are concurrent updates for a resource that supports one update at a time.</p>",
426
- "refs": {
427
- }
428
- },
429
- "UpdateAssociationStatusRequest": {
430
- "base": null,
431
- "refs": {
432
- }
433
- },
434
- "UpdateAssociationStatusResult": {
435
- "base": null,
436
- "refs": {
437
- }
438
- }
439
- }
440
- }
@@ -1,1331 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "ActivateGateway": "<p>This operation activates the gateway you previously deployed on your host. For more information, see <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/GettingStartedActivateGateway-common.html\"> Activate the AWS Storage Gateway</a>. In the activation process, you specify information such as the region you want to use for storing snapshots, the time zone for scheduled snapshots the gateway snapshot schedule window, an activation key, and a name for your gateway. The activation process also associates your gateway with your account; for more information, see <a>UpdateGatewayInformation</a>.</p> <note>You must turn on the gateway VM before you can activate your gateway.</note>",
5
- "AddCache": "<p>This operation configures one or more gateway local disks as cache for a cached-volume gateway. This operation is supported only for the gateway-cached volume architecture (see <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/StorageGatewayConcepts.html\">Storage Gateway Concepts</a>).</p> <p>In the request, you specify the gateway Amazon Resource Name (ARN) to which you want to add cache, and one or more disk IDs that you want to configure as cache. </p>",
6
- "AddUploadBuffer": "<p>This operation configures one or more gateway local disks as upload buffer for a specified gateway. This operation is supported for both the gateway-stored and gateway-cached volume architectures. </p> <p> In the request, you specify the gateway Amazon Resource Name (ARN) to which you want to add upload buffer, and one or more disk IDs that you want to configure as upload buffer.</p>",
7
- "AddWorkingStorage": "<p>This operation configures one or more gateway local disks as working storage for a gateway. This operation is supported only for the gateway-stored volume architecture. This operation is deprecated method in cached-volumes API version (20120630). Use AddUploadBuffer instead.</p> <note><p>Working storage is also referred to as upload buffer. You can also use the <a>AddUploadBuffer</a> operation to add upload buffer to a stored-volume gateway.</p></note> <p>In the request, you specify the gateway Amazon Resource Name (ARN) to which you want to add working storage, and one or more disk IDs that you want to configure as working storage.</p>",
8
- "CancelArchival": "<p>Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated. </p>",
9
- "CancelRetrieval": "<p>Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated. The virtual tape is returned to the VTS.</p>",
10
- "CreateCachediSCSIVolume": "<p>This operation creates a cached volume on a specified cached gateway. This operation is supported only for the gateway-cached volume architecture.</p> <note>Cache storage must be allocated to the gateway before you can create a cached volume. Use the <a>AddCache</a> operation to add cache storage to a gateway. </note> <p>In the request, you must specify the gateway, size of the volume in bytes, the iSCSI target name, an IP address on which to expose the target, and a unique client token. In response, AWS Storage Gateway creates the volume and returns information about it such as the volume Amazon Resource Name (ARN), its size, and the iSCSI target ARN that initiators can use to connect to the volume target.</p>",
11
- "CreateSnapshot": "<p>This operation initiates a snapshot of a volume.</p> <p>AWS Storage Gateway provides the ability to back up point-in-time snapshots of your data to Amazon Simple Storage (S3) for durable off-site recovery, as well as import the data to an Amazon Elastic Block Store (EBS) volume in Amazon Elastic Compute Cloud (EC2). You can take snapshots of your gateway volume on a scheduled or ad-hoc basis. This API enables you to take ad-hoc snapshot. For more information, see <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/WorkingWithSnapshots.html\">Working With Snapshots in the AWS Storage Gateway Console</a>.</p> <p>In the CreateSnapshot request you identify the volume by providing its Amazon Resource Name (ARN). You must also provide description for the snapshot. When AWS Storage Gateway takes the snapshot of specified volume, the snapshot and description appears in the AWS Storage Gateway Console. In response, AWS Storage Gateway returns you a snapshot ID. You can use this snapshot ID to check the snapshot progress or later use it when you want to create a volume from a snapshot.</p> <note>To list or delete a snapshot, you must use the Amazon EC2 API. For more information, see DescribeSnapshots or DeleteSnapshot in the <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_Operations.html\">EC2 API reference</a>.</note>",
12
- "CreateSnapshotFromVolumeRecoveryPoint": "<p>This operation initiates a snapshot of a gateway from a volume recovery point. This operation is supported only for the gateway-cached volume architecture (see ).</p> <p>A volume recovery point is a point in time at which all data of the volume is consistent and from which you can create a snapshot. To get a list of volume recovery point for gateway-cached volumes, use <a>ListVolumeRecoveryPoints</a>.</p> <p>In the <code>CreateSnapshotFromVolumeRecoveryPoint</code> request, you identify the volume by providing its Amazon Resource Name (ARN). You must also provide a description for the snapshot. When AWS Storage Gateway takes a snapshot of the specified volume, the snapshot and its description appear in the AWS Storage Gateway console. In response, AWS Storage Gateway returns you a snapshot ID. You can use this snapshot ID to check the snapshot progress or later use it when you want to create a volume from a snapshot.</p> <note> <p>To list or delete a snapshot, you must use the Amazon EC2 API. For more information, in <i>Amazon Elastic Compute Cloud API Reference</i>.</p> </note>",
13
- "CreateStorediSCSIVolume": "<p>This operation creates a volume on a specified gateway. This operation is supported only for the gateway-stored volume architecture. </p> <p>The size of the volume to create is inferred from the disk size. You can choose to preserve existing data on the disk, create volume from an existing snapshot, or create an empty volume. If you choose to create an empty gateway volume, then any existing data on the disk is erased.</p> <p>In the request you must specify the gateway and the disk information on which you are creating the volume. In response, AWS Storage Gateway creates the volume and returns volume information such as the volume Amazon Resource Name (ARN), its size, and the iSCSI target ARN that initiators can use to connect to the volume target.</p>",
14
- "CreateTapes": "<p>Creates one or more virtual tapes. You write data to the virtual tapes and then archive the tapes.</p> <note>Cache storage must be allocated to the gateway before you can create virtual tapes. Use the <a>AddCache</a> operation to add cache storage to a gateway. </note>",
15
- "DeleteBandwidthRateLimit": "<p>This operation deletes the bandwidth rate limits of a gateway. You can delete either the upload and download bandwidth rate limit, or you can delete both. If you delete only one of the limits, the other limit remains unchanged. To specify which gateway to work with, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
16
- "DeleteChapCredentials": "<p>This operation deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair.</p>",
17
- "DeleteGateway": "<p>This operation deletes a gateway. To specify which gateway to delete, use the Amazon Resource Name (ARN) of the gateway in your request. The operation deletes the gateway; however, it does not delete the gateway virtual machine (VM) from your host computer.</p> <p>After you delete a gateway, you cannot reactivate it. Completed snapshots of the gateway volumes are not deleted upon deleting the gateway, however, pending snapshots will not complete. After you delete a gateway, your next step is to remove it from your environment.</p> <important> <p>You no longer pay software charges after the gateway is deleted; however, your existing Amazon EBS snapshots persist and you will continue to be billed for these snapshots. You can choose to remove all remaining Amazon EBS snapshots by canceling your Amazon EC2 subscription.  If you prefer not to cancel your Amazon EC2 subscription, you can delete your snapshots using the Amazon EC2 console. For more information, see the <a href=\"http://aws.amazon.com/storagegateway\"> AWS Storage Gateway Detail Page</a>. </p> </important>",
18
- "DeleteSnapshotSchedule": "<p> This operation deletes a snapshot of a volume. </p> <p> You can take snapshots of your gateway volumes on a scheduled or ad-hoc basis. This API enables you to delete a snapshot schedule for a volume. For more information, see <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/WorkingWithSnapshots.html\">Working with Snapshots</a>. In the <code>DeleteSnapshotSchedule</code> request, you identify the volume by providing its Amazon Resource Name (ARN). </p> <note> <p>To list or delete a snapshot, you must use the Amazon EC2 API. in <i>Amazon Elastic Compute Cloud API Reference</i>.</p> </note>",
19
- "DeleteTape": "<p>Deletes the specified virtual tape.</p>",
20
- "DeleteTapeArchive": "<p>Deletes the specified virtual tape from the virtual tape shelf (VTS).</p>",
21
- "DeleteVolume": "<p>This operation delete the specified gateway volume that you previously created using the <a>CreateStorediSCSIVolume</a> API. For gateway-stored volumes, the local disk that was configured as the storage volume is not deleted. You can reuse the local disk to create another storage volume. </p> <p>Before you delete a gateway volume, make sure there are no iSCSI connections to the volume you are deleting. You should also make sure there is no snapshot in progress. You can use the Amazon Elastic Compute Cloud (Amazon EC2) API to query snapshots on the volume you are deleting and check the snapshot status. For more information, go to <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html\">DescribeSnapshots</a> in the <i>Amazon Elastic Compute Cloud API Reference</i>.</p> <p>In the request, you must provide the Amazon Resource Name (ARN) of the storage volume you want to delete.</p>",
22
- "DescribeBandwidthRateLimit": "<p>This operation returns the bandwidth rate limits of a gateway. By default, these limits are not set, which means no bandwidth rate limiting is in effect.</p> <p>This operation only returns a value for a bandwidth rate limit only if the limit is set. If no limits are set for the gateway, then this operation returns only the gateway ARN in the response body. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
23
- "DescribeCache": "<p>This operation returns information about the cache of a gateway. This operation is supported only for the gateway-cached volume architecture. </p> <p> The response includes disk IDs that are configured as cache, and it includes the amount of cache allocated and used. </p>",
24
- "DescribeCachediSCSIVolumes": "<p>This operation returns a description of the gateway volumes specified in the request. This operation is supported only for the gateway-cached volume architecture.</p> <p> The list of gateway volumes in the request must be from one gateway. In the response Amazon Storage Gateway returns volume information sorted by volume Amazon Resource Name (ARN). </p>",
25
- "DescribeChapCredentials": "<p>This operation returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair.</p>",
26
- "DescribeGatewayInformation": "<p>This operation returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not). To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
27
- "DescribeMaintenanceStartTime": "<p>This operation returns your gateway's weekly maintenance start time including the day and time of the week. Note that values are in terms of the gateway's time zone.</p>",
28
- "DescribeSnapshotSchedule": "<p>This operation describes the snapshot schedule for the specified gateway volume. The snapshot schedule information includes intervals at which snapshots are automatically initiated on the volume.</p>",
29
- "DescribeStorediSCSIVolumes": "<p>This operation returns the description of the gateway volumes specified in the request. The list of gateway volumes in the request must be from one gateway. In the response Amazon Storage Gateway returns volume information sorted by volume ARNs.</p>",
30
- "DescribeTapeArchives": "<p>Returns a description of specified virtual tapes in the virtual tape shelf (VTS). </p> <p>If a specific <code>TapeARN</code> is not specified, AWS Storage Gateway returns a description of all virtual tapes found in the VTS associated with your account.</p>",
31
- "DescribeTapeRecoveryPoints": "<p>Returns a list of virtual tape recovery points that are available for the specified gateway-VTL.</p> <p>A recovery point is a point in time view of a virtual tape at which all the data on the virtual tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway.</p>",
32
- "DescribeTapes": "<p>Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes. If a <code>TapeARN</code> is not specified, returns a description of all virtual tapes associated with the specified gateway.</p>",
33
- "DescribeUploadBuffer": "<p>This operation returns information about the upload buffer of a gateway. This operation is supported for both the gateway-stored and gateway-cached volume architectures. </p> <p> The response includes disk IDs that are configured as upload buffer space, and it includes the amount of upload buffer space allocated and used.</p>",
34
- "DescribeVTLDevices": "<p>Returns a description of virtual tape library (VTL) devices for the specified gateway. In the response, AWS Storage Gateway returns VTL device information. </p> <p>The list of VTL devices must be from one gateway.</p>",
35
- "DescribeWorkingStorage": "<p>This operation returns information about the working storage of a gateway. This operation is supported only for the gateway-stored volume architecture. This operation is deprecated in cached-volumes API version (20120630). Use DescribeUploadBuffer instead.</p> <note><p>Working storage is also referred to as upload buffer. You can also use the DescribeUploadBuffer operation to add upload buffer to a stored-volume gateway.</p></note> <p>The response includes disk IDs that are configured as working storage, and it includes the amount of working storage allocated and used.</p>",
36
- "DisableGateway": "<p>Disables a gateway when the gateway is no longer functioning. For example, if your gateway VM is damaged, you can disable the gateway so you can recover virtual tapes. </p> <p>Use this operation for a gateway-VTL that is not reachable or not functioning.</p> <important>Once a gateway is disabled it cannot be enabled.</important>",
37
- "ListGateways": "<p>This operation lists gateways owned by an AWS account in a region specified in the request. The returned list is ordered by gateway Amazon Resource Name (ARN).</p> <p>By default, the operation returns a maximum of 100 gateways. This operation supports pagination that allows you to optionally reduce the number of gateways returned in a response.</p> <p>If you have more gateways than are returned in a response-that is, the response returns only a truncated list of your gateways-the response contains a marker that you can specify in your next request to fetch the next page of gateways.</p>",
38
- "ListLocalDisks": "<p>This operation returns a list of the gateway's local disks. To specify which gateway to describe, you use the Amazon Resource Name (ARN) of the gateway in the body of the request.</p> <p>The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all. The response includes a <code>DiskStatus</code> field. This field can have a value of present (the disk is available to use), missing (the disk is no longer connected to the gateway), or mismatch (the disk node is occupied by a disk that has incorrect metadata or the disk content is corrupted). </p>",
39
- "ListVolumeInitiators": "<p>This operation lists iSCSI initiators that are connected to a volume. You can use this operation to determine whether a volume is being used or not.</p>",
40
- "ListVolumeRecoveryPoints": "<p>This operation lists the recovery points for a specified gateway. This operation is supported only for the gateway-cached volume architecture.</p> <p>Each gateway-cached volume has one recovery point. A volume recovery point is a point in time at which all data of the volume is consistent and from which you can create a snapshot. To create a snapshot from a volume recovery point use the <a>CreateSnapshotFromVolumeRecoveryPoint</a> operation.</p>",
41
- "ListVolumes": "<p>This operation lists the iSCSI stored volumes of a gateway. Results are sorted by volume ARN. The response includes only the volume ARNs. If you want additional volume information, use the <a>DescribeStorediSCSIVolumes</a> API.</p> <p>The operation supports pagination. By default, the operation returns a maximum of up to 100 volumes. You can optionally specify the <code>Limit</code> field in the body to limit the number of volumes in the response. If the number of volumes returned in the response is truncated, the response includes a Marker field. You can use this Marker value in your subsequent request to retrieve the next set of volumes.</p>",
42
- "ResetCache": "<p>This operation resets all cache disks that have encountered a error and makes the disks available for reconfiguration as cache storage. If your cache disk encounters a error, the gateway prevents read and write operations on virtual tapes in the gateway. For example, an error can occur when a disk is corrupted or removed from the gateway. When a cache is reset, the gateway loses its cache storage. At this point you can reconfigure the disks as cache disks. </p> <important> <p>If the cache disk you are resetting contains data that has not been uploaded to Amazon S3 yet, that data can be lost. After you reset cache disks, there will be no configured cache disks left in the gateway, so you must configure at least one new cache disk for your gateway to function properly.</p> </important>",
43
- "RetrieveTapeArchive": "<p>Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a gateway-VTL. Virtual tapes archived in the VTS are not associated with any gateway. However after a tape is retrieved, it is associated with a gateway, even though it is also listed in the VTS.</p> <p>Once a tape is successfully retrieved to a gateway, it cannot be retrieved again to another gateway. You must archive the tape again before you can retrieve it to another gateway.</p>",
44
- "RetrieveTapeRecoveryPoint": "<p>Retrieves the recovery point for the specified virtual tape.</p> <p>A recovery point is a point in time view of a virtual tape at which all the data on the tape is consistent. If your gateway crashes, virtual tapes that have recovery points can be recovered to a new gateway.</p> <note>The virtual tape can be retrieved to only one gateway. The retrieved tape is read-only. The virtual tape can be retrieved to only a gateway-VTL. There is no charge for retrieving recovery points.</note>",
45
- "ShutdownGateway": "<p>This operation shuts down a gateway. To specify which gateway to shut down, use the Amazon Resource Name (ARN) of the gateway in the body of your request.</p> <p>The operation shuts down the gateway service component running in the storage gateway's virtual machine (VM) and not the VM.</p> <note>If you want to shut down the VM, it is recommended that you first shut down the gateway component in the VM to avoid unpredictable conditions.</note> <p>After the gateway is shutdown, you cannot call any other API except <a>StartGateway</a>, <a>DescribeGatewayInformation</a>, and <a>ListGateways</a>. For more information, see <a>ActivateGateway</a>. Your applications cannot read from or write to the gateway's storage volumes, and there are no snapshots taken.</p> <note>When you make a shutdown request, you will get a <code>200 OK</code> success response immediately. However, it might take some time for the gateway to shut down. You can call the <a>DescribeGatewayInformation</a> API to check the status. For more information, see <a>ActivateGateway</a>.</note> <p>If do not intend to use the gateway again, you must delete the gateway (using <a>DeleteGateway</a>) to no longer pay software charges associated with the gateway.</p>",
46
- "StartGateway": "<p>This operation starts a gateway that you previously shut down (see <a>ShutdownGateway</a>). After the gateway starts, you can then make other API calls, your applications can read from or write to the gateway's storage volumes and you will be able to take snapshot backups.</p> <note>When you make a request, you will get a 200 OK success response immediately. However, it might take some time for the gateway to be ready. You should call <a>DescribeGatewayInformation</a> and check the status before making any additional API calls. For more information, see <a>ActivateGateway</a>.</note> <p>To specify which gateway to start, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
47
- "UpdateBandwidthRateLimit": "<p>This operation updates the bandwidth rate limits of a gateway. You can update both the upload and download bandwidth rate limit or specify only one of the two. If you don't set a bandwidth rate limit, the existing rate limit remains.</p> <p>By default, a gateway's bandwidth rate limits are not set. If you don't set any limit, the gateway does not have any limitations on its bandwidth usage and could potentially use the maximum available bandwidth.</p> <p>To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
48
- "UpdateChapCredentials": "<p>This operation updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target. By default, a gateway does not have CHAP enabled; however, for added security, you might use it.</p> <important> <p>When you update CHAP credentials, all existing connections on the target are closed and initiators must reconnect with the new credentials.</p> </important>",
49
- "UpdateGatewayInformation": "<p>This operation updates a gateway's metadata, which includes the gateway's name and time zone. To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.</p>",
50
- "UpdateGatewaySoftwareNow": "<p>This operation updates the gateway virtual machine (VM) software. The request immediately triggers the software update. </p> <note>When you make this request, you get a <code>200 OK</code> success response immediately. However, it might take some time for the update to complete. You can call <a>DescribeGatewayInformation</a> to verify the gateway is in the <code>STATE_RUNNING</code> state.</note> <important>A software update forces a system restart of your gateway. You can minimize the chance of any disruption to your applications by increasing your iSCSI Initiators' timeouts. For more information about increasing iSCSI Initiator timeouts for Windows and Linux, see <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorWindowsClient.html#CustomizeWindowsiSCSISettings\">Customizing Your Windows iSCSI Settings</a> and <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/ConfiguringiSCSIClientInitiatorRedHatClient.html#CustomizeLinuxiSCSISettings\">Customizing Your Linux iSCSI Settings</a>, respectively.</important>",
51
- "UpdateMaintenanceStartTime": "<p>This operation updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is the time in your gateway's time zone.</p>",
52
- "UpdateSnapshotSchedule": "<p>This operation updates a snapshot schedule configured for a gateway volume.</p> <p>The default snapshot schedule for volume is once every 24 hours, starting at the creation time of the volume. You can use this API to change the snapshot schedule configured for the volume.</p> <p>In the request you must identify the gateway volume whose snapshot schedule you want to update, and the schedule information, including when you want the snapshot to begin on a day and the frequency (in hours) of snapshots.</p>",
53
- "UpdateVTLDeviceType": "<p>This operation updates the type of medium changer in a gateway-VTL. When you activate a gateway-VTL, you select a medium changer type for the gateway-VTL. This operation enables you to select a different type of medium changer after a gateway-VTL is activated.</p>"
54
- },
55
- "service": "<fullname>AWS Storage Gateway Service</fullname> <p>AWS Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and AWS's storage infrastructure. The service enables you to securely upload data to the AWS cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>AWS Storage Gateway Service API Reference</i>:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayHTTPRequestsHeaders.html\">AWS Storage Gateway Required Request Headers</a>: Describes the required headers that you must send with every POST request to AWS Storage Gateway.</li> <li> <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewaySigningRequests.html\">Signing Requests</a>: AWS Storage Gateway requires that you authenticate every request you send; this topic describes how sign such a request.</li> <li> <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/APIErrorResponses.html\">Error Responses</a>: Provides reference information about AWS Storage Gateway errors.</li> <li> <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPIOperations.html\">Operations in AWS Storage Gateway</a>: Contains detailed descriptions of all AWS Storage Gateway operations, their request parameters, response elements, possible errors, and examples of requests and responses.</li> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/index.html?rande.html\">AWS Storage Gateway Regions and Endpoints</a>: Provides a list of each of the regions and endpoints available for use with AWS Storage Gateway. </li> </ul>",
56
- "shapes": {
57
- "ActivateGatewayInput": {
58
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>ActivateGatewayInput$ActivationKey</a> </li> <li> <a>GatewayName</a> </li> <li> <a>ActivateGatewayInput$GatewayRegion</a> </li> <li> <a>ActivateGatewayInput$GatewayTimezone</a> </li> <li> <a>ActivateGatewayInput$GatewayType</a> </li> <li> <a>ActivateGatewayInput$TapeDriveType</a> </li> <li> <a>ActivateGatewayInput$MediumChangerType</a> </li> </ul>",
59
- "refs": {
60
- }
61
- },
62
- "ActivateGatewayOutput": {
63
- "base": "<p>AWS Storage Gateway returns the Amazon Resource Name (ARN) of the activated gateway. It is a string made of information such as your account, gateway name, and region. This ARN is used to reference the gateway in other API operations as well as resource-based authorization.</p>",
64
- "refs": {
65
- }
66
- },
67
- "ActivationKey": {
68
- "base": null,
69
- "refs": {
70
- "ActivateGatewayInput$ActivationKey": "<p>Your gateway activation key. You can obtain the activation key by sending an HTTP GET request with redirects enabled to the gateway IP address (port 80). The redirect URL returned in the response provides you the activation key for your gateway in the query string parameter <code>activationKey</code>. It may also include other activation-related parameters, however, these are merely defaults -- the arguments you pass to the <code>ActivateGateway</code> API call determine the actual configuration of your gateway.</p>"
71
- }
72
- },
73
- "AddCacheInput": {
74
- "base": null,
75
- "refs": {
76
- }
77
- },
78
- "AddCacheOutput": {
79
- "base": null,
80
- "refs": {
81
- }
82
- },
83
- "AddUploadBufferInput": {
84
- "base": null,
85
- "refs": {
86
- }
87
- },
88
- "AddUploadBufferOutput": {
89
- "base": null,
90
- "refs": {
91
- }
92
- },
93
- "AddWorkingStorageInput": {
94
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>AddWorkingStorageInput$DiskIds</a> </li> </ul>",
95
- "refs": {
96
- }
97
- },
98
- "AddWorkingStorageOutput": {
99
- "base": "<p>A JSON object containing the of the gateway for which working storage was configured.</p>",
100
- "refs": {
101
- }
102
- },
103
- "BandwidthDownloadRateLimit": {
104
- "base": null,
105
- "refs": {
106
- "DescribeBandwidthRateLimitOutput$AverageDownloadRateLimitInBitsPerSec": "<p>The average download bandwidth rate limit in bits per second. This field does not appear in the response if the download rate limit is not set.</p>",
107
- "UpdateBandwidthRateLimitInput$AverageDownloadRateLimitInBitsPerSec": "<p>The average download bandwidth rate limit in bits per second.</p>"
108
- }
109
- },
110
- "BandwidthType": {
111
- "base": null,
112
- "refs": {
113
- "DeleteBandwidthRateLimitInput$BandwidthType": null
114
- }
115
- },
116
- "BandwidthUploadRateLimit": {
117
- "base": null,
118
- "refs": {
119
- "DescribeBandwidthRateLimitOutput$AverageUploadRateLimitInBitsPerSec": "<p>The average upload bandwidth rate limit in bits per second. This field does not appear in the response if the upload rate limit is not set.</p>",
120
- "UpdateBandwidthRateLimitInput$AverageUploadRateLimitInBitsPerSec": "<p>The average upload bandwidth rate limit in bits per second.</p>"
121
- }
122
- },
123
- "CachediSCSIVolume": {
124
- "base": null,
125
- "refs": {
126
- "CachediSCSIVolumes$member": null
127
- }
128
- },
129
- "CachediSCSIVolumes": {
130
- "base": null,
131
- "refs": {
132
- "DescribeCachediSCSIVolumesOutput$CachediSCSIVolumes": "<p>An array of objects where each object contains metadata about one cached volume.</p>"
133
- }
134
- },
135
- "CancelArchivalInput": {
136
- "base": "<p>CancelArchivalInput</p>",
137
- "refs": {
138
- }
139
- },
140
- "CancelArchivalOutput": {
141
- "base": "<p>CancelArchivalOutput</p>",
142
- "refs": {
143
- }
144
- },
145
- "CancelRetrievalInput": {
146
- "base": "<p>CancelRetrievalInput</p>",
147
- "refs": {
148
- }
149
- },
150
- "CancelRetrievalOutput": {
151
- "base": "<p>CancelRetrievalOutput</p>",
152
- "refs": {
153
- }
154
- },
155
- "ChapCredentials": {
156
- "base": null,
157
- "refs": {
158
- "DescribeChapCredentialsOutput$ChapCredentials": "<p>An array of <a>ChapInfo</a> objects that represent CHAP credentials. Each object in the array contains CHAP credential information for one target-initiator pair. If no CHAP credentials are set, an empty array is returned. CHAP credential information is provided in a JSON object with the following fields:</p> <ul> <li> <p><b>InitiatorName</b>: The iSCSI initiator that connects to the target.</p> </li> <li> <p><b>SecretToAuthenticateInitiator</b>: The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.</p> </li> <li> <p><b>SecretToAuthenticateTarget</b>: The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).</p> </li> <li> <p><b>TargetARN</b>: The Amazon Resource Name (ARN) of the storage volume.</p> </li> </ul>"
159
- }
160
- },
161
- "ChapInfo": {
162
- "base": "<p>Describes Challenge-Handshake Authentication Protocol (CHAP) information that supports authentication between your gateway and iSCSI initiators.</p>",
163
- "refs": {
164
- "ChapCredentials$member": null
165
- }
166
- },
167
- "ChapSecret": {
168
- "base": null,
169
- "refs": {
170
- "ChapInfo$SecretToAuthenticateInitiator": "<p>The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.</p>",
171
- "ChapInfo$SecretToAuthenticateTarget": "<p>The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).</p>",
172
- "UpdateChapCredentialsInput$SecretToAuthenticateInitiator": "<p>The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.</p> <note>The secret key must be between 12 and 16 bytes when encoded in UTF-8.</note>",
173
- "UpdateChapCredentialsInput$SecretToAuthenticateTarget": "<p>The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).</p> <p>Byte constraints: Minimum bytes of 12. Maximum bytes of 16.</p> <note>The secret key must be between 12 and 16 bytes when encoded in UTF-8.</note>"
174
- }
175
- },
176
- "ClientToken": {
177
- "base": null,
178
- "refs": {
179
- "CreateCachediSCSIVolumeInput$ClientToken": null,
180
- "CreateTapesInput$ClientToken": "<p>A unique identifier that you use to retry a request. If you retry a request, use the same <code>ClientToken</code> you specified in the initial request.</p> <note>Using the same <code>ClientToken</code> prevents creating the tape multiple times.</note>"
181
- }
182
- },
183
- "CreateCachediSCSIVolumeInput": {
184
- "base": null,
185
- "refs": {
186
- }
187
- },
188
- "CreateCachediSCSIVolumeOutput": {
189
- "base": null,
190
- "refs": {
191
- }
192
- },
193
- "CreateSnapshotFromVolumeRecoveryPointInput": {
194
- "base": null,
195
- "refs": {
196
- }
197
- },
198
- "CreateSnapshotFromVolumeRecoveryPointOutput": {
199
- "base": null,
200
- "refs": {
201
- }
202
- },
203
- "CreateSnapshotInput": {
204
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>CreateSnapshotInput$SnapshotDescription</a> </li> <li> <a>CreateSnapshotInput$VolumeARN</a> </li> </ul>",
205
- "refs": {
206
- }
207
- },
208
- "CreateSnapshotOutput": {
209
- "base": "<p>A JSON object containing the following fields:</p>",
210
- "refs": {
211
- }
212
- },
213
- "CreateStorediSCSIVolumeInput": {
214
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>CreateStorediSCSIVolumeInput$DiskId</a> </li> <li> <a>CreateStorediSCSIVolumeInput$NetworkInterfaceId</a> </li> <li> <a>CreateStorediSCSIVolumeInput$PreserveExistingData</a> </li> <li> <a>CreateStorediSCSIVolumeInput$SnapshotId</a> </li> <li> <a>CreateStorediSCSIVolumeInput$TargetName</a> </li> </ul>",
215
- "refs": {
216
- }
217
- },
218
- "CreateStorediSCSIVolumeOutput": {
219
- "base": "<p>A JSON object containing the following fields:</p>",
220
- "refs": {
221
- }
222
- },
223
- "CreateTapesInput": {
224
- "base": "<p>CreateTapesInput</p>",
225
- "refs": {
226
- }
227
- },
228
- "CreateTapesOutput": {
229
- "base": "<p>CreateTapeOutput</p>",
230
- "refs": {
231
- }
232
- },
233
- "DayOfWeek": {
234
- "base": null,
235
- "refs": {
236
- "DescribeMaintenanceStartTimeOutput$DayOfWeek": null,
237
- "UpdateMaintenanceStartTimeInput$DayOfWeek": "<p>The maintenance start time day of the week.</p>"
238
- }
239
- },
240
- "DeleteBandwidthRateLimitInput": {
241
- "base": null,
242
- "refs": {
243
- }
244
- },
245
- "DeleteBandwidthRateLimitOutput": {
246
- "base": "<p>A JSON object containing the of the gateway whose bandwidth rate information was deleted.</p>",
247
- "refs": {
248
- }
249
- },
250
- "DeleteChapCredentialsInput": {
251
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>DeleteChapCredentialsInput$InitiatorName</a> </li> <li> <a>DeleteChapCredentialsInput$TargetARN</a> </li> </ul>",
252
- "refs": {
253
- }
254
- },
255
- "DeleteChapCredentialsOutput": {
256
- "base": "<p>A JSON object containing the following fields:</p>",
257
- "refs": {
258
- }
259
- },
260
- "DeleteGatewayInput": {
261
- "base": "<p>A JSON object containing the id of the gateway to delete.</p>",
262
- "refs": {
263
- }
264
- },
265
- "DeleteGatewayOutput": {
266
- "base": "<p>A JSON object containing the id of the deleted gateway.</p>",
267
- "refs": {
268
- }
269
- },
270
- "DeleteSnapshotScheduleInput": {
271
- "base": null,
272
- "refs": {
273
- }
274
- },
275
- "DeleteSnapshotScheduleOutput": {
276
- "base": null,
277
- "refs": {
278
- }
279
- },
280
- "DeleteTapeArchiveInput": {
281
- "base": "<p>DeleteTapeArchiveInput</p>",
282
- "refs": {
283
- }
284
- },
285
- "DeleteTapeArchiveOutput": {
286
- "base": "<p>DeleteTapeArchiveOutput</p>",
287
- "refs": {
288
- }
289
- },
290
- "DeleteTapeInput": {
291
- "base": "<p>DeleteTapeInput</p>",
292
- "refs": {
293
- }
294
- },
295
- "DeleteTapeOutput": {
296
- "base": "<p>DeleteTapeOutput</p>",
297
- "refs": {
298
- }
299
- },
300
- "DeleteVolumeInput": {
301
- "base": "<p>A JSON object containing the <a>DeleteVolumeInput$VolumeARN</a> to delete.</p>",
302
- "refs": {
303
- }
304
- },
305
- "DeleteVolumeOutput": {
306
- "base": "<p>A JSON object containing the of the storage volume that was deleted</p>",
307
- "refs": {
308
- }
309
- },
310
- "DescribeBandwidthRateLimitInput": {
311
- "base": "<p>A JSON object containing the of the gateway.</p>",
312
- "refs": {
313
- }
314
- },
315
- "DescribeBandwidthRateLimitOutput": {
316
- "base": "<p>A JSON object containing the following fields:</p>",
317
- "refs": {
318
- }
319
- },
320
- "DescribeCacheInput": {
321
- "base": null,
322
- "refs": {
323
- }
324
- },
325
- "DescribeCacheOutput": {
326
- "base": null,
327
- "refs": {
328
- }
329
- },
330
- "DescribeCachediSCSIVolumesInput": {
331
- "base": null,
332
- "refs": {
333
- }
334
- },
335
- "DescribeCachediSCSIVolumesOutput": {
336
- "base": "<p>A JSON object containing the following fields:</p>",
337
- "refs": {
338
- }
339
- },
340
- "DescribeChapCredentialsInput": {
341
- "base": "<p>A JSON object containing the Amazon Resource Name (ARN) of the iSCSI volume target.</p>",
342
- "refs": {
343
- }
344
- },
345
- "DescribeChapCredentialsOutput": {
346
- "base": "<p>A JSON object containing a .</p>",
347
- "refs": {
348
- }
349
- },
350
- "DescribeGatewayInformationInput": {
351
- "base": "<p>A JSON object containing the id of the gateway.</p>",
352
- "refs": {
353
- }
354
- },
355
- "DescribeGatewayInformationOutput": {
356
- "base": "<p>A JSON object containing the following fields:</p>",
357
- "refs": {
358
- }
359
- },
360
- "DescribeMaintenanceStartTimeInput": {
361
- "base": "<p>A JSON object containing the of the gateway.</p>",
362
- "refs": {
363
- }
364
- },
365
- "DescribeMaintenanceStartTimeOutput": {
366
- "base": null,
367
- "refs": {
368
- }
369
- },
370
- "DescribeSnapshotScheduleInput": {
371
- "base": "<p>A JSON object containing the <a>DescribeSnapshotScheduleInput$VolumeARN</a> of the volume.</p>",
372
- "refs": {
373
- }
374
- },
375
- "DescribeSnapshotScheduleOutput": {
376
- "base": null,
377
- "refs": {
378
- }
379
- },
380
- "DescribeStorediSCSIVolumesInput": {
381
- "base": "<p>A JSON Object containing a list of <a>DescribeStorediSCSIVolumesInput$VolumeARNs</a>.</p>",
382
- "refs": {
383
- }
384
- },
385
- "DescribeStorediSCSIVolumesOutput": {
386
- "base": null,
387
- "refs": {
388
- }
389
- },
390
- "DescribeTapeArchivesInput": {
391
- "base": "<p>DescribeTapeArchivesInput</p>",
392
- "refs": {
393
- }
394
- },
395
- "DescribeTapeArchivesOutput": {
396
- "base": "<p>DescribeTapeArchivesOutput</p>",
397
- "refs": {
398
- }
399
- },
400
- "DescribeTapeRecoveryPointsInput": {
401
- "base": "<p>DescribeTapeRecoveryPointsInput</p>",
402
- "refs": {
403
- }
404
- },
405
- "DescribeTapeRecoveryPointsOutput": {
406
- "base": "<p>DescribeTapeRecoveryPointsOutput</p>",
407
- "refs": {
408
- }
409
- },
410
- "DescribeTapesInput": {
411
- "base": "<p>DescribeTapesInput</p>",
412
- "refs": {
413
- }
414
- },
415
- "DescribeTapesOutput": {
416
- "base": "<p>DescribeTapesOutput</p>",
417
- "refs": {
418
- }
419
- },
420
- "DescribeUploadBufferInput": {
421
- "base": null,
422
- "refs": {
423
- }
424
- },
425
- "DescribeUploadBufferOutput": {
426
- "base": null,
427
- "refs": {
428
- }
429
- },
430
- "DescribeVTLDevicesInput": {
431
- "base": "<p>DescribeVTLDevicesInput</p>",
432
- "refs": {
433
- }
434
- },
435
- "DescribeVTLDevicesOutput": {
436
- "base": "<p>DescribeVTLDevicesOutput</p>",
437
- "refs": {
438
- }
439
- },
440
- "DescribeWorkingStorageInput": {
441
- "base": "<p>A JSON object containing the of the gateway.</p>",
442
- "refs": {
443
- }
444
- },
445
- "DescribeWorkingStorageOutput": {
446
- "base": "<p>A JSON object containing the following fields:</p>",
447
- "refs": {
448
- }
449
- },
450
- "Description": {
451
- "base": null,
452
- "refs": {
453
- "DescribeSnapshotScheduleOutput$Description": null,
454
- "UpdateSnapshotScheduleInput$Description": "<p>Optional description of the snapshot that overwrites the existing description.</p>"
455
- }
456
- },
457
- "DeviceType": {
458
- "base": null,
459
- "refs": {
460
- "UpdateVTLDeviceTypeInput$DeviceType": "<p>The type of medium changer you want to select.</p> <p><i>Valid Values</i>: \"STK-L700\", \"AWS-Gateway-VTL\"</p>"
461
- }
462
- },
463
- "DeviceiSCSIAttributes": {
464
- "base": "<p>Lists iSCSI information about a VTL device.</p>",
465
- "refs": {
466
- "VTLDevice$DeviceiSCSIAttributes": "<p>A list of iSCSI information about a VTL device.</p>"
467
- }
468
- },
469
- "DisableGatewayInput": {
470
- "base": "<p>DisableGatewayInput</p>",
471
- "refs": {
472
- }
473
- },
474
- "DisableGatewayOutput": {
475
- "base": "<p>DisableGatewayOutput</p>",
476
- "refs": {
477
- }
478
- },
479
- "Disk": {
480
- "base": null,
481
- "refs": {
482
- "Disks$member": null
483
- }
484
- },
485
- "DiskAllocationType": {
486
- "base": null,
487
- "refs": {
488
- "Disk$DiskAllocationType": null
489
- }
490
- },
491
- "DiskId": {
492
- "base": null,
493
- "refs": {
494
- "CreateStorediSCSIVolumeInput$DiskId": "<p>The unique identifier for the gateway local disk that is configured as a stored volume. Use <a href=\"http://docs.aws.amazon.com/storagegateway/latest/userguide/API_ListLocalDisks.html\">ListLocalDisks</a> to list disk IDs for a gateway.</p>",
495
- "Disk$DiskId": null,
496
- "DiskIds$member": null,
497
- "StorediSCSIVolume$VolumeDiskId": null
498
- }
499
- },
500
- "DiskIds": {
501
- "base": null,
502
- "refs": {
503
- "AddCacheInput$DiskIds": null,
504
- "AddUploadBufferInput$DiskIds": null,
505
- "AddWorkingStorageInput$DiskIds": "<p>An array of strings that identify disks that are to be configured as working storage. Each string have a minimum length of 1 and maximum length of 300. You can get the disk IDs from the <a>ListLocalDisks</a> API.</p>",
506
- "DescribeCacheOutput$DiskIds": null,
507
- "DescribeUploadBufferOutput$DiskIds": null,
508
- "DescribeWorkingStorageOutput$DiskIds": "<p>An array of the gateway's local disk IDs that are configured as working storage. Each local disk ID is specified as a string (minimum length of 1 and maximum length of 300). If no local disks are configured as working storage, then the DiskIds array is empty.</p>"
509
- }
510
- },
511
- "Disks": {
512
- "base": null,
513
- "refs": {
514
- "ListLocalDisksOutput$Disks": null
515
- }
516
- },
517
- "DoubleObject": {
518
- "base": null,
519
- "refs": {
520
- "CachediSCSIVolume$VolumeProgress": null,
521
- "StorediSCSIVolume$VolumeProgress": null,
522
- "Tape$Progress": "<p>For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.</p> <p>Range: 0 (not started) to 100 (complete).</p>"
523
- }
524
- },
525
- "ErrorCode": {
526
- "base": null,
527
- "refs": {
528
- "StorageGatewayError$errorCode": "<p>Additional information about the error.</p>"
529
- }
530
- },
531
- "GatewayARN": {
532
- "base": "<p>The Amazon Resource Name (ARN) of the gateway. Use the <a>ListGateways</a> operation to return a list of gateways for your account and region.</p>",
533
- "refs": {
534
- "ActivateGatewayOutput$GatewayARN": null,
535
- "AddCacheInput$GatewayARN": null,
536
- "AddCacheOutput$GatewayARN": null,
537
- "AddUploadBufferInput$GatewayARN": null,
538
- "AddUploadBufferOutput$GatewayARN": null,
539
- "AddWorkingStorageInput$GatewayARN": null,
540
- "AddWorkingStorageOutput$GatewayARN": null,
541
- "CancelArchivalInput$GatewayARN": null,
542
- "CancelRetrievalInput$GatewayARN": null,
543
- "CreateCachediSCSIVolumeInput$GatewayARN": null,
544
- "CreateStorediSCSIVolumeInput$GatewayARN": null,
545
- "CreateTapesInput$GatewayARN": "<p>The unique Amazon Resource Name(ARN) that represents the gateway to associate the virtual tapes with. Use the <a>ListGateways</a> operation to return a list of gateways for your account and region.</p>",
546
- "DeleteBandwidthRateLimitInput$GatewayARN": null,
547
- "DeleteBandwidthRateLimitOutput$GatewayARN": null,
548
- "DeleteGatewayInput$GatewayARN": null,
549
- "DeleteGatewayOutput$GatewayARN": null,
550
- "DeleteTapeInput$GatewayARN": "<p>The unique Amazon Resource Name (ARN) of the gateway that the virtual tape to delete is associated with. Use the <a>ListGateways</a> operation to return a list of gateways for your account and region.</p>",
551
- "DescribeBandwidthRateLimitInput$GatewayARN": null,
552
- "DescribeBandwidthRateLimitOutput$GatewayARN": null,
553
- "DescribeCacheInput$GatewayARN": null,
554
- "DescribeCacheOutput$GatewayARN": null,
555
- "DescribeGatewayInformationInput$GatewayARN": null,
556
- "DescribeGatewayInformationOutput$GatewayARN": null,
557
- "DescribeMaintenanceStartTimeInput$GatewayARN": null,
558
- "DescribeMaintenanceStartTimeOutput$GatewayARN": null,
559
- "DescribeTapeRecoveryPointsInput$GatewayARN": null,
560
- "DescribeTapeRecoveryPointsOutput$GatewayARN": null,
561
- "DescribeTapesInput$GatewayARN": null,
562
- "DescribeUploadBufferInput$GatewayARN": null,
563
- "DescribeUploadBufferOutput$GatewayARN": null,
564
- "DescribeVTLDevicesInput$GatewayARN": null,
565
- "DescribeVTLDevicesOutput$GatewayARN": null,
566
- "DescribeWorkingStorageInput$GatewayARN": null,
567
- "DescribeWorkingStorageOutput$GatewayARN": null,
568
- "DisableGatewayInput$GatewayARN": null,
569
- "DisableGatewayOutput$GatewayARN": "<p>The unique Amazon Resource Name of the disabled gateway.</p>",
570
- "GatewayInfo$GatewayARN": null,
571
- "ListLocalDisksInput$GatewayARN": null,
572
- "ListLocalDisksOutput$GatewayARN": null,
573
- "ListVolumeRecoveryPointsInput$GatewayARN": null,
574
- "ListVolumeRecoveryPointsOutput$GatewayARN": null,
575
- "ListVolumesInput$GatewayARN": null,
576
- "ListVolumesOutput$GatewayARN": null,
577
- "ResetCacheInput$GatewayARN": null,
578
- "ResetCacheOutput$GatewayARN": null,
579
- "RetrieveTapeArchiveInput$GatewayARN": "<p>The Amazon Resource Name (ARN) of the gateway you want to retrieve the virtual tape to. Use the <a>ListGateways</a> operation to return a list of gateways for your account and region.</p> <p>You retrieve archived virtual tapes to only one gateway and the gateway must be a gateway-VTL.</p>",
580
- "RetrieveTapeRecoveryPointInput$GatewayARN": null,
581
- "ShutdownGatewayInput$GatewayARN": null,
582
- "ShutdownGatewayOutput$GatewayARN": null,
583
- "StartGatewayInput$GatewayARN": null,
584
- "StartGatewayOutput$GatewayARN": null,
585
- "TapeArchive$RetrievedTo": "<p>The Amazon Resource Name (ARN) of the gateway-VTL that the virtual tape is being retrieved to. </p> <p>The virtual tape is retrieved from the virtual tape shelf (VTS).</p>",
586
- "UpdateBandwidthRateLimitInput$GatewayARN": null,
587
- "UpdateBandwidthRateLimitOutput$GatewayARN": null,
588
- "UpdateGatewayInformationInput$GatewayARN": null,
589
- "UpdateGatewayInformationOutput$GatewayARN": null,
590
- "UpdateGatewaySoftwareNowInput$GatewayARN": null,
591
- "UpdateGatewaySoftwareNowOutput$GatewayARN": null,
592
- "UpdateMaintenanceStartTimeInput$GatewayARN": null,
593
- "UpdateMaintenanceStartTimeOutput$GatewayARN": null
594
- }
595
- },
596
- "GatewayId": {
597
- "base": null,
598
- "refs": {
599
- "DescribeGatewayInformationOutput$GatewayId": "<p>The gateway ID.</p>"
600
- }
601
- },
602
- "GatewayInfo": {
603
- "base": null,
604
- "refs": {
605
- "Gateways$member": null
606
- }
607
- },
608
- "GatewayName": {
609
- "base": "<p>A unique identifier for your gateway. This name becomes part of the gateway Amazon Resources Name (ARN) which is what you use as an input to other operations.</p>",
610
- "refs": {
611
- "ActivateGatewayInput$GatewayName": null,
612
- "UpdateGatewayInformationInput$GatewayName": null
613
- }
614
- },
615
- "GatewayNetworkInterfaces": {
616
- "base": null,
617
- "refs": {
618
- "DescribeGatewayInformationOutput$GatewayNetworkInterfaces": "<p>A <a>NetworkInterface</a> array that contains descriptions of the gateway network interfaces.</p>"
619
- }
620
- },
621
- "GatewayOperationalState": {
622
- "base": null,
623
- "refs": {
624
- "GatewayInfo$GatewayOperationalState": null
625
- }
626
- },
627
- "GatewayState": {
628
- "base": null,
629
- "refs": {
630
- "DescribeGatewayInformationOutput$GatewayState": "<p>One of the values that indicates the operating state of the gateway.</p>"
631
- }
632
- },
633
- "GatewayTimezone": {
634
- "base": null,
635
- "refs": {
636
- "ActivateGatewayInput$GatewayTimezone": "<p>One of the values that indicates the time zone you want to set for the gateway. The time zone is used, for example, for scheduling snapshots and your gateway's maintenance schedule.</p>",
637
- "DescribeGatewayInformationOutput$GatewayTimezone": "<p>One of the values that indicates the time zone configured for the gateway.</p>",
638
- "DescribeMaintenanceStartTimeOutput$Timezone": null,
639
- "DescribeSnapshotScheduleOutput$Timezone": null,
640
- "UpdateGatewayInformationInput$GatewayTimezone": null
641
- }
642
- },
643
- "GatewayType": {
644
- "base": null,
645
- "refs": {
646
- "ActivateGatewayInput$GatewayType": "<p>One of the values that defines the type of gateway to activate. The type specified is critical to all later functions of the gateway and cannot be changed after activation. The default value is <code>STORED</code>. </p>",
647
- "DescribeGatewayInformationOutput$GatewayType": "<p>The type of the gateway.</p>",
648
- "GatewayInfo$GatewayType": null
649
- }
650
- },
651
- "Gateways": {
652
- "base": null,
653
- "refs": {
654
- "ListGatewaysOutput$Gateways": null
655
- }
656
- },
657
- "HourOfDay": {
658
- "base": null,
659
- "refs": {
660
- "DescribeMaintenanceStartTimeOutput$HourOfDay": null,
661
- "DescribeSnapshotScheduleOutput$StartAt": null,
662
- "UpdateMaintenanceStartTimeInput$HourOfDay": "<p>The hour component of the maintenance start time represented as <emphasis>hh</emphasis>, where <i>hh</i> is the hour (00 to 23). The hour of the day is in the time zone of the gateway.</p>",
663
- "UpdateSnapshotScheduleInput$StartAt": "<p>The hour of the day at which the snapshot schedule begins represented as <i>hh</i>, where <i>hh</i> is the hour (0 to 23). The hour of the day is in the time zone of the gateway.</p>"
664
- }
665
- },
666
- "Initiator": {
667
- "base": null,
668
- "refs": {
669
- "Initiators$member": null
670
- }
671
- },
672
- "Initiators": {
673
- "base": null,
674
- "refs": {
675
- "ListVolumeInitiatorsOutput$Initiators": "<p>The host names and port numbers of all iSCSI initiators that are connected to the gateway.</p>"
676
- }
677
- },
678
- "InternalServerError": {
679
- "base": "<p>An internal server error has occurred during the request. See the error and message fields for more information.</p>",
680
- "refs": {
681
- }
682
- },
683
- "InvalidGatewayRequestException": {
684
- "base": "<p>An exception occurred because an invalid gateway request was issued to the service. See the error and message fields for more information.</p>",
685
- "refs": {
686
- }
687
- },
688
- "IqnName": {
689
- "base": null,
690
- "refs": {
691
- "ChapInfo$InitiatorName": "<p>The iSCSI initiator that connects to the target.</p>",
692
- "DeleteChapCredentialsInput$InitiatorName": "<p>The iSCSI initiator that connects to the target.</p>",
693
- "DeleteChapCredentialsOutput$InitiatorName": "<p>The iSCSI initiator that connects to the target.</p>",
694
- "UpdateChapCredentialsInput$InitiatorName": "<p>The iSCSI initiator that connects to the target.</p>",
695
- "UpdateChapCredentialsOutput$InitiatorName": "<p>The iSCSI initiator that connects to the target. This is the same initiator name specified in the request.</p>"
696
- }
697
- },
698
- "LastSoftwareUpdate": {
699
- "base": null,
700
- "refs": {
701
- "DescribeGatewayInformationOutput$LastSoftwareUpdate": "<p>The date on which the last software update was applied to the gateway. If the gateway has never been updated, this field does not return a value in the response.</p>"
702
- }
703
- },
704
- "ListGatewaysInput": {
705
- "base": "<p>A JSON object containing zero or more of the following fields:</p> <ul> <li> <a>ListGatewaysInput$Limit</a> </li> <li> <a>ListGatewaysInput$Marker</a> </li> </ul>",
706
- "refs": {
707
- }
708
- },
709
- "ListGatewaysOutput": {
710
- "base": null,
711
- "refs": {
712
- }
713
- },
714
- "ListLocalDisksInput": {
715
- "base": "<p>A JSON object containing the of the gateway.</p>",
716
- "refs": {
717
- }
718
- },
719
- "ListLocalDisksOutput": {
720
- "base": null,
721
- "refs": {
722
- }
723
- },
724
- "ListVolumeInitiatorsInput": {
725
- "base": "<p>ListVolumeInitiatorsInput</p>",
726
- "refs": {
727
- }
728
- },
729
- "ListVolumeInitiatorsOutput": {
730
- "base": "<p>ListVolumeInitiatorsOutput</p>",
731
- "refs": {
732
- }
733
- },
734
- "ListVolumeRecoveryPointsInput": {
735
- "base": null,
736
- "refs": {
737
- }
738
- },
739
- "ListVolumeRecoveryPointsOutput": {
740
- "base": null,
741
- "refs": {
742
- }
743
- },
744
- "ListVolumesInput": {
745
- "base": "<p>A JSON object that contains one or more of the following fields:</p> <ul> <li> <a>ListVolumesInput$Limit</a> </li> <li> <a>ListVolumesInput$Marker</a> </li> </ul>",
746
- "refs": {
747
- }
748
- },
749
- "ListVolumesOutput": {
750
- "base": null,
751
- "refs": {
752
- }
753
- },
754
- "Marker": {
755
- "base": null,
756
- "refs": {
757
- "DescribeTapeArchivesInput$Marker": "<p>An opaque string that indicates the position at which to begin describing virtual tapes.</p>",
758
- "DescribeTapeArchivesOutput$Marker": "<p>An opaque string that indicates the position at which the virtual tapes that were fetched for description ended. Use this marker in your next request to fetch the next set of virtual tapes in the virtual tape shelf (VTS). If there are no more virtual tapes to describe, this field does not appear in the response. </p>",
759
- "DescribeTapeRecoveryPointsInput$Marker": "<p>An opaque string that indicates the position at which to begin describing the virtual tape recovery points.</p>",
760
- "DescribeTapeRecoveryPointsOutput$Marker": "<p>An opaque string that indicates the position at which the virtual tape recovery points that were listed for description ended.</p> <p>Use this marker in your next request to list the next set of virtual tape recovery points in the list. If there are no more recovery points to describe, this field does not appear in the response.</p>",
761
- "DescribeTapesInput$Marker": "<p>A marker value, obtained in a previous call to <code>DescribeTapes</code>. This marker indicates which page of results to retrieve. </p> <p>If not specified, the first page of results is retrieved.</p>",
762
- "DescribeTapesOutput$Marker": "<p>An opaque string which can be used as part of a subsequent DescribeTapes call to retrieve the next page of results. </p> <p>If a response does not contain a marker, then there are no more results to be retrieved.</p>",
763
- "DescribeVTLDevicesInput$Marker": "<p>An opaque string that indicates the position at which to begin describing the VTL devices.</p>",
764
- "DescribeVTLDevicesOutput$Marker": "<p>An opaque string that indicates the position at which the VTL devices that were fetched for description ended. Use the marker in your next request to fetch the next set of VTL devices in the list. If there are no more VTL devices to describe, this field does not appear in the response.</p>",
765
- "ListGatewaysInput$Marker": "<p>An opaque string that indicates the position at which to begin the returned list of gateways.</p>",
766
- "ListGatewaysOutput$Marker": null,
767
- "ListVolumesInput$Marker": "<p>A string that indicates the position at which to begin the returned list of volumes. Obtain the marker from the response of a previous List iSCSI Volumes request.</p>",
768
- "ListVolumesOutput$Marker": null
769
- }
770
- },
771
- "MediumChangerType": {
772
- "base": null,
773
- "refs": {
774
- "ActivateGatewayInput$MediumChangerType": "<p>The value that indicates the type of medium changer to use for gateway-VTL. This field is optional.</p> <p><i>Valid Values</i>: \"STK-L700\", \"AWS-Gateway-VTL\"</p>"
775
- }
776
- },
777
- "MinuteOfHour": {
778
- "base": null,
779
- "refs": {
780
- "DescribeMaintenanceStartTimeOutput$MinuteOfHour": null,
781
- "UpdateMaintenanceStartTimeInput$MinuteOfHour": "<p>The minute component of the maintenance start time represented as <i>mm</i>, where <i>mm</i> is the minute (00 to 59). The minute of the hour is in the time zone of the gateway.</p>"
782
- }
783
- },
784
- "NetworkInterface": {
785
- "base": "<p>Describes a gateway's network interface.</p>",
786
- "refs": {
787
- "GatewayNetworkInterfaces$member": null
788
- }
789
- },
790
- "NetworkInterfaceId": {
791
- "base": null,
792
- "refs": {
793
- "CreateCachediSCSIVolumeInput$NetworkInterfaceId": null,
794
- "CreateStorediSCSIVolumeInput$NetworkInterfaceId": "<p>The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use <a>DescribeGatewayInformation</a> to get a list of the network interfaces available on a gateway.</p> <p><i>Valid Values</i>: A valid IP address.</p>",
795
- "DeviceiSCSIAttributes$NetworkInterfaceId": "<p>The network interface identifier of the VTL device.</p>",
796
- "VolumeiSCSIAttributes$NetworkInterfaceId": "<p>The network interface identifier.</p>"
797
- }
798
- },
799
- "NextUpdateAvailabilityDate": {
800
- "base": null,
801
- "refs": {
802
- "DescribeGatewayInformationOutput$NextUpdateAvailabilityDate": "<p>The date on which an update to the gateway is available. This date is in the time zone of the gateway. If the gateway is not available for an update this field is not returned in the response.</p>"
803
- }
804
- },
805
- "NumTapesToCreate": {
806
- "base": null,
807
- "refs": {
808
- "CreateTapesInput$NumTapesToCreate": "<p>The number of virtual tapes you want to create.</p>"
809
- }
810
- },
811
- "PositiveIntObject": {
812
- "base": null,
813
- "refs": {
814
- "DescribeTapeArchivesInput$Limit": "<p>Specifies that the number of virtual tapes descried be limited to the specified number.</p>",
815
- "DescribeTapeRecoveryPointsInput$Limit": "<p>Specifies that the number of virtual tape recovery points that are described be limited to the specified number.</p>",
816
- "DescribeTapesInput$Limit": "<p>Specifies that the number of virtual tapes described be limited to the specified number.</p> <note>Amazon Web Services may impose its own limit, if this field is not set.</note>",
817
- "DescribeVTLDevicesInput$Limit": "<p>Specifies that the number of VTL devices described be limited to the specified number.</p>",
818
- "ListGatewaysInput$Limit": "<p>Specifies that the list of gateways returned be limited to the specified number of items.</p>",
819
- "ListVolumesInput$Limit": "<p>Specifies that the list of volumes returned be limited to the specified number of items.</p>",
820
- "VolumeiSCSIAttributes$LunNumber": "<p>The logical disk number.</p>"
821
- }
822
- },
823
- "RecurrenceInHours": {
824
- "base": null,
825
- "refs": {
826
- "DescribeSnapshotScheduleOutput$RecurrenceInHours": null,
827
- "UpdateSnapshotScheduleInput$RecurrenceInHours": "<p>Frequency of snapshots. Specify the number of hours between snapshots.</p>"
828
- }
829
- },
830
- "RegionId": {
831
- "base": null,
832
- "refs": {
833
- "ActivateGatewayInput$GatewayRegion": "<p>One of the values that indicates the region where you want to store the snapshot backups. The gateway region specified must be the same region as the region in your <code>Host</code> header in the request. For more information about available regions and endpoints for AWS Storage Gateway, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#sg_region\">Regions and Endpoints</a> in the <i>Amazon Web Services Glossary</i>.</p> <p><i>Valid Values</i>: \"us-east-1\", \"us-west-1\", \"us-west-2\", \"eu-west-1\", \"eu-central-1\", \"ap-northeast-1\", \"ap-southeast-1\", \"ap-southeast-2\", \"sa-east-1\"</p>"
834
- }
835
- },
836
- "ResetCacheInput": {
837
- "base": null,
838
- "refs": {
839
- }
840
- },
841
- "ResetCacheOutput": {
842
- "base": null,
843
- "refs": {
844
- }
845
- },
846
- "RetrieveTapeArchiveInput": {
847
- "base": "<p>RetrieveTapeArchiveInput</p>",
848
- "refs": {
849
- }
850
- },
851
- "RetrieveTapeArchiveOutput": {
852
- "base": "<p>RetrieveTapeArchiveOutput</p>",
853
- "refs": {
854
- }
855
- },
856
- "RetrieveTapeRecoveryPointInput": {
857
- "base": "<p>RetrieveTapeRecoveryPointInput</p>",
858
- "refs": {
859
- }
860
- },
861
- "RetrieveTapeRecoveryPointOutput": {
862
- "base": "<p>RetrieveTapeRecoveryPointOutput</p>",
863
- "refs": {
864
- }
865
- },
866
- "ShutdownGatewayInput": {
867
- "base": "<p>A JSON object containing the of the gateway to shut down.</p>",
868
- "refs": {
869
- }
870
- },
871
- "ShutdownGatewayOutput": {
872
- "base": "<p>A JSON object containing the of the gateway that was shut down.</p>",
873
- "refs": {
874
- }
875
- },
876
- "SnapshotDescription": {
877
- "base": null,
878
- "refs": {
879
- "CreateSnapshotFromVolumeRecoveryPointInput$SnapshotDescription": null,
880
- "CreateSnapshotInput$SnapshotDescription": "<p>Textual description of the snapshot that appears in the Amazon EC2 console, Elastic Block Store snapshots panel in the <b>Description</b> field, and in the AWS Storage Gateway snapshot <b>Details</b> pane, <b>Description</b> field</p>"
881
- }
882
- },
883
- "SnapshotId": {
884
- "base": null,
885
- "refs": {
886
- "CachediSCSIVolume$SourceSnapshotId": null,
887
- "CreateCachediSCSIVolumeInput$SnapshotId": null,
888
- "CreateSnapshotFromVolumeRecoveryPointOutput$SnapshotId": null,
889
- "CreateSnapshotOutput$SnapshotId": "<p>The snapshot ID that is used to refer to the snapshot in future operations such as describing snapshots (Amazon Elastic Compute Cloud API <code>DescribeSnapshots</code>) or creating a volume from a snapshot (<a>CreateStorediSCSIVolume</a>).</p>",
890
- "CreateStorediSCSIVolumeInput$SnapshotId": "<p>The snapshot ID (e.g. \"snap-1122aabb\") of the snapshot to restore as the new stored volume. Specify this field if you want to create the iSCSI storage volume from a snapshot otherwise do not include this field. To list snapshots for your account use <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeSnapshots.html\">DescribeSnapshots</a> in the <i>Amazon Elastic Compute Cloud API Reference</i>.</p>",
891
- "StorediSCSIVolume$SourceSnapshotId": null
892
- }
893
- },
894
- "StartGatewayInput": {
895
- "base": "<p>A JSON object containing the of the gateway to start.</p>",
896
- "refs": {
897
- }
898
- },
899
- "StartGatewayOutput": {
900
- "base": "<p>A JSON object containing the of the gateway that was restarted.</p>",
901
- "refs": {
902
- }
903
- },
904
- "StorageGatewayError": {
905
- "base": "<p>Provides additional information about an error that was returned by the service as an or. See the <code>errorCode</code> and <code>errorDetails</code> members for more information about the error.</p>",
906
- "refs": {
907
- "InternalServerError$error": "<p>A <a>StorageGatewayError</a> that provides more detail about the cause of the error.</p>",
908
- "InvalidGatewayRequestException$error": "<p>A <a>StorageGatewayError</a> that provides more detail about the cause of the error.</p>"
909
- }
910
- },
911
- "StorediSCSIVolume": {
912
- "base": null,
913
- "refs": {
914
- "StorediSCSIVolumes$member": null
915
- }
916
- },
917
- "StorediSCSIVolumes": {
918
- "base": null,
919
- "refs": {
920
- "DescribeStorediSCSIVolumesOutput$StorediSCSIVolumes": null
921
- }
922
- },
923
- "Tape": {
924
- "base": "<p>Describes a virtual tape object.</p>",
925
- "refs": {
926
- "Tapes$member": null
927
- }
928
- },
929
- "TapeARN": {
930
- "base": null,
931
- "refs": {
932
- "CancelArchivalInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape you want to cancel archiving for.</p>",
933
- "CancelArchivalOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape for which archiving was canceled.</p>",
934
- "CancelRetrievalInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape you want to cancel retrieval for.</p>",
935
- "CancelRetrievalOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape for which retrieval was canceled.</p>",
936
- "DeleteTapeArchiveInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape to delete from the virtual tape shelf (VTS).</p>",
937
- "DeleteTapeArchiveOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape that was deleted from the virtual tape shelf (VTS).</p>",
938
- "DeleteTapeInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape to delete.</p>",
939
- "DeleteTapeOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the deleted virtual tape.</p>",
940
- "RetrieveTapeArchiveInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from the virtual tape shelf (VTS). </p>",
941
- "RetrieveTapeArchiveOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the retrieved virtual tape.</p>",
942
- "RetrieveTapeRecoveryPointInput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape for which you want to retrieve the recovery point.</p>",
943
- "RetrieveTapeRecoveryPointOutput$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape for which the recovery point was retrieved.</p>",
944
- "Tape$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape.</p>",
945
- "TapeARNs$member": null,
946
- "TapeArchive$TapeARN": "<p>The Amazon Resource Name (ARN) of an archived virtual tape.</p>",
947
- "TapeRecoveryPointInfo$TapeARN": "<p>The Amazon Resource Name (ARN) of the virtual tape.</p>"
948
- }
949
- },
950
- "TapeARNs": {
951
- "base": null,
952
- "refs": {
953
- "CreateTapesOutput$TapeARNs": "<p>A list of unique Amazon Resource Named (ARN) the represents the virtual tapes that were created.</p>",
954
- "DescribeTapeArchivesInput$TapeARNs": "<p>Specifies one or more unique Amazon Resource Names (ARNs) that represent the virtual tapes you want to describe. </p>",
955
- "DescribeTapesInput$TapeARNs": "<p>Specifies one or more unique Amazon Resource Names (ARNs) that represent the virtual tapes you want to describe. If this parameter is not specified, AWS Storage Gateway returns a description of all virtual tapes associated with the specified gateway.</p>"
956
- }
957
- },
958
- "TapeArchive": {
959
- "base": "<p>Represents a virtual tape that is archived in the virtual tape shelf (VTS).</p>",
960
- "refs": {
961
- "TapeArchives$member": null
962
- }
963
- },
964
- "TapeArchiveStatus": {
965
- "base": null,
966
- "refs": {
967
- "TapeArchive$TapeStatus": "<p>The current state of the archived virtual tape. </p>"
968
- }
969
- },
970
- "TapeArchives": {
971
- "base": null,
972
- "refs": {
973
- "DescribeTapeArchivesOutput$TapeArchives": "<p>An array of virtual tape objects in the virtual tape shelf (VTS). The description includes of the Amazon Resource Name(ARN) of the virtual tapes. The information returned includes the Amazon Resource Names (ARNs) of the tapes, size of the tapes, status of the tapes, progress of the description and tape barcode.</p>"
974
- }
975
- },
976
- "TapeBarcode": {
977
- "base": null,
978
- "refs": {
979
- "Tape$TapeBarcode": "<p>The barcode that identifies a specific virtual tape.</p>",
980
- "TapeArchive$TapeBarcode": "<p>The barcode that identifies the archived virtual tape.</p>"
981
- }
982
- },
983
- "TapeBarcodePrefix": {
984
- "base": null,
985
- "refs": {
986
- "CreateTapesInput$TapeBarcodePrefix": "<p>A prefix you append to the barcode of the virtual tape you are creating. This makes a barcode unique.</p> <note>The prefix must be 1 to 4 characters in length and must be upper-case letters A-Z.</note>"
987
- }
988
- },
989
- "TapeDriveType": {
990
- "base": null,
991
- "refs": {
992
- "ActivateGatewayInput$TapeDriveType": "<p>The value that indicates the type of tape drive to use for gateway-VTL. This field is optional. </p> <p><i>Valid Values</i>: \"IBM-ULT3580-TD5\" </p>"
993
- }
994
- },
995
- "TapeRecoveryPointInfo": {
996
- "base": "<p>Describes a recovery point. </p>",
997
- "refs": {
998
- "TapeRecoveryPointInfos$member": null
999
- }
1000
- },
1001
- "TapeRecoveryPointInfos": {
1002
- "base": null,
1003
- "refs": {
1004
- "DescribeTapeRecoveryPointsOutput$TapeRecoveryPointInfos": "<p>An array of TapeRecoveryPointInfos that are available for the specified gateway.</p>"
1005
- }
1006
- },
1007
- "TapeRecoveryPointStatus": {
1008
- "base": null,
1009
- "refs": {
1010
- "TapeRecoveryPointInfo$TapeStatus": null
1011
- }
1012
- },
1013
- "TapeSize": {
1014
- "base": null,
1015
- "refs": {
1016
- "CreateTapesInput$TapeSizeInBytes": "<p>The size, in bytes, of the virtual tapes you want to create.</p> <note>The size must be gigabyte (1024*1024*1024 byte) aligned.</note>",
1017
- "Tape$TapeSizeInBytes": "<p>The size, in bytes, of the virtual tape.</p>",
1018
- "TapeArchive$TapeSizeInBytes": "<p>The size, in bytes, of the archived virtual tape.</p>",
1019
- "TapeRecoveryPointInfo$TapeSizeInBytes": "<p>The size, in bytes, of the virtual tapes to recover.</p>"
1020
- }
1021
- },
1022
- "TapeStatus": {
1023
- "base": null,
1024
- "refs": {
1025
- "Tape$TapeStatus": "<p>The current state of the virtual tape. </p>"
1026
- }
1027
- },
1028
- "Tapes": {
1029
- "base": null,
1030
- "refs": {
1031
- "DescribeTapesOutput$Tapes": "<p>An array of virtual tape descriptions.</p>"
1032
- }
1033
- },
1034
- "TargetARN": {
1035
- "base": null,
1036
- "refs": {
1037
- "ChapInfo$TargetARN": "<p>The Amazon Resource Name (ARN) of the volume.</p> <p><i>Valid Values</i>: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).</p>",
1038
- "CreateCachediSCSIVolumeOutput$TargetARN": null,
1039
- "CreateStorediSCSIVolumeOutput$TargetARN": "<p>he Amazon Resource Name (ARN) of the volume target that includes the iSCSI name that initiators can use to connect to the target.</p>",
1040
- "DeleteChapCredentialsInput$TargetARN": "<p>The Amazon Resource Name (ARN) of the iSCSI volume target. Use the <a>DescribeStorediSCSIVolumes</a> operation to return to retrieve the TargetARN for specified VolumeARN.</p>",
1041
- "DeleteChapCredentialsOutput$TargetARN": "<p>The Amazon Resource Name (ARN) of the target.</p>",
1042
- "DescribeChapCredentialsInput$TargetARN": "<p>The Amazon Resource Name (ARN) of the iSCSI volume target. Use the <a>DescribeStorediSCSIVolumes</a> operation to return to retrieve the TargetARN for specified VolumeARN.</p>",
1043
- "DeviceiSCSIAttributes$TargetARN": "<p>Specifies the unique Amazon Resource Name(ARN) that encodes the iSCSI qualified name(iqn) of a tape drive or media changer target.</p>",
1044
- "UpdateChapCredentialsInput$TargetARN": "<p>The Amazon Resource Name (ARN) of the iSCSI volume target. Use the <a>DescribeStorediSCSIVolumes</a> operation to return the TargetARN for specified VolumeARN.</p>",
1045
- "UpdateChapCredentialsOutput$TargetARN": "<p>The Amazon Resource Name (ARN) of the target. This is the same target specified in the request.</p>",
1046
- "VolumeiSCSIAttributes$TargetARN": "<p>The Amazon Resource Name (ARN) of the volume target.</p>"
1047
- }
1048
- },
1049
- "TargetName": {
1050
- "base": null,
1051
- "refs": {
1052
- "CreateCachediSCSIVolumeInput$TargetName": null,
1053
- "CreateStorediSCSIVolumeInput$TargetName": "<p>The name of the iSCSI target used by initiators to connect to the target and as a suffix for the target ARN. For example, specifying <code>TargetName</code> as <i>myvolume</i> results in the target ARN of arn:aws:storagegateway:us-east-1:111122223333:gateway/mygateway/target/iqn.1997-05.com.amazon:myvolume. The target name must be unique across all volumes of a gateway.</p>"
1054
- }
1055
- },
1056
- "Time": {
1057
- "base": null,
1058
- "refs": {
1059
- "TapeArchive$CompletionTime": "<p>The time that the archiving of the virtual tape was completed.</p> <p>The string format of the completion time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.</p>",
1060
- "TapeRecoveryPointInfo$TapeRecoveryPointTime": "<p>The time when the point-in-time view of the virtual tape was replicated for later recovery. </p> <p>The string format of the tape recovery point time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.</p>"
1061
- }
1062
- },
1063
- "UpdateBandwidthRateLimitInput": {
1064
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>UpdateBandwidthRateLimitInput$AverageDownloadRateLimitInBitsPerSec</a> </li> <li> <a>UpdateBandwidthRateLimitInput$AverageUploadRateLimitInBitsPerSec</a> </li> </ul>",
1065
- "refs": {
1066
- }
1067
- },
1068
- "UpdateBandwidthRateLimitOutput": {
1069
- "base": "<p>A JSON object containing the of the gateway whose throttle information was updated.</p>",
1070
- "refs": {
1071
- }
1072
- },
1073
- "UpdateChapCredentialsInput": {
1074
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>UpdateChapCredentialsInput$InitiatorName</a> </li> <li> <a>UpdateChapCredentialsInput$SecretToAuthenticateInitiator</a> </li> <li> <a>UpdateChapCredentialsInput$SecretToAuthenticateTarget</a> </li> <li> <a>UpdateChapCredentialsInput$TargetARN</a> </li> </ul>",
1075
- "refs": {
1076
- }
1077
- },
1078
- "UpdateChapCredentialsOutput": {
1079
- "base": "<p>A JSON object containing the following fields:</p>",
1080
- "refs": {
1081
- }
1082
- },
1083
- "UpdateGatewayInformationInput": {
1084
- "base": null,
1085
- "refs": {
1086
- }
1087
- },
1088
- "UpdateGatewayInformationOutput": {
1089
- "base": "<p>A JSON object containing the of the gateway that was updated.</p>",
1090
- "refs": {
1091
- }
1092
- },
1093
- "UpdateGatewaySoftwareNowInput": {
1094
- "base": "<p>A JSON object containing the of the gateway to update.</p>",
1095
- "refs": {
1096
- }
1097
- },
1098
- "UpdateGatewaySoftwareNowOutput": {
1099
- "base": "<p>A JSON object containing the of the gateway that was updated.</p>",
1100
- "refs": {
1101
- }
1102
- },
1103
- "UpdateMaintenanceStartTimeInput": {
1104
- "base": "<p>A JSON object containing the following fields:</p> <ul> <li> <a>UpdateMaintenanceStartTimeInput$DayOfWeek</a> </li> <li> <a>UpdateMaintenanceStartTimeInput$HourOfDay</a> </li> <li> <a>UpdateMaintenanceStartTimeInput$MinuteOfHour</a> </li> </ul>",
1105
- "refs": {
1106
- }
1107
- },
1108
- "UpdateMaintenanceStartTimeOutput": {
1109
- "base": "<p>A JSON object containing the of the gateway whose maintenance start time is updated.</p>",
1110
- "refs": {
1111
- }
1112
- },
1113
- "UpdateSnapshotScheduleInput": {
1114
- "base": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <a>UpdateSnapshotScheduleInput$Description</a> </li> <li> <a>UpdateSnapshotScheduleInput$RecurrenceInHours</a> </li> <li> <a>UpdateSnapshotScheduleInput$StartAt</a> </li> <li> <a>UpdateSnapshotScheduleInput$VolumeARN</a> </li> </ul>",
1115
- "refs": {
1116
- }
1117
- },
1118
- "UpdateSnapshotScheduleOutput": {
1119
- "base": "<p>A JSON object containing the of the updated storage volume.</p>",
1120
- "refs": {
1121
- }
1122
- },
1123
- "UpdateVTLDeviceTypeInput": {
1124
- "base": "<p>UpdateVTLDeviceTypeInput</p>",
1125
- "refs": {
1126
- }
1127
- },
1128
- "UpdateVTLDeviceTypeOutput": {
1129
- "base": "<p>UpdateVTLDeviceTypeOutput</p>",
1130
- "refs": {
1131
- }
1132
- },
1133
- "VTLDevice": {
1134
- "base": "<p> Represents a device object associated with a gateway-VTL. </p>",
1135
- "refs": {
1136
- "VTLDevices$member": null
1137
- }
1138
- },
1139
- "VTLDeviceARN": {
1140
- "base": null,
1141
- "refs": {
1142
- "Tape$VTLDevice": "<p>The virtual tape library (VTL) device that the virtual tape is associated with.</p>",
1143
- "UpdateVTLDeviceTypeInput$VTLDeviceARN": "<p>The Amazon Resource Name (ARN) of the medium changer you want to select.</p>",
1144
- "UpdateVTLDeviceTypeOutput$VTLDeviceARN": "<p>The Amazon Resource Name (ARN) of the medium changer you have selected.</p>",
1145
- "VTLDevice$VTLDeviceARN": "<p>Specifies the unique Amazon Resource Name (ARN) of the device (tape drive or media changer).</p>",
1146
- "VTLDeviceARNs$member": null
1147
- }
1148
- },
1149
- "VTLDeviceARNs": {
1150
- "base": null,
1151
- "refs": {
1152
- "DescribeVTLDevicesInput$VTLDeviceARNs": "<p>An array of strings, where each string represents the Amazon Resource Name (ARN) of a VTL device.</p> <note>All of the specified VTL devices must be from the same gateway. If no VTL devices are specified, the result will contain all devices on the specified gateway.</note>"
1153
- }
1154
- },
1155
- "VTLDeviceProductIdentifier": {
1156
- "base": null,
1157
- "refs": {
1158
- "VTLDevice$VTLDeviceProductIdentifier": null
1159
- }
1160
- },
1161
- "VTLDeviceType": {
1162
- "base": null,
1163
- "refs": {
1164
- "VTLDevice$VTLDeviceType": null
1165
- }
1166
- },
1167
- "VTLDeviceVendor": {
1168
- "base": null,
1169
- "refs": {
1170
- "VTLDevice$VTLDeviceVendor": null
1171
- }
1172
- },
1173
- "VTLDevices": {
1174
- "base": null,
1175
- "refs": {
1176
- "DescribeVTLDevicesOutput$VTLDevices": "<p>An array of VTL device objects composed of the Amazon Resource Name(ARN) of the VTL devices.</p>"
1177
- }
1178
- },
1179
- "VolumeARN": {
1180
- "base": null,
1181
- "refs": {
1182
- "CachediSCSIVolume$VolumeARN": null,
1183
- "CreateCachediSCSIVolumeOutput$VolumeARN": null,
1184
- "CreateSnapshotFromVolumeRecoveryPointInput$VolumeARN": null,
1185
- "CreateSnapshotFromVolumeRecoveryPointOutput$VolumeARN": null,
1186
- "CreateSnapshotInput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes.</p>",
1187
- "CreateSnapshotOutput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume of which the snapshot was taken.</p>",
1188
- "CreateStorediSCSIVolumeOutput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the configured volume.</p>",
1189
- "DeleteSnapshotScheduleInput$VolumeARN": null,
1190
- "DeleteSnapshotScheduleOutput$VolumeARN": null,
1191
- "DeleteVolumeInput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes.</p>",
1192
- "DeleteVolumeOutput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the storage volume that was deleted. It is the same ARN you provided in the request.</p>",
1193
- "DescribeSnapshotScheduleInput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes.</p>",
1194
- "DescribeSnapshotScheduleOutput$VolumeARN": null,
1195
- "ListVolumeInitiatorsInput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes for the gateway.</p>",
1196
- "StorediSCSIVolume$VolumeARN": null,
1197
- "UpdateSnapshotScheduleInput$VolumeARN": "<p>The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes.</p>",
1198
- "UpdateSnapshotScheduleOutput$VolumeARN": null,
1199
- "VolumeARNs$member": null,
1200
- "VolumeInfo$VolumeARN": null,
1201
- "VolumeRecoveryPointInfo$VolumeARN": null
1202
- }
1203
- },
1204
- "VolumeARNs": {
1205
- "base": null,
1206
- "refs": {
1207
- "DescribeCachediSCSIVolumesInput$VolumeARNs": null,
1208
- "DescribeStorediSCSIVolumesInput$VolumeARNs": "<p>An array of strings where each string represents the Amazon Resource Name (ARN) of a stored volume. All of the specified stored volumes must from the same gateway. Use <a>ListVolumes</a> to get volume ARNs for a gateway.</p>"
1209
- }
1210
- },
1211
- "VolumeId": {
1212
- "base": null,
1213
- "refs": {
1214
- "CachediSCSIVolume$VolumeId": null,
1215
- "StorediSCSIVolume$VolumeId": null
1216
- }
1217
- },
1218
- "VolumeInfo": {
1219
- "base": null,
1220
- "refs": {
1221
- "VolumeInfos$member": null
1222
- }
1223
- },
1224
- "VolumeInfos": {
1225
- "base": null,
1226
- "refs": {
1227
- "ListVolumesOutput$VolumeInfos": null
1228
- }
1229
- },
1230
- "VolumeRecoveryPointInfo": {
1231
- "base": null,
1232
- "refs": {
1233
- "VolumeRecoveryPointInfos$member": null
1234
- }
1235
- },
1236
- "VolumeRecoveryPointInfos": {
1237
- "base": null,
1238
- "refs": {
1239
- "ListVolumeRecoveryPointsOutput$VolumeRecoveryPointInfos": null
1240
- }
1241
- },
1242
- "VolumeStatus": {
1243
- "base": null,
1244
- "refs": {
1245
- "CachediSCSIVolume$VolumeStatus": null,
1246
- "StorediSCSIVolume$VolumeStatus": null
1247
- }
1248
- },
1249
- "VolumeType": {
1250
- "base": null,
1251
- "refs": {
1252
- "CachediSCSIVolume$VolumeType": null,
1253
- "StorediSCSIVolume$VolumeType": null,
1254
- "VolumeInfo$VolumeType": null
1255
- }
1256
- },
1257
- "VolumeiSCSIAttributes": {
1258
- "base": "<p>Lists iSCSI information about a volume.</p>",
1259
- "refs": {
1260
- "CachediSCSIVolume$VolumeiSCSIAttributes": null,
1261
- "StorediSCSIVolume$VolumeiSCSIAttributes": null
1262
- }
1263
- },
1264
- "boolean": {
1265
- "base": null,
1266
- "refs": {
1267
- "CreateStorediSCSIVolumeInput$PreserveExistingData": "<p>Specify this field as true if you want to preserve the data on the local disk. Otherwise, specifying this field as false creates an empty volume.</p> <p><i>Valid Values</i>: true, false</p>",
1268
- "DeviceiSCSIAttributes$ChapEnabled": "<p>Indicates whether mutual CHAP is enabled for the iSCSI target.</p>",
1269
- "StorediSCSIVolume$PreservedExistingData": null,
1270
- "VolumeiSCSIAttributes$ChapEnabled": "<p>Indicates whether mutual CHAP is enabled for the iSCSI target.</p>"
1271
- }
1272
- },
1273
- "double": {
1274
- "base": null,
1275
- "refs": {
1276
- "DescribeCacheOutput$CacheUsedPercentage": null,
1277
- "DescribeCacheOutput$CacheDirtyPercentage": null,
1278
- "DescribeCacheOutput$CacheHitPercentage": null,
1279
- "DescribeCacheOutput$CacheMissPercentage": null
1280
- }
1281
- },
1282
- "errorDetails": {
1283
- "base": null,
1284
- "refs": {
1285
- "StorageGatewayError$errorDetails": "<p>Human-readable text that provides detail about the error that occurred.</p>"
1286
- }
1287
- },
1288
- "integer": {
1289
- "base": null,
1290
- "refs": {
1291
- "DeviceiSCSIAttributes$NetworkInterfacePort": "<p>The port used to communicate with iSCSI VTL device targets.</p>",
1292
- "VolumeiSCSIAttributes$NetworkInterfacePort": "<p>The port used to communicate with iSCSI targets.</p>"
1293
- }
1294
- },
1295
- "long": {
1296
- "base": null,
1297
- "refs": {
1298
- "CachediSCSIVolume$VolumeSizeInBytes": null,
1299
- "CreateCachediSCSIVolumeInput$VolumeSizeInBytes": null,
1300
- "CreateStorediSCSIVolumeOutput$VolumeSizeInBytes": "<p>The size of the volume in bytes.</p>",
1301
- "DescribeCacheOutput$CacheAllocatedInBytes": null,
1302
- "DescribeUploadBufferOutput$UploadBufferUsedInBytes": null,
1303
- "DescribeUploadBufferOutput$UploadBufferAllocatedInBytes": null,
1304
- "DescribeWorkingStorageOutput$WorkingStorageUsedInBytes": "<p>The total working storage in bytes in use by the gateway. If no working storage is configured for the gateway, this field returns 0.</p>",
1305
- "DescribeWorkingStorageOutput$WorkingStorageAllocatedInBytes": "<p>The total working storage in bytes allocated for the gateway. If no working storage is configured for the gateway, this field returns 0.</p>",
1306
- "Disk$DiskSizeInBytes": null,
1307
- "StorediSCSIVolume$VolumeSizeInBytes": null,
1308
- "VolumeRecoveryPointInfo$VolumeSizeInBytes": null,
1309
- "VolumeRecoveryPointInfo$VolumeUsageInBytes": null
1310
- }
1311
- },
1312
- "string": {
1313
- "base": null,
1314
- "refs": {
1315
- "CreateSnapshotFromVolumeRecoveryPointOutput$VolumeRecoveryPointTime": null,
1316
- "Disk$DiskPath": null,
1317
- "Disk$DiskNode": null,
1318
- "Disk$DiskStatus": null,
1319
- "Disk$DiskAllocationResource": null,
1320
- "InternalServerError$message": "<p>A human-readable message describing the error that occurred.</p>",
1321
- "InvalidGatewayRequestException$message": "<p>A human-readable message describing the error that occurred.</p>",
1322
- "NetworkInterface$Ipv4Address": "<p>The Internet Protocol version 4 (IPv4) address of the interface.</p>",
1323
- "NetworkInterface$MacAddress": "<p>The Media Access Control (MAC) address of the interface.</p> <note>This is currently unsupported and will not be returned in output.</note>",
1324
- "NetworkInterface$Ipv6Address": "<p>The Internet Protocol version 6 (IPv6) address of the interface. <i>Currently not supported</i>.</p>",
1325
- "VolumeRecoveryPointInfo$VolumeRecoveryPointTime": null,
1326
- "errorDetails$key": null,
1327
- "errorDetails$value": null
1328
- }
1329
- }
1330
- }
1331
- }