aws-sdk-core 2.0.0.rc1 → 2.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/README.md +6 -3
  4. data/Rakefile +2 -0
  5. data/apis/AutoScaling-2011-01-01.json +1 -0
  6. data/apis/CloudFormation-2010-05-15.json +75 -0
  7. data/apis/CloudFront-2012-05-05.json +1 -0
  8. data/apis/CloudFront-2013-05-12.json +1 -0
  9. data/apis/CloudFront-2013-08-26.json +1 -0
  10. data/apis/CloudSearch-2011-02-01.json +1 -0
  11. data/apis/CloudWatch-2010-08-01.json +1 -0
  12. data/apis/DataPipeline-2012-10-29.json +1 -0
  13. data/apis/DirectConnect-2012-10-25.json +1 -0
  14. data/apis/DynamoDB-2011-12-05.json +1 -0
  15. data/apis/DynamoDB-2012-08-10.json +1 -0
  16. data/apis/EC2-2013-06-15.json +1 -0
  17. data/apis/EC2-2013-10-01.json +1 -0
  18. data/apis/EMR-2009-03-31.json +1 -0
  19. data/apis/ElastiCache-2012-11-15.json +1 -0
  20. data/apis/ElastiCache-2013-06-15.json +1 -0
  21. data/apis/ElasticBeanstalk-2010-12-01.json +1 -0
  22. data/apis/ElasticLoadBalancing-2012-06-01.json +73 -0
  23. data/apis/ElasticTranscoder-2012-09-25.json +231 -0
  24. data/apis/Glacier-2012-06-01.json +2 -0
  25. data/apis/IAM-2010-05-08.json +1 -0
  26. data/apis/ImportExport-2010-06-01.json +1 -0
  27. data/apis/OpsWorks-2013-02-18.json +1 -0
  28. data/apis/RDS-2013-01-10.json +1 -0
  29. data/apis/RDS-2013-02-12.json +1 -0
  30. data/apis/RDS-2013-05-15.json +1 -0
  31. data/apis/Redshift-2012-12-01.json +1 -0
  32. data/apis/Route53-2012-12-12.json +1 -0
  33. data/apis/S3-2006-03-01.json +5 -0
  34. data/apis/SDB-2009-04-15.json +1 -0
  35. data/apis/SES-2010-12-01.json +1 -0
  36. data/apis/SNS-2010-03-31.json +1 -0
  37. data/apis/SQS-2012-11-05.json +1 -0
  38. data/apis/STS-2011-06-15.json +1 -0
  39. data/apis/SWF-2012-01-25.json +1 -0
  40. data/apis/StorageGateway-2012-06-30.json +1 -0
  41. data/apis/StorageGateway-2013-06-30.json +2018 -0
  42. data/apis/Support-2013-04-15.json +1 -0
  43. data/apis/source/cloudformation-2010-05-15.json +118 -12
  44. data/apis/source/elasticloadbalancing-2012-06-01.json +347 -220
  45. data/apis/source/elastictranscoder-2012-09-25.json +315 -5
  46. data/apis/source/s3-2006-03-01.json +3 -0
  47. data/apis/source/storagegateway-2013-06-30.json +12560 -0
  48. data/apis/source/storagegateway-2013-06-30.paginators.json +28 -0
  49. data/doc-src/plugins/apis.rb +44 -1
  50. data/doc-src/templates/default/fulldoc/html/setup.rb +1 -1
  51. data/features/common/step_definitions.rb +3 -5
  52. data/features/env.rb +2 -0
  53. data/features/glacier/client.feature +8 -0
  54. data/features/glacier/step_definitions.rb +7 -7
  55. data/features/s3/step_definitions.rb +2 -3
  56. data/lib/aws.rb +75 -69
  57. data/lib/aws/api/service_translators/glacier.rb +1 -0
  58. data/lib/aws/api/translator.rb +13 -8
  59. data/lib/aws/credentials.rb +5 -5
  60. data/lib/aws/instance_profile_credentials.rb +113 -0
  61. data/lib/aws/plugins/credentials.rb +2 -1
  62. data/lib/aws/plugins/glacier_account_id.rb +11 -0
  63. data/lib/aws/plugins/glacier_checksums.rb +7 -3
  64. data/lib/aws/plugins/instance_profile_credentials.rb +14 -0
  65. data/lib/aws/plugins/s3_bucket_dns.rb +17 -14
  66. data/lib/aws/plugins/s3_md5s.rb +3 -3
  67. data/lib/aws/service.rb +10 -9
  68. data/lib/aws/signers/s3.rb +2 -2
  69. data/lib/aws/signers/v2.rb +1 -1
  70. data/lib/aws/signers/v4.rb +2 -2
  71. data/lib/aws/version.rb +1 -1
  72. data/lib/aws/xml/serializer.rb +1 -1
  73. data/spec/aws/instance_profile_credentials_spec.rb +94 -0
  74. data/spec/aws/operations_spec.rb +1 -1
  75. data/spec/aws/plugins/credentials_spec.rb +2 -2
  76. data/spec/fixtures/operations/glacier/account_id_param.yml +13 -0
  77. data/spec/fixtures/operations/glacier/custom_account_id.yml +11 -0
  78. data/spec/fixtures/operations/glacier/default_account_id.yml +10 -0
  79. data/spec/fixtures/operations/s3/content_type_header.yml +12 -0
  80. data/spec/fixtures/operations/s3/md5_checksum_disabled.yml +1 -1
  81. data/tasks/apis.rake +2 -2
  82. data/tasks/docs.rake +2 -1
  83. data/tasks/handlers.rake +30 -0
  84. data/vendor/seahorse/lib/seahorse/client.rb +1 -0
  85. data/vendor/seahorse/lib/seahorse/client/base.rb +0 -18
  86. data/vendor/seahorse/lib/seahorse/client/block_io.rb +0 -7
  87. data/vendor/seahorse/lib/seahorse/client/configuration.rb +57 -37
  88. data/vendor/seahorse/lib/seahorse/client/handler_list.rb +115 -78
  89. data/vendor/seahorse/lib/seahorse/client/http/endpoint.rb +19 -15
  90. data/vendor/seahorse/lib/seahorse/client/http/request.rb +0 -15
  91. data/vendor/seahorse/lib/seahorse/client/logging/formatter.rb +0 -7
  92. data/vendor/seahorse/lib/seahorse/client/managed_file.rb +14 -0
  93. data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +1 -3
  94. data/vendor/seahorse/lib/seahorse/client/plugins/content_length.rb +1 -1
  95. data/vendor/seahorse/lib/seahorse/client/plugins/endpoint.rb +81 -10
  96. data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +1 -71
  97. data/vendor/seahorse/lib/seahorse/client/request.rb +26 -3
  98. data/vendor/seahorse/spec/seahorse/client/base_spec.rb +1 -5
  99. data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +1 -10
  100. data/vendor/seahorse/spec/seahorse/client/handler_list_spec.rb +10 -10
  101. data/vendor/seahorse/spec/seahorse/client/http/endpoint_spec.rb +46 -14
  102. data/vendor/seahorse/spec/seahorse/client/http/request_spec.rb +1 -42
  103. data/vendor/seahorse/spec/seahorse/client/logging/formatter_spec.rb +1 -6
  104. data/vendor/seahorse/spec/seahorse/client/logging/handler_spec.rb +1 -1
  105. data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +5 -4
  106. data/vendor/seahorse/spec/seahorse/client/param_converter_spec.rb +1 -0
  107. data/vendor/seahorse/spec/seahorse/client/plugins/{restful_bindings/uri_path_builder_spec.rb → endpoint/request_uri_builder_spec.rb} +3 -3
  108. data/vendor/seahorse/spec/seahorse/client/plugins/endpoint_spec.rb +1 -11
  109. data/vendor/seahorse/spec/seahorse/client/request_spec.rb +63 -13
  110. metadata +21 -3
@@ -21,9 +21,11 @@
21
21
  "Aws::Plugins::RetryErrors",
22
22
  "Aws::Plugins::GlobalConfiguration",
23
23
  "Aws::Plugins::RegionalEndpoint",
24
+ "Aws::Plugins::InstanceProfileCredentials",
24
25
  "Aws::Plugins::Credentials",
25
26
  "Aws::Plugins::JsonProtocol",
26
27
  "Aws::Plugins::SignatureV4",
28
+ "Aws::Plugins::GlacierAccountId",
27
29
  "Aws::Plugins::GlacierApiVersion",
28
30
  "Aws::Plugins::GlacierChecksums"
29
31
  ],
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -23,6 +23,7 @@
23
23
  "Aws::Plugins::RetryErrors",
24
24
  "Aws::Plugins::GlobalConfiguration",
25
25
  "Aws::Plugins::RegionalEndpoint",
26
+ "Aws::Plugins::InstanceProfileCredentials",
26
27
  "Aws::Plugins::Credentials",
27
28
  "Aws::Plugins::QueryProtocol",
28
29
  "Aws::Plugins::SignatureV2"
@@ -18,6 +18,7 @@
18
18
  "Aws::Plugins::RetryErrors",
19
19
  "Aws::Plugins::GlobalConfiguration",
20
20
  "Aws::Plugins::RegionalEndpoint",
21
+ "Aws::Plugins::InstanceProfileCredentials",
21
22
  "Aws::Plugins::Credentials",
22
23
  "Aws::Plugins::JsonProtocol",
23
24
  "Aws::Plugins::JsonRpcHeaders",
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV2"
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -17,6 +17,7 @@
17
17
  "Aws::Plugins::RetryErrors",
18
18
  "Aws::Plugins::GlobalConfiguration",
19
19
  "Aws::Plugins::RegionalEndpoint",
20
+ "Aws::Plugins::InstanceProfileCredentials",
20
21
  "Aws::Plugins::Credentials",
21
22
  "Aws::Plugins::QueryProtocol",
22
23
  "Aws::Plugins::SignatureV4"
@@ -24,6 +24,7 @@
24
24
  "Aws::Plugins::RetryErrors",
25
25
  "Aws::Plugins::GlobalConfiguration",
26
26
  "Aws::Plugins::RegionalEndpoint",
27
+ "Aws::Plugins::InstanceProfileCredentials",
27
28
  "Aws::Plugins::Credentials",
28
29
  "Aws::Plugins::XmlProtocol",
29
30
  "Aws::Plugins::SignatureV3"
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::RetryErrors",
27
27
  "Aws::Plugins::GlobalConfiguration",
28
28
  "Aws::Plugins::RegionalEndpoint",
29
+ "Aws::Plugins::InstanceProfileCredentials",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::XmlProtocol",
31
32
  "Aws::Plugins::S3Signer",
@@ -2323,6 +2324,10 @@
2323
2324
  "type": "string",
2324
2325
  "serialized_name": "Marker"
2325
2326
  },
2327
+ "next_marker": {
2328
+ "type": "string",
2329
+ "serialized_name": "NextMarker"
2330
+ },
2326
2331
  "contents": {
2327
2332
  "type": "flat_list",
2328
2333
  "serialized_name": "Contents",
@@ -22,6 +22,7 @@
22
22
  "Aws::Plugins::RetryErrors",
23
23
  "Aws::Plugins::GlobalConfiguration",
24
24
  "Aws::Plugins::RegionalEndpoint",
25
+ "Aws::Plugins::InstanceProfileCredentials",
25
26
  "Aws::Plugins::Credentials",
26
27
  "Aws::Plugins::QueryProtocol",
27
28
  "Aws::Plugins::SignatureV2"
@@ -18,6 +18,7 @@
18
18
  "Aws::Plugins::RetryErrors",
19
19
  "Aws::Plugins::GlobalConfiguration",
20
20
  "Aws::Plugins::RegionalEndpoint",
21
+ "Aws::Plugins::InstanceProfileCredentials",
21
22
  "Aws::Plugins::Credentials",
22
23
  "Aws::Plugins::QueryProtocol",
23
24
  "Aws::Plugins::SignatureV4"
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::QueryProtocol",
30
31
  "Aws::Plugins::SignatureV4"
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::RetryErrors",
27
27
  "Aws::Plugins::GlobalConfiguration",
28
28
  "Aws::Plugins::RegionalEndpoint",
29
+ "Aws::Plugins::InstanceProfileCredentials",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::QueryProtocol",
31
32
  "Aws::Plugins::SignatureV4",
@@ -24,6 +24,7 @@
24
24
  "Aws::Plugins::RetryErrors",
25
25
  "Aws::Plugins::GlobalConfiguration",
26
26
  "Aws::Plugins::RegionalEndpoint",
27
+ "Aws::Plugins::InstanceProfileCredentials",
27
28
  "Aws::Plugins::Credentials",
28
29
  "Aws::Plugins::QueryProtocol",
29
30
  "Aws::Plugins::SignatureV4"
@@ -26,6 +26,7 @@
26
26
  "Aws::Plugins::RetryErrors",
27
27
  "Aws::Plugins::GlobalConfiguration",
28
28
  "Aws::Plugins::RegionalEndpoint",
29
+ "Aws::Plugins::InstanceProfileCredentials",
29
30
  "Aws::Plugins::Credentials",
30
31
  "Aws::Plugins::JsonProtocol",
31
32
  "Aws::Plugins::JsonRpcHeaders",
@@ -25,6 +25,7 @@
25
25
  "Aws::Plugins::RetryErrors",
26
26
  "Aws::Plugins::GlobalConfiguration",
27
27
  "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
28
29
  "Aws::Plugins::Credentials",
29
30
  "Aws::Plugins::JsonProtocol",
30
31
  "Aws::Plugins::JsonRpcHeaders",
@@ -0,0 +1,2018 @@
1
+ {
2
+ "version": "2013-06-30",
3
+ "metadata": {
4
+ "endpoint_prefix": "storagegateway",
5
+ "json_target_prefix": "StorageGateway_20130630",
6
+ "json_version": 1.1,
7
+ "regional_endpoints": {
8
+ "us-east-1": "storagegateway.us-east-1.amazonaws.com",
9
+ "us-west-1": "storagegateway.us-west-1.amazonaws.com",
10
+ "us-west-2": "storagegateway.us-west-2.amazonaws.com",
11
+ "eu-west-1": "storagegateway.eu-west-1.amazonaws.com",
12
+ "ap-northeast-1": "storagegateway.ap-northeast-1.amazonaws.com",
13
+ "ap-southeast-1": "storagegateway.ap-southeast-1.amazonaws.com",
14
+ "ap-southeast-2": "storagegateway.ap-southeast-2.amazonaws.com",
15
+ "sa-east-1": "storagegateway.sa-east-1.amazonaws.com"
16
+ },
17
+ "service_class_name": "StorageGateway",
18
+ "service_full_name": "AWS Storage Gateway"
19
+ },
20
+ "plugins": [
21
+ "Seahorse::Client::Plugins::Logging",
22
+ "Seahorse::Client::Plugins::RestfulBindings",
23
+ "Seahorse::Client::Plugins::ContentLength",
24
+ "Aws::Plugins::UserAgent",
25
+ "Aws::Plugins::RetryErrors",
26
+ "Aws::Plugins::GlobalConfiguration",
27
+ "Aws::Plugins::RegionalEndpoint",
28
+ "Aws::Plugins::InstanceProfileCredentials",
29
+ "Aws::Plugins::Credentials",
30
+ "Aws::Plugins::JsonProtocol",
31
+ "Aws::Plugins::JsonRpcHeaders",
32
+ "Aws::Plugins::SignatureV4"
33
+ ],
34
+ "operations": {
35
+ "activate_gateway": {
36
+ "name": "ActivateGateway",
37
+ "http_method": "POST",
38
+ "http_path": "/",
39
+ "input": {
40
+ "type": "input",
41
+ "members": {
42
+ "activation_key": {
43
+ "type": "string",
44
+ "required": true,
45
+ "serialized_name": "ActivationKey"
46
+ },
47
+ "gateway_name": {
48
+ "type": "string",
49
+ "required": true,
50
+ "serialized_name": "GatewayName"
51
+ },
52
+ "gateway_timezone": {
53
+ "type": "string",
54
+ "required": true,
55
+ "serialized_name": "GatewayTimezone"
56
+ },
57
+ "gateway_region": {
58
+ "type": "string",
59
+ "required": true,
60
+ "serialized_name": "GatewayRegion"
61
+ },
62
+ "gateway_type": {
63
+ "type": "string",
64
+ "serialized_name": "GatewayType"
65
+ },
66
+ "tape_drive_type": {
67
+ "type": "string",
68
+ "serialized_name": "TapeDriveType"
69
+ },
70
+ "medium_changer_type": {
71
+ "type": "string",
72
+ "serialized_name": "MediumChangerType"
73
+ }
74
+ }
75
+ },
76
+ "output": {
77
+ "type": "output",
78
+ "members": {
79
+ "gateway_arn": {
80
+ "type": "string",
81
+ "serialized_name": "GatewayARN"
82
+ }
83
+ }
84
+ }
85
+ },
86
+ "add_cache": {
87
+ "name": "AddCache",
88
+ "http_method": "POST",
89
+ "http_path": "/",
90
+ "input": {
91
+ "type": "input",
92
+ "members": {
93
+ "gateway_arn": {
94
+ "type": "string",
95
+ "required": true,
96
+ "serialized_name": "GatewayARN"
97
+ },
98
+ "disk_ids": {
99
+ "type": "list",
100
+ "required": true,
101
+ "serialized_name": "DiskIds",
102
+ "members": {
103
+ "type": "string"
104
+ }
105
+ }
106
+ }
107
+ },
108
+ "output": {
109
+ "type": "output",
110
+ "members": {
111
+ "gateway_arn": {
112
+ "type": "string",
113
+ "serialized_name": "GatewayARN"
114
+ }
115
+ }
116
+ }
117
+ },
118
+ "add_upload_buffer": {
119
+ "name": "AddUploadBuffer",
120
+ "http_method": "POST",
121
+ "http_path": "/",
122
+ "input": {
123
+ "type": "input",
124
+ "members": {
125
+ "gateway_arn": {
126
+ "type": "string",
127
+ "required": true,
128
+ "serialized_name": "GatewayARN"
129
+ },
130
+ "disk_ids": {
131
+ "type": "list",
132
+ "required": true,
133
+ "serialized_name": "DiskIds",
134
+ "members": {
135
+ "type": "string"
136
+ }
137
+ }
138
+ }
139
+ },
140
+ "output": {
141
+ "type": "output",
142
+ "members": {
143
+ "gateway_arn": {
144
+ "type": "string",
145
+ "serialized_name": "GatewayARN"
146
+ }
147
+ }
148
+ }
149
+ },
150
+ "add_working_storage": {
151
+ "name": "AddWorkingStorage",
152
+ "http_method": "POST",
153
+ "http_path": "/",
154
+ "input": {
155
+ "type": "input",
156
+ "members": {
157
+ "gateway_arn": {
158
+ "type": "string",
159
+ "required": true,
160
+ "serialized_name": "GatewayARN"
161
+ },
162
+ "disk_ids": {
163
+ "type": "list",
164
+ "required": true,
165
+ "serialized_name": "DiskIds",
166
+ "members": {
167
+ "type": "string"
168
+ }
169
+ }
170
+ }
171
+ },
172
+ "output": {
173
+ "type": "output",
174
+ "members": {
175
+ "gateway_arn": {
176
+ "type": "string",
177
+ "serialized_name": "GatewayARN"
178
+ }
179
+ }
180
+ }
181
+ },
182
+ "cancel_archival": {
183
+ "name": "CancelArchival",
184
+ "http_method": "POST",
185
+ "http_path": "/",
186
+ "input": {
187
+ "type": "input",
188
+ "members": {
189
+ "gateway_arn": {
190
+ "type": "string",
191
+ "required": true,
192
+ "serialized_name": "GatewayARN"
193
+ },
194
+ "tape_arn": {
195
+ "type": "string",
196
+ "required": true,
197
+ "serialized_name": "TapeARN"
198
+ }
199
+ }
200
+ },
201
+ "output": {
202
+ "type": "output",
203
+ "members": {
204
+ "tape_arn": {
205
+ "type": "string",
206
+ "serialized_name": "TapeARN"
207
+ }
208
+ }
209
+ }
210
+ },
211
+ "cancel_retrieval": {
212
+ "name": "CancelRetrieval",
213
+ "http_method": "POST",
214
+ "http_path": "/",
215
+ "input": {
216
+ "type": "input",
217
+ "members": {
218
+ "gateway_arn": {
219
+ "type": "string",
220
+ "required": true,
221
+ "serialized_name": "GatewayARN"
222
+ },
223
+ "tape_arn": {
224
+ "type": "string",
225
+ "required": true,
226
+ "serialized_name": "TapeARN"
227
+ }
228
+ }
229
+ },
230
+ "output": {
231
+ "type": "output",
232
+ "members": {
233
+ "tape_arn": {
234
+ "type": "string",
235
+ "serialized_name": "TapeARN"
236
+ }
237
+ }
238
+ }
239
+ },
240
+ "create_cachedi_scsi_volume": {
241
+ "name": "CreateCachediSCSIVolume",
242
+ "http_method": "POST",
243
+ "http_path": "/",
244
+ "input": {
245
+ "type": "input",
246
+ "members": {
247
+ "gateway_arn": {
248
+ "type": "string",
249
+ "required": true,
250
+ "serialized_name": "GatewayARN"
251
+ },
252
+ "volume_size_in_bytes": {
253
+ "type": "integer",
254
+ "required": true,
255
+ "serialized_name": "VolumeSizeInBytes"
256
+ },
257
+ "snapshot_id": {
258
+ "type": "string",
259
+ "serialized_name": "SnapshotId"
260
+ },
261
+ "target_name": {
262
+ "type": "string",
263
+ "required": true,
264
+ "serialized_name": "TargetName"
265
+ },
266
+ "network_interface_id": {
267
+ "type": "string",
268
+ "required": true,
269
+ "serialized_name": "NetworkInterfaceId"
270
+ },
271
+ "client_token": {
272
+ "type": "string",
273
+ "required": true,
274
+ "serialized_name": "ClientToken"
275
+ }
276
+ }
277
+ },
278
+ "output": {
279
+ "type": "output",
280
+ "members": {
281
+ "volume_arn": {
282
+ "type": "string",
283
+ "serialized_name": "VolumeARN"
284
+ },
285
+ "target_arn": {
286
+ "type": "string",
287
+ "serialized_name": "TargetARN"
288
+ }
289
+ }
290
+ }
291
+ },
292
+ "create_snapshot": {
293
+ "name": "CreateSnapshot",
294
+ "http_method": "POST",
295
+ "http_path": "/",
296
+ "input": {
297
+ "type": "input",
298
+ "members": {
299
+ "volume_arn": {
300
+ "type": "string",
301
+ "required": true,
302
+ "serialized_name": "VolumeARN"
303
+ },
304
+ "snapshot_description": {
305
+ "type": "string",
306
+ "required": true,
307
+ "serialized_name": "SnapshotDescription"
308
+ }
309
+ }
310
+ },
311
+ "output": {
312
+ "type": "output",
313
+ "members": {
314
+ "volume_arn": {
315
+ "type": "string",
316
+ "serialized_name": "VolumeARN"
317
+ },
318
+ "snapshot_id": {
319
+ "type": "string",
320
+ "serialized_name": "SnapshotId"
321
+ }
322
+ }
323
+ }
324
+ },
325
+ "create_snapshot_from_volume_recovery_point": {
326
+ "name": "CreateSnapshotFromVolumeRecoveryPoint",
327
+ "http_method": "POST",
328
+ "http_path": "/",
329
+ "input": {
330
+ "type": "input",
331
+ "members": {
332
+ "volume_arn": {
333
+ "type": "string",
334
+ "required": true,
335
+ "serialized_name": "VolumeARN"
336
+ },
337
+ "snapshot_description": {
338
+ "type": "string",
339
+ "required": true,
340
+ "serialized_name": "SnapshotDescription"
341
+ }
342
+ }
343
+ },
344
+ "output": {
345
+ "type": "output",
346
+ "members": {
347
+ "snapshot_id": {
348
+ "type": "string",
349
+ "serialized_name": "SnapshotId"
350
+ },
351
+ "volume_arn": {
352
+ "type": "string",
353
+ "serialized_name": "VolumeARN"
354
+ },
355
+ "volume_recovery_point_time": {
356
+ "type": "string",
357
+ "serialized_name": "VolumeRecoveryPointTime"
358
+ }
359
+ }
360
+ }
361
+ },
362
+ "create_storedi_scsi_volume": {
363
+ "name": "CreateStorediSCSIVolume",
364
+ "http_method": "POST",
365
+ "http_path": "/",
366
+ "input": {
367
+ "type": "input",
368
+ "members": {
369
+ "gateway_arn": {
370
+ "type": "string",
371
+ "required": true,
372
+ "serialized_name": "GatewayARN"
373
+ },
374
+ "disk_id": {
375
+ "type": "string",
376
+ "required": true,
377
+ "serialized_name": "DiskId"
378
+ },
379
+ "snapshot_id": {
380
+ "type": "string",
381
+ "serialized_name": "SnapshotId"
382
+ },
383
+ "preserve_existing_data": {
384
+ "type": "boolean",
385
+ "required": true,
386
+ "serialized_name": "PreserveExistingData"
387
+ },
388
+ "target_name": {
389
+ "type": "string",
390
+ "required": true,
391
+ "serialized_name": "TargetName"
392
+ },
393
+ "network_interface_id": {
394
+ "type": "string",
395
+ "required": true,
396
+ "serialized_name": "NetworkInterfaceId"
397
+ }
398
+ }
399
+ },
400
+ "output": {
401
+ "type": "output",
402
+ "members": {
403
+ "volume_arn": {
404
+ "type": "string",
405
+ "serialized_name": "VolumeARN"
406
+ },
407
+ "volume_size_in_bytes": {
408
+ "type": "integer",
409
+ "serialized_name": "VolumeSizeInBytes"
410
+ },
411
+ "target_arn": {
412
+ "type": "string",
413
+ "serialized_name": "TargetARN"
414
+ }
415
+ }
416
+ }
417
+ },
418
+ "create_tapes": {
419
+ "name": "CreateTapes",
420
+ "http_method": "POST",
421
+ "http_path": "/",
422
+ "input": {
423
+ "type": "input",
424
+ "members": {
425
+ "gateway_arn": {
426
+ "type": "string",
427
+ "required": true,
428
+ "serialized_name": "GatewayARN"
429
+ },
430
+ "tape_size_in_bytes": {
431
+ "type": "integer",
432
+ "required": true,
433
+ "serialized_name": "TapeSizeInBytes"
434
+ },
435
+ "client_token": {
436
+ "type": "string",
437
+ "required": true,
438
+ "serialized_name": "ClientToken"
439
+ },
440
+ "num_tapes_to_create": {
441
+ "type": "integer",
442
+ "required": true,
443
+ "serialized_name": "NumTapesToCreate"
444
+ },
445
+ "tape_barcode_prefix": {
446
+ "type": "string",
447
+ "required": true,
448
+ "serialized_name": "TapeBarcodePrefix"
449
+ }
450
+ }
451
+ },
452
+ "output": {
453
+ "type": "output",
454
+ "members": {
455
+ "tape_ar_ns": {
456
+ "type": "list",
457
+ "serialized_name": "TapeARNs",
458
+ "members": {
459
+ "type": "string"
460
+ }
461
+ }
462
+ }
463
+ }
464
+ },
465
+ "delete_bandwidth_rate_limit": {
466
+ "name": "DeleteBandwidthRateLimit",
467
+ "http_method": "POST",
468
+ "http_path": "/",
469
+ "input": {
470
+ "type": "input",
471
+ "members": {
472
+ "gateway_arn": {
473
+ "type": "string",
474
+ "required": true,
475
+ "serialized_name": "GatewayARN"
476
+ },
477
+ "bandwidth_type": {
478
+ "type": "string",
479
+ "required": true,
480
+ "serialized_name": "BandwidthType"
481
+ }
482
+ }
483
+ },
484
+ "output": {
485
+ "type": "output",
486
+ "members": {
487
+ "gateway_arn": {
488
+ "type": "string",
489
+ "serialized_name": "GatewayARN"
490
+ }
491
+ }
492
+ }
493
+ },
494
+ "delete_chap_credentials": {
495
+ "name": "DeleteChapCredentials",
496
+ "http_method": "POST",
497
+ "http_path": "/",
498
+ "input": {
499
+ "type": "input",
500
+ "members": {
501
+ "target_arn": {
502
+ "type": "string",
503
+ "required": true,
504
+ "serialized_name": "TargetARN"
505
+ },
506
+ "initiator_name": {
507
+ "type": "string",
508
+ "required": true,
509
+ "serialized_name": "InitiatorName"
510
+ }
511
+ }
512
+ },
513
+ "output": {
514
+ "type": "output",
515
+ "members": {
516
+ "target_arn": {
517
+ "type": "string",
518
+ "serialized_name": "TargetARN"
519
+ },
520
+ "initiator_name": {
521
+ "type": "string",
522
+ "serialized_name": "InitiatorName"
523
+ }
524
+ }
525
+ }
526
+ },
527
+ "delete_gateway": {
528
+ "name": "DeleteGateway",
529
+ "http_method": "POST",
530
+ "http_path": "/",
531
+ "input": {
532
+ "type": "input",
533
+ "members": {
534
+ "gateway_arn": {
535
+ "type": "string",
536
+ "required": true,
537
+ "serialized_name": "GatewayARN"
538
+ }
539
+ }
540
+ },
541
+ "output": {
542
+ "type": "output",
543
+ "members": {
544
+ "gateway_arn": {
545
+ "type": "string",
546
+ "serialized_name": "GatewayARN"
547
+ }
548
+ }
549
+ }
550
+ },
551
+ "delete_snapshot_schedule": {
552
+ "name": "DeleteSnapshotSchedule",
553
+ "http_method": "POST",
554
+ "http_path": "/",
555
+ "input": {
556
+ "type": "input",
557
+ "members": {
558
+ "volume_arn": {
559
+ "type": "string",
560
+ "required": true,
561
+ "serialized_name": "VolumeARN"
562
+ }
563
+ }
564
+ },
565
+ "output": {
566
+ "type": "output",
567
+ "members": {
568
+ "volume_arn": {
569
+ "type": "string",
570
+ "serialized_name": "VolumeARN"
571
+ }
572
+ }
573
+ }
574
+ },
575
+ "delete_tape": {
576
+ "name": "DeleteTape",
577
+ "http_method": "POST",
578
+ "http_path": "/",
579
+ "input": {
580
+ "type": "input",
581
+ "members": {
582
+ "gateway_arn": {
583
+ "type": "string",
584
+ "required": true,
585
+ "serialized_name": "GatewayARN"
586
+ },
587
+ "tape_arn": {
588
+ "type": "string",
589
+ "required": true,
590
+ "serialized_name": "TapeARN"
591
+ }
592
+ }
593
+ },
594
+ "output": {
595
+ "type": "output",
596
+ "members": {
597
+ "tape_arn": {
598
+ "type": "string",
599
+ "serialized_name": "TapeARN"
600
+ }
601
+ }
602
+ }
603
+ },
604
+ "delete_tape_archive": {
605
+ "name": "DeleteTapeArchive",
606
+ "http_method": "POST",
607
+ "http_path": "/",
608
+ "input": {
609
+ "type": "input",
610
+ "members": {
611
+ "tape_arn": {
612
+ "type": "string",
613
+ "required": true,
614
+ "serialized_name": "TapeARN"
615
+ }
616
+ }
617
+ },
618
+ "output": {
619
+ "type": "output",
620
+ "members": {
621
+ "tape_arn": {
622
+ "type": "string",
623
+ "serialized_name": "TapeARN"
624
+ }
625
+ }
626
+ }
627
+ },
628
+ "delete_volume": {
629
+ "name": "DeleteVolume",
630
+ "http_method": "POST",
631
+ "http_path": "/",
632
+ "input": {
633
+ "type": "input",
634
+ "members": {
635
+ "volume_arn": {
636
+ "type": "string",
637
+ "required": true,
638
+ "serialized_name": "VolumeARN"
639
+ }
640
+ }
641
+ },
642
+ "output": {
643
+ "type": "output",
644
+ "members": {
645
+ "volume_arn": {
646
+ "type": "string",
647
+ "serialized_name": "VolumeARN"
648
+ }
649
+ }
650
+ }
651
+ },
652
+ "describe_bandwidth_rate_limit": {
653
+ "name": "DescribeBandwidthRateLimit",
654
+ "http_method": "POST",
655
+ "http_path": "/",
656
+ "input": {
657
+ "type": "input",
658
+ "members": {
659
+ "gateway_arn": {
660
+ "type": "string",
661
+ "required": true,
662
+ "serialized_name": "GatewayARN"
663
+ }
664
+ }
665
+ },
666
+ "output": {
667
+ "type": "output",
668
+ "members": {
669
+ "gateway_arn": {
670
+ "type": "string",
671
+ "serialized_name": "GatewayARN"
672
+ },
673
+ "average_upload_rate_limit_in_bits_per_sec": {
674
+ "type": "integer",
675
+ "serialized_name": "AverageUploadRateLimitInBitsPerSec"
676
+ },
677
+ "average_download_rate_limit_in_bits_per_sec": {
678
+ "type": "integer",
679
+ "serialized_name": "AverageDownloadRateLimitInBitsPerSec"
680
+ }
681
+ }
682
+ }
683
+ },
684
+ "describe_cache": {
685
+ "name": "DescribeCache",
686
+ "http_method": "POST",
687
+ "http_path": "/",
688
+ "input": {
689
+ "type": "input",
690
+ "members": {
691
+ "gateway_arn": {
692
+ "type": "string",
693
+ "required": true,
694
+ "serialized_name": "GatewayARN"
695
+ }
696
+ }
697
+ },
698
+ "output": {
699
+ "type": "output",
700
+ "members": {
701
+ "gateway_arn": {
702
+ "type": "string",
703
+ "serialized_name": "GatewayARN"
704
+ },
705
+ "disk_ids": {
706
+ "type": "list",
707
+ "serialized_name": "DiskIds",
708
+ "members": {
709
+ "type": "string"
710
+ }
711
+ },
712
+ "cache_allocated_in_bytes": {
713
+ "type": "integer",
714
+ "serialized_name": "CacheAllocatedInBytes"
715
+ },
716
+ "cache_used_percentage": {
717
+ "type": "float",
718
+ "serialized_name": "CacheUsedPercentage"
719
+ },
720
+ "cache_dirty_percentage": {
721
+ "type": "float",
722
+ "serialized_name": "CacheDirtyPercentage"
723
+ },
724
+ "cache_hit_percentage": {
725
+ "type": "float",
726
+ "serialized_name": "CacheHitPercentage"
727
+ },
728
+ "cache_miss_percentage": {
729
+ "type": "float",
730
+ "serialized_name": "CacheMissPercentage"
731
+ }
732
+ }
733
+ }
734
+ },
735
+ "describe_cachedi_scsi_volumes": {
736
+ "name": "DescribeCachediSCSIVolumes",
737
+ "http_method": "POST",
738
+ "http_path": "/",
739
+ "input": {
740
+ "type": "input",
741
+ "members": {
742
+ "volume_ar_ns": {
743
+ "type": "list",
744
+ "required": true,
745
+ "serialized_name": "VolumeARNs",
746
+ "members": {
747
+ "type": "string"
748
+ }
749
+ }
750
+ }
751
+ },
752
+ "output": {
753
+ "type": "output",
754
+ "members": {
755
+ "cachedi_scsi_volumes": {
756
+ "type": "list",
757
+ "serialized_name": "CachediSCSIVolumes",
758
+ "members": {
759
+ "type": "structure",
760
+ "members": {
761
+ "volume_arn": {
762
+ "type": "string",
763
+ "serialized_name": "VolumeARN"
764
+ },
765
+ "volume_id": {
766
+ "type": "string",
767
+ "serialized_name": "VolumeId"
768
+ },
769
+ "volume_type": {
770
+ "type": "string",
771
+ "serialized_name": "VolumeType"
772
+ },
773
+ "volume_status": {
774
+ "type": "string",
775
+ "serialized_name": "VolumeStatus"
776
+ },
777
+ "volume_size_in_bytes": {
778
+ "type": "integer",
779
+ "serialized_name": "VolumeSizeInBytes"
780
+ },
781
+ "volume_progress": {
782
+ "type": "float",
783
+ "serialized_name": "VolumeProgress"
784
+ },
785
+ "source_snapshot_id": {
786
+ "type": "string",
787
+ "serialized_name": "SourceSnapshotId"
788
+ },
789
+ "volumei_scsi_attributes": {
790
+ "type": "structure",
791
+ "serialized_name": "VolumeiSCSIAttributes",
792
+ "members": {
793
+ "target_arn": {
794
+ "type": "string",
795
+ "serialized_name": "TargetARN"
796
+ },
797
+ "network_interface_id": {
798
+ "type": "string",
799
+ "serialized_name": "NetworkInterfaceId"
800
+ },
801
+ "network_interface_port": {
802
+ "type": "integer",
803
+ "serialized_name": "NetworkInterfacePort"
804
+ },
805
+ "lun_number": {
806
+ "type": "integer",
807
+ "serialized_name": "LunNumber"
808
+ },
809
+ "chap_enabled": {
810
+ "type": "boolean",
811
+ "serialized_name": "ChapEnabled"
812
+ }
813
+ }
814
+ }
815
+ }
816
+ }
817
+ }
818
+ }
819
+ }
820
+ },
821
+ "describe_chap_credentials": {
822
+ "name": "DescribeChapCredentials",
823
+ "http_method": "POST",
824
+ "http_path": "/",
825
+ "input": {
826
+ "type": "input",
827
+ "members": {
828
+ "target_arn": {
829
+ "type": "string",
830
+ "required": true,
831
+ "serialized_name": "TargetARN"
832
+ }
833
+ }
834
+ },
835
+ "output": {
836
+ "type": "output",
837
+ "members": {
838
+ "chap_credentials": {
839
+ "type": "list",
840
+ "serialized_name": "ChapCredentials",
841
+ "members": {
842
+ "type": "structure",
843
+ "members": {
844
+ "target_arn": {
845
+ "type": "string",
846
+ "serialized_name": "TargetARN"
847
+ },
848
+ "secret_to_authenticate_initiator": {
849
+ "type": "string",
850
+ "serialized_name": "SecretToAuthenticateInitiator"
851
+ },
852
+ "initiator_name": {
853
+ "type": "string",
854
+ "serialized_name": "InitiatorName"
855
+ },
856
+ "secret_to_authenticate_target": {
857
+ "type": "string",
858
+ "serialized_name": "SecretToAuthenticateTarget"
859
+ }
860
+ }
861
+ }
862
+ }
863
+ }
864
+ }
865
+ },
866
+ "describe_gateway_information": {
867
+ "name": "DescribeGatewayInformation",
868
+ "http_method": "POST",
869
+ "http_path": "/",
870
+ "input": {
871
+ "type": "input",
872
+ "members": {
873
+ "gateway_arn": {
874
+ "type": "string",
875
+ "required": true,
876
+ "serialized_name": "GatewayARN"
877
+ }
878
+ }
879
+ },
880
+ "output": {
881
+ "type": "output",
882
+ "members": {
883
+ "gateway_arn": {
884
+ "type": "string",
885
+ "serialized_name": "GatewayARN"
886
+ },
887
+ "gateway_id": {
888
+ "type": "string",
889
+ "serialized_name": "GatewayId"
890
+ },
891
+ "gateway_timezone": {
892
+ "type": "string",
893
+ "serialized_name": "GatewayTimezone"
894
+ },
895
+ "gateway_state": {
896
+ "type": "string",
897
+ "serialized_name": "GatewayState"
898
+ },
899
+ "gateway_network_interfaces": {
900
+ "type": "list",
901
+ "serialized_name": "GatewayNetworkInterfaces",
902
+ "members": {
903
+ "type": "structure",
904
+ "members": {
905
+ "ipv_4_address": {
906
+ "type": "string",
907
+ "serialized_name": "Ipv4Address"
908
+ },
909
+ "mac_address": {
910
+ "type": "string",
911
+ "serialized_name": "MacAddress"
912
+ },
913
+ "ipv_6_address": {
914
+ "type": "string",
915
+ "serialized_name": "Ipv6Address"
916
+ }
917
+ }
918
+ }
919
+ },
920
+ "gateway_type": {
921
+ "type": "string",
922
+ "serialized_name": "GatewayType"
923
+ },
924
+ "next_update_availability_date": {
925
+ "type": "string",
926
+ "serialized_name": "NextUpdateAvailabilityDate"
927
+ }
928
+ }
929
+ }
930
+ },
931
+ "describe_maintenance_start_time": {
932
+ "name": "DescribeMaintenanceStartTime",
933
+ "http_method": "POST",
934
+ "http_path": "/",
935
+ "input": {
936
+ "type": "input",
937
+ "members": {
938
+ "gateway_arn": {
939
+ "type": "string",
940
+ "required": true,
941
+ "serialized_name": "GatewayARN"
942
+ }
943
+ }
944
+ },
945
+ "output": {
946
+ "type": "output",
947
+ "members": {
948
+ "gateway_arn": {
949
+ "type": "string",
950
+ "serialized_name": "GatewayARN"
951
+ },
952
+ "hour_of_day": {
953
+ "type": "integer",
954
+ "serialized_name": "HourOfDay"
955
+ },
956
+ "minute_of_hour": {
957
+ "type": "integer",
958
+ "serialized_name": "MinuteOfHour"
959
+ },
960
+ "day_of_week": {
961
+ "type": "integer",
962
+ "serialized_name": "DayOfWeek"
963
+ },
964
+ "timezone": {
965
+ "type": "string",
966
+ "serialized_name": "Timezone"
967
+ }
968
+ }
969
+ }
970
+ },
971
+ "describe_snapshot_schedule": {
972
+ "name": "DescribeSnapshotSchedule",
973
+ "http_method": "POST",
974
+ "http_path": "/",
975
+ "input": {
976
+ "type": "input",
977
+ "members": {
978
+ "volume_arn": {
979
+ "type": "string",
980
+ "required": true,
981
+ "serialized_name": "VolumeARN"
982
+ }
983
+ }
984
+ },
985
+ "output": {
986
+ "type": "output",
987
+ "members": {
988
+ "volume_arn": {
989
+ "type": "string",
990
+ "serialized_name": "VolumeARN"
991
+ },
992
+ "start_at": {
993
+ "type": "integer",
994
+ "serialized_name": "StartAt"
995
+ },
996
+ "recurrence_in_hours": {
997
+ "type": "integer",
998
+ "serialized_name": "RecurrenceInHours"
999
+ },
1000
+ "description": {
1001
+ "type": "string",
1002
+ "serialized_name": "Description"
1003
+ },
1004
+ "timezone": {
1005
+ "type": "string",
1006
+ "serialized_name": "Timezone"
1007
+ }
1008
+ }
1009
+ }
1010
+ },
1011
+ "describe_storedi_scsi_volumes": {
1012
+ "name": "DescribeStorediSCSIVolumes",
1013
+ "http_method": "POST",
1014
+ "http_path": "/",
1015
+ "input": {
1016
+ "type": "input",
1017
+ "members": {
1018
+ "volume_ar_ns": {
1019
+ "type": "list",
1020
+ "required": true,
1021
+ "serialized_name": "VolumeARNs",
1022
+ "members": {
1023
+ "type": "string"
1024
+ }
1025
+ }
1026
+ }
1027
+ },
1028
+ "output": {
1029
+ "type": "output",
1030
+ "members": {
1031
+ "storedi_scsi_volumes": {
1032
+ "type": "list",
1033
+ "serialized_name": "StorediSCSIVolumes",
1034
+ "members": {
1035
+ "type": "structure",
1036
+ "members": {
1037
+ "volume_arn": {
1038
+ "type": "string",
1039
+ "serialized_name": "VolumeARN"
1040
+ },
1041
+ "volume_id": {
1042
+ "type": "string",
1043
+ "serialized_name": "VolumeId"
1044
+ },
1045
+ "volume_type": {
1046
+ "type": "string",
1047
+ "serialized_name": "VolumeType"
1048
+ },
1049
+ "volume_status": {
1050
+ "type": "string",
1051
+ "serialized_name": "VolumeStatus"
1052
+ },
1053
+ "volume_size_in_bytes": {
1054
+ "type": "integer",
1055
+ "serialized_name": "VolumeSizeInBytes"
1056
+ },
1057
+ "volume_progress": {
1058
+ "type": "float",
1059
+ "serialized_name": "VolumeProgress"
1060
+ },
1061
+ "volume_disk_id": {
1062
+ "type": "string",
1063
+ "serialized_name": "VolumeDiskId"
1064
+ },
1065
+ "source_snapshot_id": {
1066
+ "type": "string",
1067
+ "serialized_name": "SourceSnapshotId"
1068
+ },
1069
+ "preserved_existing_data": {
1070
+ "type": "boolean",
1071
+ "serialized_name": "PreservedExistingData"
1072
+ },
1073
+ "volumei_scsi_attributes": {
1074
+ "type": "structure",
1075
+ "serialized_name": "VolumeiSCSIAttributes",
1076
+ "members": {
1077
+ "target_arn": {
1078
+ "type": "string",
1079
+ "serialized_name": "TargetARN"
1080
+ },
1081
+ "network_interface_id": {
1082
+ "type": "string",
1083
+ "serialized_name": "NetworkInterfaceId"
1084
+ },
1085
+ "network_interface_port": {
1086
+ "type": "integer",
1087
+ "serialized_name": "NetworkInterfacePort"
1088
+ },
1089
+ "lun_number": {
1090
+ "type": "integer",
1091
+ "serialized_name": "LunNumber"
1092
+ },
1093
+ "chap_enabled": {
1094
+ "type": "boolean",
1095
+ "serialized_name": "ChapEnabled"
1096
+ }
1097
+ }
1098
+ }
1099
+ }
1100
+ }
1101
+ }
1102
+ }
1103
+ }
1104
+ },
1105
+ "describe_tape_archives": {
1106
+ "name": "DescribeTapeArchives",
1107
+ "http_method": "POST",
1108
+ "http_path": "/",
1109
+ "input": {
1110
+ "type": "input",
1111
+ "members": {
1112
+ "tape_ar_ns": {
1113
+ "type": "list",
1114
+ "serialized_name": "TapeARNs",
1115
+ "members": {
1116
+ "type": "string"
1117
+ }
1118
+ },
1119
+ "marker": {
1120
+ "type": "string",
1121
+ "serialized_name": "Marker"
1122
+ },
1123
+ "limit": {
1124
+ "type": "integer",
1125
+ "serialized_name": "Limit"
1126
+ }
1127
+ }
1128
+ },
1129
+ "output": {
1130
+ "type": "output",
1131
+ "members": {
1132
+ "tape_archives": {
1133
+ "type": "list",
1134
+ "serialized_name": "TapeArchives",
1135
+ "members": {
1136
+ "type": "structure",
1137
+ "members": {
1138
+ "tape_arn": {
1139
+ "type": "string",
1140
+ "serialized_name": "TapeARN"
1141
+ },
1142
+ "tape_barcode": {
1143
+ "type": "string",
1144
+ "serialized_name": "TapeBarcode"
1145
+ },
1146
+ "tape_size_in_bytes": {
1147
+ "type": "integer",
1148
+ "serialized_name": "TapeSizeInBytes"
1149
+ },
1150
+ "completion_time": {
1151
+ "type": "iso8601_timestamp",
1152
+ "serialized_name": "CompletionTime"
1153
+ },
1154
+ "retrieved_to": {
1155
+ "type": "string",
1156
+ "serialized_name": "RetrievedTo"
1157
+ },
1158
+ "tape_status": {
1159
+ "type": "string",
1160
+ "serialized_name": "TapeStatus"
1161
+ }
1162
+ }
1163
+ }
1164
+ },
1165
+ "marker": {
1166
+ "type": "string",
1167
+ "serialized_name": "Marker"
1168
+ }
1169
+ }
1170
+ }
1171
+ },
1172
+ "describe_tape_recovery_points": {
1173
+ "name": "DescribeTapeRecoveryPoints",
1174
+ "http_method": "POST",
1175
+ "http_path": "/",
1176
+ "input": {
1177
+ "type": "input",
1178
+ "members": {
1179
+ "gateway_arn": {
1180
+ "type": "string",
1181
+ "required": true,
1182
+ "serialized_name": "GatewayARN"
1183
+ },
1184
+ "marker": {
1185
+ "type": "string",
1186
+ "serialized_name": "Marker"
1187
+ },
1188
+ "limit": {
1189
+ "type": "integer",
1190
+ "serialized_name": "Limit"
1191
+ }
1192
+ }
1193
+ },
1194
+ "output": {
1195
+ "type": "output",
1196
+ "members": {
1197
+ "gateway_arn": {
1198
+ "type": "string",
1199
+ "serialized_name": "GatewayARN"
1200
+ },
1201
+ "tape_recovery_point_infos": {
1202
+ "type": "list",
1203
+ "serialized_name": "TapeRecoveryPointInfos",
1204
+ "members": {
1205
+ "type": "structure",
1206
+ "members": {
1207
+ "tape_arn": {
1208
+ "type": "string",
1209
+ "serialized_name": "TapeARN"
1210
+ },
1211
+ "tape_recovery_point_time": {
1212
+ "type": "iso8601_timestamp",
1213
+ "serialized_name": "TapeRecoveryPointTime"
1214
+ },
1215
+ "tape_size_in_bytes": {
1216
+ "type": "integer",
1217
+ "serialized_name": "TapeSizeInBytes"
1218
+ },
1219
+ "tape_status": {
1220
+ "type": "string",
1221
+ "serialized_name": "TapeStatus"
1222
+ }
1223
+ }
1224
+ }
1225
+ },
1226
+ "marker": {
1227
+ "type": "string",
1228
+ "serialized_name": "Marker"
1229
+ }
1230
+ }
1231
+ }
1232
+ },
1233
+ "describe_tapes": {
1234
+ "name": "DescribeTapes",
1235
+ "http_method": "POST",
1236
+ "http_path": "/",
1237
+ "input": {
1238
+ "type": "input",
1239
+ "members": {
1240
+ "gateway_arn": {
1241
+ "type": "string",
1242
+ "required": true,
1243
+ "serialized_name": "GatewayARN"
1244
+ },
1245
+ "tape_ar_ns": {
1246
+ "type": "list",
1247
+ "serialized_name": "TapeARNs",
1248
+ "members": {
1249
+ "type": "string"
1250
+ }
1251
+ },
1252
+ "marker": {
1253
+ "type": "string",
1254
+ "serialized_name": "Marker"
1255
+ },
1256
+ "limit": {
1257
+ "type": "integer",
1258
+ "serialized_name": "Limit"
1259
+ }
1260
+ }
1261
+ },
1262
+ "output": {
1263
+ "type": "output",
1264
+ "members": {
1265
+ "tapes": {
1266
+ "type": "list",
1267
+ "serialized_name": "Tapes",
1268
+ "members": {
1269
+ "type": "structure",
1270
+ "members": {
1271
+ "tape_arn": {
1272
+ "type": "string",
1273
+ "serialized_name": "TapeARN"
1274
+ },
1275
+ "tape_barcode": {
1276
+ "type": "string",
1277
+ "serialized_name": "TapeBarcode"
1278
+ },
1279
+ "tape_size_in_bytes": {
1280
+ "type": "integer",
1281
+ "serialized_name": "TapeSizeInBytes"
1282
+ },
1283
+ "tape_status": {
1284
+ "type": "string",
1285
+ "serialized_name": "TapeStatus"
1286
+ },
1287
+ "vtl_device": {
1288
+ "type": "string",
1289
+ "serialized_name": "VTLDevice"
1290
+ },
1291
+ "progress": {
1292
+ "type": "float",
1293
+ "serialized_name": "Progress"
1294
+ }
1295
+ }
1296
+ }
1297
+ },
1298
+ "marker": {
1299
+ "type": "string",
1300
+ "serialized_name": "Marker"
1301
+ }
1302
+ }
1303
+ }
1304
+ },
1305
+ "describe_upload_buffer": {
1306
+ "name": "DescribeUploadBuffer",
1307
+ "http_method": "POST",
1308
+ "http_path": "/",
1309
+ "input": {
1310
+ "type": "input",
1311
+ "members": {
1312
+ "gateway_arn": {
1313
+ "type": "string",
1314
+ "required": true,
1315
+ "serialized_name": "GatewayARN"
1316
+ }
1317
+ }
1318
+ },
1319
+ "output": {
1320
+ "type": "output",
1321
+ "members": {
1322
+ "gateway_arn": {
1323
+ "type": "string",
1324
+ "serialized_name": "GatewayARN"
1325
+ },
1326
+ "disk_ids": {
1327
+ "type": "list",
1328
+ "serialized_name": "DiskIds",
1329
+ "members": {
1330
+ "type": "string"
1331
+ }
1332
+ },
1333
+ "upload_buffer_used_in_bytes": {
1334
+ "type": "integer",
1335
+ "serialized_name": "UploadBufferUsedInBytes"
1336
+ },
1337
+ "upload_buffer_allocated_in_bytes": {
1338
+ "type": "integer",
1339
+ "serialized_name": "UploadBufferAllocatedInBytes"
1340
+ }
1341
+ }
1342
+ }
1343
+ },
1344
+ "describe_vtl_devices": {
1345
+ "name": "DescribeVTLDevices",
1346
+ "http_method": "POST",
1347
+ "http_path": "/",
1348
+ "input": {
1349
+ "type": "input",
1350
+ "members": {
1351
+ "gateway_arn": {
1352
+ "type": "string",
1353
+ "required": true,
1354
+ "serialized_name": "GatewayARN"
1355
+ },
1356
+ "vtl_device_ar_ns": {
1357
+ "type": "list",
1358
+ "serialized_name": "VTLDeviceARNs",
1359
+ "members": {
1360
+ "type": "string"
1361
+ }
1362
+ },
1363
+ "marker": {
1364
+ "type": "string",
1365
+ "serialized_name": "Marker"
1366
+ },
1367
+ "limit": {
1368
+ "type": "integer",
1369
+ "serialized_name": "Limit"
1370
+ }
1371
+ }
1372
+ },
1373
+ "output": {
1374
+ "type": "output",
1375
+ "members": {
1376
+ "gateway_arn": {
1377
+ "type": "string",
1378
+ "serialized_name": "GatewayARN"
1379
+ },
1380
+ "vtl_devices": {
1381
+ "type": "list",
1382
+ "serialized_name": "VTLDevices",
1383
+ "members": {
1384
+ "type": "structure",
1385
+ "members": {
1386
+ "vtl_device_arn": {
1387
+ "type": "string",
1388
+ "serialized_name": "VTLDeviceARN"
1389
+ },
1390
+ "vtl_device_type": {
1391
+ "type": "string",
1392
+ "serialized_name": "VTLDeviceType"
1393
+ },
1394
+ "vtl_device_vendor": {
1395
+ "type": "string",
1396
+ "serialized_name": "VTLDeviceVendor"
1397
+ },
1398
+ "vtl_device_product_identifier": {
1399
+ "type": "string",
1400
+ "serialized_name": "VTLDeviceProductIdentifier"
1401
+ },
1402
+ "devicei_scsi_attributes": {
1403
+ "type": "structure",
1404
+ "serialized_name": "DeviceiSCSIAttributes",
1405
+ "members": {
1406
+ "target_arn": {
1407
+ "type": "string",
1408
+ "serialized_name": "TargetARN"
1409
+ },
1410
+ "network_interface_id": {
1411
+ "type": "string",
1412
+ "serialized_name": "NetworkInterfaceId"
1413
+ },
1414
+ "network_interface_port": {
1415
+ "type": "integer",
1416
+ "serialized_name": "NetworkInterfacePort"
1417
+ },
1418
+ "chap_enabled": {
1419
+ "type": "boolean",
1420
+ "serialized_name": "ChapEnabled"
1421
+ }
1422
+ }
1423
+ }
1424
+ }
1425
+ }
1426
+ },
1427
+ "marker": {
1428
+ "type": "string",
1429
+ "serialized_name": "Marker"
1430
+ }
1431
+ }
1432
+ }
1433
+ },
1434
+ "describe_working_storage": {
1435
+ "name": "DescribeWorkingStorage",
1436
+ "http_method": "POST",
1437
+ "http_path": "/",
1438
+ "input": {
1439
+ "type": "input",
1440
+ "members": {
1441
+ "gateway_arn": {
1442
+ "type": "string",
1443
+ "required": true,
1444
+ "serialized_name": "GatewayARN"
1445
+ }
1446
+ }
1447
+ },
1448
+ "output": {
1449
+ "type": "output",
1450
+ "members": {
1451
+ "gateway_arn": {
1452
+ "type": "string",
1453
+ "serialized_name": "GatewayARN"
1454
+ },
1455
+ "disk_ids": {
1456
+ "type": "list",
1457
+ "serialized_name": "DiskIds",
1458
+ "members": {
1459
+ "type": "string"
1460
+ }
1461
+ },
1462
+ "working_storage_used_in_bytes": {
1463
+ "type": "integer",
1464
+ "serialized_name": "WorkingStorageUsedInBytes"
1465
+ },
1466
+ "working_storage_allocated_in_bytes": {
1467
+ "type": "integer",
1468
+ "serialized_name": "WorkingStorageAllocatedInBytes"
1469
+ }
1470
+ }
1471
+ }
1472
+ },
1473
+ "disable_gateway": {
1474
+ "name": "DisableGateway",
1475
+ "http_method": "POST",
1476
+ "http_path": "/",
1477
+ "input": {
1478
+ "type": "input",
1479
+ "members": {
1480
+ "gateway_arn": {
1481
+ "type": "string",
1482
+ "required": true,
1483
+ "serialized_name": "GatewayARN"
1484
+ }
1485
+ }
1486
+ },
1487
+ "output": {
1488
+ "type": "output",
1489
+ "members": {
1490
+ "gateway_arn": {
1491
+ "type": "string",
1492
+ "serialized_name": "GatewayARN"
1493
+ }
1494
+ }
1495
+ }
1496
+ },
1497
+ "list_gateways": {
1498
+ "name": "ListGateways",
1499
+ "http_method": "POST",
1500
+ "http_path": "/",
1501
+ "input": {
1502
+ "type": "input",
1503
+ "members": {
1504
+ "marker": {
1505
+ "type": "string",
1506
+ "serialized_name": "Marker"
1507
+ },
1508
+ "limit": {
1509
+ "type": "integer",
1510
+ "serialized_name": "Limit"
1511
+ }
1512
+ }
1513
+ },
1514
+ "output": {
1515
+ "type": "output",
1516
+ "members": {
1517
+ "gateways": {
1518
+ "type": "list",
1519
+ "serialized_name": "Gateways",
1520
+ "members": {
1521
+ "type": "structure",
1522
+ "members": {
1523
+ "gateway_arn": {
1524
+ "type": "string",
1525
+ "serialized_name": "GatewayARN"
1526
+ },
1527
+ "gateway_type": {
1528
+ "type": "string",
1529
+ "serialized_name": "GatewayType"
1530
+ },
1531
+ "gateway_operational_state": {
1532
+ "type": "string",
1533
+ "serialized_name": "GatewayOperationalState"
1534
+ }
1535
+ }
1536
+ }
1537
+ },
1538
+ "marker": {
1539
+ "type": "string",
1540
+ "serialized_name": "Marker"
1541
+ }
1542
+ }
1543
+ }
1544
+ },
1545
+ "list_local_disks": {
1546
+ "name": "ListLocalDisks",
1547
+ "http_method": "POST",
1548
+ "http_path": "/",
1549
+ "input": {
1550
+ "type": "input",
1551
+ "members": {
1552
+ "gateway_arn": {
1553
+ "type": "string",
1554
+ "required": true,
1555
+ "serialized_name": "GatewayARN"
1556
+ }
1557
+ }
1558
+ },
1559
+ "output": {
1560
+ "type": "output",
1561
+ "members": {
1562
+ "gateway_arn": {
1563
+ "type": "string",
1564
+ "serialized_name": "GatewayARN"
1565
+ },
1566
+ "disks": {
1567
+ "type": "list",
1568
+ "serialized_name": "Disks",
1569
+ "members": {
1570
+ "type": "structure",
1571
+ "members": {
1572
+ "disk_id": {
1573
+ "type": "string",
1574
+ "serialized_name": "DiskId"
1575
+ },
1576
+ "disk_path": {
1577
+ "type": "string",
1578
+ "serialized_name": "DiskPath"
1579
+ },
1580
+ "disk_node": {
1581
+ "type": "string",
1582
+ "serialized_name": "DiskNode"
1583
+ },
1584
+ "disk_size_in_bytes": {
1585
+ "type": "integer",
1586
+ "serialized_name": "DiskSizeInBytes"
1587
+ },
1588
+ "disk_allocation_type": {
1589
+ "type": "string",
1590
+ "serialized_name": "DiskAllocationType"
1591
+ },
1592
+ "disk_allocation_resource": {
1593
+ "type": "string",
1594
+ "serialized_name": "DiskAllocationResource"
1595
+ }
1596
+ }
1597
+ }
1598
+ }
1599
+ }
1600
+ }
1601
+ },
1602
+ "list_volume_recovery_points": {
1603
+ "name": "ListVolumeRecoveryPoints",
1604
+ "http_method": "POST",
1605
+ "http_path": "/",
1606
+ "input": {
1607
+ "type": "input",
1608
+ "members": {
1609
+ "gateway_arn": {
1610
+ "type": "string",
1611
+ "required": true,
1612
+ "serialized_name": "GatewayARN"
1613
+ }
1614
+ }
1615
+ },
1616
+ "output": {
1617
+ "type": "output",
1618
+ "members": {
1619
+ "gateway_arn": {
1620
+ "type": "string",
1621
+ "serialized_name": "GatewayARN"
1622
+ },
1623
+ "volume_recovery_point_infos": {
1624
+ "type": "list",
1625
+ "serialized_name": "VolumeRecoveryPointInfos",
1626
+ "members": {
1627
+ "type": "structure",
1628
+ "members": {
1629
+ "volume_arn": {
1630
+ "type": "string",
1631
+ "serialized_name": "VolumeARN"
1632
+ },
1633
+ "volume_size_in_bytes": {
1634
+ "type": "integer",
1635
+ "serialized_name": "VolumeSizeInBytes"
1636
+ },
1637
+ "volume_usage_in_bytes": {
1638
+ "type": "integer",
1639
+ "serialized_name": "VolumeUsageInBytes"
1640
+ },
1641
+ "volume_recovery_point_time": {
1642
+ "type": "string",
1643
+ "serialized_name": "VolumeRecoveryPointTime"
1644
+ }
1645
+ }
1646
+ }
1647
+ }
1648
+ }
1649
+ }
1650
+ },
1651
+ "list_volumes": {
1652
+ "name": "ListVolumes",
1653
+ "http_method": "POST",
1654
+ "http_path": "/",
1655
+ "input": {
1656
+ "type": "input",
1657
+ "members": {
1658
+ "gateway_arn": {
1659
+ "type": "string",
1660
+ "required": true,
1661
+ "serialized_name": "GatewayARN"
1662
+ },
1663
+ "marker": {
1664
+ "type": "string",
1665
+ "serialized_name": "Marker"
1666
+ },
1667
+ "limit": {
1668
+ "type": "integer",
1669
+ "serialized_name": "Limit"
1670
+ }
1671
+ }
1672
+ },
1673
+ "output": {
1674
+ "type": "output",
1675
+ "members": {
1676
+ "gateway_arn": {
1677
+ "type": "string",
1678
+ "serialized_name": "GatewayARN"
1679
+ },
1680
+ "marker": {
1681
+ "type": "string",
1682
+ "serialized_name": "Marker"
1683
+ },
1684
+ "volume_infos": {
1685
+ "type": "list",
1686
+ "serialized_name": "VolumeInfos",
1687
+ "members": {
1688
+ "type": "structure",
1689
+ "members": {
1690
+ "volume_arn": {
1691
+ "type": "string",
1692
+ "serialized_name": "VolumeARN"
1693
+ },
1694
+ "volume_type": {
1695
+ "type": "string",
1696
+ "serialized_name": "VolumeType"
1697
+ }
1698
+ }
1699
+ }
1700
+ }
1701
+ }
1702
+ }
1703
+ },
1704
+ "retrieve_tape_archive": {
1705
+ "name": "RetrieveTapeArchive",
1706
+ "http_method": "POST",
1707
+ "http_path": "/",
1708
+ "input": {
1709
+ "type": "input",
1710
+ "members": {
1711
+ "tape_arn": {
1712
+ "type": "string",
1713
+ "required": true,
1714
+ "serialized_name": "TapeARN"
1715
+ },
1716
+ "gateway_arn": {
1717
+ "type": "string",
1718
+ "required": true,
1719
+ "serialized_name": "GatewayARN"
1720
+ }
1721
+ }
1722
+ },
1723
+ "output": {
1724
+ "type": "output",
1725
+ "members": {
1726
+ "tape_arn": {
1727
+ "type": "string",
1728
+ "serialized_name": "TapeARN"
1729
+ }
1730
+ }
1731
+ }
1732
+ },
1733
+ "retrieve_tape_recovery_point": {
1734
+ "name": "RetrieveTapeRecoveryPoint",
1735
+ "http_method": "POST",
1736
+ "http_path": "/",
1737
+ "input": {
1738
+ "type": "input",
1739
+ "members": {
1740
+ "tape_arn": {
1741
+ "type": "string",
1742
+ "required": true,
1743
+ "serialized_name": "TapeARN"
1744
+ },
1745
+ "gateway_arn": {
1746
+ "type": "string",
1747
+ "required": true,
1748
+ "serialized_name": "GatewayARN"
1749
+ }
1750
+ }
1751
+ },
1752
+ "output": {
1753
+ "type": "output",
1754
+ "members": {
1755
+ "tape_arn": {
1756
+ "type": "string",
1757
+ "serialized_name": "TapeARN"
1758
+ }
1759
+ }
1760
+ }
1761
+ },
1762
+ "shutdown_gateway": {
1763
+ "name": "ShutdownGateway",
1764
+ "http_method": "POST",
1765
+ "http_path": "/",
1766
+ "input": {
1767
+ "type": "input",
1768
+ "members": {
1769
+ "gateway_arn": {
1770
+ "type": "string",
1771
+ "required": true,
1772
+ "serialized_name": "GatewayARN"
1773
+ }
1774
+ }
1775
+ },
1776
+ "output": {
1777
+ "type": "output",
1778
+ "members": {
1779
+ "gateway_arn": {
1780
+ "type": "string",
1781
+ "serialized_name": "GatewayARN"
1782
+ }
1783
+ }
1784
+ }
1785
+ },
1786
+ "start_gateway": {
1787
+ "name": "StartGateway",
1788
+ "http_method": "POST",
1789
+ "http_path": "/",
1790
+ "input": {
1791
+ "type": "input",
1792
+ "members": {
1793
+ "gateway_arn": {
1794
+ "type": "string",
1795
+ "required": true,
1796
+ "serialized_name": "GatewayARN"
1797
+ }
1798
+ }
1799
+ },
1800
+ "output": {
1801
+ "type": "output",
1802
+ "members": {
1803
+ "gateway_arn": {
1804
+ "type": "string",
1805
+ "serialized_name": "GatewayARN"
1806
+ }
1807
+ }
1808
+ }
1809
+ },
1810
+ "update_bandwidth_rate_limit": {
1811
+ "name": "UpdateBandwidthRateLimit",
1812
+ "http_method": "POST",
1813
+ "http_path": "/",
1814
+ "input": {
1815
+ "type": "input",
1816
+ "members": {
1817
+ "gateway_arn": {
1818
+ "type": "string",
1819
+ "required": true,
1820
+ "serialized_name": "GatewayARN"
1821
+ },
1822
+ "average_upload_rate_limit_in_bits_per_sec": {
1823
+ "type": "integer",
1824
+ "serialized_name": "AverageUploadRateLimitInBitsPerSec"
1825
+ },
1826
+ "average_download_rate_limit_in_bits_per_sec": {
1827
+ "type": "integer",
1828
+ "serialized_name": "AverageDownloadRateLimitInBitsPerSec"
1829
+ }
1830
+ }
1831
+ },
1832
+ "output": {
1833
+ "type": "output",
1834
+ "members": {
1835
+ "gateway_arn": {
1836
+ "type": "string",
1837
+ "serialized_name": "GatewayARN"
1838
+ }
1839
+ }
1840
+ }
1841
+ },
1842
+ "update_chap_credentials": {
1843
+ "name": "UpdateChapCredentials",
1844
+ "http_method": "POST",
1845
+ "http_path": "/",
1846
+ "input": {
1847
+ "type": "input",
1848
+ "members": {
1849
+ "target_arn": {
1850
+ "type": "string",
1851
+ "required": true,
1852
+ "serialized_name": "TargetARN"
1853
+ },
1854
+ "secret_to_authenticate_initiator": {
1855
+ "type": "string",
1856
+ "required": true,
1857
+ "serialized_name": "SecretToAuthenticateInitiator"
1858
+ },
1859
+ "initiator_name": {
1860
+ "type": "string",
1861
+ "required": true,
1862
+ "serialized_name": "InitiatorName"
1863
+ },
1864
+ "secret_to_authenticate_target": {
1865
+ "type": "string",
1866
+ "serialized_name": "SecretToAuthenticateTarget"
1867
+ }
1868
+ }
1869
+ },
1870
+ "output": {
1871
+ "type": "output",
1872
+ "members": {
1873
+ "target_arn": {
1874
+ "type": "string",
1875
+ "serialized_name": "TargetARN"
1876
+ },
1877
+ "initiator_name": {
1878
+ "type": "string",
1879
+ "serialized_name": "InitiatorName"
1880
+ }
1881
+ }
1882
+ }
1883
+ },
1884
+ "update_gateway_information": {
1885
+ "name": "UpdateGatewayInformation",
1886
+ "http_method": "POST",
1887
+ "http_path": "/",
1888
+ "input": {
1889
+ "type": "input",
1890
+ "members": {
1891
+ "gateway_arn": {
1892
+ "type": "string",
1893
+ "required": true,
1894
+ "serialized_name": "GatewayARN"
1895
+ },
1896
+ "gateway_name": {
1897
+ "type": "string",
1898
+ "serialized_name": "GatewayName"
1899
+ },
1900
+ "gateway_timezone": {
1901
+ "type": "string",
1902
+ "serialized_name": "GatewayTimezone"
1903
+ }
1904
+ }
1905
+ },
1906
+ "output": {
1907
+ "type": "output",
1908
+ "members": {
1909
+ "gateway_arn": {
1910
+ "type": "string",
1911
+ "serialized_name": "GatewayARN"
1912
+ }
1913
+ }
1914
+ }
1915
+ },
1916
+ "update_gateway_software_now": {
1917
+ "name": "UpdateGatewaySoftwareNow",
1918
+ "http_method": "POST",
1919
+ "http_path": "/",
1920
+ "input": {
1921
+ "type": "input",
1922
+ "members": {
1923
+ "gateway_arn": {
1924
+ "type": "string",
1925
+ "required": true,
1926
+ "serialized_name": "GatewayARN"
1927
+ }
1928
+ }
1929
+ },
1930
+ "output": {
1931
+ "type": "output",
1932
+ "members": {
1933
+ "gateway_arn": {
1934
+ "type": "string",
1935
+ "serialized_name": "GatewayARN"
1936
+ }
1937
+ }
1938
+ }
1939
+ },
1940
+ "update_maintenance_start_time": {
1941
+ "name": "UpdateMaintenanceStartTime",
1942
+ "http_method": "POST",
1943
+ "http_path": "/",
1944
+ "input": {
1945
+ "type": "input",
1946
+ "members": {
1947
+ "gateway_arn": {
1948
+ "type": "string",
1949
+ "required": true,
1950
+ "serialized_name": "GatewayARN"
1951
+ },
1952
+ "hour_of_day": {
1953
+ "type": "integer",
1954
+ "required": true,
1955
+ "serialized_name": "HourOfDay"
1956
+ },
1957
+ "minute_of_hour": {
1958
+ "type": "integer",
1959
+ "required": true,
1960
+ "serialized_name": "MinuteOfHour"
1961
+ },
1962
+ "day_of_week": {
1963
+ "type": "integer",
1964
+ "required": true,
1965
+ "serialized_name": "DayOfWeek"
1966
+ }
1967
+ }
1968
+ },
1969
+ "output": {
1970
+ "type": "output",
1971
+ "members": {
1972
+ "gateway_arn": {
1973
+ "type": "string",
1974
+ "serialized_name": "GatewayARN"
1975
+ }
1976
+ }
1977
+ }
1978
+ },
1979
+ "update_snapshot_schedule": {
1980
+ "name": "UpdateSnapshotSchedule",
1981
+ "http_method": "POST",
1982
+ "http_path": "/",
1983
+ "input": {
1984
+ "type": "input",
1985
+ "members": {
1986
+ "volume_arn": {
1987
+ "type": "string",
1988
+ "required": true,
1989
+ "serialized_name": "VolumeARN"
1990
+ },
1991
+ "start_at": {
1992
+ "type": "integer",
1993
+ "required": true,
1994
+ "serialized_name": "StartAt"
1995
+ },
1996
+ "recurrence_in_hours": {
1997
+ "type": "integer",
1998
+ "required": true,
1999
+ "serialized_name": "RecurrenceInHours"
2000
+ },
2001
+ "description": {
2002
+ "type": "string",
2003
+ "serialized_name": "Description"
2004
+ }
2005
+ }
2006
+ },
2007
+ "output": {
2008
+ "type": "output",
2009
+ "members": {
2010
+ "volume_arn": {
2011
+ "type": "string",
2012
+ "serialized_name": "VolumeARN"
2013
+ }
2014
+ }
2015
+ }
2016
+ }
2017
+ }
2018
+ }