aws-sdk-core 2.11.632 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/VERSION +1 -0
- data/ca-bundle.crt +3541 -3615
- data/lib/aws-sdk-core.rb +64 -615
- data/lib/aws-sdk-core/client_stubs.rb +3 -64
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
- data/lib/aws-sdk-core/eager_loader.rb +0 -1
- data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
- data/lib/aws-sdk-core/errors.rb +12 -34
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
- data/lib/aws-sdk-core/json.rb +4 -5
- data/lib/aws-sdk-core/json/handler.rb +3 -2
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +10 -4
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
- data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/handler.rb +15 -16
- data/lib/aws-sdk-core/query/param_builder.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
- data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
- data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
- data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
- data/lib/aws-sdk-core/shared_config.rb +1 -38
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +17 -12
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
- data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
- data/lib/aws-sdk-core/util.rb +39 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +2 -2
- data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
- data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1198 -0
- data/lib/aws-sdk-sts/client_api.rb +266 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +23 -0
- data/lib/aws-sdk-sts/resource.rb +25 -0
- data/lib/aws-sdk-sts/types.rb +854 -0
- data/lib/seahorse.rb +50 -60
- data/lib/seahorse/client/base.rb +1 -7
- data/lib/seahorse/client/configuration.rb +2 -8
- data/lib/seahorse/client/events.rb +1 -1
- data/lib/seahorse/client/http/response.rb +3 -3
- data/lib/seahorse/client/logging/formatter.rb +3 -3
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
- data/lib/seahorse/client/net_http/handler.rb +4 -5
- data/lib/seahorse/client/net_http/patches.rb +1 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugin_list.rb +1 -3
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +2 -0
- data/lib/seahorse/model/api.rb +4 -4
- data/lib/seahorse/model/operation.rb +0 -9
- data/lib/seahorse/model/shapes.rb +18 -2
- data/lib/seahorse/util.rb +0 -21
- metadata +42 -1249
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
- data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -873
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -2419
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5412
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1699
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
- data/apis/appflow/2020-08-23/api-2.json +0 -2422
- data/apis/appflow/2020-08-23/examples-1.json +0 -5
- data/apis/appflow/2020-08-23/paginators-1.json +0 -23
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -1261
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3764
- data/apis/appmesh/2019-01-25/examples-1.json +0 -5
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
- data/apis/appstream/2016-12-01/api-2.json +0 -2390
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2294
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -1403
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -48
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2522
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -64
- data/apis/batch/2016-08-10/api-2.json +0 -1360
- data/apis/batch/2016-08-10/examples-1.json +0 -687
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/braket/2019-09-01/api-2.json +0 -703
- data/apis/braket/2019-09-01/examples-1.json +0 -5
- data/apis/braket/2019-09-01/paginators-1.json +0 -16
- data/apis/budgets/2016-10-20/api-2.json +0 -1444
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -46
- data/apis/ce/2017-10-25/api-2.json +0 -2268
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -19
- data/apis/chime/2018-05-01/api-2.json +0 -8964
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -124
- data/apis/cloud9/2017-09-23/api-2.json +0 -691
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/smoke.json +0 -19
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
- data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
- data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
- data/apis/cloudfront/2020-05-31/smoke.json +0 -20
- data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
- data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
- data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
- data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
- data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
- data/apis/codebuild/2016-10-06/api-2.json +0 -2438
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -5517
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
- data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -3004
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
- data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
- data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -4378
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -26
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -4452
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -116
- data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
- data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
- data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/api-2.json +0 -295
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/databrew/2017-07-25/api-2.json +0 -2127
- data/apis/databrew/2017-07-25/examples-1.json +0 -5
- data/apis/databrew/2017-07-25/paginators-1.json +0 -46
- data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
- data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1675
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/detective/2018-10-26/api-2.json +0 -486
- data/apis/detective/2018-10-26/examples-1.json +0 -5
- data/apis/detective/2018-10-26/paginators-1.json +0 -19
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2188
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1369
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -696
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2844
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -94
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2535
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -73
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -3179
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -818
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ebs/2019-11-02/api-2.json +0 -645
- data/apis/ebs/2019-11-02/examples-1.json +0 -5
- data/apis/ebs/2019-11-02/paginators-1.json +0 -14
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -31412
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -594
- data/apis/ec2/2016-11-15/resources-1.json +0 -2907
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -640
- data/apis/ecr/2015-09-21/api-2.json +0 -1684
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecr/2015-09-21/waiters-2.json +0 -45
- data/apis/ecs/2014-11-13/api-2.json +0 -3263
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -52
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -1485
- data/apis/eks/2017-11-01/examples-1.json +0 -135
- data/apis/eks/2017-11-01/paginators-1.json +0 -28
- data/apis/eks/2017-11-01/waiters-2.json +0 -91
- data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
- data/apis/elasticache/2015-02-02/api-2.json +0 -4349
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -2533
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -59
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -2052
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1717
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -1449
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1565
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -146
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
- data/apis/fsx/2018-03-01/api-2.json +0 -1642
- data/apis/fsx/2018-03-01/examples-1.json +0 -395
- data/apis/fsx/2018-03-01/paginators-1.json +0 -24
- data/apis/gamelift/2015-10-01/api-2.json +0 -4505
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -8102
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -154
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5244
- data/apis/groundstation/2019-05-23/api-2.json +0 -1463
- data/apis/groundstation/2019-05-23/examples-1.json +0 -5
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -4370
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
- data/apis/health/2016-08-04/api-2.json +0 -847
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -55
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/honeycode/2020-03-01/api-2.json +0 -321
- data/apis/honeycode/2020-03-01/examples-1.json +0 -5
- data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
- data/apis/iam/2010-05-08/api-2.json +0 -5821
- data/apis/iam/2010-05-08/examples-1.json +0 -1577
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/identitystore/2020-06-15/api-2.json +0 -318
- data/apis/identitystore/2020-06-15/examples-1.json +0 -5
- data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
- data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
- data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
- data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -343
- data/apis/iot-data/2015-05-28/examples-1.json +0 -5
- data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
- data/apis/iot-data/2015-05-28/smoke.json +0 -13
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -11835
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -294
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1262
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
- data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
- data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
- data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/ivs/2020-07-14/api-2.json +0 -981
- data/apis/ivs/2020-07-14/examples-1.json +0 -5
- data/apis/ivs/2020-07-14/paginators-1.json +0 -33
- data/apis/kafka/2018-11-14/api-2.json +0 -2917
- data/apis/kafka/2018-11-14/paginators-1.json +0 -46
- data/apis/kendra/2019-02-03/api-2.json +0 -2561
- data/apis/kendra/2019-02-03/examples-1.json +0 -5
- data/apis/kendra/2019-02-03/paginators-1.json +0 -19
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
- data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
- data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1449
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
- data/apis/kms/2014-11-01/api-2.json +0 -2158
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -737
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -3067
- data/apis/lambda/2015-03-31/examples-1.json +0 -1513
- data/apis/lambda/2015-03-31/paginators-1.json +0 -52
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -74
- data/apis/lex-models/2017-04-19/api-2.json +0 -2688
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -886
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -6873
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1819
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/macie2/2020-01-01/api-2.json +0 -5775
- data/apis/macie2/2020-01-01/paginators-1.json +0 -58
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
- data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
- data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -12784
- data/apis/medialive/2017-10-14/paginators-1.json +0 -64
- data/apis/medialive/2017-10-14/waiters-2.json +0 -298
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -871
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -629
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
- data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
- data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1978
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
- data/apis/monitoring/2010-08-01/resources-1.json +0 -505
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
- data/apis/mq/2017-11-27/api-2.json +0 -2783
- data/apis/mq/2017-11-27/paginators-1.json +0 -10
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3822
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -67
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
- data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
- data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
- data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
- data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
- data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2618
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -86
- data/apis/outposts/2019-12-03/api-2.json +0 -432
- data/apis/outposts/2019-12-03/examples-1.json +0 -5
- data/apis/outposts/2019-12-03/paginators-1.json +0 -14
- data/apis/personalize-events/2018-03-22/api-2.json +0 -214
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -2038
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -64
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -836
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -999
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -24
- data/apis/quicksight/2018-04-01/api-2.json +0 -7780
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
- data/apis/ram/2018-01-04/api-2.json +0 -1315
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -552
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -7765
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -212
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/redshift-data/2019-12-20/api-2.json +0 -501
- data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
- data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
- data/apis/redshift/2012-12-01/api-2.json +0 -5527
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -154
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -3180
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
- data/apis/resource-groups/2017-11-27/api-2.json +0 -927
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
- data/apis/robomaker/2018-06-29/api-2.json +0 -3160
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
- data/apis/route53/2013-04-01/api-2.json +0 -3881
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -39
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1507
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53domains/2014-05-15/smoke.json +0 -18
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -7474
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -2903
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -19
- data/apis/s3outposts/2017-07-25/api-2.json +0 -250
- data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
- data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
- data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
- data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
- data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -786
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/schemas/2019-12-02/api-2.json +0 -2980
- data/apis/schemas/2019-12-02/paginators-1.json +0 -34
- data/apis/schemas/2019-12-02/waiters-2.json +0 -36
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -4515
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
- data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
- data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/sesv2/2019-09-27/api-2.json +0 -3966
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
- data/apis/shield/2016-06-02/api-2.json +0 -1445
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -26
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -822
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1775
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -1116
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1471
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1139
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -16
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -9349
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -259
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/ssm/2014-11-06/waiters-2.json +0 -60
- data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
- data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
- data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
- data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
- data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
- data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
- data/apis/sso/2019-06-10/api-2.json +0 -281
- data/apis/sso/2019-06-10/examples-1.json +0 -5
- data/apis/sso/2019-06-10/paginators-1.json +0 -16
- data/apis/states/2016-11-23/api-2.json +0 -1539
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -599
- data/apis/sts/2011-06-15/examples-1.json +0 -271
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/synthetics/2017-10-11/api-2.json +0 -790
- data/apis/synthetics/2017-10-11/examples-1.json +0 -5
- data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
- data/apis/textract/2018-06-27/api-2.json +0 -690
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/timestream-query/2018-11-01/api-2.json +0 -299
- data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
- data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
- data/apis/timestream-write/2018-11-01/api-2.json +0 -775
- data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
- data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -1327
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
- data/apis/transfer/2018-11-05/api-2.json +0 -1110
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -24
- data/apis/translate/2017-07-01/api-2.json +0 -660
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -14
- data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3958
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/wafv2/2019-07-29/api-2.json +0 -2698
- data/apis/wafv2/2019-07-29/examples-1.json +0 -5
- data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
- data/apis/wafv2/2019-07-29/smoke.json +0 -22
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1393
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -2430
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -49
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -2442
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1792
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -54
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -9478
- data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -304
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/appconfig.rb +0 -6
- data/lib/aws-sdk-core/appflow.rb +0 -6
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appregistry.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/braket.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -78
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -6
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codeartifact.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
- data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/codestarconnections.rb +0 -6
- data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/connectparticipant.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/dataexchange.rb +0 -5
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/detective.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ebs.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -7
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
- data/lib/aws-sdk-core/elasticinference.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/frauddetector.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/honeycode.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/identitystore.rb +0 -6
- data/lib/aws-sdk-core/imagebuilder.rb +0 -6
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
- data/lib/aws-sdk-core/iotsitewise.rb +0 -7
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/ivs.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kendra.rb +0 -6
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/macie2.rb +0 -5
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/networkfirewall.rb +0 -6
- data/lib/aws-sdk-core/networkmanager.rb +0 -6
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/outposts.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
- data/lib/aws-sdk-core/rekognition.rb +0 -7
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/s3outposts.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/schemas.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/sesv2.rb +0 -6
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -7
- data/lib/aws-sdk-core/sso.rb +0 -6
- data/lib/aws-sdk-core/ssoadmin.rb +0 -6
- data/lib/aws-sdk-core/ssooidc.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/synthetics.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/timestreamquery.rb +0 -6
- data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/wafv2.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -949
| @@ -1,28 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "pagination": {
         | 
| 3 | 
            -
                "GetExecutionHistory": {
         | 
| 4 | 
            -
                  "input_token": "nextToken",
         | 
| 5 | 
            -
                  "limit_key": "maxResults",
         | 
| 6 | 
            -
                  "output_token": "nextToken",
         | 
| 7 | 
            -
                  "result_key": "events"
         | 
| 8 | 
            -
                },
         | 
| 9 | 
            -
                "ListActivities": {
         | 
| 10 | 
            -
                  "input_token": "nextToken",
         | 
| 11 | 
            -
                  "limit_key": "maxResults",
         | 
| 12 | 
            -
                  "output_token": "nextToken",
         | 
| 13 | 
            -
                  "result_key": "activities"
         | 
| 14 | 
            -
                },
         | 
| 15 | 
            -
                "ListExecutions": {
         | 
| 16 | 
            -
                  "input_token": "nextToken",
         | 
| 17 | 
            -
                  "limit_key": "maxResults",
         | 
| 18 | 
            -
                  "output_token": "nextToken",
         | 
| 19 | 
            -
                  "result_key": "executions"
         | 
| 20 | 
            -
                },
         | 
| 21 | 
            -
                "ListStateMachines": {
         | 
| 22 | 
            -
                  "input_token": "nextToken",
         | 
| 23 | 
            -
                  "limit_key": "maxResults",
         | 
| 24 | 
            -
                  "output_token": "nextToken",
         | 
| 25 | 
            -
                  "result_key": "stateMachines"
         | 
| 26 | 
            -
                }
         | 
| 27 | 
            -
              }
         | 
| 28 | 
            -
            }
         | 
| @@ -1,3733 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "version":"2.0",
         | 
| 3 | 
            -
              "metadata":{
         | 
| 4 | 
            -
                "apiVersion":"2013-06-30",
         | 
| 5 | 
            -
                "endpointPrefix":"storagegateway",
         | 
| 6 | 
            -
                "jsonVersion":"1.1",
         | 
| 7 | 
            -
                "protocol":"json",
         | 
| 8 | 
            -
                "serviceFullName":"AWS Storage Gateway",
         | 
| 9 | 
            -
                "serviceId":"Storage Gateway",
         | 
| 10 | 
            -
                "signatureVersion":"v4",
         | 
| 11 | 
            -
                "targetPrefix":"StorageGateway_20130630",
         | 
| 12 | 
            -
                "uid":"storagegateway-2013-06-30"
         | 
| 13 | 
            -
              },
         | 
| 14 | 
            -
              "operations":{
         | 
| 15 | 
            -
                "ActivateGateway":{
         | 
| 16 | 
            -
                  "name":"ActivateGateway",
         | 
| 17 | 
            -
                  "http":{
         | 
| 18 | 
            -
                    "method":"POST",
         | 
| 19 | 
            -
                    "requestUri":"/"
         | 
| 20 | 
            -
                  },
         | 
| 21 | 
            -
                  "input":{"shape":"ActivateGatewayInput"},
         | 
| 22 | 
            -
                  "output":{"shape":"ActivateGatewayOutput"},
         | 
| 23 | 
            -
                  "errors":[
         | 
| 24 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 25 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 26 | 
            -
                  ]
         | 
| 27 | 
            -
                },
         | 
| 28 | 
            -
                "AddCache":{
         | 
| 29 | 
            -
                  "name":"AddCache",
         | 
| 30 | 
            -
                  "http":{
         | 
| 31 | 
            -
                    "method":"POST",
         | 
| 32 | 
            -
                    "requestUri":"/"
         | 
| 33 | 
            -
                  },
         | 
| 34 | 
            -
                  "input":{"shape":"AddCacheInput"},
         | 
| 35 | 
            -
                  "output":{"shape":"AddCacheOutput"},
         | 
| 36 | 
            -
                  "errors":[
         | 
| 37 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 38 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 39 | 
            -
                  ]
         | 
| 40 | 
            -
                },
         | 
| 41 | 
            -
                "AddTagsToResource":{
         | 
| 42 | 
            -
                  "name":"AddTagsToResource",
         | 
| 43 | 
            -
                  "http":{
         | 
| 44 | 
            -
                    "method":"POST",
         | 
| 45 | 
            -
                    "requestUri":"/"
         | 
| 46 | 
            -
                  },
         | 
| 47 | 
            -
                  "input":{"shape":"AddTagsToResourceInput"},
         | 
| 48 | 
            -
                  "output":{"shape":"AddTagsToResourceOutput"},
         | 
| 49 | 
            -
                  "errors":[
         | 
| 50 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 51 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 52 | 
            -
                  ]
         | 
| 53 | 
            -
                },
         | 
| 54 | 
            -
                "AddUploadBuffer":{
         | 
| 55 | 
            -
                  "name":"AddUploadBuffer",
         | 
| 56 | 
            -
                  "http":{
         | 
| 57 | 
            -
                    "method":"POST",
         | 
| 58 | 
            -
                    "requestUri":"/"
         | 
| 59 | 
            -
                  },
         | 
| 60 | 
            -
                  "input":{"shape":"AddUploadBufferInput"},
         | 
| 61 | 
            -
                  "output":{"shape":"AddUploadBufferOutput"},
         | 
| 62 | 
            -
                  "errors":[
         | 
| 63 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 64 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 65 | 
            -
                  ]
         | 
| 66 | 
            -
                },
         | 
| 67 | 
            -
                "AddWorkingStorage":{
         | 
| 68 | 
            -
                  "name":"AddWorkingStorage",
         | 
| 69 | 
            -
                  "http":{
         | 
| 70 | 
            -
                    "method":"POST",
         | 
| 71 | 
            -
                    "requestUri":"/"
         | 
| 72 | 
            -
                  },
         | 
| 73 | 
            -
                  "input":{"shape":"AddWorkingStorageInput"},
         | 
| 74 | 
            -
                  "output":{"shape":"AddWorkingStorageOutput"},
         | 
| 75 | 
            -
                  "errors":[
         | 
| 76 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 77 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 78 | 
            -
                  ]
         | 
| 79 | 
            -
                },
         | 
| 80 | 
            -
                "AssignTapePool":{
         | 
| 81 | 
            -
                  "name":"AssignTapePool",
         | 
| 82 | 
            -
                  "http":{
         | 
| 83 | 
            -
                    "method":"POST",
         | 
| 84 | 
            -
                    "requestUri":"/"
         | 
| 85 | 
            -
                  },
         | 
| 86 | 
            -
                  "input":{"shape":"AssignTapePoolInput"},
         | 
| 87 | 
            -
                  "output":{"shape":"AssignTapePoolOutput"},
         | 
| 88 | 
            -
                  "errors":[
         | 
| 89 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 90 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 91 | 
            -
                  ]
         | 
| 92 | 
            -
                },
         | 
| 93 | 
            -
                "AttachVolume":{
         | 
| 94 | 
            -
                  "name":"AttachVolume",
         | 
| 95 | 
            -
                  "http":{
         | 
| 96 | 
            -
                    "method":"POST",
         | 
| 97 | 
            -
                    "requestUri":"/"
         | 
| 98 | 
            -
                  },
         | 
| 99 | 
            -
                  "input":{"shape":"AttachVolumeInput"},
         | 
| 100 | 
            -
                  "output":{"shape":"AttachVolumeOutput"},
         | 
| 101 | 
            -
                  "errors":[
         | 
| 102 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 103 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 104 | 
            -
                  ]
         | 
| 105 | 
            -
                },
         | 
| 106 | 
            -
                "CancelArchival":{
         | 
| 107 | 
            -
                  "name":"CancelArchival",
         | 
| 108 | 
            -
                  "http":{
         | 
| 109 | 
            -
                    "method":"POST",
         | 
| 110 | 
            -
                    "requestUri":"/"
         | 
| 111 | 
            -
                  },
         | 
| 112 | 
            -
                  "input":{"shape":"CancelArchivalInput"},
         | 
| 113 | 
            -
                  "output":{"shape":"CancelArchivalOutput"},
         | 
| 114 | 
            -
                  "errors":[
         | 
| 115 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 116 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 117 | 
            -
                  ]
         | 
| 118 | 
            -
                },
         | 
| 119 | 
            -
                "CancelRetrieval":{
         | 
| 120 | 
            -
                  "name":"CancelRetrieval",
         | 
| 121 | 
            -
                  "http":{
         | 
| 122 | 
            -
                    "method":"POST",
         | 
| 123 | 
            -
                    "requestUri":"/"
         | 
| 124 | 
            -
                  },
         | 
| 125 | 
            -
                  "input":{"shape":"CancelRetrievalInput"},
         | 
| 126 | 
            -
                  "output":{"shape":"CancelRetrievalOutput"},
         | 
| 127 | 
            -
                  "errors":[
         | 
| 128 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 129 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 130 | 
            -
                  ]
         | 
| 131 | 
            -
                },
         | 
| 132 | 
            -
                "CreateCachediSCSIVolume":{
         | 
| 133 | 
            -
                  "name":"CreateCachediSCSIVolume",
         | 
| 134 | 
            -
                  "http":{
         | 
| 135 | 
            -
                    "method":"POST",
         | 
| 136 | 
            -
                    "requestUri":"/"
         | 
| 137 | 
            -
                  },
         | 
| 138 | 
            -
                  "input":{"shape":"CreateCachediSCSIVolumeInput"},
         | 
| 139 | 
            -
                  "output":{"shape":"CreateCachediSCSIVolumeOutput"},
         | 
| 140 | 
            -
                  "errors":[
         | 
| 141 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 142 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 143 | 
            -
                  ]
         | 
| 144 | 
            -
                },
         | 
| 145 | 
            -
                "CreateNFSFileShare":{
         | 
| 146 | 
            -
                  "name":"CreateNFSFileShare",
         | 
| 147 | 
            -
                  "http":{
         | 
| 148 | 
            -
                    "method":"POST",
         | 
| 149 | 
            -
                    "requestUri":"/"
         | 
| 150 | 
            -
                  },
         | 
| 151 | 
            -
                  "input":{"shape":"CreateNFSFileShareInput"},
         | 
| 152 | 
            -
                  "output":{"shape":"CreateNFSFileShareOutput"},
         | 
| 153 | 
            -
                  "errors":[
         | 
| 154 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 155 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 156 | 
            -
                  ]
         | 
| 157 | 
            -
                },
         | 
| 158 | 
            -
                "CreateSMBFileShare":{
         | 
| 159 | 
            -
                  "name":"CreateSMBFileShare",
         | 
| 160 | 
            -
                  "http":{
         | 
| 161 | 
            -
                    "method":"POST",
         | 
| 162 | 
            -
                    "requestUri":"/"
         | 
| 163 | 
            -
                  },
         | 
| 164 | 
            -
                  "input":{"shape":"CreateSMBFileShareInput"},
         | 
| 165 | 
            -
                  "output":{"shape":"CreateSMBFileShareOutput"},
         | 
| 166 | 
            -
                  "errors":[
         | 
| 167 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 168 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 169 | 
            -
                  ]
         | 
| 170 | 
            -
                },
         | 
| 171 | 
            -
                "CreateSnapshot":{
         | 
| 172 | 
            -
                  "name":"CreateSnapshot",
         | 
| 173 | 
            -
                  "http":{
         | 
| 174 | 
            -
                    "method":"POST",
         | 
| 175 | 
            -
                    "requestUri":"/"
         | 
| 176 | 
            -
                  },
         | 
| 177 | 
            -
                  "input":{"shape":"CreateSnapshotInput"},
         | 
| 178 | 
            -
                  "output":{"shape":"CreateSnapshotOutput"},
         | 
| 179 | 
            -
                  "errors":[
         | 
| 180 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 181 | 
            -
                    {"shape":"InternalServerError"},
         | 
| 182 | 
            -
                    {"shape":"ServiceUnavailableError"}
         | 
| 183 | 
            -
                  ]
         | 
| 184 | 
            -
                },
         | 
| 185 | 
            -
                "CreateSnapshotFromVolumeRecoveryPoint":{
         | 
| 186 | 
            -
                  "name":"CreateSnapshotFromVolumeRecoveryPoint",
         | 
| 187 | 
            -
                  "http":{
         | 
| 188 | 
            -
                    "method":"POST",
         | 
| 189 | 
            -
                    "requestUri":"/"
         | 
| 190 | 
            -
                  },
         | 
| 191 | 
            -
                  "input":{"shape":"CreateSnapshotFromVolumeRecoveryPointInput"},
         | 
| 192 | 
            -
                  "output":{"shape":"CreateSnapshotFromVolumeRecoveryPointOutput"},
         | 
| 193 | 
            -
                  "errors":[
         | 
| 194 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 195 | 
            -
                    {"shape":"InternalServerError"},
         | 
| 196 | 
            -
                    {"shape":"ServiceUnavailableError"}
         | 
| 197 | 
            -
                  ]
         | 
| 198 | 
            -
                },
         | 
| 199 | 
            -
                "CreateStorediSCSIVolume":{
         | 
| 200 | 
            -
                  "name":"CreateStorediSCSIVolume",
         | 
| 201 | 
            -
                  "http":{
         | 
| 202 | 
            -
                    "method":"POST",
         | 
| 203 | 
            -
                    "requestUri":"/"
         | 
| 204 | 
            -
                  },
         | 
| 205 | 
            -
                  "input":{"shape":"CreateStorediSCSIVolumeInput"},
         | 
| 206 | 
            -
                  "output":{"shape":"CreateStorediSCSIVolumeOutput"},
         | 
| 207 | 
            -
                  "errors":[
         | 
| 208 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 209 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 210 | 
            -
                  ]
         | 
| 211 | 
            -
                },
         | 
| 212 | 
            -
                "CreateTapePool":{
         | 
| 213 | 
            -
                  "name":"CreateTapePool",
         | 
| 214 | 
            -
                  "http":{
         | 
| 215 | 
            -
                    "method":"POST",
         | 
| 216 | 
            -
                    "requestUri":"/"
         | 
| 217 | 
            -
                  },
         | 
| 218 | 
            -
                  "input":{"shape":"CreateTapePoolInput"},
         | 
| 219 | 
            -
                  "output":{"shape":"CreateTapePoolOutput"},
         | 
| 220 | 
            -
                  "errors":[
         | 
| 221 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 222 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 223 | 
            -
                  ]
         | 
| 224 | 
            -
                },
         | 
| 225 | 
            -
                "CreateTapeWithBarcode":{
         | 
| 226 | 
            -
                  "name":"CreateTapeWithBarcode",
         | 
| 227 | 
            -
                  "http":{
         | 
| 228 | 
            -
                    "method":"POST",
         | 
| 229 | 
            -
                    "requestUri":"/"
         | 
| 230 | 
            -
                  },
         | 
| 231 | 
            -
                  "input":{"shape":"CreateTapeWithBarcodeInput"},
         | 
| 232 | 
            -
                  "output":{"shape":"CreateTapeWithBarcodeOutput"},
         | 
| 233 | 
            -
                  "errors":[
         | 
| 234 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 235 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 236 | 
            -
                  ]
         | 
| 237 | 
            -
                },
         | 
| 238 | 
            -
                "CreateTapes":{
         | 
| 239 | 
            -
                  "name":"CreateTapes",
         | 
| 240 | 
            -
                  "http":{
         | 
| 241 | 
            -
                    "method":"POST",
         | 
| 242 | 
            -
                    "requestUri":"/"
         | 
| 243 | 
            -
                  },
         | 
| 244 | 
            -
                  "input":{"shape":"CreateTapesInput"},
         | 
| 245 | 
            -
                  "output":{"shape":"CreateTapesOutput"},
         | 
| 246 | 
            -
                  "errors":[
         | 
| 247 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 248 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 249 | 
            -
                  ]
         | 
| 250 | 
            -
                },
         | 
| 251 | 
            -
                "DeleteAutomaticTapeCreationPolicy":{
         | 
| 252 | 
            -
                  "name":"DeleteAutomaticTapeCreationPolicy",
         | 
| 253 | 
            -
                  "http":{
         | 
| 254 | 
            -
                    "method":"POST",
         | 
| 255 | 
            -
                    "requestUri":"/"
         | 
| 256 | 
            -
                  },
         | 
| 257 | 
            -
                  "input":{"shape":"DeleteAutomaticTapeCreationPolicyInput"},
         | 
| 258 | 
            -
                  "output":{"shape":"DeleteAutomaticTapeCreationPolicyOutput"},
         | 
| 259 | 
            -
                  "errors":[
         | 
| 260 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 261 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 262 | 
            -
                  ]
         | 
| 263 | 
            -
                },
         | 
| 264 | 
            -
                "DeleteBandwidthRateLimit":{
         | 
| 265 | 
            -
                  "name":"DeleteBandwidthRateLimit",
         | 
| 266 | 
            -
                  "http":{
         | 
| 267 | 
            -
                    "method":"POST",
         | 
| 268 | 
            -
                    "requestUri":"/"
         | 
| 269 | 
            -
                  },
         | 
| 270 | 
            -
                  "input":{"shape":"DeleteBandwidthRateLimitInput"},
         | 
| 271 | 
            -
                  "output":{"shape":"DeleteBandwidthRateLimitOutput"},
         | 
| 272 | 
            -
                  "errors":[
         | 
| 273 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 274 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 275 | 
            -
                  ]
         | 
| 276 | 
            -
                },
         | 
| 277 | 
            -
                "DeleteChapCredentials":{
         | 
| 278 | 
            -
                  "name":"DeleteChapCredentials",
         | 
| 279 | 
            -
                  "http":{
         | 
| 280 | 
            -
                    "method":"POST",
         | 
| 281 | 
            -
                    "requestUri":"/"
         | 
| 282 | 
            -
                  },
         | 
| 283 | 
            -
                  "input":{"shape":"DeleteChapCredentialsInput"},
         | 
| 284 | 
            -
                  "output":{"shape":"DeleteChapCredentialsOutput"},
         | 
| 285 | 
            -
                  "errors":[
         | 
| 286 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 287 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 288 | 
            -
                  ]
         | 
| 289 | 
            -
                },
         | 
| 290 | 
            -
                "DeleteFileShare":{
         | 
| 291 | 
            -
                  "name":"DeleteFileShare",
         | 
| 292 | 
            -
                  "http":{
         | 
| 293 | 
            -
                    "method":"POST",
         | 
| 294 | 
            -
                    "requestUri":"/"
         | 
| 295 | 
            -
                  },
         | 
| 296 | 
            -
                  "input":{"shape":"DeleteFileShareInput"},
         | 
| 297 | 
            -
                  "output":{"shape":"DeleteFileShareOutput"},
         | 
| 298 | 
            -
                  "errors":[
         | 
| 299 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 300 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 301 | 
            -
                  ]
         | 
| 302 | 
            -
                },
         | 
| 303 | 
            -
                "DeleteGateway":{
         | 
| 304 | 
            -
                  "name":"DeleteGateway",
         | 
| 305 | 
            -
                  "http":{
         | 
| 306 | 
            -
                    "method":"POST",
         | 
| 307 | 
            -
                    "requestUri":"/"
         | 
| 308 | 
            -
                  },
         | 
| 309 | 
            -
                  "input":{"shape":"DeleteGatewayInput"},
         | 
| 310 | 
            -
                  "output":{"shape":"DeleteGatewayOutput"},
         | 
| 311 | 
            -
                  "errors":[
         | 
| 312 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 313 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 314 | 
            -
                  ]
         | 
| 315 | 
            -
                },
         | 
| 316 | 
            -
                "DeleteSnapshotSchedule":{
         | 
| 317 | 
            -
                  "name":"DeleteSnapshotSchedule",
         | 
| 318 | 
            -
                  "http":{
         | 
| 319 | 
            -
                    "method":"POST",
         | 
| 320 | 
            -
                    "requestUri":"/"
         | 
| 321 | 
            -
                  },
         | 
| 322 | 
            -
                  "input":{"shape":"DeleteSnapshotScheduleInput"},
         | 
| 323 | 
            -
                  "output":{"shape":"DeleteSnapshotScheduleOutput"},
         | 
| 324 | 
            -
                  "errors":[
         | 
| 325 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 326 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 327 | 
            -
                  ]
         | 
| 328 | 
            -
                },
         | 
| 329 | 
            -
                "DeleteTape":{
         | 
| 330 | 
            -
                  "name":"DeleteTape",
         | 
| 331 | 
            -
                  "http":{
         | 
| 332 | 
            -
                    "method":"POST",
         | 
| 333 | 
            -
                    "requestUri":"/"
         | 
| 334 | 
            -
                  },
         | 
| 335 | 
            -
                  "input":{"shape":"DeleteTapeInput"},
         | 
| 336 | 
            -
                  "output":{"shape":"DeleteTapeOutput"},
         | 
| 337 | 
            -
                  "errors":[
         | 
| 338 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 339 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 340 | 
            -
                  ]
         | 
| 341 | 
            -
                },
         | 
| 342 | 
            -
                "DeleteTapeArchive":{
         | 
| 343 | 
            -
                  "name":"DeleteTapeArchive",
         | 
| 344 | 
            -
                  "http":{
         | 
| 345 | 
            -
                    "method":"POST",
         | 
| 346 | 
            -
                    "requestUri":"/"
         | 
| 347 | 
            -
                  },
         | 
| 348 | 
            -
                  "input":{"shape":"DeleteTapeArchiveInput"},
         | 
| 349 | 
            -
                  "output":{"shape":"DeleteTapeArchiveOutput"},
         | 
| 350 | 
            -
                  "errors":[
         | 
| 351 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 352 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 353 | 
            -
                  ]
         | 
| 354 | 
            -
                },
         | 
| 355 | 
            -
                "DeleteTapePool":{
         | 
| 356 | 
            -
                  "name":"DeleteTapePool",
         | 
| 357 | 
            -
                  "http":{
         | 
| 358 | 
            -
                    "method":"POST",
         | 
| 359 | 
            -
                    "requestUri":"/"
         | 
| 360 | 
            -
                  },
         | 
| 361 | 
            -
                  "input":{"shape":"DeleteTapePoolInput"},
         | 
| 362 | 
            -
                  "output":{"shape":"DeleteTapePoolOutput"},
         | 
| 363 | 
            -
                  "errors":[
         | 
| 364 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 365 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 366 | 
            -
                  ]
         | 
| 367 | 
            -
                },
         | 
| 368 | 
            -
                "DeleteVolume":{
         | 
| 369 | 
            -
                  "name":"DeleteVolume",
         | 
| 370 | 
            -
                  "http":{
         | 
| 371 | 
            -
                    "method":"POST",
         | 
| 372 | 
            -
                    "requestUri":"/"
         | 
| 373 | 
            -
                  },
         | 
| 374 | 
            -
                  "input":{"shape":"DeleteVolumeInput"},
         | 
| 375 | 
            -
                  "output":{"shape":"DeleteVolumeOutput"},
         | 
| 376 | 
            -
                  "errors":[
         | 
| 377 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 378 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 379 | 
            -
                  ]
         | 
| 380 | 
            -
                },
         | 
| 381 | 
            -
                "DescribeAvailabilityMonitorTest":{
         | 
| 382 | 
            -
                  "name":"DescribeAvailabilityMonitorTest",
         | 
| 383 | 
            -
                  "http":{
         | 
| 384 | 
            -
                    "method":"POST",
         | 
| 385 | 
            -
                    "requestUri":"/"
         | 
| 386 | 
            -
                  },
         | 
| 387 | 
            -
                  "input":{"shape":"DescribeAvailabilityMonitorTestInput"},
         | 
| 388 | 
            -
                  "output":{"shape":"DescribeAvailabilityMonitorTestOutput"},
         | 
| 389 | 
            -
                  "errors":[
         | 
| 390 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 391 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 392 | 
            -
                  ]
         | 
| 393 | 
            -
                },
         | 
| 394 | 
            -
                "DescribeBandwidthRateLimit":{
         | 
| 395 | 
            -
                  "name":"DescribeBandwidthRateLimit",
         | 
| 396 | 
            -
                  "http":{
         | 
| 397 | 
            -
                    "method":"POST",
         | 
| 398 | 
            -
                    "requestUri":"/"
         | 
| 399 | 
            -
                  },
         | 
| 400 | 
            -
                  "input":{"shape":"DescribeBandwidthRateLimitInput"},
         | 
| 401 | 
            -
                  "output":{"shape":"DescribeBandwidthRateLimitOutput"},
         | 
| 402 | 
            -
                  "errors":[
         | 
| 403 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 404 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 405 | 
            -
                  ]
         | 
| 406 | 
            -
                },
         | 
| 407 | 
            -
                "DescribeBandwidthRateLimitSchedule":{
         | 
| 408 | 
            -
                  "name":"DescribeBandwidthRateLimitSchedule",
         | 
| 409 | 
            -
                  "http":{
         | 
| 410 | 
            -
                    "method":"POST",
         | 
| 411 | 
            -
                    "requestUri":"/"
         | 
| 412 | 
            -
                  },
         | 
| 413 | 
            -
                  "input":{"shape":"DescribeBandwidthRateLimitScheduleInput"},
         | 
| 414 | 
            -
                  "output":{"shape":"DescribeBandwidthRateLimitScheduleOutput"},
         | 
| 415 | 
            -
                  "errors":[
         | 
| 416 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 417 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 418 | 
            -
                  ]
         | 
| 419 | 
            -
                },
         | 
| 420 | 
            -
                "DescribeCache":{
         | 
| 421 | 
            -
                  "name":"DescribeCache",
         | 
| 422 | 
            -
                  "http":{
         | 
| 423 | 
            -
                    "method":"POST",
         | 
| 424 | 
            -
                    "requestUri":"/"
         | 
| 425 | 
            -
                  },
         | 
| 426 | 
            -
                  "input":{"shape":"DescribeCacheInput"},
         | 
| 427 | 
            -
                  "output":{"shape":"DescribeCacheOutput"},
         | 
| 428 | 
            -
                  "errors":[
         | 
| 429 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 430 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 431 | 
            -
                  ]
         | 
| 432 | 
            -
                },
         | 
| 433 | 
            -
                "DescribeCachediSCSIVolumes":{
         | 
| 434 | 
            -
                  "name":"DescribeCachediSCSIVolumes",
         | 
| 435 | 
            -
                  "http":{
         | 
| 436 | 
            -
                    "method":"POST",
         | 
| 437 | 
            -
                    "requestUri":"/"
         | 
| 438 | 
            -
                  },
         | 
| 439 | 
            -
                  "input":{"shape":"DescribeCachediSCSIVolumesInput"},
         | 
| 440 | 
            -
                  "output":{"shape":"DescribeCachediSCSIVolumesOutput"},
         | 
| 441 | 
            -
                  "errors":[
         | 
| 442 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 443 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 444 | 
            -
                  ]
         | 
| 445 | 
            -
                },
         | 
| 446 | 
            -
                "DescribeChapCredentials":{
         | 
| 447 | 
            -
                  "name":"DescribeChapCredentials",
         | 
| 448 | 
            -
                  "http":{
         | 
| 449 | 
            -
                    "method":"POST",
         | 
| 450 | 
            -
                    "requestUri":"/"
         | 
| 451 | 
            -
                  },
         | 
| 452 | 
            -
                  "input":{"shape":"DescribeChapCredentialsInput"},
         | 
| 453 | 
            -
                  "output":{"shape":"DescribeChapCredentialsOutput"},
         | 
| 454 | 
            -
                  "errors":[
         | 
| 455 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 456 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 457 | 
            -
                  ]
         | 
| 458 | 
            -
                },
         | 
| 459 | 
            -
                "DescribeGatewayInformation":{
         | 
| 460 | 
            -
                  "name":"DescribeGatewayInformation",
         | 
| 461 | 
            -
                  "http":{
         | 
| 462 | 
            -
                    "method":"POST",
         | 
| 463 | 
            -
                    "requestUri":"/"
         | 
| 464 | 
            -
                  },
         | 
| 465 | 
            -
                  "input":{"shape":"DescribeGatewayInformationInput"},
         | 
| 466 | 
            -
                  "output":{"shape":"DescribeGatewayInformationOutput"},
         | 
| 467 | 
            -
                  "errors":[
         | 
| 468 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 469 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 470 | 
            -
                  ]
         | 
| 471 | 
            -
                },
         | 
| 472 | 
            -
                "DescribeMaintenanceStartTime":{
         | 
| 473 | 
            -
                  "name":"DescribeMaintenanceStartTime",
         | 
| 474 | 
            -
                  "http":{
         | 
| 475 | 
            -
                    "method":"POST",
         | 
| 476 | 
            -
                    "requestUri":"/"
         | 
| 477 | 
            -
                  },
         | 
| 478 | 
            -
                  "input":{"shape":"DescribeMaintenanceStartTimeInput"},
         | 
| 479 | 
            -
                  "output":{"shape":"DescribeMaintenanceStartTimeOutput"},
         | 
| 480 | 
            -
                  "errors":[
         | 
| 481 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 482 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 483 | 
            -
                  ]
         | 
| 484 | 
            -
                },
         | 
| 485 | 
            -
                "DescribeNFSFileShares":{
         | 
| 486 | 
            -
                  "name":"DescribeNFSFileShares",
         | 
| 487 | 
            -
                  "http":{
         | 
| 488 | 
            -
                    "method":"POST",
         | 
| 489 | 
            -
                    "requestUri":"/"
         | 
| 490 | 
            -
                  },
         | 
| 491 | 
            -
                  "input":{"shape":"DescribeNFSFileSharesInput"},
         | 
| 492 | 
            -
                  "output":{"shape":"DescribeNFSFileSharesOutput"},
         | 
| 493 | 
            -
                  "errors":[
         | 
| 494 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 495 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 496 | 
            -
                  ]
         | 
| 497 | 
            -
                },
         | 
| 498 | 
            -
                "DescribeSMBFileShares":{
         | 
| 499 | 
            -
                  "name":"DescribeSMBFileShares",
         | 
| 500 | 
            -
                  "http":{
         | 
| 501 | 
            -
                    "method":"POST",
         | 
| 502 | 
            -
                    "requestUri":"/"
         | 
| 503 | 
            -
                  },
         | 
| 504 | 
            -
                  "input":{"shape":"DescribeSMBFileSharesInput"},
         | 
| 505 | 
            -
                  "output":{"shape":"DescribeSMBFileSharesOutput"},
         | 
| 506 | 
            -
                  "errors":[
         | 
| 507 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 508 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 509 | 
            -
                  ]
         | 
| 510 | 
            -
                },
         | 
| 511 | 
            -
                "DescribeSMBSettings":{
         | 
| 512 | 
            -
                  "name":"DescribeSMBSettings",
         | 
| 513 | 
            -
                  "http":{
         | 
| 514 | 
            -
                    "method":"POST",
         | 
| 515 | 
            -
                    "requestUri":"/"
         | 
| 516 | 
            -
                  },
         | 
| 517 | 
            -
                  "input":{"shape":"DescribeSMBSettingsInput"},
         | 
| 518 | 
            -
                  "output":{"shape":"DescribeSMBSettingsOutput"},
         | 
| 519 | 
            -
                  "errors":[
         | 
| 520 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 521 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 522 | 
            -
                  ]
         | 
| 523 | 
            -
                },
         | 
| 524 | 
            -
                "DescribeSnapshotSchedule":{
         | 
| 525 | 
            -
                  "name":"DescribeSnapshotSchedule",
         | 
| 526 | 
            -
                  "http":{
         | 
| 527 | 
            -
                    "method":"POST",
         | 
| 528 | 
            -
                    "requestUri":"/"
         | 
| 529 | 
            -
                  },
         | 
| 530 | 
            -
                  "input":{"shape":"DescribeSnapshotScheduleInput"},
         | 
| 531 | 
            -
                  "output":{"shape":"DescribeSnapshotScheduleOutput"},
         | 
| 532 | 
            -
                  "errors":[
         | 
| 533 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 534 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 535 | 
            -
                  ]
         | 
| 536 | 
            -
                },
         | 
| 537 | 
            -
                "DescribeStorediSCSIVolumes":{
         | 
| 538 | 
            -
                  "name":"DescribeStorediSCSIVolumes",
         | 
| 539 | 
            -
                  "http":{
         | 
| 540 | 
            -
                    "method":"POST",
         | 
| 541 | 
            -
                    "requestUri":"/"
         | 
| 542 | 
            -
                  },
         | 
| 543 | 
            -
                  "input":{"shape":"DescribeStorediSCSIVolumesInput"},
         | 
| 544 | 
            -
                  "output":{"shape":"DescribeStorediSCSIVolumesOutput"},
         | 
| 545 | 
            -
                  "errors":[
         | 
| 546 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 547 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 548 | 
            -
                  ]
         | 
| 549 | 
            -
                },
         | 
| 550 | 
            -
                "DescribeTapeArchives":{
         | 
| 551 | 
            -
                  "name":"DescribeTapeArchives",
         | 
| 552 | 
            -
                  "http":{
         | 
| 553 | 
            -
                    "method":"POST",
         | 
| 554 | 
            -
                    "requestUri":"/"
         | 
| 555 | 
            -
                  },
         | 
| 556 | 
            -
                  "input":{"shape":"DescribeTapeArchivesInput"},
         | 
| 557 | 
            -
                  "output":{"shape":"DescribeTapeArchivesOutput"},
         | 
| 558 | 
            -
                  "errors":[
         | 
| 559 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 560 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 561 | 
            -
                  ]
         | 
| 562 | 
            -
                },
         | 
| 563 | 
            -
                "DescribeTapeRecoveryPoints":{
         | 
| 564 | 
            -
                  "name":"DescribeTapeRecoveryPoints",
         | 
| 565 | 
            -
                  "http":{
         | 
| 566 | 
            -
                    "method":"POST",
         | 
| 567 | 
            -
                    "requestUri":"/"
         | 
| 568 | 
            -
                  },
         | 
| 569 | 
            -
                  "input":{"shape":"DescribeTapeRecoveryPointsInput"},
         | 
| 570 | 
            -
                  "output":{"shape":"DescribeTapeRecoveryPointsOutput"},
         | 
| 571 | 
            -
                  "errors":[
         | 
| 572 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 573 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 574 | 
            -
                  ]
         | 
| 575 | 
            -
                },
         | 
| 576 | 
            -
                "DescribeTapes":{
         | 
| 577 | 
            -
                  "name":"DescribeTapes",
         | 
| 578 | 
            -
                  "http":{
         | 
| 579 | 
            -
                    "method":"POST",
         | 
| 580 | 
            -
                    "requestUri":"/"
         | 
| 581 | 
            -
                  },
         | 
| 582 | 
            -
                  "input":{"shape":"DescribeTapesInput"},
         | 
| 583 | 
            -
                  "output":{"shape":"DescribeTapesOutput"},
         | 
| 584 | 
            -
                  "errors":[
         | 
| 585 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 586 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 587 | 
            -
                  ]
         | 
| 588 | 
            -
                },
         | 
| 589 | 
            -
                "DescribeUploadBuffer":{
         | 
| 590 | 
            -
                  "name":"DescribeUploadBuffer",
         | 
| 591 | 
            -
                  "http":{
         | 
| 592 | 
            -
                    "method":"POST",
         | 
| 593 | 
            -
                    "requestUri":"/"
         | 
| 594 | 
            -
                  },
         | 
| 595 | 
            -
                  "input":{"shape":"DescribeUploadBufferInput"},
         | 
| 596 | 
            -
                  "output":{"shape":"DescribeUploadBufferOutput"},
         | 
| 597 | 
            -
                  "errors":[
         | 
| 598 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 599 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 600 | 
            -
                  ]
         | 
| 601 | 
            -
                },
         | 
| 602 | 
            -
                "DescribeVTLDevices":{
         | 
| 603 | 
            -
                  "name":"DescribeVTLDevices",
         | 
| 604 | 
            -
                  "http":{
         | 
| 605 | 
            -
                    "method":"POST",
         | 
| 606 | 
            -
                    "requestUri":"/"
         | 
| 607 | 
            -
                  },
         | 
| 608 | 
            -
                  "input":{"shape":"DescribeVTLDevicesInput"},
         | 
| 609 | 
            -
                  "output":{"shape":"DescribeVTLDevicesOutput"},
         | 
| 610 | 
            -
                  "errors":[
         | 
| 611 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 612 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 613 | 
            -
                  ]
         | 
| 614 | 
            -
                },
         | 
| 615 | 
            -
                "DescribeWorkingStorage":{
         | 
| 616 | 
            -
                  "name":"DescribeWorkingStorage",
         | 
| 617 | 
            -
                  "http":{
         | 
| 618 | 
            -
                    "method":"POST",
         | 
| 619 | 
            -
                    "requestUri":"/"
         | 
| 620 | 
            -
                  },
         | 
| 621 | 
            -
                  "input":{"shape":"DescribeWorkingStorageInput"},
         | 
| 622 | 
            -
                  "output":{"shape":"DescribeWorkingStorageOutput"},
         | 
| 623 | 
            -
                  "errors":[
         | 
| 624 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 625 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 626 | 
            -
                  ]
         | 
| 627 | 
            -
                },
         | 
| 628 | 
            -
                "DetachVolume":{
         | 
| 629 | 
            -
                  "name":"DetachVolume",
         | 
| 630 | 
            -
                  "http":{
         | 
| 631 | 
            -
                    "method":"POST",
         | 
| 632 | 
            -
                    "requestUri":"/"
         | 
| 633 | 
            -
                  },
         | 
| 634 | 
            -
                  "input":{"shape":"DetachVolumeInput"},
         | 
| 635 | 
            -
                  "output":{"shape":"DetachVolumeOutput"},
         | 
| 636 | 
            -
                  "errors":[
         | 
| 637 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 638 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 639 | 
            -
                  ]
         | 
| 640 | 
            -
                },
         | 
| 641 | 
            -
                "DisableGateway":{
         | 
| 642 | 
            -
                  "name":"DisableGateway",
         | 
| 643 | 
            -
                  "http":{
         | 
| 644 | 
            -
                    "method":"POST",
         | 
| 645 | 
            -
                    "requestUri":"/"
         | 
| 646 | 
            -
                  },
         | 
| 647 | 
            -
                  "input":{"shape":"DisableGatewayInput"},
         | 
| 648 | 
            -
                  "output":{"shape":"DisableGatewayOutput"},
         | 
| 649 | 
            -
                  "errors":[
         | 
| 650 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 651 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 652 | 
            -
                  ]
         | 
| 653 | 
            -
                },
         | 
| 654 | 
            -
                "JoinDomain":{
         | 
| 655 | 
            -
                  "name":"JoinDomain",
         | 
| 656 | 
            -
                  "http":{
         | 
| 657 | 
            -
                    "method":"POST",
         | 
| 658 | 
            -
                    "requestUri":"/"
         | 
| 659 | 
            -
                  },
         | 
| 660 | 
            -
                  "input":{"shape":"JoinDomainInput"},
         | 
| 661 | 
            -
                  "output":{"shape":"JoinDomainOutput"},
         | 
| 662 | 
            -
                  "errors":[
         | 
| 663 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 664 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 665 | 
            -
                  ]
         | 
| 666 | 
            -
                },
         | 
| 667 | 
            -
                "ListAutomaticTapeCreationPolicies":{
         | 
| 668 | 
            -
                  "name":"ListAutomaticTapeCreationPolicies",
         | 
| 669 | 
            -
                  "http":{
         | 
| 670 | 
            -
                    "method":"POST",
         | 
| 671 | 
            -
                    "requestUri":"/"
         | 
| 672 | 
            -
                  },
         | 
| 673 | 
            -
                  "input":{"shape":"ListAutomaticTapeCreationPoliciesInput"},
         | 
| 674 | 
            -
                  "output":{"shape":"ListAutomaticTapeCreationPoliciesOutput"},
         | 
| 675 | 
            -
                  "errors":[
         | 
| 676 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 677 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 678 | 
            -
                  ]
         | 
| 679 | 
            -
                },
         | 
| 680 | 
            -
                "ListFileShares":{
         | 
| 681 | 
            -
                  "name":"ListFileShares",
         | 
| 682 | 
            -
                  "http":{
         | 
| 683 | 
            -
                    "method":"POST",
         | 
| 684 | 
            -
                    "requestUri":"/"
         | 
| 685 | 
            -
                  },
         | 
| 686 | 
            -
                  "input":{"shape":"ListFileSharesInput"},
         | 
| 687 | 
            -
                  "output":{"shape":"ListFileSharesOutput"},
         | 
| 688 | 
            -
                  "errors":[
         | 
| 689 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 690 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 691 | 
            -
                  ]
         | 
| 692 | 
            -
                },
         | 
| 693 | 
            -
                "ListGateways":{
         | 
| 694 | 
            -
                  "name":"ListGateways",
         | 
| 695 | 
            -
                  "http":{
         | 
| 696 | 
            -
                    "method":"POST",
         | 
| 697 | 
            -
                    "requestUri":"/"
         | 
| 698 | 
            -
                  },
         | 
| 699 | 
            -
                  "input":{"shape":"ListGatewaysInput"},
         | 
| 700 | 
            -
                  "output":{"shape":"ListGatewaysOutput"},
         | 
| 701 | 
            -
                  "errors":[
         | 
| 702 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 703 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 704 | 
            -
                  ]
         | 
| 705 | 
            -
                },
         | 
| 706 | 
            -
                "ListLocalDisks":{
         | 
| 707 | 
            -
                  "name":"ListLocalDisks",
         | 
| 708 | 
            -
                  "http":{
         | 
| 709 | 
            -
                    "method":"POST",
         | 
| 710 | 
            -
                    "requestUri":"/"
         | 
| 711 | 
            -
                  },
         | 
| 712 | 
            -
                  "input":{"shape":"ListLocalDisksInput"},
         | 
| 713 | 
            -
                  "output":{"shape":"ListLocalDisksOutput"},
         | 
| 714 | 
            -
                  "errors":[
         | 
| 715 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 716 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 717 | 
            -
                  ]
         | 
| 718 | 
            -
                },
         | 
| 719 | 
            -
                "ListTagsForResource":{
         | 
| 720 | 
            -
                  "name":"ListTagsForResource",
         | 
| 721 | 
            -
                  "http":{
         | 
| 722 | 
            -
                    "method":"POST",
         | 
| 723 | 
            -
                    "requestUri":"/"
         | 
| 724 | 
            -
                  },
         | 
| 725 | 
            -
                  "input":{"shape":"ListTagsForResourceInput"},
         | 
| 726 | 
            -
                  "output":{"shape":"ListTagsForResourceOutput"},
         | 
| 727 | 
            -
                  "errors":[
         | 
| 728 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 729 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 730 | 
            -
                  ]
         | 
| 731 | 
            -
                },
         | 
| 732 | 
            -
                "ListTapePools":{
         | 
| 733 | 
            -
                  "name":"ListTapePools",
         | 
| 734 | 
            -
                  "http":{
         | 
| 735 | 
            -
                    "method":"POST",
         | 
| 736 | 
            -
                    "requestUri":"/"
         | 
| 737 | 
            -
                  },
         | 
| 738 | 
            -
                  "input":{"shape":"ListTapePoolsInput"},
         | 
| 739 | 
            -
                  "output":{"shape":"ListTapePoolsOutput"},
         | 
| 740 | 
            -
                  "errors":[
         | 
| 741 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 742 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 743 | 
            -
                  ]
         | 
| 744 | 
            -
                },
         | 
| 745 | 
            -
                "ListTapes":{
         | 
| 746 | 
            -
                  "name":"ListTapes",
         | 
| 747 | 
            -
                  "http":{
         | 
| 748 | 
            -
                    "method":"POST",
         | 
| 749 | 
            -
                    "requestUri":"/"
         | 
| 750 | 
            -
                  },
         | 
| 751 | 
            -
                  "input":{"shape":"ListTapesInput"},
         | 
| 752 | 
            -
                  "output":{"shape":"ListTapesOutput"},
         | 
| 753 | 
            -
                  "errors":[
         | 
| 754 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 755 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 756 | 
            -
                  ]
         | 
| 757 | 
            -
                },
         | 
| 758 | 
            -
                "ListVolumeInitiators":{
         | 
| 759 | 
            -
                  "name":"ListVolumeInitiators",
         | 
| 760 | 
            -
                  "http":{
         | 
| 761 | 
            -
                    "method":"POST",
         | 
| 762 | 
            -
                    "requestUri":"/"
         | 
| 763 | 
            -
                  },
         | 
| 764 | 
            -
                  "input":{"shape":"ListVolumeInitiatorsInput"},
         | 
| 765 | 
            -
                  "output":{"shape":"ListVolumeInitiatorsOutput"},
         | 
| 766 | 
            -
                  "errors":[
         | 
| 767 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 768 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 769 | 
            -
                  ]
         | 
| 770 | 
            -
                },
         | 
| 771 | 
            -
                "ListVolumeRecoveryPoints":{
         | 
| 772 | 
            -
                  "name":"ListVolumeRecoveryPoints",
         | 
| 773 | 
            -
                  "http":{
         | 
| 774 | 
            -
                    "method":"POST",
         | 
| 775 | 
            -
                    "requestUri":"/"
         | 
| 776 | 
            -
                  },
         | 
| 777 | 
            -
                  "input":{"shape":"ListVolumeRecoveryPointsInput"},
         | 
| 778 | 
            -
                  "output":{"shape":"ListVolumeRecoveryPointsOutput"},
         | 
| 779 | 
            -
                  "errors":[
         | 
| 780 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 781 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 782 | 
            -
                  ]
         | 
| 783 | 
            -
                },
         | 
| 784 | 
            -
                "ListVolumes":{
         | 
| 785 | 
            -
                  "name":"ListVolumes",
         | 
| 786 | 
            -
                  "http":{
         | 
| 787 | 
            -
                    "method":"POST",
         | 
| 788 | 
            -
                    "requestUri":"/"
         | 
| 789 | 
            -
                  },
         | 
| 790 | 
            -
                  "input":{"shape":"ListVolumesInput"},
         | 
| 791 | 
            -
                  "output":{"shape":"ListVolumesOutput"},
         | 
| 792 | 
            -
                  "errors":[
         | 
| 793 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 794 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 795 | 
            -
                  ]
         | 
| 796 | 
            -
                },
         | 
| 797 | 
            -
                "NotifyWhenUploaded":{
         | 
| 798 | 
            -
                  "name":"NotifyWhenUploaded",
         | 
| 799 | 
            -
                  "http":{
         | 
| 800 | 
            -
                    "method":"POST",
         | 
| 801 | 
            -
                    "requestUri":"/"
         | 
| 802 | 
            -
                  },
         | 
| 803 | 
            -
                  "input":{"shape":"NotifyWhenUploadedInput"},
         | 
| 804 | 
            -
                  "output":{"shape":"NotifyWhenUploadedOutput"},
         | 
| 805 | 
            -
                  "errors":[
         | 
| 806 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 807 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 808 | 
            -
                  ]
         | 
| 809 | 
            -
                },
         | 
| 810 | 
            -
                "RefreshCache":{
         | 
| 811 | 
            -
                  "name":"RefreshCache",
         | 
| 812 | 
            -
                  "http":{
         | 
| 813 | 
            -
                    "method":"POST",
         | 
| 814 | 
            -
                    "requestUri":"/"
         | 
| 815 | 
            -
                  },
         | 
| 816 | 
            -
                  "input":{"shape":"RefreshCacheInput"},
         | 
| 817 | 
            -
                  "output":{"shape":"RefreshCacheOutput"},
         | 
| 818 | 
            -
                  "errors":[
         | 
| 819 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 820 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 821 | 
            -
                  ]
         | 
| 822 | 
            -
                },
         | 
| 823 | 
            -
                "RemoveTagsFromResource":{
         | 
| 824 | 
            -
                  "name":"RemoveTagsFromResource",
         | 
| 825 | 
            -
                  "http":{
         | 
| 826 | 
            -
                    "method":"POST",
         | 
| 827 | 
            -
                    "requestUri":"/"
         | 
| 828 | 
            -
                  },
         | 
| 829 | 
            -
                  "input":{"shape":"RemoveTagsFromResourceInput"},
         | 
| 830 | 
            -
                  "output":{"shape":"RemoveTagsFromResourceOutput"},
         | 
| 831 | 
            -
                  "errors":[
         | 
| 832 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 833 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 834 | 
            -
                  ]
         | 
| 835 | 
            -
                },
         | 
| 836 | 
            -
                "ResetCache":{
         | 
| 837 | 
            -
                  "name":"ResetCache",
         | 
| 838 | 
            -
                  "http":{
         | 
| 839 | 
            -
                    "method":"POST",
         | 
| 840 | 
            -
                    "requestUri":"/"
         | 
| 841 | 
            -
                  },
         | 
| 842 | 
            -
                  "input":{"shape":"ResetCacheInput"},
         | 
| 843 | 
            -
                  "output":{"shape":"ResetCacheOutput"},
         | 
| 844 | 
            -
                  "errors":[
         | 
| 845 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 846 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 847 | 
            -
                  ]
         | 
| 848 | 
            -
                },
         | 
| 849 | 
            -
                "RetrieveTapeArchive":{
         | 
| 850 | 
            -
                  "name":"RetrieveTapeArchive",
         | 
| 851 | 
            -
                  "http":{
         | 
| 852 | 
            -
                    "method":"POST",
         | 
| 853 | 
            -
                    "requestUri":"/"
         | 
| 854 | 
            -
                  },
         | 
| 855 | 
            -
                  "input":{"shape":"RetrieveTapeArchiveInput"},
         | 
| 856 | 
            -
                  "output":{"shape":"RetrieveTapeArchiveOutput"},
         | 
| 857 | 
            -
                  "errors":[
         | 
| 858 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 859 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 860 | 
            -
                  ]
         | 
| 861 | 
            -
                },
         | 
| 862 | 
            -
                "RetrieveTapeRecoveryPoint":{
         | 
| 863 | 
            -
                  "name":"RetrieveTapeRecoveryPoint",
         | 
| 864 | 
            -
                  "http":{
         | 
| 865 | 
            -
                    "method":"POST",
         | 
| 866 | 
            -
                    "requestUri":"/"
         | 
| 867 | 
            -
                  },
         | 
| 868 | 
            -
                  "input":{"shape":"RetrieveTapeRecoveryPointInput"},
         | 
| 869 | 
            -
                  "output":{"shape":"RetrieveTapeRecoveryPointOutput"},
         | 
| 870 | 
            -
                  "errors":[
         | 
| 871 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 872 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 873 | 
            -
                  ]
         | 
| 874 | 
            -
                },
         | 
| 875 | 
            -
                "SetLocalConsolePassword":{
         | 
| 876 | 
            -
                  "name":"SetLocalConsolePassword",
         | 
| 877 | 
            -
                  "http":{
         | 
| 878 | 
            -
                    "method":"POST",
         | 
| 879 | 
            -
                    "requestUri":"/"
         | 
| 880 | 
            -
                  },
         | 
| 881 | 
            -
                  "input":{"shape":"SetLocalConsolePasswordInput"},
         | 
| 882 | 
            -
                  "output":{"shape":"SetLocalConsolePasswordOutput"},
         | 
| 883 | 
            -
                  "errors":[
         | 
| 884 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 885 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 886 | 
            -
                  ]
         | 
| 887 | 
            -
                },
         | 
| 888 | 
            -
                "SetSMBGuestPassword":{
         | 
| 889 | 
            -
                  "name":"SetSMBGuestPassword",
         | 
| 890 | 
            -
                  "http":{
         | 
| 891 | 
            -
                    "method":"POST",
         | 
| 892 | 
            -
                    "requestUri":"/"
         | 
| 893 | 
            -
                  },
         | 
| 894 | 
            -
                  "input":{"shape":"SetSMBGuestPasswordInput"},
         | 
| 895 | 
            -
                  "output":{"shape":"SetSMBGuestPasswordOutput"},
         | 
| 896 | 
            -
                  "errors":[
         | 
| 897 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 898 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 899 | 
            -
                  ]
         | 
| 900 | 
            -
                },
         | 
| 901 | 
            -
                "ShutdownGateway":{
         | 
| 902 | 
            -
                  "name":"ShutdownGateway",
         | 
| 903 | 
            -
                  "http":{
         | 
| 904 | 
            -
                    "method":"POST",
         | 
| 905 | 
            -
                    "requestUri":"/"
         | 
| 906 | 
            -
                  },
         | 
| 907 | 
            -
                  "input":{"shape":"ShutdownGatewayInput"},
         | 
| 908 | 
            -
                  "output":{"shape":"ShutdownGatewayOutput"},
         | 
| 909 | 
            -
                  "errors":[
         | 
| 910 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 911 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 912 | 
            -
                  ]
         | 
| 913 | 
            -
                },
         | 
| 914 | 
            -
                "StartAvailabilityMonitorTest":{
         | 
| 915 | 
            -
                  "name":"StartAvailabilityMonitorTest",
         | 
| 916 | 
            -
                  "http":{
         | 
| 917 | 
            -
                    "method":"POST",
         | 
| 918 | 
            -
                    "requestUri":"/"
         | 
| 919 | 
            -
                  },
         | 
| 920 | 
            -
                  "input":{"shape":"StartAvailabilityMonitorTestInput"},
         | 
| 921 | 
            -
                  "output":{"shape":"StartAvailabilityMonitorTestOutput"},
         | 
| 922 | 
            -
                  "errors":[
         | 
| 923 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 924 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 925 | 
            -
                  ]
         | 
| 926 | 
            -
                },
         | 
| 927 | 
            -
                "StartGateway":{
         | 
| 928 | 
            -
                  "name":"StartGateway",
         | 
| 929 | 
            -
                  "http":{
         | 
| 930 | 
            -
                    "method":"POST",
         | 
| 931 | 
            -
                    "requestUri":"/"
         | 
| 932 | 
            -
                  },
         | 
| 933 | 
            -
                  "input":{"shape":"StartGatewayInput"},
         | 
| 934 | 
            -
                  "output":{"shape":"StartGatewayOutput"},
         | 
| 935 | 
            -
                  "errors":[
         | 
| 936 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 937 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 938 | 
            -
                  ]
         | 
| 939 | 
            -
                },
         | 
| 940 | 
            -
                "UpdateAutomaticTapeCreationPolicy":{
         | 
| 941 | 
            -
                  "name":"UpdateAutomaticTapeCreationPolicy",
         | 
| 942 | 
            -
                  "http":{
         | 
| 943 | 
            -
                    "method":"POST",
         | 
| 944 | 
            -
                    "requestUri":"/"
         | 
| 945 | 
            -
                  },
         | 
| 946 | 
            -
                  "input":{"shape":"UpdateAutomaticTapeCreationPolicyInput"},
         | 
| 947 | 
            -
                  "output":{"shape":"UpdateAutomaticTapeCreationPolicyOutput"},
         | 
| 948 | 
            -
                  "errors":[
         | 
| 949 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 950 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 951 | 
            -
                  ]
         | 
| 952 | 
            -
                },
         | 
| 953 | 
            -
                "UpdateBandwidthRateLimit":{
         | 
| 954 | 
            -
                  "name":"UpdateBandwidthRateLimit",
         | 
| 955 | 
            -
                  "http":{
         | 
| 956 | 
            -
                    "method":"POST",
         | 
| 957 | 
            -
                    "requestUri":"/"
         | 
| 958 | 
            -
                  },
         | 
| 959 | 
            -
                  "input":{"shape":"UpdateBandwidthRateLimitInput"},
         | 
| 960 | 
            -
                  "output":{"shape":"UpdateBandwidthRateLimitOutput"},
         | 
| 961 | 
            -
                  "errors":[
         | 
| 962 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 963 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 964 | 
            -
                  ]
         | 
| 965 | 
            -
                },
         | 
| 966 | 
            -
                "UpdateBandwidthRateLimitSchedule":{
         | 
| 967 | 
            -
                  "name":"UpdateBandwidthRateLimitSchedule",
         | 
| 968 | 
            -
                  "http":{
         | 
| 969 | 
            -
                    "method":"POST",
         | 
| 970 | 
            -
                    "requestUri":"/"
         | 
| 971 | 
            -
                  },
         | 
| 972 | 
            -
                  "input":{"shape":"UpdateBandwidthRateLimitScheduleInput"},
         | 
| 973 | 
            -
                  "output":{"shape":"UpdateBandwidthRateLimitScheduleOutput"},
         | 
| 974 | 
            -
                  "errors":[
         | 
| 975 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 976 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 977 | 
            -
                  ]
         | 
| 978 | 
            -
                },
         | 
| 979 | 
            -
                "UpdateChapCredentials":{
         | 
| 980 | 
            -
                  "name":"UpdateChapCredentials",
         | 
| 981 | 
            -
                  "http":{
         | 
| 982 | 
            -
                    "method":"POST",
         | 
| 983 | 
            -
                    "requestUri":"/"
         | 
| 984 | 
            -
                  },
         | 
| 985 | 
            -
                  "input":{"shape":"UpdateChapCredentialsInput"},
         | 
| 986 | 
            -
                  "output":{"shape":"UpdateChapCredentialsOutput"},
         | 
| 987 | 
            -
                  "errors":[
         | 
| 988 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 989 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 990 | 
            -
                  ]
         | 
| 991 | 
            -
                },
         | 
| 992 | 
            -
                "UpdateGatewayInformation":{
         | 
| 993 | 
            -
                  "name":"UpdateGatewayInformation",
         | 
| 994 | 
            -
                  "http":{
         | 
| 995 | 
            -
                    "method":"POST",
         | 
| 996 | 
            -
                    "requestUri":"/"
         | 
| 997 | 
            -
                  },
         | 
| 998 | 
            -
                  "input":{"shape":"UpdateGatewayInformationInput"},
         | 
| 999 | 
            -
                  "output":{"shape":"UpdateGatewayInformationOutput"},
         | 
| 1000 | 
            -
                  "errors":[
         | 
| 1001 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1002 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1003 | 
            -
                  ]
         | 
| 1004 | 
            -
                },
         | 
| 1005 | 
            -
                "UpdateGatewaySoftwareNow":{
         | 
| 1006 | 
            -
                  "name":"UpdateGatewaySoftwareNow",
         | 
| 1007 | 
            -
                  "http":{
         | 
| 1008 | 
            -
                    "method":"POST",
         | 
| 1009 | 
            -
                    "requestUri":"/"
         | 
| 1010 | 
            -
                  },
         | 
| 1011 | 
            -
                  "input":{"shape":"UpdateGatewaySoftwareNowInput"},
         | 
| 1012 | 
            -
                  "output":{"shape":"UpdateGatewaySoftwareNowOutput"},
         | 
| 1013 | 
            -
                  "errors":[
         | 
| 1014 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1015 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1016 | 
            -
                  ]
         | 
| 1017 | 
            -
                },
         | 
| 1018 | 
            -
                "UpdateMaintenanceStartTime":{
         | 
| 1019 | 
            -
                  "name":"UpdateMaintenanceStartTime",
         | 
| 1020 | 
            -
                  "http":{
         | 
| 1021 | 
            -
                    "method":"POST",
         | 
| 1022 | 
            -
                    "requestUri":"/"
         | 
| 1023 | 
            -
                  },
         | 
| 1024 | 
            -
                  "input":{"shape":"UpdateMaintenanceStartTimeInput"},
         | 
| 1025 | 
            -
                  "output":{"shape":"UpdateMaintenanceStartTimeOutput"},
         | 
| 1026 | 
            -
                  "errors":[
         | 
| 1027 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1028 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1029 | 
            -
                  ]
         | 
| 1030 | 
            -
                },
         | 
| 1031 | 
            -
                "UpdateNFSFileShare":{
         | 
| 1032 | 
            -
                  "name":"UpdateNFSFileShare",
         | 
| 1033 | 
            -
                  "http":{
         | 
| 1034 | 
            -
                    "method":"POST",
         | 
| 1035 | 
            -
                    "requestUri":"/"
         | 
| 1036 | 
            -
                  },
         | 
| 1037 | 
            -
                  "input":{"shape":"UpdateNFSFileShareInput"},
         | 
| 1038 | 
            -
                  "output":{"shape":"UpdateNFSFileShareOutput"},
         | 
| 1039 | 
            -
                  "errors":[
         | 
| 1040 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1041 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1042 | 
            -
                  ]
         | 
| 1043 | 
            -
                },
         | 
| 1044 | 
            -
                "UpdateSMBFileShare":{
         | 
| 1045 | 
            -
                  "name":"UpdateSMBFileShare",
         | 
| 1046 | 
            -
                  "http":{
         | 
| 1047 | 
            -
                    "method":"POST",
         | 
| 1048 | 
            -
                    "requestUri":"/"
         | 
| 1049 | 
            -
                  },
         | 
| 1050 | 
            -
                  "input":{"shape":"UpdateSMBFileShareInput"},
         | 
| 1051 | 
            -
                  "output":{"shape":"UpdateSMBFileShareOutput"},
         | 
| 1052 | 
            -
                  "errors":[
         | 
| 1053 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1054 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1055 | 
            -
                  ]
         | 
| 1056 | 
            -
                },
         | 
| 1057 | 
            -
                "UpdateSMBFileShareVisibility":{
         | 
| 1058 | 
            -
                  "name":"UpdateSMBFileShareVisibility",
         | 
| 1059 | 
            -
                  "http":{
         | 
| 1060 | 
            -
                    "method":"POST",
         | 
| 1061 | 
            -
                    "requestUri":"/"
         | 
| 1062 | 
            -
                  },
         | 
| 1063 | 
            -
                  "input":{"shape":"UpdateSMBFileShareVisibilityInput"},
         | 
| 1064 | 
            -
                  "output":{"shape":"UpdateSMBFileShareVisibilityOutput"},
         | 
| 1065 | 
            -
                  "errors":[
         | 
| 1066 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1067 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1068 | 
            -
                  ]
         | 
| 1069 | 
            -
                },
         | 
| 1070 | 
            -
                "UpdateSMBSecurityStrategy":{
         | 
| 1071 | 
            -
                  "name":"UpdateSMBSecurityStrategy",
         | 
| 1072 | 
            -
                  "http":{
         | 
| 1073 | 
            -
                    "method":"POST",
         | 
| 1074 | 
            -
                    "requestUri":"/"
         | 
| 1075 | 
            -
                  },
         | 
| 1076 | 
            -
                  "input":{"shape":"UpdateSMBSecurityStrategyInput"},
         | 
| 1077 | 
            -
                  "output":{"shape":"UpdateSMBSecurityStrategyOutput"},
         | 
| 1078 | 
            -
                  "errors":[
         | 
| 1079 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1080 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1081 | 
            -
                  ]
         | 
| 1082 | 
            -
                },
         | 
| 1083 | 
            -
                "UpdateSnapshotSchedule":{
         | 
| 1084 | 
            -
                  "name":"UpdateSnapshotSchedule",
         | 
| 1085 | 
            -
                  "http":{
         | 
| 1086 | 
            -
                    "method":"POST",
         | 
| 1087 | 
            -
                    "requestUri":"/"
         | 
| 1088 | 
            -
                  },
         | 
| 1089 | 
            -
                  "input":{"shape":"UpdateSnapshotScheduleInput"},
         | 
| 1090 | 
            -
                  "output":{"shape":"UpdateSnapshotScheduleOutput"},
         | 
| 1091 | 
            -
                  "errors":[
         | 
| 1092 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1093 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1094 | 
            -
                  ]
         | 
| 1095 | 
            -
                },
         | 
| 1096 | 
            -
                "UpdateVTLDeviceType":{
         | 
| 1097 | 
            -
                  "name":"UpdateVTLDeviceType",
         | 
| 1098 | 
            -
                  "http":{
         | 
| 1099 | 
            -
                    "method":"POST",
         | 
| 1100 | 
            -
                    "requestUri":"/"
         | 
| 1101 | 
            -
                  },
         | 
| 1102 | 
            -
                  "input":{"shape":"UpdateVTLDeviceTypeInput"},
         | 
| 1103 | 
            -
                  "output":{"shape":"UpdateVTLDeviceTypeOutput"},
         | 
| 1104 | 
            -
                  "errors":[
         | 
| 1105 | 
            -
                    {"shape":"InvalidGatewayRequestException"},
         | 
| 1106 | 
            -
                    {"shape":"InternalServerError"}
         | 
| 1107 | 
            -
                  ]
         | 
| 1108 | 
            -
                }
         | 
| 1109 | 
            -
              },
         | 
| 1110 | 
            -
              "shapes":{
         | 
| 1111 | 
            -
                "ActivateGatewayInput":{
         | 
| 1112 | 
            -
                  "type":"structure",
         | 
| 1113 | 
            -
                  "required":[
         | 
| 1114 | 
            -
                    "ActivationKey",
         | 
| 1115 | 
            -
                    "GatewayName",
         | 
| 1116 | 
            -
                    "GatewayTimezone",
         | 
| 1117 | 
            -
                    "GatewayRegion"
         | 
| 1118 | 
            -
                  ],
         | 
| 1119 | 
            -
                  "members":{
         | 
| 1120 | 
            -
                    "ActivationKey":{"shape":"ActivationKey"},
         | 
| 1121 | 
            -
                    "GatewayName":{"shape":"GatewayName"},
         | 
| 1122 | 
            -
                    "GatewayTimezone":{"shape":"GatewayTimezone"},
         | 
| 1123 | 
            -
                    "GatewayRegion":{"shape":"RegionId"},
         | 
| 1124 | 
            -
                    "GatewayType":{"shape":"GatewayType"},
         | 
| 1125 | 
            -
                    "TapeDriveType":{"shape":"TapeDriveType"},
         | 
| 1126 | 
            -
                    "MediumChangerType":{"shape":"MediumChangerType"},
         | 
| 1127 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1128 | 
            -
                  }
         | 
| 1129 | 
            -
                },
         | 
| 1130 | 
            -
                "ActivateGatewayOutput":{
         | 
| 1131 | 
            -
                  "type":"structure",
         | 
| 1132 | 
            -
                  "members":{
         | 
| 1133 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1134 | 
            -
                  }
         | 
| 1135 | 
            -
                },
         | 
| 1136 | 
            -
                "ActivationKey":{
         | 
| 1137 | 
            -
                  "type":"string",
         | 
| 1138 | 
            -
                  "max":50,
         | 
| 1139 | 
            -
                  "min":1
         | 
| 1140 | 
            -
                },
         | 
| 1141 | 
            -
                "ActiveDirectoryStatus":{
         | 
| 1142 | 
            -
                  "type":"string",
         | 
| 1143 | 
            -
                  "enum":[
         | 
| 1144 | 
            -
                    "ACCESS_DENIED",
         | 
| 1145 | 
            -
                    "DETACHED",
         | 
| 1146 | 
            -
                    "JOINED",
         | 
| 1147 | 
            -
                    "JOINING",
         | 
| 1148 | 
            -
                    "NETWORK_ERROR",
         | 
| 1149 | 
            -
                    "TIMEOUT",
         | 
| 1150 | 
            -
                    "UNKNOWN_ERROR"
         | 
| 1151 | 
            -
                  ]
         | 
| 1152 | 
            -
                },
         | 
| 1153 | 
            -
                "AddCacheInput":{
         | 
| 1154 | 
            -
                  "type":"structure",
         | 
| 1155 | 
            -
                  "required":[
         | 
| 1156 | 
            -
                    "GatewayARN",
         | 
| 1157 | 
            -
                    "DiskIds"
         | 
| 1158 | 
            -
                  ],
         | 
| 1159 | 
            -
                  "members":{
         | 
| 1160 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1161 | 
            -
                    "DiskIds":{"shape":"DiskIds"}
         | 
| 1162 | 
            -
                  }
         | 
| 1163 | 
            -
                },
         | 
| 1164 | 
            -
                "AddCacheOutput":{
         | 
| 1165 | 
            -
                  "type":"structure",
         | 
| 1166 | 
            -
                  "members":{
         | 
| 1167 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1168 | 
            -
                  }
         | 
| 1169 | 
            -
                },
         | 
| 1170 | 
            -
                "AddTagsToResourceInput":{
         | 
| 1171 | 
            -
                  "type":"structure",
         | 
| 1172 | 
            -
                  "required":[
         | 
| 1173 | 
            -
                    "ResourceARN",
         | 
| 1174 | 
            -
                    "Tags"
         | 
| 1175 | 
            -
                  ],
         | 
| 1176 | 
            -
                  "members":{
         | 
| 1177 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"},
         | 
| 1178 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1179 | 
            -
                  }
         | 
| 1180 | 
            -
                },
         | 
| 1181 | 
            -
                "AddTagsToResourceOutput":{
         | 
| 1182 | 
            -
                  "type":"structure",
         | 
| 1183 | 
            -
                  "members":{
         | 
| 1184 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"}
         | 
| 1185 | 
            -
                  }
         | 
| 1186 | 
            -
                },
         | 
| 1187 | 
            -
                "AddUploadBufferInput":{
         | 
| 1188 | 
            -
                  "type":"structure",
         | 
| 1189 | 
            -
                  "required":[
         | 
| 1190 | 
            -
                    "GatewayARN",
         | 
| 1191 | 
            -
                    "DiskIds"
         | 
| 1192 | 
            -
                  ],
         | 
| 1193 | 
            -
                  "members":{
         | 
| 1194 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1195 | 
            -
                    "DiskIds":{"shape":"DiskIds"}
         | 
| 1196 | 
            -
                  }
         | 
| 1197 | 
            -
                },
         | 
| 1198 | 
            -
                "AddUploadBufferOutput":{
         | 
| 1199 | 
            -
                  "type":"structure",
         | 
| 1200 | 
            -
                  "members":{
         | 
| 1201 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1202 | 
            -
                  }
         | 
| 1203 | 
            -
                },
         | 
| 1204 | 
            -
                "AddWorkingStorageInput":{
         | 
| 1205 | 
            -
                  "type":"structure",
         | 
| 1206 | 
            -
                  "required":[
         | 
| 1207 | 
            -
                    "GatewayARN",
         | 
| 1208 | 
            -
                    "DiskIds"
         | 
| 1209 | 
            -
                  ],
         | 
| 1210 | 
            -
                  "members":{
         | 
| 1211 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1212 | 
            -
                    "DiskIds":{"shape":"DiskIds"}
         | 
| 1213 | 
            -
                  }
         | 
| 1214 | 
            -
                },
         | 
| 1215 | 
            -
                "AddWorkingStorageOutput":{
         | 
| 1216 | 
            -
                  "type":"structure",
         | 
| 1217 | 
            -
                  "members":{
         | 
| 1218 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1219 | 
            -
                  }
         | 
| 1220 | 
            -
                },
         | 
| 1221 | 
            -
                "AssignTapePoolInput":{
         | 
| 1222 | 
            -
                  "type":"structure",
         | 
| 1223 | 
            -
                  "required":[
         | 
| 1224 | 
            -
                    "TapeARN",
         | 
| 1225 | 
            -
                    "PoolId"
         | 
| 1226 | 
            -
                  ],
         | 
| 1227 | 
            -
                  "members":{
         | 
| 1228 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 1229 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 1230 | 
            -
                    "BypassGovernanceRetention":{"shape":"boolean"}
         | 
| 1231 | 
            -
                  }
         | 
| 1232 | 
            -
                },
         | 
| 1233 | 
            -
                "AssignTapePoolOutput":{
         | 
| 1234 | 
            -
                  "type":"structure",
         | 
| 1235 | 
            -
                  "members":{
         | 
| 1236 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1237 | 
            -
                  }
         | 
| 1238 | 
            -
                },
         | 
| 1239 | 
            -
                "AttachVolumeInput":{
         | 
| 1240 | 
            -
                  "type":"structure",
         | 
| 1241 | 
            -
                  "required":[
         | 
| 1242 | 
            -
                    "GatewayARN",
         | 
| 1243 | 
            -
                    "VolumeARN",
         | 
| 1244 | 
            -
                    "NetworkInterfaceId"
         | 
| 1245 | 
            -
                  ],
         | 
| 1246 | 
            -
                  "members":{
         | 
| 1247 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1248 | 
            -
                    "TargetName":{"shape":"TargetName"},
         | 
| 1249 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1250 | 
            -
                    "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
         | 
| 1251 | 
            -
                    "DiskId":{"shape":"DiskId"}
         | 
| 1252 | 
            -
                  }
         | 
| 1253 | 
            -
                },
         | 
| 1254 | 
            -
                "AttachVolumeOutput":{
         | 
| 1255 | 
            -
                  "type":"structure",
         | 
| 1256 | 
            -
                  "members":{
         | 
| 1257 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1258 | 
            -
                    "TargetARN":{"shape":"TargetARN"}
         | 
| 1259 | 
            -
                  }
         | 
| 1260 | 
            -
                },
         | 
| 1261 | 
            -
                "AuditDestinationARN":{
         | 
| 1262 | 
            -
                  "type":"string",
         | 
| 1263 | 
            -
                  "max":1024
         | 
| 1264 | 
            -
                },
         | 
| 1265 | 
            -
                "Authentication":{
         | 
| 1266 | 
            -
                  "type":"string",
         | 
| 1267 | 
            -
                  "max":15,
         | 
| 1268 | 
            -
                  "min":5
         | 
| 1269 | 
            -
                },
         | 
| 1270 | 
            -
                "AutomaticTapeCreationPolicyInfo":{
         | 
| 1271 | 
            -
                  "type":"structure",
         | 
| 1272 | 
            -
                  "members":{
         | 
| 1273 | 
            -
                    "AutomaticTapeCreationRules":{"shape":"AutomaticTapeCreationRules"},
         | 
| 1274 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1275 | 
            -
                  }
         | 
| 1276 | 
            -
                },
         | 
| 1277 | 
            -
                "AutomaticTapeCreationPolicyInfos":{
         | 
| 1278 | 
            -
                  "type":"list",
         | 
| 1279 | 
            -
                  "member":{"shape":"AutomaticTapeCreationPolicyInfo"}
         | 
| 1280 | 
            -
                },
         | 
| 1281 | 
            -
                "AutomaticTapeCreationRule":{
         | 
| 1282 | 
            -
                  "type":"structure",
         | 
| 1283 | 
            -
                  "required":[
         | 
| 1284 | 
            -
                    "TapeBarcodePrefix",
         | 
| 1285 | 
            -
                    "PoolId",
         | 
| 1286 | 
            -
                    "TapeSizeInBytes",
         | 
| 1287 | 
            -
                    "MinimumNumTapes"
         | 
| 1288 | 
            -
                  ],
         | 
| 1289 | 
            -
                  "members":{
         | 
| 1290 | 
            -
                    "TapeBarcodePrefix":{"shape":"TapeBarcodePrefix"},
         | 
| 1291 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 1292 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 1293 | 
            -
                    "MinimumNumTapes":{"shape":"MinimumNumTapes"},
         | 
| 1294 | 
            -
                    "Worm":{"shape":"boolean"}
         | 
| 1295 | 
            -
                  }
         | 
| 1296 | 
            -
                },
         | 
| 1297 | 
            -
                "AutomaticTapeCreationRules":{
         | 
| 1298 | 
            -
                  "type":"list",
         | 
| 1299 | 
            -
                  "member":{"shape":"AutomaticTapeCreationRule"},
         | 
| 1300 | 
            -
                  "max":10,
         | 
| 1301 | 
            -
                  "min":1
         | 
| 1302 | 
            -
                },
         | 
| 1303 | 
            -
                "AvailabilityMonitorTestStatus":{
         | 
| 1304 | 
            -
                  "type":"string",
         | 
| 1305 | 
            -
                  "enum":[
         | 
| 1306 | 
            -
                    "COMPLETE",
         | 
| 1307 | 
            -
                    "FAILED",
         | 
| 1308 | 
            -
                    "PENDING"
         | 
| 1309 | 
            -
                  ]
         | 
| 1310 | 
            -
                },
         | 
| 1311 | 
            -
                "BandwidthDownloadRateLimit":{
         | 
| 1312 | 
            -
                  "type":"long",
         | 
| 1313 | 
            -
                  "min":102400
         | 
| 1314 | 
            -
                },
         | 
| 1315 | 
            -
                "BandwidthRateLimitInterval":{
         | 
| 1316 | 
            -
                  "type":"structure",
         | 
| 1317 | 
            -
                  "required":[
         | 
| 1318 | 
            -
                    "StartHourOfDay",
         | 
| 1319 | 
            -
                    "StartMinuteOfHour",
         | 
| 1320 | 
            -
                    "EndHourOfDay",
         | 
| 1321 | 
            -
                    "EndMinuteOfHour",
         | 
| 1322 | 
            -
                    "DaysOfWeek"
         | 
| 1323 | 
            -
                  ],
         | 
| 1324 | 
            -
                  "members":{
         | 
| 1325 | 
            -
                    "StartHourOfDay":{"shape":"HourOfDay"},
         | 
| 1326 | 
            -
                    "StartMinuteOfHour":{"shape":"MinuteOfHour"},
         | 
| 1327 | 
            -
                    "EndHourOfDay":{"shape":"HourOfDay"},
         | 
| 1328 | 
            -
                    "EndMinuteOfHour":{"shape":"MinuteOfHour"},
         | 
| 1329 | 
            -
                    "DaysOfWeek":{"shape":"DaysOfWeek"},
         | 
| 1330 | 
            -
                    "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
         | 
| 1331 | 
            -
                    "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
         | 
| 1332 | 
            -
                  }
         | 
| 1333 | 
            -
                },
         | 
| 1334 | 
            -
                "BandwidthRateLimitIntervals":{
         | 
| 1335 | 
            -
                  "type":"list",
         | 
| 1336 | 
            -
                  "member":{"shape":"BandwidthRateLimitInterval"},
         | 
| 1337 | 
            -
                  "max":20,
         | 
| 1338 | 
            -
                  "min":0
         | 
| 1339 | 
            -
                },
         | 
| 1340 | 
            -
                "BandwidthType":{
         | 
| 1341 | 
            -
                  "type":"string",
         | 
| 1342 | 
            -
                  "max":25,
         | 
| 1343 | 
            -
                  "min":3
         | 
| 1344 | 
            -
                },
         | 
| 1345 | 
            -
                "BandwidthUploadRateLimit":{
         | 
| 1346 | 
            -
                  "type":"long",
         | 
| 1347 | 
            -
                  "min":51200
         | 
| 1348 | 
            -
                },
         | 
| 1349 | 
            -
                "Boolean":{"type":"boolean"},
         | 
| 1350 | 
            -
                "CacheAttributes":{
         | 
| 1351 | 
            -
                  "type":"structure",
         | 
| 1352 | 
            -
                  "members":{
         | 
| 1353 | 
            -
                    "CacheStaleTimeoutInSeconds":{"shape":"CacheStaleTimeoutInSeconds"}
         | 
| 1354 | 
            -
                  }
         | 
| 1355 | 
            -
                },
         | 
| 1356 | 
            -
                "CacheStaleTimeoutInSeconds":{"type":"integer"},
         | 
| 1357 | 
            -
                "CachediSCSIVolume":{
         | 
| 1358 | 
            -
                  "type":"structure",
         | 
| 1359 | 
            -
                  "members":{
         | 
| 1360 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1361 | 
            -
                    "VolumeId":{"shape":"VolumeId"},
         | 
| 1362 | 
            -
                    "VolumeType":{"shape":"VolumeType"},
         | 
| 1363 | 
            -
                    "VolumeStatus":{"shape":"VolumeStatus"},
         | 
| 1364 | 
            -
                    "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"},
         | 
| 1365 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 1366 | 
            -
                    "VolumeProgress":{"shape":"DoubleObject"},
         | 
| 1367 | 
            -
                    "SourceSnapshotId":{"shape":"SnapshotId"},
         | 
| 1368 | 
            -
                    "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
         | 
| 1369 | 
            -
                    "CreatedDate":{"shape":"CreatedDate"},
         | 
| 1370 | 
            -
                    "VolumeUsedInBytes":{"shape":"VolumeUsedInBytes"},
         | 
| 1371 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1372 | 
            -
                    "TargetName":{"shape":"TargetName"}
         | 
| 1373 | 
            -
                  }
         | 
| 1374 | 
            -
                },
         | 
| 1375 | 
            -
                "CachediSCSIVolumes":{
         | 
| 1376 | 
            -
                  "type":"list",
         | 
| 1377 | 
            -
                  "member":{"shape":"CachediSCSIVolume"}
         | 
| 1378 | 
            -
                },
         | 
| 1379 | 
            -
                "CancelArchivalInput":{
         | 
| 1380 | 
            -
                  "type":"structure",
         | 
| 1381 | 
            -
                  "required":[
         | 
| 1382 | 
            -
                    "GatewayARN",
         | 
| 1383 | 
            -
                    "TapeARN"
         | 
| 1384 | 
            -
                  ],
         | 
| 1385 | 
            -
                  "members":{
         | 
| 1386 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1387 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1388 | 
            -
                  }
         | 
| 1389 | 
            -
                },
         | 
| 1390 | 
            -
                "CancelArchivalOutput":{
         | 
| 1391 | 
            -
                  "type":"structure",
         | 
| 1392 | 
            -
                  "members":{
         | 
| 1393 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1394 | 
            -
                  }
         | 
| 1395 | 
            -
                },
         | 
| 1396 | 
            -
                "CancelRetrievalInput":{
         | 
| 1397 | 
            -
                  "type":"structure",
         | 
| 1398 | 
            -
                  "required":[
         | 
| 1399 | 
            -
                    "GatewayARN",
         | 
| 1400 | 
            -
                    "TapeARN"
         | 
| 1401 | 
            -
                  ],
         | 
| 1402 | 
            -
                  "members":{
         | 
| 1403 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1404 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1405 | 
            -
                  }
         | 
| 1406 | 
            -
                },
         | 
| 1407 | 
            -
                "CancelRetrievalOutput":{
         | 
| 1408 | 
            -
                  "type":"structure",
         | 
| 1409 | 
            -
                  "members":{
         | 
| 1410 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1411 | 
            -
                  }
         | 
| 1412 | 
            -
                },
         | 
| 1413 | 
            -
                "CaseSensitivity":{
         | 
| 1414 | 
            -
                  "type":"string",
         | 
| 1415 | 
            -
                  "enum":[
         | 
| 1416 | 
            -
                    "ClientSpecified",
         | 
| 1417 | 
            -
                    "CaseSensitive"
         | 
| 1418 | 
            -
                  ]
         | 
| 1419 | 
            -
                },
         | 
| 1420 | 
            -
                "ChapCredentials":{
         | 
| 1421 | 
            -
                  "type":"list",
         | 
| 1422 | 
            -
                  "member":{"shape":"ChapInfo"}
         | 
| 1423 | 
            -
                },
         | 
| 1424 | 
            -
                "ChapInfo":{
         | 
| 1425 | 
            -
                  "type":"structure",
         | 
| 1426 | 
            -
                  "members":{
         | 
| 1427 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 1428 | 
            -
                    "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
         | 
| 1429 | 
            -
                    "InitiatorName":{"shape":"IqnName"},
         | 
| 1430 | 
            -
                    "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
         | 
| 1431 | 
            -
                  }
         | 
| 1432 | 
            -
                },
         | 
| 1433 | 
            -
                "ChapSecret":{
         | 
| 1434 | 
            -
                  "type":"string",
         | 
| 1435 | 
            -
                  "max":100,
         | 
| 1436 | 
            -
                  "min":1,
         | 
| 1437 | 
            -
                  "sensitive":true
         | 
| 1438 | 
            -
                },
         | 
| 1439 | 
            -
                "ClientToken":{
         | 
| 1440 | 
            -
                  "type":"string",
         | 
| 1441 | 
            -
                  "max":100,
         | 
| 1442 | 
            -
                  "min":5
         | 
| 1443 | 
            -
                },
         | 
| 1444 | 
            -
                "CloudWatchLogGroupARN":{
         | 
| 1445 | 
            -
                  "type":"string",
         | 
| 1446 | 
            -
                  "max":562
         | 
| 1447 | 
            -
                },
         | 
| 1448 | 
            -
                "CreateCachediSCSIVolumeInput":{
         | 
| 1449 | 
            -
                  "type":"structure",
         | 
| 1450 | 
            -
                  "required":[
         | 
| 1451 | 
            -
                    "GatewayARN",
         | 
| 1452 | 
            -
                    "VolumeSizeInBytes",
         | 
| 1453 | 
            -
                    "TargetName",
         | 
| 1454 | 
            -
                    "NetworkInterfaceId",
         | 
| 1455 | 
            -
                    "ClientToken"
         | 
| 1456 | 
            -
                  ],
         | 
| 1457 | 
            -
                  "members":{
         | 
| 1458 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1459 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 1460 | 
            -
                    "SnapshotId":{"shape":"SnapshotId"},
         | 
| 1461 | 
            -
                    "TargetName":{"shape":"TargetName"},
         | 
| 1462 | 
            -
                    "SourceVolumeARN":{"shape":"VolumeARN"},
         | 
| 1463 | 
            -
                    "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
         | 
| 1464 | 
            -
                    "ClientToken":{"shape":"ClientToken"},
         | 
| 1465 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1466 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1467 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1468 | 
            -
                  }
         | 
| 1469 | 
            -
                },
         | 
| 1470 | 
            -
                "CreateCachediSCSIVolumeOutput":{
         | 
| 1471 | 
            -
                  "type":"structure",
         | 
| 1472 | 
            -
                  "members":{
         | 
| 1473 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1474 | 
            -
                    "TargetARN":{"shape":"TargetARN"}
         | 
| 1475 | 
            -
                  }
         | 
| 1476 | 
            -
                },
         | 
| 1477 | 
            -
                "CreateNFSFileShareInput":{
         | 
| 1478 | 
            -
                  "type":"structure",
         | 
| 1479 | 
            -
                  "required":[
         | 
| 1480 | 
            -
                    "ClientToken",
         | 
| 1481 | 
            -
                    "GatewayARN",
         | 
| 1482 | 
            -
                    "Role",
         | 
| 1483 | 
            -
                    "LocationARN"
         | 
| 1484 | 
            -
                  ],
         | 
| 1485 | 
            -
                  "members":{
         | 
| 1486 | 
            -
                    "ClientToken":{"shape":"ClientToken"},
         | 
| 1487 | 
            -
                    "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
         | 
| 1488 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1489 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1490 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1491 | 
            -
                    "Role":{"shape":"Role"},
         | 
| 1492 | 
            -
                    "LocationARN":{"shape":"LocationARN"},
         | 
| 1493 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 1494 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 1495 | 
            -
                    "ClientList":{"shape":"FileShareClientList"},
         | 
| 1496 | 
            -
                    "Squash":{"shape":"Squash"},
         | 
| 1497 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 1498 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 1499 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 1500 | 
            -
                    "Tags":{"shape":"Tags"},
         | 
| 1501 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 1502 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 1503 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 1504 | 
            -
                  }
         | 
| 1505 | 
            -
                },
         | 
| 1506 | 
            -
                "CreateNFSFileShareOutput":{
         | 
| 1507 | 
            -
                  "type":"structure",
         | 
| 1508 | 
            -
                  "members":{
         | 
| 1509 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 1510 | 
            -
                  }
         | 
| 1511 | 
            -
                },
         | 
| 1512 | 
            -
                "CreateSMBFileShareInput":{
         | 
| 1513 | 
            -
                  "type":"structure",
         | 
| 1514 | 
            -
                  "required":[
         | 
| 1515 | 
            -
                    "ClientToken",
         | 
| 1516 | 
            -
                    "GatewayARN",
         | 
| 1517 | 
            -
                    "Role",
         | 
| 1518 | 
            -
                    "LocationARN"
         | 
| 1519 | 
            -
                  ],
         | 
| 1520 | 
            -
                  "members":{
         | 
| 1521 | 
            -
                    "ClientToken":{"shape":"ClientToken"},
         | 
| 1522 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1523 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1524 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1525 | 
            -
                    "Role":{"shape":"Role"},
         | 
| 1526 | 
            -
                    "LocationARN":{"shape":"LocationARN"},
         | 
| 1527 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 1528 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 1529 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 1530 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 1531 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 1532 | 
            -
                    "SMBACLEnabled":{"shape":"Boolean"},
         | 
| 1533 | 
            -
                    "AccessBasedEnumeration":{"shape":"Boolean"},
         | 
| 1534 | 
            -
                    "AdminUserList":{"shape":"FileShareUserList"},
         | 
| 1535 | 
            -
                    "ValidUserList":{"shape":"FileShareUserList"},
         | 
| 1536 | 
            -
                    "InvalidUserList":{"shape":"FileShareUserList"},
         | 
| 1537 | 
            -
                    "AuditDestinationARN":{"shape":"AuditDestinationARN"},
         | 
| 1538 | 
            -
                    "Authentication":{"shape":"Authentication"},
         | 
| 1539 | 
            -
                    "CaseSensitivity":{"shape":"CaseSensitivity"},
         | 
| 1540 | 
            -
                    "Tags":{"shape":"Tags"},
         | 
| 1541 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 1542 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 1543 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 1544 | 
            -
                  }
         | 
| 1545 | 
            -
                },
         | 
| 1546 | 
            -
                "CreateSMBFileShareOutput":{
         | 
| 1547 | 
            -
                  "type":"structure",
         | 
| 1548 | 
            -
                  "members":{
         | 
| 1549 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 1550 | 
            -
                  }
         | 
| 1551 | 
            -
                },
         | 
| 1552 | 
            -
                "CreateSnapshotFromVolumeRecoveryPointInput":{
         | 
| 1553 | 
            -
                  "type":"structure",
         | 
| 1554 | 
            -
                  "required":[
         | 
| 1555 | 
            -
                    "VolumeARN",
         | 
| 1556 | 
            -
                    "SnapshotDescription"
         | 
| 1557 | 
            -
                  ],
         | 
| 1558 | 
            -
                  "members":{
         | 
| 1559 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1560 | 
            -
                    "SnapshotDescription":{"shape":"SnapshotDescription"},
         | 
| 1561 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1562 | 
            -
                  }
         | 
| 1563 | 
            -
                },
         | 
| 1564 | 
            -
                "CreateSnapshotFromVolumeRecoveryPointOutput":{
         | 
| 1565 | 
            -
                  "type":"structure",
         | 
| 1566 | 
            -
                  "members":{
         | 
| 1567 | 
            -
                    "SnapshotId":{"shape":"SnapshotId"},
         | 
| 1568 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1569 | 
            -
                    "VolumeRecoveryPointTime":{"shape":"string"}
         | 
| 1570 | 
            -
                  }
         | 
| 1571 | 
            -
                },
         | 
| 1572 | 
            -
                "CreateSnapshotInput":{
         | 
| 1573 | 
            -
                  "type":"structure",
         | 
| 1574 | 
            -
                  "required":[
         | 
| 1575 | 
            -
                    "VolumeARN",
         | 
| 1576 | 
            -
                    "SnapshotDescription"
         | 
| 1577 | 
            -
                  ],
         | 
| 1578 | 
            -
                  "members":{
         | 
| 1579 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1580 | 
            -
                    "SnapshotDescription":{"shape":"SnapshotDescription"},
         | 
| 1581 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1582 | 
            -
                  }
         | 
| 1583 | 
            -
                },
         | 
| 1584 | 
            -
                "CreateSnapshotOutput":{
         | 
| 1585 | 
            -
                  "type":"structure",
         | 
| 1586 | 
            -
                  "members":{
         | 
| 1587 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1588 | 
            -
                    "SnapshotId":{"shape":"SnapshotId"}
         | 
| 1589 | 
            -
                  }
         | 
| 1590 | 
            -
                },
         | 
| 1591 | 
            -
                "CreateStorediSCSIVolumeInput":{
         | 
| 1592 | 
            -
                  "type":"structure",
         | 
| 1593 | 
            -
                  "required":[
         | 
| 1594 | 
            -
                    "GatewayARN",
         | 
| 1595 | 
            -
                    "DiskId",
         | 
| 1596 | 
            -
                    "PreserveExistingData",
         | 
| 1597 | 
            -
                    "TargetName",
         | 
| 1598 | 
            -
                    "NetworkInterfaceId"
         | 
| 1599 | 
            -
                  ],
         | 
| 1600 | 
            -
                  "members":{
         | 
| 1601 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1602 | 
            -
                    "DiskId":{"shape":"DiskId"},
         | 
| 1603 | 
            -
                    "SnapshotId":{"shape":"SnapshotId"},
         | 
| 1604 | 
            -
                    "PreserveExistingData":{"shape":"boolean"},
         | 
| 1605 | 
            -
                    "TargetName":{"shape":"TargetName"},
         | 
| 1606 | 
            -
                    "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
         | 
| 1607 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1608 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1609 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1610 | 
            -
                  }
         | 
| 1611 | 
            -
                },
         | 
| 1612 | 
            -
                "CreateStorediSCSIVolumeOutput":{
         | 
| 1613 | 
            -
                  "type":"structure",
         | 
| 1614 | 
            -
                  "members":{
         | 
| 1615 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 1616 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 1617 | 
            -
                    "TargetARN":{"shape":"TargetARN"}
         | 
| 1618 | 
            -
                  }
         | 
| 1619 | 
            -
                },
         | 
| 1620 | 
            -
                "CreateTapePoolInput":{
         | 
| 1621 | 
            -
                  "type":"structure",
         | 
| 1622 | 
            -
                  "required":[
         | 
| 1623 | 
            -
                    "PoolName",
         | 
| 1624 | 
            -
                    "StorageClass"
         | 
| 1625 | 
            -
                  ],
         | 
| 1626 | 
            -
                  "members":{
         | 
| 1627 | 
            -
                    "PoolName":{"shape":"PoolName"},
         | 
| 1628 | 
            -
                    "StorageClass":{"shape":"TapeStorageClass"},
         | 
| 1629 | 
            -
                    "RetentionLockType":{"shape":"RetentionLockType"},
         | 
| 1630 | 
            -
                    "RetentionLockTimeInDays":{"shape":"RetentionLockTimeInDays"},
         | 
| 1631 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1632 | 
            -
                  }
         | 
| 1633 | 
            -
                },
         | 
| 1634 | 
            -
                "CreateTapePoolOutput":{
         | 
| 1635 | 
            -
                  "type":"structure",
         | 
| 1636 | 
            -
                  "members":{
         | 
| 1637 | 
            -
                    "PoolARN":{"shape":"PoolARN"}
         | 
| 1638 | 
            -
                  }
         | 
| 1639 | 
            -
                },
         | 
| 1640 | 
            -
                "CreateTapeWithBarcodeInput":{
         | 
| 1641 | 
            -
                  "type":"structure",
         | 
| 1642 | 
            -
                  "required":[
         | 
| 1643 | 
            -
                    "GatewayARN",
         | 
| 1644 | 
            -
                    "TapeSizeInBytes",
         | 
| 1645 | 
            -
                    "TapeBarcode"
         | 
| 1646 | 
            -
                  ],
         | 
| 1647 | 
            -
                  "members":{
         | 
| 1648 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1649 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 1650 | 
            -
                    "TapeBarcode":{"shape":"TapeBarcode"},
         | 
| 1651 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1652 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1653 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 1654 | 
            -
                    "Worm":{"shape":"boolean"},
         | 
| 1655 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1656 | 
            -
                  }
         | 
| 1657 | 
            -
                },
         | 
| 1658 | 
            -
                "CreateTapeWithBarcodeOutput":{
         | 
| 1659 | 
            -
                  "type":"structure",
         | 
| 1660 | 
            -
                  "members":{
         | 
| 1661 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1662 | 
            -
                  }
         | 
| 1663 | 
            -
                },
         | 
| 1664 | 
            -
                "CreateTapesInput":{
         | 
| 1665 | 
            -
                  "type":"structure",
         | 
| 1666 | 
            -
                  "required":[
         | 
| 1667 | 
            -
                    "GatewayARN",
         | 
| 1668 | 
            -
                    "TapeSizeInBytes",
         | 
| 1669 | 
            -
                    "ClientToken",
         | 
| 1670 | 
            -
                    "NumTapesToCreate",
         | 
| 1671 | 
            -
                    "TapeBarcodePrefix"
         | 
| 1672 | 
            -
                  ],
         | 
| 1673 | 
            -
                  "members":{
         | 
| 1674 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1675 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 1676 | 
            -
                    "ClientToken":{"shape":"ClientToken"},
         | 
| 1677 | 
            -
                    "NumTapesToCreate":{"shape":"NumTapesToCreate"},
         | 
| 1678 | 
            -
                    "TapeBarcodePrefix":{"shape":"TapeBarcodePrefix"},
         | 
| 1679 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 1680 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 1681 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 1682 | 
            -
                    "Worm":{"shape":"boolean"},
         | 
| 1683 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 1684 | 
            -
                  }
         | 
| 1685 | 
            -
                },
         | 
| 1686 | 
            -
                "CreateTapesOutput":{
         | 
| 1687 | 
            -
                  "type":"structure",
         | 
| 1688 | 
            -
                  "members":{
         | 
| 1689 | 
            -
                    "TapeARNs":{"shape":"TapeARNs"}
         | 
| 1690 | 
            -
                  }
         | 
| 1691 | 
            -
                },
         | 
| 1692 | 
            -
                "CreatedDate":{"type":"timestamp"},
         | 
| 1693 | 
            -
                "DayOfMonth":{
         | 
| 1694 | 
            -
                  "type":"integer",
         | 
| 1695 | 
            -
                  "max":28,
         | 
| 1696 | 
            -
                  "min":1
         | 
| 1697 | 
            -
                },
         | 
| 1698 | 
            -
                "DayOfWeek":{
         | 
| 1699 | 
            -
                  "type":"integer",
         | 
| 1700 | 
            -
                  "max":6,
         | 
| 1701 | 
            -
                  "min":0
         | 
| 1702 | 
            -
                },
         | 
| 1703 | 
            -
                "DaysOfWeek":{
         | 
| 1704 | 
            -
                  "type":"list",
         | 
| 1705 | 
            -
                  "member":{"shape":"DayOfWeek"},
         | 
| 1706 | 
            -
                  "max":7,
         | 
| 1707 | 
            -
                  "min":1
         | 
| 1708 | 
            -
                },
         | 
| 1709 | 
            -
                "DeleteAutomaticTapeCreationPolicyInput":{
         | 
| 1710 | 
            -
                  "type":"structure",
         | 
| 1711 | 
            -
                  "required":["GatewayARN"],
         | 
| 1712 | 
            -
                  "members":{
         | 
| 1713 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1714 | 
            -
                  }
         | 
| 1715 | 
            -
                },
         | 
| 1716 | 
            -
                "DeleteAutomaticTapeCreationPolicyOutput":{
         | 
| 1717 | 
            -
                  "type":"structure",
         | 
| 1718 | 
            -
                  "members":{
         | 
| 1719 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1720 | 
            -
                  }
         | 
| 1721 | 
            -
                },
         | 
| 1722 | 
            -
                "DeleteBandwidthRateLimitInput":{
         | 
| 1723 | 
            -
                  "type":"structure",
         | 
| 1724 | 
            -
                  "required":[
         | 
| 1725 | 
            -
                    "GatewayARN",
         | 
| 1726 | 
            -
                    "BandwidthType"
         | 
| 1727 | 
            -
                  ],
         | 
| 1728 | 
            -
                  "members":{
         | 
| 1729 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1730 | 
            -
                    "BandwidthType":{"shape":"BandwidthType"}
         | 
| 1731 | 
            -
                  }
         | 
| 1732 | 
            -
                },
         | 
| 1733 | 
            -
                "DeleteBandwidthRateLimitOutput":{
         | 
| 1734 | 
            -
                  "type":"structure",
         | 
| 1735 | 
            -
                  "members":{
         | 
| 1736 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1737 | 
            -
                  }
         | 
| 1738 | 
            -
                },
         | 
| 1739 | 
            -
                "DeleteChapCredentialsInput":{
         | 
| 1740 | 
            -
                  "type":"structure",
         | 
| 1741 | 
            -
                  "required":[
         | 
| 1742 | 
            -
                    "TargetARN",
         | 
| 1743 | 
            -
                    "InitiatorName"
         | 
| 1744 | 
            -
                  ],
         | 
| 1745 | 
            -
                  "members":{
         | 
| 1746 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 1747 | 
            -
                    "InitiatorName":{"shape":"IqnName"}
         | 
| 1748 | 
            -
                  }
         | 
| 1749 | 
            -
                },
         | 
| 1750 | 
            -
                "DeleteChapCredentialsOutput":{
         | 
| 1751 | 
            -
                  "type":"structure",
         | 
| 1752 | 
            -
                  "members":{
         | 
| 1753 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 1754 | 
            -
                    "InitiatorName":{"shape":"IqnName"}
         | 
| 1755 | 
            -
                  }
         | 
| 1756 | 
            -
                },
         | 
| 1757 | 
            -
                "DeleteFileShareInput":{
         | 
| 1758 | 
            -
                  "type":"structure",
         | 
| 1759 | 
            -
                  "required":["FileShareARN"],
         | 
| 1760 | 
            -
                  "members":{
         | 
| 1761 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 1762 | 
            -
                    "ForceDelete":{"shape":"boolean"}
         | 
| 1763 | 
            -
                  }
         | 
| 1764 | 
            -
                },
         | 
| 1765 | 
            -
                "DeleteFileShareOutput":{
         | 
| 1766 | 
            -
                  "type":"structure",
         | 
| 1767 | 
            -
                  "members":{
         | 
| 1768 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 1769 | 
            -
                  }
         | 
| 1770 | 
            -
                },
         | 
| 1771 | 
            -
                "DeleteGatewayInput":{
         | 
| 1772 | 
            -
                  "type":"structure",
         | 
| 1773 | 
            -
                  "required":["GatewayARN"],
         | 
| 1774 | 
            -
                  "members":{
         | 
| 1775 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1776 | 
            -
                  }
         | 
| 1777 | 
            -
                },
         | 
| 1778 | 
            -
                "DeleteGatewayOutput":{
         | 
| 1779 | 
            -
                  "type":"structure",
         | 
| 1780 | 
            -
                  "members":{
         | 
| 1781 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1782 | 
            -
                  }
         | 
| 1783 | 
            -
                },
         | 
| 1784 | 
            -
                "DeleteSnapshotScheduleInput":{
         | 
| 1785 | 
            -
                  "type":"structure",
         | 
| 1786 | 
            -
                  "required":["VolumeARN"],
         | 
| 1787 | 
            -
                  "members":{
         | 
| 1788 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 1789 | 
            -
                  }
         | 
| 1790 | 
            -
                },
         | 
| 1791 | 
            -
                "DeleteSnapshotScheduleOutput":{
         | 
| 1792 | 
            -
                  "type":"structure",
         | 
| 1793 | 
            -
                  "members":{
         | 
| 1794 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 1795 | 
            -
                  }
         | 
| 1796 | 
            -
                },
         | 
| 1797 | 
            -
                "DeleteTapeArchiveInput":{
         | 
| 1798 | 
            -
                  "type":"structure",
         | 
| 1799 | 
            -
                  "required":["TapeARN"],
         | 
| 1800 | 
            -
                  "members":{
         | 
| 1801 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 1802 | 
            -
                    "BypassGovernanceRetention":{"shape":"boolean"}
         | 
| 1803 | 
            -
                  }
         | 
| 1804 | 
            -
                },
         | 
| 1805 | 
            -
                "DeleteTapeArchiveOutput":{
         | 
| 1806 | 
            -
                  "type":"structure",
         | 
| 1807 | 
            -
                  "members":{
         | 
| 1808 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1809 | 
            -
                  }
         | 
| 1810 | 
            -
                },
         | 
| 1811 | 
            -
                "DeleteTapeInput":{
         | 
| 1812 | 
            -
                  "type":"structure",
         | 
| 1813 | 
            -
                  "required":[
         | 
| 1814 | 
            -
                    "GatewayARN",
         | 
| 1815 | 
            -
                    "TapeARN"
         | 
| 1816 | 
            -
                  ],
         | 
| 1817 | 
            -
                  "members":{
         | 
| 1818 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1819 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 1820 | 
            -
                    "BypassGovernanceRetention":{"shape":"boolean"}
         | 
| 1821 | 
            -
                  }
         | 
| 1822 | 
            -
                },
         | 
| 1823 | 
            -
                "DeleteTapeOutput":{
         | 
| 1824 | 
            -
                  "type":"structure",
         | 
| 1825 | 
            -
                  "members":{
         | 
| 1826 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 1827 | 
            -
                  }
         | 
| 1828 | 
            -
                },
         | 
| 1829 | 
            -
                "DeleteTapePoolInput":{
         | 
| 1830 | 
            -
                  "type":"structure",
         | 
| 1831 | 
            -
                  "required":["PoolARN"],
         | 
| 1832 | 
            -
                  "members":{
         | 
| 1833 | 
            -
                    "PoolARN":{"shape":"PoolARN"}
         | 
| 1834 | 
            -
                  }
         | 
| 1835 | 
            -
                },
         | 
| 1836 | 
            -
                "DeleteTapePoolOutput":{
         | 
| 1837 | 
            -
                  "type":"structure",
         | 
| 1838 | 
            -
                  "members":{
         | 
| 1839 | 
            -
                    "PoolARN":{"shape":"PoolARN"}
         | 
| 1840 | 
            -
                  }
         | 
| 1841 | 
            -
                },
         | 
| 1842 | 
            -
                "DeleteVolumeInput":{
         | 
| 1843 | 
            -
                  "type":"structure",
         | 
| 1844 | 
            -
                  "required":["VolumeARN"],
         | 
| 1845 | 
            -
                  "members":{
         | 
| 1846 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 1847 | 
            -
                  }
         | 
| 1848 | 
            -
                },
         | 
| 1849 | 
            -
                "DeleteVolumeOutput":{
         | 
| 1850 | 
            -
                  "type":"structure",
         | 
| 1851 | 
            -
                  "members":{
         | 
| 1852 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 1853 | 
            -
                  }
         | 
| 1854 | 
            -
                },
         | 
| 1855 | 
            -
                "DeprecationDate":{
         | 
| 1856 | 
            -
                  "type":"string",
         | 
| 1857 | 
            -
                  "max":25,
         | 
| 1858 | 
            -
                  "min":1
         | 
| 1859 | 
            -
                },
         | 
| 1860 | 
            -
                "DescribeAvailabilityMonitorTestInput":{
         | 
| 1861 | 
            -
                  "type":"structure",
         | 
| 1862 | 
            -
                  "required":["GatewayARN"],
         | 
| 1863 | 
            -
                  "members":{
         | 
| 1864 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1865 | 
            -
                  }
         | 
| 1866 | 
            -
                },
         | 
| 1867 | 
            -
                "DescribeAvailabilityMonitorTestOutput":{
         | 
| 1868 | 
            -
                  "type":"structure",
         | 
| 1869 | 
            -
                  "members":{
         | 
| 1870 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1871 | 
            -
                    "Status":{"shape":"AvailabilityMonitorTestStatus"},
         | 
| 1872 | 
            -
                    "StartTime":{"shape":"Time"}
         | 
| 1873 | 
            -
                  }
         | 
| 1874 | 
            -
                },
         | 
| 1875 | 
            -
                "DescribeBandwidthRateLimitInput":{
         | 
| 1876 | 
            -
                  "type":"structure",
         | 
| 1877 | 
            -
                  "required":["GatewayARN"],
         | 
| 1878 | 
            -
                  "members":{
         | 
| 1879 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1880 | 
            -
                  }
         | 
| 1881 | 
            -
                },
         | 
| 1882 | 
            -
                "DescribeBandwidthRateLimitOutput":{
         | 
| 1883 | 
            -
                  "type":"structure",
         | 
| 1884 | 
            -
                  "members":{
         | 
| 1885 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1886 | 
            -
                    "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
         | 
| 1887 | 
            -
                    "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
         | 
| 1888 | 
            -
                  }
         | 
| 1889 | 
            -
                },
         | 
| 1890 | 
            -
                "DescribeBandwidthRateLimitScheduleInput":{
         | 
| 1891 | 
            -
                  "type":"structure",
         | 
| 1892 | 
            -
                  "required":["GatewayARN"],
         | 
| 1893 | 
            -
                  "members":{
         | 
| 1894 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1895 | 
            -
                  }
         | 
| 1896 | 
            -
                },
         | 
| 1897 | 
            -
                "DescribeBandwidthRateLimitScheduleOutput":{
         | 
| 1898 | 
            -
                  "type":"structure",
         | 
| 1899 | 
            -
                  "members":{
         | 
| 1900 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1901 | 
            -
                    "BandwidthRateLimitIntervals":{"shape":"BandwidthRateLimitIntervals"}
         | 
| 1902 | 
            -
                  }
         | 
| 1903 | 
            -
                },
         | 
| 1904 | 
            -
                "DescribeCacheInput":{
         | 
| 1905 | 
            -
                  "type":"structure",
         | 
| 1906 | 
            -
                  "required":["GatewayARN"],
         | 
| 1907 | 
            -
                  "members":{
         | 
| 1908 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1909 | 
            -
                  }
         | 
| 1910 | 
            -
                },
         | 
| 1911 | 
            -
                "DescribeCacheOutput":{
         | 
| 1912 | 
            -
                  "type":"structure",
         | 
| 1913 | 
            -
                  "members":{
         | 
| 1914 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1915 | 
            -
                    "DiskIds":{"shape":"DiskIds"},
         | 
| 1916 | 
            -
                    "CacheAllocatedInBytes":{"shape":"long"},
         | 
| 1917 | 
            -
                    "CacheUsedPercentage":{"shape":"double"},
         | 
| 1918 | 
            -
                    "CacheDirtyPercentage":{"shape":"double"},
         | 
| 1919 | 
            -
                    "CacheHitPercentage":{"shape":"double"},
         | 
| 1920 | 
            -
                    "CacheMissPercentage":{"shape":"double"}
         | 
| 1921 | 
            -
                  }
         | 
| 1922 | 
            -
                },
         | 
| 1923 | 
            -
                "DescribeCachediSCSIVolumesInput":{
         | 
| 1924 | 
            -
                  "type":"structure",
         | 
| 1925 | 
            -
                  "required":["VolumeARNs"],
         | 
| 1926 | 
            -
                  "members":{
         | 
| 1927 | 
            -
                    "VolumeARNs":{"shape":"VolumeARNs"}
         | 
| 1928 | 
            -
                  }
         | 
| 1929 | 
            -
                },
         | 
| 1930 | 
            -
                "DescribeCachediSCSIVolumesOutput":{
         | 
| 1931 | 
            -
                  "type":"structure",
         | 
| 1932 | 
            -
                  "members":{
         | 
| 1933 | 
            -
                    "CachediSCSIVolumes":{"shape":"CachediSCSIVolumes"}
         | 
| 1934 | 
            -
                  }
         | 
| 1935 | 
            -
                },
         | 
| 1936 | 
            -
                "DescribeChapCredentialsInput":{
         | 
| 1937 | 
            -
                  "type":"structure",
         | 
| 1938 | 
            -
                  "required":["TargetARN"],
         | 
| 1939 | 
            -
                  "members":{
         | 
| 1940 | 
            -
                    "TargetARN":{"shape":"TargetARN"}
         | 
| 1941 | 
            -
                  }
         | 
| 1942 | 
            -
                },
         | 
| 1943 | 
            -
                "DescribeChapCredentialsOutput":{
         | 
| 1944 | 
            -
                  "type":"structure",
         | 
| 1945 | 
            -
                  "members":{
         | 
| 1946 | 
            -
                    "ChapCredentials":{"shape":"ChapCredentials"}
         | 
| 1947 | 
            -
                  }
         | 
| 1948 | 
            -
                },
         | 
| 1949 | 
            -
                "DescribeGatewayInformationInput":{
         | 
| 1950 | 
            -
                  "type":"structure",
         | 
| 1951 | 
            -
                  "required":["GatewayARN"],
         | 
| 1952 | 
            -
                  "members":{
         | 
| 1953 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1954 | 
            -
                  }
         | 
| 1955 | 
            -
                },
         | 
| 1956 | 
            -
                "DescribeGatewayInformationOutput":{
         | 
| 1957 | 
            -
                  "type":"structure",
         | 
| 1958 | 
            -
                  "members":{
         | 
| 1959 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1960 | 
            -
                    "GatewayId":{"shape":"GatewayId"},
         | 
| 1961 | 
            -
                    "GatewayName":{"shape":"string"},
         | 
| 1962 | 
            -
                    "GatewayTimezone":{"shape":"GatewayTimezone"},
         | 
| 1963 | 
            -
                    "GatewayState":{"shape":"GatewayState"},
         | 
| 1964 | 
            -
                    "GatewayNetworkInterfaces":{"shape":"GatewayNetworkInterfaces"},
         | 
| 1965 | 
            -
                    "GatewayType":{"shape":"GatewayType"},
         | 
| 1966 | 
            -
                    "NextUpdateAvailabilityDate":{"shape":"NextUpdateAvailabilityDate"},
         | 
| 1967 | 
            -
                    "LastSoftwareUpdate":{"shape":"LastSoftwareUpdate"},
         | 
| 1968 | 
            -
                    "Ec2InstanceId":{"shape":"Ec2InstanceId"},
         | 
| 1969 | 
            -
                    "Ec2InstanceRegion":{"shape":"Ec2InstanceRegion"},
         | 
| 1970 | 
            -
                    "Tags":{"shape":"Tags"},
         | 
| 1971 | 
            -
                    "VPCEndpoint":{"shape":"string"},
         | 
| 1972 | 
            -
                    "CloudWatchLogGroupARN":{"shape":"CloudWatchLogGroupARN"},
         | 
| 1973 | 
            -
                    "HostEnvironment":{"shape":"HostEnvironment"},
         | 
| 1974 | 
            -
                    "EndpointType":{"shape":"EndpointType"},
         | 
| 1975 | 
            -
                    "SoftwareUpdatesEndDate":{"shape":"SoftwareUpdatesEndDate"},
         | 
| 1976 | 
            -
                    "DeprecationDate":{"shape":"DeprecationDate"}
         | 
| 1977 | 
            -
                  }
         | 
| 1978 | 
            -
                },
         | 
| 1979 | 
            -
                "DescribeMaintenanceStartTimeInput":{
         | 
| 1980 | 
            -
                  "type":"structure",
         | 
| 1981 | 
            -
                  "required":["GatewayARN"],
         | 
| 1982 | 
            -
                  "members":{
         | 
| 1983 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 1984 | 
            -
                  }
         | 
| 1985 | 
            -
                },
         | 
| 1986 | 
            -
                "DescribeMaintenanceStartTimeOutput":{
         | 
| 1987 | 
            -
                  "type":"structure",
         | 
| 1988 | 
            -
                  "members":{
         | 
| 1989 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 1990 | 
            -
                    "HourOfDay":{"shape":"HourOfDay"},
         | 
| 1991 | 
            -
                    "MinuteOfHour":{"shape":"MinuteOfHour"},
         | 
| 1992 | 
            -
                    "DayOfWeek":{"shape":"DayOfWeek"},
         | 
| 1993 | 
            -
                    "DayOfMonth":{"shape":"DayOfMonth"},
         | 
| 1994 | 
            -
                    "Timezone":{"shape":"GatewayTimezone"}
         | 
| 1995 | 
            -
                  }
         | 
| 1996 | 
            -
                },
         | 
| 1997 | 
            -
                "DescribeNFSFileSharesInput":{
         | 
| 1998 | 
            -
                  "type":"structure",
         | 
| 1999 | 
            -
                  "required":["FileShareARNList"],
         | 
| 2000 | 
            -
                  "members":{
         | 
| 2001 | 
            -
                    "FileShareARNList":{"shape":"FileShareARNList"}
         | 
| 2002 | 
            -
                  }
         | 
| 2003 | 
            -
                },
         | 
| 2004 | 
            -
                "DescribeNFSFileSharesOutput":{
         | 
| 2005 | 
            -
                  "type":"structure",
         | 
| 2006 | 
            -
                  "members":{
         | 
| 2007 | 
            -
                    "NFSFileShareInfoList":{"shape":"NFSFileShareInfoList"}
         | 
| 2008 | 
            -
                  }
         | 
| 2009 | 
            -
                },
         | 
| 2010 | 
            -
                "DescribeSMBFileSharesInput":{
         | 
| 2011 | 
            -
                  "type":"structure",
         | 
| 2012 | 
            -
                  "required":["FileShareARNList"],
         | 
| 2013 | 
            -
                  "members":{
         | 
| 2014 | 
            -
                    "FileShareARNList":{"shape":"FileShareARNList"}
         | 
| 2015 | 
            -
                  }
         | 
| 2016 | 
            -
                },
         | 
| 2017 | 
            -
                "DescribeSMBFileSharesOutput":{
         | 
| 2018 | 
            -
                  "type":"structure",
         | 
| 2019 | 
            -
                  "members":{
         | 
| 2020 | 
            -
                    "SMBFileShareInfoList":{"shape":"SMBFileShareInfoList"}
         | 
| 2021 | 
            -
                  }
         | 
| 2022 | 
            -
                },
         | 
| 2023 | 
            -
                "DescribeSMBSettingsInput":{
         | 
| 2024 | 
            -
                  "type":"structure",
         | 
| 2025 | 
            -
                  "required":["GatewayARN"],
         | 
| 2026 | 
            -
                  "members":{
         | 
| 2027 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2028 | 
            -
                  }
         | 
| 2029 | 
            -
                },
         | 
| 2030 | 
            -
                "DescribeSMBSettingsOutput":{
         | 
| 2031 | 
            -
                  "type":"structure",
         | 
| 2032 | 
            -
                  "members":{
         | 
| 2033 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2034 | 
            -
                    "DomainName":{"shape":"DomainName"},
         | 
| 2035 | 
            -
                    "ActiveDirectoryStatus":{"shape":"ActiveDirectoryStatus"},
         | 
| 2036 | 
            -
                    "SMBGuestPasswordSet":{"shape":"Boolean"},
         | 
| 2037 | 
            -
                    "SMBSecurityStrategy":{"shape":"SMBSecurityStrategy"},
         | 
| 2038 | 
            -
                    "FileSharesVisible":{"shape":"Boolean"}
         | 
| 2039 | 
            -
                  }
         | 
| 2040 | 
            -
                },
         | 
| 2041 | 
            -
                "DescribeSnapshotScheduleInput":{
         | 
| 2042 | 
            -
                  "type":"structure",
         | 
| 2043 | 
            -
                  "required":["VolumeARN"],
         | 
| 2044 | 
            -
                  "members":{
         | 
| 2045 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 2046 | 
            -
                  }
         | 
| 2047 | 
            -
                },
         | 
| 2048 | 
            -
                "DescribeSnapshotScheduleOutput":{
         | 
| 2049 | 
            -
                  "type":"structure",
         | 
| 2050 | 
            -
                  "members":{
         | 
| 2051 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 2052 | 
            -
                    "StartAt":{"shape":"HourOfDay"},
         | 
| 2053 | 
            -
                    "RecurrenceInHours":{"shape":"RecurrenceInHours"},
         | 
| 2054 | 
            -
                    "Description":{"shape":"Description"},
         | 
| 2055 | 
            -
                    "Timezone":{"shape":"GatewayTimezone"},
         | 
| 2056 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 2057 | 
            -
                  }
         | 
| 2058 | 
            -
                },
         | 
| 2059 | 
            -
                "DescribeStorediSCSIVolumesInput":{
         | 
| 2060 | 
            -
                  "type":"structure",
         | 
| 2061 | 
            -
                  "required":["VolumeARNs"],
         | 
| 2062 | 
            -
                  "members":{
         | 
| 2063 | 
            -
                    "VolumeARNs":{"shape":"VolumeARNs"}
         | 
| 2064 | 
            -
                  }
         | 
| 2065 | 
            -
                },
         | 
| 2066 | 
            -
                "DescribeStorediSCSIVolumesOutput":{
         | 
| 2067 | 
            -
                  "type":"structure",
         | 
| 2068 | 
            -
                  "members":{
         | 
| 2069 | 
            -
                    "StorediSCSIVolumes":{"shape":"StorediSCSIVolumes"}
         | 
| 2070 | 
            -
                  }
         | 
| 2071 | 
            -
                },
         | 
| 2072 | 
            -
                "DescribeTapeArchivesInput":{
         | 
| 2073 | 
            -
                  "type":"structure",
         | 
| 2074 | 
            -
                  "members":{
         | 
| 2075 | 
            -
                    "TapeARNs":{"shape":"TapeARNs"},
         | 
| 2076 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2077 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2078 | 
            -
                  }
         | 
| 2079 | 
            -
                },
         | 
| 2080 | 
            -
                "DescribeTapeArchivesOutput":{
         | 
| 2081 | 
            -
                  "type":"structure",
         | 
| 2082 | 
            -
                  "members":{
         | 
| 2083 | 
            -
                    "TapeArchives":{"shape":"TapeArchives"},
         | 
| 2084 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2085 | 
            -
                  }
         | 
| 2086 | 
            -
                },
         | 
| 2087 | 
            -
                "DescribeTapeRecoveryPointsInput":{
         | 
| 2088 | 
            -
                  "type":"structure",
         | 
| 2089 | 
            -
                  "required":["GatewayARN"],
         | 
| 2090 | 
            -
                  "members":{
         | 
| 2091 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2092 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2093 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2094 | 
            -
                  }
         | 
| 2095 | 
            -
                },
         | 
| 2096 | 
            -
                "DescribeTapeRecoveryPointsOutput":{
         | 
| 2097 | 
            -
                  "type":"structure",
         | 
| 2098 | 
            -
                  "members":{
         | 
| 2099 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2100 | 
            -
                    "TapeRecoveryPointInfos":{"shape":"TapeRecoveryPointInfos"},
         | 
| 2101 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2102 | 
            -
                  }
         | 
| 2103 | 
            -
                },
         | 
| 2104 | 
            -
                "DescribeTapesInput":{
         | 
| 2105 | 
            -
                  "type":"structure",
         | 
| 2106 | 
            -
                  "required":["GatewayARN"],
         | 
| 2107 | 
            -
                  "members":{
         | 
| 2108 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2109 | 
            -
                    "TapeARNs":{"shape":"TapeARNs"},
         | 
| 2110 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2111 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2112 | 
            -
                  }
         | 
| 2113 | 
            -
                },
         | 
| 2114 | 
            -
                "DescribeTapesOutput":{
         | 
| 2115 | 
            -
                  "type":"structure",
         | 
| 2116 | 
            -
                  "members":{
         | 
| 2117 | 
            -
                    "Tapes":{"shape":"Tapes"},
         | 
| 2118 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2119 | 
            -
                  }
         | 
| 2120 | 
            -
                },
         | 
| 2121 | 
            -
                "DescribeUploadBufferInput":{
         | 
| 2122 | 
            -
                  "type":"structure",
         | 
| 2123 | 
            -
                  "required":["GatewayARN"],
         | 
| 2124 | 
            -
                  "members":{
         | 
| 2125 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2126 | 
            -
                  }
         | 
| 2127 | 
            -
                },
         | 
| 2128 | 
            -
                "DescribeUploadBufferOutput":{
         | 
| 2129 | 
            -
                  "type":"structure",
         | 
| 2130 | 
            -
                  "members":{
         | 
| 2131 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2132 | 
            -
                    "DiskIds":{"shape":"DiskIds"},
         | 
| 2133 | 
            -
                    "UploadBufferUsedInBytes":{"shape":"long"},
         | 
| 2134 | 
            -
                    "UploadBufferAllocatedInBytes":{"shape":"long"}
         | 
| 2135 | 
            -
                  }
         | 
| 2136 | 
            -
                },
         | 
| 2137 | 
            -
                "DescribeVTLDevicesInput":{
         | 
| 2138 | 
            -
                  "type":"structure",
         | 
| 2139 | 
            -
                  "required":["GatewayARN"],
         | 
| 2140 | 
            -
                  "members":{
         | 
| 2141 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2142 | 
            -
                    "VTLDeviceARNs":{"shape":"VTLDeviceARNs"},
         | 
| 2143 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2144 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2145 | 
            -
                  }
         | 
| 2146 | 
            -
                },
         | 
| 2147 | 
            -
                "DescribeVTLDevicesOutput":{
         | 
| 2148 | 
            -
                  "type":"structure",
         | 
| 2149 | 
            -
                  "members":{
         | 
| 2150 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2151 | 
            -
                    "VTLDevices":{"shape":"VTLDevices"},
         | 
| 2152 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2153 | 
            -
                  }
         | 
| 2154 | 
            -
                },
         | 
| 2155 | 
            -
                "DescribeWorkingStorageInput":{
         | 
| 2156 | 
            -
                  "type":"structure",
         | 
| 2157 | 
            -
                  "required":["GatewayARN"],
         | 
| 2158 | 
            -
                  "members":{
         | 
| 2159 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2160 | 
            -
                  }
         | 
| 2161 | 
            -
                },
         | 
| 2162 | 
            -
                "DescribeWorkingStorageOutput":{
         | 
| 2163 | 
            -
                  "type":"structure",
         | 
| 2164 | 
            -
                  "members":{
         | 
| 2165 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2166 | 
            -
                    "DiskIds":{"shape":"DiskIds"},
         | 
| 2167 | 
            -
                    "WorkingStorageUsedInBytes":{"shape":"long"},
         | 
| 2168 | 
            -
                    "WorkingStorageAllocatedInBytes":{"shape":"long"}
         | 
| 2169 | 
            -
                  }
         | 
| 2170 | 
            -
                },
         | 
| 2171 | 
            -
                "Description":{
         | 
| 2172 | 
            -
                  "type":"string",
         | 
| 2173 | 
            -
                  "max":255,
         | 
| 2174 | 
            -
                  "min":1
         | 
| 2175 | 
            -
                },
         | 
| 2176 | 
            -
                "DetachVolumeInput":{
         | 
| 2177 | 
            -
                  "type":"structure",
         | 
| 2178 | 
            -
                  "required":["VolumeARN"],
         | 
| 2179 | 
            -
                  "members":{
         | 
| 2180 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 2181 | 
            -
                    "ForceDetach":{"shape":"Boolean"}
         | 
| 2182 | 
            -
                  }
         | 
| 2183 | 
            -
                },
         | 
| 2184 | 
            -
                "DetachVolumeOutput":{
         | 
| 2185 | 
            -
                  "type":"structure",
         | 
| 2186 | 
            -
                  "members":{
         | 
| 2187 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 2188 | 
            -
                  }
         | 
| 2189 | 
            -
                },
         | 
| 2190 | 
            -
                "DeviceType":{
         | 
| 2191 | 
            -
                  "type":"string",
         | 
| 2192 | 
            -
                  "max":50,
         | 
| 2193 | 
            -
                  "min":2
         | 
| 2194 | 
            -
                },
         | 
| 2195 | 
            -
                "DeviceiSCSIAttributes":{
         | 
| 2196 | 
            -
                  "type":"structure",
         | 
| 2197 | 
            -
                  "members":{
         | 
| 2198 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 2199 | 
            -
                    "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
         | 
| 2200 | 
            -
                    "NetworkInterfacePort":{"shape":"integer"},
         | 
| 2201 | 
            -
                    "ChapEnabled":{"shape":"boolean"}
         | 
| 2202 | 
            -
                  }
         | 
| 2203 | 
            -
                },
         | 
| 2204 | 
            -
                "DisableGatewayInput":{
         | 
| 2205 | 
            -
                  "type":"structure",
         | 
| 2206 | 
            -
                  "required":["GatewayARN"],
         | 
| 2207 | 
            -
                  "members":{
         | 
| 2208 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2209 | 
            -
                  }
         | 
| 2210 | 
            -
                },
         | 
| 2211 | 
            -
                "DisableGatewayOutput":{
         | 
| 2212 | 
            -
                  "type":"structure",
         | 
| 2213 | 
            -
                  "members":{
         | 
| 2214 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2215 | 
            -
                  }
         | 
| 2216 | 
            -
                },
         | 
| 2217 | 
            -
                "Disk":{
         | 
| 2218 | 
            -
                  "type":"structure",
         | 
| 2219 | 
            -
                  "members":{
         | 
| 2220 | 
            -
                    "DiskId":{"shape":"DiskId"},
         | 
| 2221 | 
            -
                    "DiskPath":{"shape":"string"},
         | 
| 2222 | 
            -
                    "DiskNode":{"shape":"string"},
         | 
| 2223 | 
            -
                    "DiskStatus":{"shape":"string"},
         | 
| 2224 | 
            -
                    "DiskSizeInBytes":{"shape":"long"},
         | 
| 2225 | 
            -
                    "DiskAllocationType":{"shape":"DiskAllocationType"},
         | 
| 2226 | 
            -
                    "DiskAllocationResource":{"shape":"string"},
         | 
| 2227 | 
            -
                    "DiskAttributeList":{"shape":"DiskAttributeList"}
         | 
| 2228 | 
            -
                  }
         | 
| 2229 | 
            -
                },
         | 
| 2230 | 
            -
                "DiskAllocationType":{
         | 
| 2231 | 
            -
                  "type":"string",
         | 
| 2232 | 
            -
                  "max":100,
         | 
| 2233 | 
            -
                  "min":3
         | 
| 2234 | 
            -
                },
         | 
| 2235 | 
            -
                "DiskAttribute":{
         | 
| 2236 | 
            -
                  "type":"string",
         | 
| 2237 | 
            -
                  "max":64,
         | 
| 2238 | 
            -
                  "min":1
         | 
| 2239 | 
            -
                },
         | 
| 2240 | 
            -
                "DiskAttributeList":{
         | 
| 2241 | 
            -
                  "type":"list",
         | 
| 2242 | 
            -
                  "member":{"shape":"DiskAttribute"},
         | 
| 2243 | 
            -
                  "max":10,
         | 
| 2244 | 
            -
                  "min":0
         | 
| 2245 | 
            -
                },
         | 
| 2246 | 
            -
                "DiskId":{
         | 
| 2247 | 
            -
                  "type":"string",
         | 
| 2248 | 
            -
                  "max":300,
         | 
| 2249 | 
            -
                  "min":1
         | 
| 2250 | 
            -
                },
         | 
| 2251 | 
            -
                "DiskIds":{
         | 
| 2252 | 
            -
                  "type":"list",
         | 
| 2253 | 
            -
                  "member":{"shape":"DiskId"}
         | 
| 2254 | 
            -
                },
         | 
| 2255 | 
            -
                "Disks":{
         | 
| 2256 | 
            -
                  "type":"list",
         | 
| 2257 | 
            -
                  "member":{"shape":"Disk"}
         | 
| 2258 | 
            -
                },
         | 
| 2259 | 
            -
                "DomainName":{
         | 
| 2260 | 
            -
                  "type":"string",
         | 
| 2261 | 
            -
                  "max":1024,
         | 
| 2262 | 
            -
                  "min":1,
         | 
| 2263 | 
            -
                  "pattern":"^([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,}$"
         | 
| 2264 | 
            -
                },
         | 
| 2265 | 
            -
                "DomainUserName":{
         | 
| 2266 | 
            -
                  "type":"string",
         | 
| 2267 | 
            -
                  "max":1024,
         | 
| 2268 | 
            -
                  "min":1,
         | 
| 2269 | 
            -
                  "pattern":"^\\w[\\w\\.\\- ]*$"
         | 
| 2270 | 
            -
                },
         | 
| 2271 | 
            -
                "DomainUserPassword":{
         | 
| 2272 | 
            -
                  "type":"string",
         | 
| 2273 | 
            -
                  "max":1024,
         | 
| 2274 | 
            -
                  "min":1,
         | 
| 2275 | 
            -
                  "pattern":"^[ -~]+$",
         | 
| 2276 | 
            -
                  "sensitive":true
         | 
| 2277 | 
            -
                },
         | 
| 2278 | 
            -
                "DoubleObject":{"type":"double"},
         | 
| 2279 | 
            -
                "Ec2InstanceId":{"type":"string"},
         | 
| 2280 | 
            -
                "Ec2InstanceRegion":{"type":"string"},
         | 
| 2281 | 
            -
                "EndpointType":{
         | 
| 2282 | 
            -
                  "type":"string",
         | 
| 2283 | 
            -
                  "max":8,
         | 
| 2284 | 
            -
                  "min":4
         | 
| 2285 | 
            -
                },
         | 
| 2286 | 
            -
                "ErrorCode":{
         | 
| 2287 | 
            -
                  "type":"string",
         | 
| 2288 | 
            -
                  "enum":[
         | 
| 2289 | 
            -
                    "ActivationKeyExpired",
         | 
| 2290 | 
            -
                    "ActivationKeyInvalid",
         | 
| 2291 | 
            -
                    "ActivationKeyNotFound",
         | 
| 2292 | 
            -
                    "GatewayInternalError",
         | 
| 2293 | 
            -
                    "GatewayNotConnected",
         | 
| 2294 | 
            -
                    "GatewayNotFound",
         | 
| 2295 | 
            -
                    "GatewayProxyNetworkConnectionBusy",
         | 
| 2296 | 
            -
                    "AuthenticationFailure",
         | 
| 2297 | 
            -
                    "BandwidthThrottleScheduleNotFound",
         | 
| 2298 | 
            -
                    "Blocked",
         | 
| 2299 | 
            -
                    "CannotExportSnapshot",
         | 
| 2300 | 
            -
                    "ChapCredentialNotFound",
         | 
| 2301 | 
            -
                    "DiskAlreadyAllocated",
         | 
| 2302 | 
            -
                    "DiskDoesNotExist",
         | 
| 2303 | 
            -
                    "DiskSizeGreaterThanVolumeMaxSize",
         | 
| 2304 | 
            -
                    "DiskSizeLessThanVolumeSize",
         | 
| 2305 | 
            -
                    "DiskSizeNotGigAligned",
         | 
| 2306 | 
            -
                    "DuplicateCertificateInfo",
         | 
| 2307 | 
            -
                    "DuplicateSchedule",
         | 
| 2308 | 
            -
                    "EndpointNotFound",
         | 
| 2309 | 
            -
                    "IAMNotSupported",
         | 
| 2310 | 
            -
                    "InitiatorInvalid",
         | 
| 2311 | 
            -
                    "InitiatorNotFound",
         | 
| 2312 | 
            -
                    "InternalError",
         | 
| 2313 | 
            -
                    "InvalidGateway",
         | 
| 2314 | 
            -
                    "InvalidEndpoint",
         | 
| 2315 | 
            -
                    "InvalidParameters",
         | 
| 2316 | 
            -
                    "InvalidSchedule",
         | 
| 2317 | 
            -
                    "LocalStorageLimitExceeded",
         | 
| 2318 | 
            -
                    "LunAlreadyAllocated ",
         | 
| 2319 | 
            -
                    "LunInvalid",
         | 
| 2320 | 
            -
                    "JoinDomainInProgress",
         | 
| 2321 | 
            -
                    "MaximumContentLengthExceeded",
         | 
| 2322 | 
            -
                    "MaximumTapeCartridgeCountExceeded",
         | 
| 2323 | 
            -
                    "MaximumVolumeCountExceeded",
         | 
| 2324 | 
            -
                    "NetworkConfigurationChanged",
         | 
| 2325 | 
            -
                    "NoDisksAvailable",
         | 
| 2326 | 
            -
                    "NotImplemented",
         | 
| 2327 | 
            -
                    "NotSupported",
         | 
| 2328 | 
            -
                    "OperationAborted",
         | 
| 2329 | 
            -
                    "OutdatedGateway",
         | 
| 2330 | 
            -
                    "ParametersNotImplemented",
         | 
| 2331 | 
            -
                    "RegionInvalid",
         | 
| 2332 | 
            -
                    "RequestTimeout",
         | 
| 2333 | 
            -
                    "ServiceUnavailable",
         | 
| 2334 | 
            -
                    "SnapshotDeleted",
         | 
| 2335 | 
            -
                    "SnapshotIdInvalid",
         | 
| 2336 | 
            -
                    "SnapshotInProgress",
         | 
| 2337 | 
            -
                    "SnapshotNotFound",
         | 
| 2338 | 
            -
                    "SnapshotScheduleNotFound",
         | 
| 2339 | 
            -
                    "StagingAreaFull",
         | 
| 2340 | 
            -
                    "StorageFailure",
         | 
| 2341 | 
            -
                    "TapeCartridgeNotFound",
         | 
| 2342 | 
            -
                    "TargetAlreadyExists",
         | 
| 2343 | 
            -
                    "TargetInvalid",
         | 
| 2344 | 
            -
                    "TargetNotFound",
         | 
| 2345 | 
            -
                    "UnauthorizedOperation",
         | 
| 2346 | 
            -
                    "VolumeAlreadyExists",
         | 
| 2347 | 
            -
                    "VolumeIdInvalid",
         | 
| 2348 | 
            -
                    "VolumeInUse",
         | 
| 2349 | 
            -
                    "VolumeNotFound",
         | 
| 2350 | 
            -
                    "VolumeNotReady"
         | 
| 2351 | 
            -
                  ]
         | 
| 2352 | 
            -
                },
         | 
| 2353 | 
            -
                "FileShareARN":{
         | 
| 2354 | 
            -
                  "type":"string",
         | 
| 2355 | 
            -
                  "max":500,
         | 
| 2356 | 
            -
                  "min":50
         | 
| 2357 | 
            -
                },
         | 
| 2358 | 
            -
                "FileShareARNList":{
         | 
| 2359 | 
            -
                  "type":"list",
         | 
| 2360 | 
            -
                  "member":{"shape":"FileShareARN"},
         | 
| 2361 | 
            -
                  "max":10,
         | 
| 2362 | 
            -
                  "min":1
         | 
| 2363 | 
            -
                },
         | 
| 2364 | 
            -
                "FileShareClientList":{
         | 
| 2365 | 
            -
                  "type":"list",
         | 
| 2366 | 
            -
                  "member":{"shape":"IPV4AddressCIDR"},
         | 
| 2367 | 
            -
                  "max":100,
         | 
| 2368 | 
            -
                  "min":1
         | 
| 2369 | 
            -
                },
         | 
| 2370 | 
            -
                "FileShareId":{
         | 
| 2371 | 
            -
                  "type":"string",
         | 
| 2372 | 
            -
                  "max":30,
         | 
| 2373 | 
            -
                  "min":12
         | 
| 2374 | 
            -
                },
         | 
| 2375 | 
            -
                "FileShareInfo":{
         | 
| 2376 | 
            -
                  "type":"structure",
         | 
| 2377 | 
            -
                  "members":{
         | 
| 2378 | 
            -
                    "FileShareType":{"shape":"FileShareType"},
         | 
| 2379 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 2380 | 
            -
                    "FileShareId":{"shape":"FileShareId"},
         | 
| 2381 | 
            -
                    "FileShareStatus":{"shape":"FileShareStatus"},
         | 
| 2382 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2383 | 
            -
                  }
         | 
| 2384 | 
            -
                },
         | 
| 2385 | 
            -
                "FileShareInfoList":{
         | 
| 2386 | 
            -
                  "type":"list",
         | 
| 2387 | 
            -
                  "member":{"shape":"FileShareInfo"}
         | 
| 2388 | 
            -
                },
         | 
| 2389 | 
            -
                "FileShareName":{
         | 
| 2390 | 
            -
                  "type":"string",
         | 
| 2391 | 
            -
                  "max":255,
         | 
| 2392 | 
            -
                  "min":1
         | 
| 2393 | 
            -
                },
         | 
| 2394 | 
            -
                "FileShareStatus":{
         | 
| 2395 | 
            -
                  "type":"string",
         | 
| 2396 | 
            -
                  "max":50,
         | 
| 2397 | 
            -
                  "min":3
         | 
| 2398 | 
            -
                },
         | 
| 2399 | 
            -
                "FileShareType":{
         | 
| 2400 | 
            -
                  "type":"string",
         | 
| 2401 | 
            -
                  "enum":[
         | 
| 2402 | 
            -
                    "NFS",
         | 
| 2403 | 
            -
                    "SMB"
         | 
| 2404 | 
            -
                  ]
         | 
| 2405 | 
            -
                },
         | 
| 2406 | 
            -
                "FileShareUser":{
         | 
| 2407 | 
            -
                  "type":"string",
         | 
| 2408 | 
            -
                  "max":64,
         | 
| 2409 | 
            -
                  "min":1
         | 
| 2410 | 
            -
                },
         | 
| 2411 | 
            -
                "FileShareUserList":{
         | 
| 2412 | 
            -
                  "type":"list",
         | 
| 2413 | 
            -
                  "member":{"shape":"FileShareUser"},
         | 
| 2414 | 
            -
                  "max":100,
         | 
| 2415 | 
            -
                  "min":0
         | 
| 2416 | 
            -
                },
         | 
| 2417 | 
            -
                "Folder":{
         | 
| 2418 | 
            -
                  "type":"string",
         | 
| 2419 | 
            -
                  "max":1024,
         | 
| 2420 | 
            -
                  "min":1
         | 
| 2421 | 
            -
                },
         | 
| 2422 | 
            -
                "FolderList":{
         | 
| 2423 | 
            -
                  "type":"list",
         | 
| 2424 | 
            -
                  "member":{"shape":"Folder"},
         | 
| 2425 | 
            -
                  "max":50,
         | 
| 2426 | 
            -
                  "min":1
         | 
| 2427 | 
            -
                },
         | 
| 2428 | 
            -
                "GatewayARN":{
         | 
| 2429 | 
            -
                  "type":"string",
         | 
| 2430 | 
            -
                  "max":500,
         | 
| 2431 | 
            -
                  "min":50
         | 
| 2432 | 
            -
                },
         | 
| 2433 | 
            -
                "GatewayId":{
         | 
| 2434 | 
            -
                  "type":"string",
         | 
| 2435 | 
            -
                  "max":30,
         | 
| 2436 | 
            -
                  "min":12
         | 
| 2437 | 
            -
                },
         | 
| 2438 | 
            -
                "GatewayInfo":{
         | 
| 2439 | 
            -
                  "type":"structure",
         | 
| 2440 | 
            -
                  "members":{
         | 
| 2441 | 
            -
                    "GatewayId":{"shape":"GatewayId"},
         | 
| 2442 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2443 | 
            -
                    "GatewayType":{"shape":"GatewayType"},
         | 
| 2444 | 
            -
                    "GatewayOperationalState":{"shape":"GatewayOperationalState"},
         | 
| 2445 | 
            -
                    "GatewayName":{"shape":"string"},
         | 
| 2446 | 
            -
                    "Ec2InstanceId":{"shape":"Ec2InstanceId"},
         | 
| 2447 | 
            -
                    "Ec2InstanceRegion":{"shape":"Ec2InstanceRegion"}
         | 
| 2448 | 
            -
                  }
         | 
| 2449 | 
            -
                },
         | 
| 2450 | 
            -
                "GatewayName":{
         | 
| 2451 | 
            -
                  "type":"string",
         | 
| 2452 | 
            -
                  "max":255,
         | 
| 2453 | 
            -
                  "min":2,
         | 
| 2454 | 
            -
                  "pattern":"^[ -\\.0-\\[\\]-~]*[!-\\.0-\\[\\]-~][ -\\.0-\\[\\]-~]*$"
         | 
| 2455 | 
            -
                },
         | 
| 2456 | 
            -
                "GatewayNetworkInterfaces":{
         | 
| 2457 | 
            -
                  "type":"list",
         | 
| 2458 | 
            -
                  "member":{"shape":"NetworkInterface"}
         | 
| 2459 | 
            -
                },
         | 
| 2460 | 
            -
                "GatewayOperationalState":{
         | 
| 2461 | 
            -
                  "type":"string",
         | 
| 2462 | 
            -
                  "max":25,
         | 
| 2463 | 
            -
                  "min":2
         | 
| 2464 | 
            -
                },
         | 
| 2465 | 
            -
                "GatewayState":{
         | 
| 2466 | 
            -
                  "type":"string",
         | 
| 2467 | 
            -
                  "max":25,
         | 
| 2468 | 
            -
                  "min":2
         | 
| 2469 | 
            -
                },
         | 
| 2470 | 
            -
                "GatewayTimezone":{
         | 
| 2471 | 
            -
                  "type":"string",
         | 
| 2472 | 
            -
                  "max":10,
         | 
| 2473 | 
            -
                  "min":3
         | 
| 2474 | 
            -
                },
         | 
| 2475 | 
            -
                "GatewayType":{
         | 
| 2476 | 
            -
                  "type":"string",
         | 
| 2477 | 
            -
                  "max":20,
         | 
| 2478 | 
            -
                  "min":2
         | 
| 2479 | 
            -
                },
         | 
| 2480 | 
            -
                "Gateways":{
         | 
| 2481 | 
            -
                  "type":"list",
         | 
| 2482 | 
            -
                  "member":{"shape":"GatewayInfo"}
         | 
| 2483 | 
            -
                },
         | 
| 2484 | 
            -
                "Host":{
         | 
| 2485 | 
            -
                  "type":"string",
         | 
| 2486 | 
            -
                  "max":1024,
         | 
| 2487 | 
            -
                  "min":6,
         | 
| 2488 | 
            -
                  "pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])(:(\\d+))?$"
         | 
| 2489 | 
            -
                },
         | 
| 2490 | 
            -
                "HostEnvironment":{
         | 
| 2491 | 
            -
                  "type":"string",
         | 
| 2492 | 
            -
                  "enum":[
         | 
| 2493 | 
            -
                    "VMWARE",
         | 
| 2494 | 
            -
                    "HYPER-V",
         | 
| 2495 | 
            -
                    "EC2",
         | 
| 2496 | 
            -
                    "KVM",
         | 
| 2497 | 
            -
                    "OTHER"
         | 
| 2498 | 
            -
                  ]
         | 
| 2499 | 
            -
                },
         | 
| 2500 | 
            -
                "Hosts":{
         | 
| 2501 | 
            -
                  "type":"list",
         | 
| 2502 | 
            -
                  "member":{"shape":"Host"}
         | 
| 2503 | 
            -
                },
         | 
| 2504 | 
            -
                "HourOfDay":{
         | 
| 2505 | 
            -
                  "type":"integer",
         | 
| 2506 | 
            -
                  "max":23,
         | 
| 2507 | 
            -
                  "min":0
         | 
| 2508 | 
            -
                },
         | 
| 2509 | 
            -
                "IPV4AddressCIDR":{
         | 
| 2510 | 
            -
                  "type":"string",
         | 
| 2511 | 
            -
                  "pattern":"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/([0-9]|[1-2][0-9]|3[0-2]))?$"
         | 
| 2512 | 
            -
                },
         | 
| 2513 | 
            -
                "Initiator":{
         | 
| 2514 | 
            -
                  "type":"string",
         | 
| 2515 | 
            -
                  "max":50,
         | 
| 2516 | 
            -
                  "min":1
         | 
| 2517 | 
            -
                },
         | 
| 2518 | 
            -
                "Initiators":{
         | 
| 2519 | 
            -
                  "type":"list",
         | 
| 2520 | 
            -
                  "member":{"shape":"Initiator"}
         | 
| 2521 | 
            -
                },
         | 
| 2522 | 
            -
                "InternalServerError":{
         | 
| 2523 | 
            -
                  "type":"structure",
         | 
| 2524 | 
            -
                  "members":{
         | 
| 2525 | 
            -
                    "message":{"shape":"string"},
         | 
| 2526 | 
            -
                    "error":{"shape":"StorageGatewayError"}
         | 
| 2527 | 
            -
                  },
         | 
| 2528 | 
            -
                  "exception":true
         | 
| 2529 | 
            -
                },
         | 
| 2530 | 
            -
                "InvalidGatewayRequestException":{
         | 
| 2531 | 
            -
                  "type":"structure",
         | 
| 2532 | 
            -
                  "members":{
         | 
| 2533 | 
            -
                    "message":{"shape":"string"},
         | 
| 2534 | 
            -
                    "error":{"shape":"StorageGatewayError"}
         | 
| 2535 | 
            -
                  },
         | 
| 2536 | 
            -
                  "exception":true
         | 
| 2537 | 
            -
                },
         | 
| 2538 | 
            -
                "IqnName":{
         | 
| 2539 | 
            -
                  "type":"string",
         | 
| 2540 | 
            -
                  "max":255,
         | 
| 2541 | 
            -
                  "min":1,
         | 
| 2542 | 
            -
                  "pattern":"[0-9a-z:.-]+"
         | 
| 2543 | 
            -
                },
         | 
| 2544 | 
            -
                "JoinDomainInput":{
         | 
| 2545 | 
            -
                  "type":"structure",
         | 
| 2546 | 
            -
                  "required":[
         | 
| 2547 | 
            -
                    "GatewayARN",
         | 
| 2548 | 
            -
                    "DomainName",
         | 
| 2549 | 
            -
                    "UserName",
         | 
| 2550 | 
            -
                    "Password"
         | 
| 2551 | 
            -
                  ],
         | 
| 2552 | 
            -
                  "members":{
         | 
| 2553 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2554 | 
            -
                    "DomainName":{"shape":"DomainName"},
         | 
| 2555 | 
            -
                    "OrganizationalUnit":{"shape":"OrganizationalUnit"},
         | 
| 2556 | 
            -
                    "DomainControllers":{"shape":"Hosts"},
         | 
| 2557 | 
            -
                    "TimeoutInSeconds":{"shape":"TimeoutInSeconds"},
         | 
| 2558 | 
            -
                    "UserName":{"shape":"DomainUserName"},
         | 
| 2559 | 
            -
                    "Password":{"shape":"DomainUserPassword"}
         | 
| 2560 | 
            -
                  }
         | 
| 2561 | 
            -
                },
         | 
| 2562 | 
            -
                "JoinDomainOutput":{
         | 
| 2563 | 
            -
                  "type":"structure",
         | 
| 2564 | 
            -
                  "members":{
         | 
| 2565 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2566 | 
            -
                    "ActiveDirectoryStatus":{"shape":"ActiveDirectoryStatus"}
         | 
| 2567 | 
            -
                  }
         | 
| 2568 | 
            -
                },
         | 
| 2569 | 
            -
                "KMSKey":{
         | 
| 2570 | 
            -
                  "type":"string",
         | 
| 2571 | 
            -
                  "max":2048,
         | 
| 2572 | 
            -
                  "min":7,
         | 
| 2573 | 
            -
                  "pattern":"(^arn:(aws|aws-cn|aws-us-gov):kms:([a-zA-Z0-9-]+):([0-9]+):(key|alias)/(\\S+)$)|(^alias/(\\S+)$)"
         | 
| 2574 | 
            -
                },
         | 
| 2575 | 
            -
                "LastSoftwareUpdate":{
         | 
| 2576 | 
            -
                  "type":"string",
         | 
| 2577 | 
            -
                  "max":25,
         | 
| 2578 | 
            -
                  "min":1
         | 
| 2579 | 
            -
                },
         | 
| 2580 | 
            -
                "ListAutomaticTapeCreationPoliciesInput":{
         | 
| 2581 | 
            -
                  "type":"structure",
         | 
| 2582 | 
            -
                  "members":{
         | 
| 2583 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2584 | 
            -
                  }
         | 
| 2585 | 
            -
                },
         | 
| 2586 | 
            -
                "ListAutomaticTapeCreationPoliciesOutput":{
         | 
| 2587 | 
            -
                  "type":"structure",
         | 
| 2588 | 
            -
                  "members":{
         | 
| 2589 | 
            -
                    "AutomaticTapeCreationPolicyInfos":{"shape":"AutomaticTapeCreationPolicyInfos"}
         | 
| 2590 | 
            -
                  }
         | 
| 2591 | 
            -
                },
         | 
| 2592 | 
            -
                "ListFileSharesInput":{
         | 
| 2593 | 
            -
                  "type":"structure",
         | 
| 2594 | 
            -
                  "members":{
         | 
| 2595 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2596 | 
            -
                    "Limit":{"shape":"PositiveIntObject"},
         | 
| 2597 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2598 | 
            -
                  }
         | 
| 2599 | 
            -
                },
         | 
| 2600 | 
            -
                "ListFileSharesOutput":{
         | 
| 2601 | 
            -
                  "type":"structure",
         | 
| 2602 | 
            -
                  "members":{
         | 
| 2603 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2604 | 
            -
                    "NextMarker":{"shape":"Marker"},
         | 
| 2605 | 
            -
                    "FileShareInfoList":{"shape":"FileShareInfoList"}
         | 
| 2606 | 
            -
                  }
         | 
| 2607 | 
            -
                },
         | 
| 2608 | 
            -
                "ListGatewaysInput":{
         | 
| 2609 | 
            -
                  "type":"structure",
         | 
| 2610 | 
            -
                  "members":{
         | 
| 2611 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2612 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2613 | 
            -
                  }
         | 
| 2614 | 
            -
                },
         | 
| 2615 | 
            -
                "ListGatewaysOutput":{
         | 
| 2616 | 
            -
                  "type":"structure",
         | 
| 2617 | 
            -
                  "members":{
         | 
| 2618 | 
            -
                    "Gateways":{"shape":"Gateways"},
         | 
| 2619 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2620 | 
            -
                  }
         | 
| 2621 | 
            -
                },
         | 
| 2622 | 
            -
                "ListLocalDisksInput":{
         | 
| 2623 | 
            -
                  "type":"structure",
         | 
| 2624 | 
            -
                  "required":["GatewayARN"],
         | 
| 2625 | 
            -
                  "members":{
         | 
| 2626 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2627 | 
            -
                  }
         | 
| 2628 | 
            -
                },
         | 
| 2629 | 
            -
                "ListLocalDisksOutput":{
         | 
| 2630 | 
            -
                  "type":"structure",
         | 
| 2631 | 
            -
                  "members":{
         | 
| 2632 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2633 | 
            -
                    "Disks":{"shape":"Disks"}
         | 
| 2634 | 
            -
                  }
         | 
| 2635 | 
            -
                },
         | 
| 2636 | 
            -
                "ListTagsForResourceInput":{
         | 
| 2637 | 
            -
                  "type":"structure",
         | 
| 2638 | 
            -
                  "required":["ResourceARN"],
         | 
| 2639 | 
            -
                  "members":{
         | 
| 2640 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"},
         | 
| 2641 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2642 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2643 | 
            -
                  }
         | 
| 2644 | 
            -
                },
         | 
| 2645 | 
            -
                "ListTagsForResourceOutput":{
         | 
| 2646 | 
            -
                  "type":"structure",
         | 
| 2647 | 
            -
                  "members":{
         | 
| 2648 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"},
         | 
| 2649 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2650 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 2651 | 
            -
                  }
         | 
| 2652 | 
            -
                },
         | 
| 2653 | 
            -
                "ListTapePoolsInput":{
         | 
| 2654 | 
            -
                  "type":"structure",
         | 
| 2655 | 
            -
                  "members":{
         | 
| 2656 | 
            -
                    "PoolARNs":{"shape":"PoolARNs"},
         | 
| 2657 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2658 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2659 | 
            -
                  }
         | 
| 2660 | 
            -
                },
         | 
| 2661 | 
            -
                "ListTapePoolsOutput":{
         | 
| 2662 | 
            -
                  "type":"structure",
         | 
| 2663 | 
            -
                  "members":{
         | 
| 2664 | 
            -
                    "PoolInfos":{"shape":"PoolInfos"},
         | 
| 2665 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2666 | 
            -
                  }
         | 
| 2667 | 
            -
                },
         | 
| 2668 | 
            -
                "ListTapesInput":{
         | 
| 2669 | 
            -
                  "type":"structure",
         | 
| 2670 | 
            -
                  "members":{
         | 
| 2671 | 
            -
                    "TapeARNs":{"shape":"TapeARNs"},
         | 
| 2672 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2673 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2674 | 
            -
                  }
         | 
| 2675 | 
            -
                },
         | 
| 2676 | 
            -
                "ListTapesOutput":{
         | 
| 2677 | 
            -
                  "type":"structure",
         | 
| 2678 | 
            -
                  "members":{
         | 
| 2679 | 
            -
                    "TapeInfos":{"shape":"TapeInfos"},
         | 
| 2680 | 
            -
                    "Marker":{"shape":"Marker"}
         | 
| 2681 | 
            -
                  }
         | 
| 2682 | 
            -
                },
         | 
| 2683 | 
            -
                "ListVolumeInitiatorsInput":{
         | 
| 2684 | 
            -
                  "type":"structure",
         | 
| 2685 | 
            -
                  "required":["VolumeARN"],
         | 
| 2686 | 
            -
                  "members":{
         | 
| 2687 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 2688 | 
            -
                  }
         | 
| 2689 | 
            -
                },
         | 
| 2690 | 
            -
                "ListVolumeInitiatorsOutput":{
         | 
| 2691 | 
            -
                  "type":"structure",
         | 
| 2692 | 
            -
                  "members":{
         | 
| 2693 | 
            -
                    "Initiators":{"shape":"Initiators"}
         | 
| 2694 | 
            -
                  }
         | 
| 2695 | 
            -
                },
         | 
| 2696 | 
            -
                "ListVolumeRecoveryPointsInput":{
         | 
| 2697 | 
            -
                  "type":"structure",
         | 
| 2698 | 
            -
                  "required":["GatewayARN"],
         | 
| 2699 | 
            -
                  "members":{
         | 
| 2700 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2701 | 
            -
                  }
         | 
| 2702 | 
            -
                },
         | 
| 2703 | 
            -
                "ListVolumeRecoveryPointsOutput":{
         | 
| 2704 | 
            -
                  "type":"structure",
         | 
| 2705 | 
            -
                  "members":{
         | 
| 2706 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2707 | 
            -
                    "VolumeRecoveryPointInfos":{"shape":"VolumeRecoveryPointInfos"}
         | 
| 2708 | 
            -
                  }
         | 
| 2709 | 
            -
                },
         | 
| 2710 | 
            -
                "ListVolumesInput":{
         | 
| 2711 | 
            -
                  "type":"structure",
         | 
| 2712 | 
            -
                  "members":{
         | 
| 2713 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2714 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2715 | 
            -
                    "Limit":{"shape":"PositiveIntObject"}
         | 
| 2716 | 
            -
                  }
         | 
| 2717 | 
            -
                },
         | 
| 2718 | 
            -
                "ListVolumesOutput":{
         | 
| 2719 | 
            -
                  "type":"structure",
         | 
| 2720 | 
            -
                  "members":{
         | 
| 2721 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2722 | 
            -
                    "Marker":{"shape":"Marker"},
         | 
| 2723 | 
            -
                    "VolumeInfos":{"shape":"VolumeInfos"}
         | 
| 2724 | 
            -
                  }
         | 
| 2725 | 
            -
                },
         | 
| 2726 | 
            -
                "LocalConsolePassword":{
         | 
| 2727 | 
            -
                  "type":"string",
         | 
| 2728 | 
            -
                  "max":512,
         | 
| 2729 | 
            -
                  "min":6,
         | 
| 2730 | 
            -
                  "pattern":"^[ -~]+$",
         | 
| 2731 | 
            -
                  "sensitive":true
         | 
| 2732 | 
            -
                },
         | 
| 2733 | 
            -
                "LocationARN":{
         | 
| 2734 | 
            -
                  "type":"string",
         | 
| 2735 | 
            -
                  "max":1400,
         | 
| 2736 | 
            -
                  "min":16
         | 
| 2737 | 
            -
                },
         | 
| 2738 | 
            -
                "Marker":{
         | 
| 2739 | 
            -
                  "type":"string",
         | 
| 2740 | 
            -
                  "max":1000,
         | 
| 2741 | 
            -
                  "min":1
         | 
| 2742 | 
            -
                },
         | 
| 2743 | 
            -
                "MediumChangerType":{
         | 
| 2744 | 
            -
                  "type":"string",
         | 
| 2745 | 
            -
                  "max":50,
         | 
| 2746 | 
            -
                  "min":2
         | 
| 2747 | 
            -
                },
         | 
| 2748 | 
            -
                "MinimumNumTapes":{
         | 
| 2749 | 
            -
                  "type":"integer",
         | 
| 2750 | 
            -
                  "max":10,
         | 
| 2751 | 
            -
                  "min":1
         | 
| 2752 | 
            -
                },
         | 
| 2753 | 
            -
                "MinuteOfHour":{
         | 
| 2754 | 
            -
                  "type":"integer",
         | 
| 2755 | 
            -
                  "max":59,
         | 
| 2756 | 
            -
                  "min":0
         | 
| 2757 | 
            -
                },
         | 
| 2758 | 
            -
                "NFSFileShareDefaults":{
         | 
| 2759 | 
            -
                  "type":"structure",
         | 
| 2760 | 
            -
                  "members":{
         | 
| 2761 | 
            -
                    "FileMode":{"shape":"PermissionMode"},
         | 
| 2762 | 
            -
                    "DirectoryMode":{"shape":"PermissionMode"},
         | 
| 2763 | 
            -
                    "GroupId":{"shape":"PermissionId"},
         | 
| 2764 | 
            -
                    "OwnerId":{"shape":"PermissionId"}
         | 
| 2765 | 
            -
                  }
         | 
| 2766 | 
            -
                },
         | 
| 2767 | 
            -
                "NFSFileShareInfo":{
         | 
| 2768 | 
            -
                  "type":"structure",
         | 
| 2769 | 
            -
                  "members":{
         | 
| 2770 | 
            -
                    "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
         | 
| 2771 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 2772 | 
            -
                    "FileShareId":{"shape":"FileShareId"},
         | 
| 2773 | 
            -
                    "FileShareStatus":{"shape":"FileShareStatus"},
         | 
| 2774 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 2775 | 
            -
                    "KMSEncrypted":{"shape":"boolean"},
         | 
| 2776 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 2777 | 
            -
                    "Path":{"shape":"Path"},
         | 
| 2778 | 
            -
                    "Role":{"shape":"Role"},
         | 
| 2779 | 
            -
                    "LocationARN":{"shape":"LocationARN"},
         | 
| 2780 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 2781 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 2782 | 
            -
                    "ClientList":{"shape":"FileShareClientList"},
         | 
| 2783 | 
            -
                    "Squash":{"shape":"Squash"},
         | 
| 2784 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 2785 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 2786 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 2787 | 
            -
                    "Tags":{"shape":"Tags"},
         | 
| 2788 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 2789 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 2790 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 2791 | 
            -
                  }
         | 
| 2792 | 
            -
                },
         | 
| 2793 | 
            -
                "NFSFileShareInfoList":{
         | 
| 2794 | 
            -
                  "type":"list",
         | 
| 2795 | 
            -
                  "member":{"shape":"NFSFileShareInfo"}
         | 
| 2796 | 
            -
                },
         | 
| 2797 | 
            -
                "NetworkInterface":{
         | 
| 2798 | 
            -
                  "type":"structure",
         | 
| 2799 | 
            -
                  "members":{
         | 
| 2800 | 
            -
                    "Ipv4Address":{"shape":"string"},
         | 
| 2801 | 
            -
                    "MacAddress":{"shape":"string"},
         | 
| 2802 | 
            -
                    "Ipv6Address":{"shape":"string"}
         | 
| 2803 | 
            -
                  }
         | 
| 2804 | 
            -
                },
         | 
| 2805 | 
            -
                "NetworkInterfaceId":{
         | 
| 2806 | 
            -
                  "type":"string",
         | 
| 2807 | 
            -
                  "pattern":"\\A(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z"
         | 
| 2808 | 
            -
                },
         | 
| 2809 | 
            -
                "NextUpdateAvailabilityDate":{
         | 
| 2810 | 
            -
                  "type":"string",
         | 
| 2811 | 
            -
                  "max":25,
         | 
| 2812 | 
            -
                  "min":1
         | 
| 2813 | 
            -
                },
         | 
| 2814 | 
            -
                "NotificationId":{
         | 
| 2815 | 
            -
                  "type":"string",
         | 
| 2816 | 
            -
                  "max":2048,
         | 
| 2817 | 
            -
                  "min":1
         | 
| 2818 | 
            -
                },
         | 
| 2819 | 
            -
                "NotificationPolicy":{
         | 
| 2820 | 
            -
                  "type":"string",
         | 
| 2821 | 
            -
                  "max":100,
         | 
| 2822 | 
            -
                  "min":2,
         | 
| 2823 | 
            -
                  "pattern":"^\\{[\\w\\s:\\{\\}\\[\\]\"]*}$"
         | 
| 2824 | 
            -
                },
         | 
| 2825 | 
            -
                "NotifyWhenUploadedInput":{
         | 
| 2826 | 
            -
                  "type":"structure",
         | 
| 2827 | 
            -
                  "required":["FileShareARN"],
         | 
| 2828 | 
            -
                  "members":{
         | 
| 2829 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 2830 | 
            -
                  }
         | 
| 2831 | 
            -
                },
         | 
| 2832 | 
            -
                "NotifyWhenUploadedOutput":{
         | 
| 2833 | 
            -
                  "type":"structure",
         | 
| 2834 | 
            -
                  "members":{
         | 
| 2835 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 2836 | 
            -
                    "NotificationId":{"shape":"NotificationId"}
         | 
| 2837 | 
            -
                  }
         | 
| 2838 | 
            -
                },
         | 
| 2839 | 
            -
                "NumTapesToCreate":{
         | 
| 2840 | 
            -
                  "type":"integer",
         | 
| 2841 | 
            -
                  "max":10,
         | 
| 2842 | 
            -
                  "min":1
         | 
| 2843 | 
            -
                },
         | 
| 2844 | 
            -
                "ObjectACL":{
         | 
| 2845 | 
            -
                  "type":"string",
         | 
| 2846 | 
            -
                  "enum":[
         | 
| 2847 | 
            -
                    "private",
         | 
| 2848 | 
            -
                    "public-read",
         | 
| 2849 | 
            -
                    "public-read-write",
         | 
| 2850 | 
            -
                    "authenticated-read",
         | 
| 2851 | 
            -
                    "bucket-owner-read",
         | 
| 2852 | 
            -
                    "bucket-owner-full-control",
         | 
| 2853 | 
            -
                    "aws-exec-read"
         | 
| 2854 | 
            -
                  ]
         | 
| 2855 | 
            -
                },
         | 
| 2856 | 
            -
                "OrganizationalUnit":{
         | 
| 2857 | 
            -
                  "type":"string",
         | 
| 2858 | 
            -
                  "max":1024,
         | 
| 2859 | 
            -
                  "min":1
         | 
| 2860 | 
            -
                },
         | 
| 2861 | 
            -
                "Path":{"type":"string"},
         | 
| 2862 | 
            -
                "PermissionId":{
         | 
| 2863 | 
            -
                  "type":"long",
         | 
| 2864 | 
            -
                  "max":4294967294,
         | 
| 2865 | 
            -
                  "min":0
         | 
| 2866 | 
            -
                },
         | 
| 2867 | 
            -
                "PermissionMode":{
         | 
| 2868 | 
            -
                  "type":"string",
         | 
| 2869 | 
            -
                  "max":4,
         | 
| 2870 | 
            -
                  "min":1,
         | 
| 2871 | 
            -
                  "pattern":"^[0-7]{4}$"
         | 
| 2872 | 
            -
                },
         | 
| 2873 | 
            -
                "PoolARN":{
         | 
| 2874 | 
            -
                  "type":"string",
         | 
| 2875 | 
            -
                  "max":500,
         | 
| 2876 | 
            -
                  "min":50
         | 
| 2877 | 
            -
                },
         | 
| 2878 | 
            -
                "PoolARNs":{
         | 
| 2879 | 
            -
                  "type":"list",
         | 
| 2880 | 
            -
                  "member":{"shape":"PoolARN"}
         | 
| 2881 | 
            -
                },
         | 
| 2882 | 
            -
                "PoolId":{
         | 
| 2883 | 
            -
                  "type":"string",
         | 
| 2884 | 
            -
                  "max":100,
         | 
| 2885 | 
            -
                  "min":1
         | 
| 2886 | 
            -
                },
         | 
| 2887 | 
            -
                "PoolInfo":{
         | 
| 2888 | 
            -
                  "type":"structure",
         | 
| 2889 | 
            -
                  "members":{
         | 
| 2890 | 
            -
                    "PoolARN":{"shape":"PoolARN"},
         | 
| 2891 | 
            -
                    "PoolName":{"shape":"PoolName"},
         | 
| 2892 | 
            -
                    "StorageClass":{"shape":"TapeStorageClass"},
         | 
| 2893 | 
            -
                    "RetentionLockType":{"shape":"RetentionLockType"},
         | 
| 2894 | 
            -
                    "RetentionLockTimeInDays":{"shape":"RetentionLockTimeInDays"},
         | 
| 2895 | 
            -
                    "PoolStatus":{"shape":"PoolStatus"}
         | 
| 2896 | 
            -
                  }
         | 
| 2897 | 
            -
                },
         | 
| 2898 | 
            -
                "PoolInfos":{
         | 
| 2899 | 
            -
                  "type":"list",
         | 
| 2900 | 
            -
                  "member":{"shape":"PoolInfo"}
         | 
| 2901 | 
            -
                },
         | 
| 2902 | 
            -
                "PoolName":{
         | 
| 2903 | 
            -
                  "type":"string",
         | 
| 2904 | 
            -
                  "max":100,
         | 
| 2905 | 
            -
                  "min":1,
         | 
| 2906 | 
            -
                  "pattern":"^[ -\\.0-\\[\\]-~]*[!-\\.0-\\[\\]-~][ -\\.0-\\[\\]-~]*$"
         | 
| 2907 | 
            -
                },
         | 
| 2908 | 
            -
                "PoolStatus":{
         | 
| 2909 | 
            -
                  "type":"string",
         | 
| 2910 | 
            -
                  "enum":[
         | 
| 2911 | 
            -
                    "ACTIVE",
         | 
| 2912 | 
            -
                    "DELETED"
         | 
| 2913 | 
            -
                  ]
         | 
| 2914 | 
            -
                },
         | 
| 2915 | 
            -
                "PositiveIntObject":{
         | 
| 2916 | 
            -
                  "type":"integer",
         | 
| 2917 | 
            -
                  "min":1
         | 
| 2918 | 
            -
                },
         | 
| 2919 | 
            -
                "RecurrenceInHours":{
         | 
| 2920 | 
            -
                  "type":"integer",
         | 
| 2921 | 
            -
                  "max":24,
         | 
| 2922 | 
            -
                  "min":1
         | 
| 2923 | 
            -
                },
         | 
| 2924 | 
            -
                "RefreshCacheInput":{
         | 
| 2925 | 
            -
                  "type":"structure",
         | 
| 2926 | 
            -
                  "required":["FileShareARN"],
         | 
| 2927 | 
            -
                  "members":{
         | 
| 2928 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 2929 | 
            -
                    "FolderList":{"shape":"FolderList"},
         | 
| 2930 | 
            -
                    "Recursive":{"shape":"Boolean"}
         | 
| 2931 | 
            -
                  }
         | 
| 2932 | 
            -
                },
         | 
| 2933 | 
            -
                "RefreshCacheOutput":{
         | 
| 2934 | 
            -
                  "type":"structure",
         | 
| 2935 | 
            -
                  "members":{
         | 
| 2936 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 2937 | 
            -
                    "NotificationId":{"shape":"NotificationId"}
         | 
| 2938 | 
            -
                  }
         | 
| 2939 | 
            -
                },
         | 
| 2940 | 
            -
                "RegionId":{
         | 
| 2941 | 
            -
                  "type":"string",
         | 
| 2942 | 
            -
                  "max":25,
         | 
| 2943 | 
            -
                  "min":1
         | 
| 2944 | 
            -
                },
         | 
| 2945 | 
            -
                "RemoveTagsFromResourceInput":{
         | 
| 2946 | 
            -
                  "type":"structure",
         | 
| 2947 | 
            -
                  "required":[
         | 
| 2948 | 
            -
                    "ResourceARN",
         | 
| 2949 | 
            -
                    "TagKeys"
         | 
| 2950 | 
            -
                  ],
         | 
| 2951 | 
            -
                  "members":{
         | 
| 2952 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"},
         | 
| 2953 | 
            -
                    "TagKeys":{"shape":"TagKeys"}
         | 
| 2954 | 
            -
                  }
         | 
| 2955 | 
            -
                },
         | 
| 2956 | 
            -
                "RemoveTagsFromResourceOutput":{
         | 
| 2957 | 
            -
                  "type":"structure",
         | 
| 2958 | 
            -
                  "members":{
         | 
| 2959 | 
            -
                    "ResourceARN":{"shape":"ResourceARN"}
         | 
| 2960 | 
            -
                  }
         | 
| 2961 | 
            -
                },
         | 
| 2962 | 
            -
                "ResetCacheInput":{
         | 
| 2963 | 
            -
                  "type":"structure",
         | 
| 2964 | 
            -
                  "required":["GatewayARN"],
         | 
| 2965 | 
            -
                  "members":{
         | 
| 2966 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2967 | 
            -
                  }
         | 
| 2968 | 
            -
                },
         | 
| 2969 | 
            -
                "ResetCacheOutput":{
         | 
| 2970 | 
            -
                  "type":"structure",
         | 
| 2971 | 
            -
                  "members":{
         | 
| 2972 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 2973 | 
            -
                  }
         | 
| 2974 | 
            -
                },
         | 
| 2975 | 
            -
                "ResourceARN":{
         | 
| 2976 | 
            -
                  "type":"string",
         | 
| 2977 | 
            -
                  "max":500,
         | 
| 2978 | 
            -
                  "min":50
         | 
| 2979 | 
            -
                },
         | 
| 2980 | 
            -
                "RetentionLockTimeInDays":{
         | 
| 2981 | 
            -
                  "type":"integer",
         | 
| 2982 | 
            -
                  "max":36500,
         | 
| 2983 | 
            -
                  "min":0
         | 
| 2984 | 
            -
                },
         | 
| 2985 | 
            -
                "RetentionLockType":{
         | 
| 2986 | 
            -
                  "type":"string",
         | 
| 2987 | 
            -
                  "enum":[
         | 
| 2988 | 
            -
                    "COMPLIANCE",
         | 
| 2989 | 
            -
                    "GOVERNANCE",
         | 
| 2990 | 
            -
                    "NONE"
         | 
| 2991 | 
            -
                  ]
         | 
| 2992 | 
            -
                },
         | 
| 2993 | 
            -
                "RetrieveTapeArchiveInput":{
         | 
| 2994 | 
            -
                  "type":"structure",
         | 
| 2995 | 
            -
                  "required":[
         | 
| 2996 | 
            -
                    "TapeARN",
         | 
| 2997 | 
            -
                    "GatewayARN"
         | 
| 2998 | 
            -
                  ],
         | 
| 2999 | 
            -
                  "members":{
         | 
| 3000 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3001 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3002 | 
            -
                  }
         | 
| 3003 | 
            -
                },
         | 
| 3004 | 
            -
                "RetrieveTapeArchiveOutput":{
         | 
| 3005 | 
            -
                  "type":"structure",
         | 
| 3006 | 
            -
                  "members":{
         | 
| 3007 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 3008 | 
            -
                  }
         | 
| 3009 | 
            -
                },
         | 
| 3010 | 
            -
                "RetrieveTapeRecoveryPointInput":{
         | 
| 3011 | 
            -
                  "type":"structure",
         | 
| 3012 | 
            -
                  "required":[
         | 
| 3013 | 
            -
                    "TapeARN",
         | 
| 3014 | 
            -
                    "GatewayARN"
         | 
| 3015 | 
            -
                  ],
         | 
| 3016 | 
            -
                  "members":{
         | 
| 3017 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3018 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3019 | 
            -
                  }
         | 
| 3020 | 
            -
                },
         | 
| 3021 | 
            -
                "RetrieveTapeRecoveryPointOutput":{
         | 
| 3022 | 
            -
                  "type":"structure",
         | 
| 3023 | 
            -
                  "members":{
         | 
| 3024 | 
            -
                    "TapeARN":{"shape":"TapeARN"}
         | 
| 3025 | 
            -
                  }
         | 
| 3026 | 
            -
                },
         | 
| 3027 | 
            -
                "Role":{
         | 
| 3028 | 
            -
                  "type":"string",
         | 
| 3029 | 
            -
                  "max":2048,
         | 
| 3030 | 
            -
                  "min":20,
         | 
| 3031 | 
            -
                  "pattern":"^arn:(aws|aws-cn|aws-us-gov):iam::([0-9]+):role/(\\S+)$"
         | 
| 3032 | 
            -
                },
         | 
| 3033 | 
            -
                "SMBFileShareInfo":{
         | 
| 3034 | 
            -
                  "type":"structure",
         | 
| 3035 | 
            -
                  "members":{
         | 
| 3036 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 3037 | 
            -
                    "FileShareId":{"shape":"FileShareId"},
         | 
| 3038 | 
            -
                    "FileShareStatus":{"shape":"FileShareStatus"},
         | 
| 3039 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3040 | 
            -
                    "KMSEncrypted":{"shape":"boolean"},
         | 
| 3041 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3042 | 
            -
                    "Path":{"shape":"Path"},
         | 
| 3043 | 
            -
                    "Role":{"shape":"Role"},
         | 
| 3044 | 
            -
                    "LocationARN":{"shape":"LocationARN"},
         | 
| 3045 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 3046 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 3047 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 3048 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 3049 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 3050 | 
            -
                    "SMBACLEnabled":{"shape":"Boolean"},
         | 
| 3051 | 
            -
                    "AccessBasedEnumeration":{"shape":"Boolean"},
         | 
| 3052 | 
            -
                    "AdminUserList":{"shape":"FileShareUserList"},
         | 
| 3053 | 
            -
                    "ValidUserList":{"shape":"FileShareUserList"},
         | 
| 3054 | 
            -
                    "InvalidUserList":{"shape":"FileShareUserList"},
         | 
| 3055 | 
            -
                    "AuditDestinationARN":{"shape":"AuditDestinationARN"},
         | 
| 3056 | 
            -
                    "Authentication":{"shape":"Authentication"},
         | 
| 3057 | 
            -
                    "CaseSensitivity":{"shape":"CaseSensitivity"},
         | 
| 3058 | 
            -
                    "Tags":{"shape":"Tags"},
         | 
| 3059 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 3060 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 3061 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 3062 | 
            -
                  }
         | 
| 3063 | 
            -
                },
         | 
| 3064 | 
            -
                "SMBFileShareInfoList":{
         | 
| 3065 | 
            -
                  "type":"list",
         | 
| 3066 | 
            -
                  "member":{"shape":"SMBFileShareInfo"}
         | 
| 3067 | 
            -
                },
         | 
| 3068 | 
            -
                "SMBGuestPassword":{
         | 
| 3069 | 
            -
                  "type":"string",
         | 
| 3070 | 
            -
                  "max":512,
         | 
| 3071 | 
            -
                  "min":6,
         | 
| 3072 | 
            -
                  "pattern":"^[ -~]+$",
         | 
| 3073 | 
            -
                  "sensitive":true
         | 
| 3074 | 
            -
                },
         | 
| 3075 | 
            -
                "SMBSecurityStrategy":{
         | 
| 3076 | 
            -
                  "type":"string",
         | 
| 3077 | 
            -
                  "enum":[
         | 
| 3078 | 
            -
                    "ClientSpecified",
         | 
| 3079 | 
            -
                    "MandatorySigning",
         | 
| 3080 | 
            -
                    "MandatoryEncryption"
         | 
| 3081 | 
            -
                  ]
         | 
| 3082 | 
            -
                },
         | 
| 3083 | 
            -
                "ServiceUnavailableError":{
         | 
| 3084 | 
            -
                  "type":"structure",
         | 
| 3085 | 
            -
                  "members":{
         | 
| 3086 | 
            -
                    "message":{"shape":"string"},
         | 
| 3087 | 
            -
                    "error":{"shape":"StorageGatewayError"}
         | 
| 3088 | 
            -
                  },
         | 
| 3089 | 
            -
                  "exception":true
         | 
| 3090 | 
            -
                },
         | 
| 3091 | 
            -
                "SetLocalConsolePasswordInput":{
         | 
| 3092 | 
            -
                  "type":"structure",
         | 
| 3093 | 
            -
                  "required":[
         | 
| 3094 | 
            -
                    "GatewayARN",
         | 
| 3095 | 
            -
                    "LocalConsolePassword"
         | 
| 3096 | 
            -
                  ],
         | 
| 3097 | 
            -
                  "members":{
         | 
| 3098 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3099 | 
            -
                    "LocalConsolePassword":{"shape":"LocalConsolePassword"}
         | 
| 3100 | 
            -
                  }
         | 
| 3101 | 
            -
                },
         | 
| 3102 | 
            -
                "SetLocalConsolePasswordOutput":{
         | 
| 3103 | 
            -
                  "type":"structure",
         | 
| 3104 | 
            -
                  "members":{
         | 
| 3105 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3106 | 
            -
                  }
         | 
| 3107 | 
            -
                },
         | 
| 3108 | 
            -
                "SetSMBGuestPasswordInput":{
         | 
| 3109 | 
            -
                  "type":"structure",
         | 
| 3110 | 
            -
                  "required":[
         | 
| 3111 | 
            -
                    "GatewayARN",
         | 
| 3112 | 
            -
                    "Password"
         | 
| 3113 | 
            -
                  ],
         | 
| 3114 | 
            -
                  "members":{
         | 
| 3115 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3116 | 
            -
                    "Password":{"shape":"SMBGuestPassword"}
         | 
| 3117 | 
            -
                  }
         | 
| 3118 | 
            -
                },
         | 
| 3119 | 
            -
                "SetSMBGuestPasswordOutput":{
         | 
| 3120 | 
            -
                  "type":"structure",
         | 
| 3121 | 
            -
                  "members":{
         | 
| 3122 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3123 | 
            -
                  }
         | 
| 3124 | 
            -
                },
         | 
| 3125 | 
            -
                "ShutdownGatewayInput":{
         | 
| 3126 | 
            -
                  "type":"structure",
         | 
| 3127 | 
            -
                  "required":["GatewayARN"],
         | 
| 3128 | 
            -
                  "members":{
         | 
| 3129 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3130 | 
            -
                  }
         | 
| 3131 | 
            -
                },
         | 
| 3132 | 
            -
                "ShutdownGatewayOutput":{
         | 
| 3133 | 
            -
                  "type":"structure",
         | 
| 3134 | 
            -
                  "members":{
         | 
| 3135 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3136 | 
            -
                  }
         | 
| 3137 | 
            -
                },
         | 
| 3138 | 
            -
                "SnapshotDescription":{
         | 
| 3139 | 
            -
                  "type":"string",
         | 
| 3140 | 
            -
                  "max":255,
         | 
| 3141 | 
            -
                  "min":1
         | 
| 3142 | 
            -
                },
         | 
| 3143 | 
            -
                "SnapshotId":{
         | 
| 3144 | 
            -
                  "type":"string",
         | 
| 3145 | 
            -
                  "pattern":"\\Asnap-([0-9A-Fa-f]{8}|[0-9A-Fa-f]{17})\\z"
         | 
| 3146 | 
            -
                },
         | 
| 3147 | 
            -
                "SoftwareUpdatesEndDate":{
         | 
| 3148 | 
            -
                  "type":"string",
         | 
| 3149 | 
            -
                  "max":25,
         | 
| 3150 | 
            -
                  "min":1
         | 
| 3151 | 
            -
                },
         | 
| 3152 | 
            -
                "Squash":{
         | 
| 3153 | 
            -
                  "type":"string",
         | 
| 3154 | 
            -
                  "max":15,
         | 
| 3155 | 
            -
                  "min":5
         | 
| 3156 | 
            -
                },
         | 
| 3157 | 
            -
                "StartAvailabilityMonitorTestInput":{
         | 
| 3158 | 
            -
                  "type":"structure",
         | 
| 3159 | 
            -
                  "required":["GatewayARN"],
         | 
| 3160 | 
            -
                  "members":{
         | 
| 3161 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3162 | 
            -
                  }
         | 
| 3163 | 
            -
                },
         | 
| 3164 | 
            -
                "StartAvailabilityMonitorTestOutput":{
         | 
| 3165 | 
            -
                  "type":"structure",
         | 
| 3166 | 
            -
                  "members":{
         | 
| 3167 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3168 | 
            -
                  }
         | 
| 3169 | 
            -
                },
         | 
| 3170 | 
            -
                "StartGatewayInput":{
         | 
| 3171 | 
            -
                  "type":"structure",
         | 
| 3172 | 
            -
                  "required":["GatewayARN"],
         | 
| 3173 | 
            -
                  "members":{
         | 
| 3174 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3175 | 
            -
                  }
         | 
| 3176 | 
            -
                },
         | 
| 3177 | 
            -
                "StartGatewayOutput":{
         | 
| 3178 | 
            -
                  "type":"structure",
         | 
| 3179 | 
            -
                  "members":{
         | 
| 3180 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3181 | 
            -
                  }
         | 
| 3182 | 
            -
                },
         | 
| 3183 | 
            -
                "StorageClass":{
         | 
| 3184 | 
            -
                  "type":"string",
         | 
| 3185 | 
            -
                  "max":50,
         | 
| 3186 | 
            -
                  "min":5
         | 
| 3187 | 
            -
                },
         | 
| 3188 | 
            -
                "StorageGatewayError":{
         | 
| 3189 | 
            -
                  "type":"structure",
         | 
| 3190 | 
            -
                  "members":{
         | 
| 3191 | 
            -
                    "errorCode":{"shape":"ErrorCode"},
         | 
| 3192 | 
            -
                    "errorDetails":{"shape":"errorDetails"}
         | 
| 3193 | 
            -
                  }
         | 
| 3194 | 
            -
                },
         | 
| 3195 | 
            -
                "StorediSCSIVolume":{
         | 
| 3196 | 
            -
                  "type":"structure",
         | 
| 3197 | 
            -
                  "members":{
         | 
| 3198 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 3199 | 
            -
                    "VolumeId":{"shape":"VolumeId"},
         | 
| 3200 | 
            -
                    "VolumeType":{"shape":"VolumeType"},
         | 
| 3201 | 
            -
                    "VolumeStatus":{"shape":"VolumeStatus"},
         | 
| 3202 | 
            -
                    "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"},
         | 
| 3203 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 3204 | 
            -
                    "VolumeProgress":{"shape":"DoubleObject"},
         | 
| 3205 | 
            -
                    "VolumeDiskId":{"shape":"DiskId"},
         | 
| 3206 | 
            -
                    "SourceSnapshotId":{"shape":"SnapshotId"},
         | 
| 3207 | 
            -
                    "PreservedExistingData":{"shape":"boolean"},
         | 
| 3208 | 
            -
                    "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
         | 
| 3209 | 
            -
                    "CreatedDate":{"shape":"CreatedDate"},
         | 
| 3210 | 
            -
                    "VolumeUsedInBytes":{"shape":"VolumeUsedInBytes"},
         | 
| 3211 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3212 | 
            -
                    "TargetName":{"shape":"TargetName"}
         | 
| 3213 | 
            -
                  }
         | 
| 3214 | 
            -
                },
         | 
| 3215 | 
            -
                "StorediSCSIVolumes":{
         | 
| 3216 | 
            -
                  "type":"list",
         | 
| 3217 | 
            -
                  "member":{"shape":"StorediSCSIVolume"}
         | 
| 3218 | 
            -
                },
         | 
| 3219 | 
            -
                "Tag":{
         | 
| 3220 | 
            -
                  "type":"structure",
         | 
| 3221 | 
            -
                  "required":[
         | 
| 3222 | 
            -
                    "Key",
         | 
| 3223 | 
            -
                    "Value"
         | 
| 3224 | 
            -
                  ],
         | 
| 3225 | 
            -
                  "members":{
         | 
| 3226 | 
            -
                    "Key":{"shape":"TagKey"},
         | 
| 3227 | 
            -
                    "Value":{"shape":"TagValue"}
         | 
| 3228 | 
            -
                  }
         | 
| 3229 | 
            -
                },
         | 
| 3230 | 
            -
                "TagKey":{
         | 
| 3231 | 
            -
                  "type":"string",
         | 
| 3232 | 
            -
                  "max":128,
         | 
| 3233 | 
            -
                  "min":1,
         | 
| 3234 | 
            -
                  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
         | 
| 3235 | 
            -
                },
         | 
| 3236 | 
            -
                "TagKeys":{
         | 
| 3237 | 
            -
                  "type":"list",
         | 
| 3238 | 
            -
                  "member":{"shape":"TagKey"}
         | 
| 3239 | 
            -
                },
         | 
| 3240 | 
            -
                "TagValue":{
         | 
| 3241 | 
            -
                  "type":"string",
         | 
| 3242 | 
            -
                  "max":256
         | 
| 3243 | 
            -
                },
         | 
| 3244 | 
            -
                "Tags":{
         | 
| 3245 | 
            -
                  "type":"list",
         | 
| 3246 | 
            -
                  "member":{"shape":"Tag"}
         | 
| 3247 | 
            -
                },
         | 
| 3248 | 
            -
                "Tape":{
         | 
| 3249 | 
            -
                  "type":"structure",
         | 
| 3250 | 
            -
                  "members":{
         | 
| 3251 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3252 | 
            -
                    "TapeBarcode":{"shape":"TapeBarcode"},
         | 
| 3253 | 
            -
                    "TapeCreatedDate":{"shape":"Time"},
         | 
| 3254 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 3255 | 
            -
                    "TapeStatus":{"shape":"TapeStatus"},
         | 
| 3256 | 
            -
                    "VTLDevice":{"shape":"VTLDeviceARN"},
         | 
| 3257 | 
            -
                    "Progress":{"shape":"DoubleObject"},
         | 
| 3258 | 
            -
                    "TapeUsedInBytes":{"shape":"TapeUsage"},
         | 
| 3259 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3260 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 3261 | 
            -
                    "Worm":{"shape":"boolean"},
         | 
| 3262 | 
            -
                    "RetentionStartDate":{"shape":"Time"},
         | 
| 3263 | 
            -
                    "PoolEntryDate":{"shape":"Time"}
         | 
| 3264 | 
            -
                  }
         | 
| 3265 | 
            -
                },
         | 
| 3266 | 
            -
                "TapeARN":{
         | 
| 3267 | 
            -
                  "type":"string",
         | 
| 3268 | 
            -
                  "max":500,
         | 
| 3269 | 
            -
                  "min":50,
         | 
| 3270 | 
            -
                  "pattern":"^arn:(aws|aws-cn|aws-us-gov):storagegateway:[a-z\\-0-9]+:[0-9]+:tape\\/[0-9A-Z]{7,16}$"
         | 
| 3271 | 
            -
                },
         | 
| 3272 | 
            -
                "TapeARNs":{
         | 
| 3273 | 
            -
                  "type":"list",
         | 
| 3274 | 
            -
                  "member":{"shape":"TapeARN"}
         | 
| 3275 | 
            -
                },
         | 
| 3276 | 
            -
                "TapeArchive":{
         | 
| 3277 | 
            -
                  "type":"structure",
         | 
| 3278 | 
            -
                  "members":{
         | 
| 3279 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3280 | 
            -
                    "TapeBarcode":{"shape":"TapeBarcode"},
         | 
| 3281 | 
            -
                    "TapeCreatedDate":{"shape":"Time"},
         | 
| 3282 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 3283 | 
            -
                    "CompletionTime":{"shape":"Time"},
         | 
| 3284 | 
            -
                    "RetrievedTo":{"shape":"GatewayARN"},
         | 
| 3285 | 
            -
                    "TapeStatus":{"shape":"TapeArchiveStatus"},
         | 
| 3286 | 
            -
                    "TapeUsedInBytes":{"shape":"TapeUsage"},
         | 
| 3287 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3288 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 3289 | 
            -
                    "Worm":{"shape":"boolean"},
         | 
| 3290 | 
            -
                    "RetentionStartDate":{"shape":"Time"},
         | 
| 3291 | 
            -
                    "PoolEntryDate":{"shape":"Time"}
         | 
| 3292 | 
            -
                  }
         | 
| 3293 | 
            -
                },
         | 
| 3294 | 
            -
                "TapeArchiveStatus":{"type":"string"},
         | 
| 3295 | 
            -
                "TapeArchives":{
         | 
| 3296 | 
            -
                  "type":"list",
         | 
| 3297 | 
            -
                  "member":{"shape":"TapeArchive"}
         | 
| 3298 | 
            -
                },
         | 
| 3299 | 
            -
                "TapeBarcode":{
         | 
| 3300 | 
            -
                  "type":"string",
         | 
| 3301 | 
            -
                  "max":16,
         | 
| 3302 | 
            -
                  "min":7,
         | 
| 3303 | 
            -
                  "pattern":"^[A-Z0-9]*$"
         | 
| 3304 | 
            -
                },
         | 
| 3305 | 
            -
                "TapeBarcodePrefix":{
         | 
| 3306 | 
            -
                  "type":"string",
         | 
| 3307 | 
            -
                  "max":4,
         | 
| 3308 | 
            -
                  "min":1,
         | 
| 3309 | 
            -
                  "pattern":"^[A-Z]*$"
         | 
| 3310 | 
            -
                },
         | 
| 3311 | 
            -
                "TapeDriveType":{
         | 
| 3312 | 
            -
                  "type":"string",
         | 
| 3313 | 
            -
                  "max":50,
         | 
| 3314 | 
            -
                  "min":2
         | 
| 3315 | 
            -
                },
         | 
| 3316 | 
            -
                "TapeInfo":{
         | 
| 3317 | 
            -
                  "type":"structure",
         | 
| 3318 | 
            -
                  "members":{
         | 
| 3319 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3320 | 
            -
                    "TapeBarcode":{"shape":"TapeBarcode"},
         | 
| 3321 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 3322 | 
            -
                    "TapeStatus":{"shape":"TapeStatus"},
         | 
| 3323 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3324 | 
            -
                    "PoolId":{"shape":"PoolId"},
         | 
| 3325 | 
            -
                    "RetentionStartDate":{"shape":"Time"},
         | 
| 3326 | 
            -
                    "PoolEntryDate":{"shape":"Time"}
         | 
| 3327 | 
            -
                  }
         | 
| 3328 | 
            -
                },
         | 
| 3329 | 
            -
                "TapeInfos":{
         | 
| 3330 | 
            -
                  "type":"list",
         | 
| 3331 | 
            -
                  "member":{"shape":"TapeInfo"}
         | 
| 3332 | 
            -
                },
         | 
| 3333 | 
            -
                "TapeRecoveryPointInfo":{
         | 
| 3334 | 
            -
                  "type":"structure",
         | 
| 3335 | 
            -
                  "members":{
         | 
| 3336 | 
            -
                    "TapeARN":{"shape":"TapeARN"},
         | 
| 3337 | 
            -
                    "TapeRecoveryPointTime":{"shape":"Time"},
         | 
| 3338 | 
            -
                    "TapeSizeInBytes":{"shape":"TapeSize"},
         | 
| 3339 | 
            -
                    "TapeStatus":{"shape":"TapeRecoveryPointStatus"}
         | 
| 3340 | 
            -
                  }
         | 
| 3341 | 
            -
                },
         | 
| 3342 | 
            -
                "TapeRecoveryPointInfos":{
         | 
| 3343 | 
            -
                  "type":"list",
         | 
| 3344 | 
            -
                  "member":{"shape":"TapeRecoveryPointInfo"}
         | 
| 3345 | 
            -
                },
         | 
| 3346 | 
            -
                "TapeRecoveryPointStatus":{"type":"string"},
         | 
| 3347 | 
            -
                "TapeSize":{"type":"long"},
         | 
| 3348 | 
            -
                "TapeStatus":{"type":"string"},
         | 
| 3349 | 
            -
                "TapeStorageClass":{
         | 
| 3350 | 
            -
                  "type":"string",
         | 
| 3351 | 
            -
                  "enum":[
         | 
| 3352 | 
            -
                    "DEEP_ARCHIVE",
         | 
| 3353 | 
            -
                    "GLACIER"
         | 
| 3354 | 
            -
                  ]
         | 
| 3355 | 
            -
                },
         | 
| 3356 | 
            -
                "TapeUsage":{"type":"long"},
         | 
| 3357 | 
            -
                "Tapes":{
         | 
| 3358 | 
            -
                  "type":"list",
         | 
| 3359 | 
            -
                  "member":{"shape":"Tape"}
         | 
| 3360 | 
            -
                },
         | 
| 3361 | 
            -
                "TargetARN":{
         | 
| 3362 | 
            -
                  "type":"string",
         | 
| 3363 | 
            -
                  "max":800,
         | 
| 3364 | 
            -
                  "min":50
         | 
| 3365 | 
            -
                },
         | 
| 3366 | 
            -
                "TargetName":{
         | 
| 3367 | 
            -
                  "type":"string",
         | 
| 3368 | 
            -
                  "max":200,
         | 
| 3369 | 
            -
                  "min":1,
         | 
| 3370 | 
            -
                  "pattern":"^[-\\.;a-z0-9]+$"
         | 
| 3371 | 
            -
                },
         | 
| 3372 | 
            -
                "Time":{"type":"timestamp"},
         | 
| 3373 | 
            -
                "TimeoutInSeconds":{
         | 
| 3374 | 
            -
                  "type":"integer",
         | 
| 3375 | 
            -
                  "max":3600,
         | 
| 3376 | 
            -
                  "min":0
         | 
| 3377 | 
            -
                },
         | 
| 3378 | 
            -
                "UpdateAutomaticTapeCreationPolicyInput":{
         | 
| 3379 | 
            -
                  "type":"structure",
         | 
| 3380 | 
            -
                  "required":[
         | 
| 3381 | 
            -
                    "AutomaticTapeCreationRules",
         | 
| 3382 | 
            -
                    "GatewayARN"
         | 
| 3383 | 
            -
                  ],
         | 
| 3384 | 
            -
                  "members":{
         | 
| 3385 | 
            -
                    "AutomaticTapeCreationRules":{"shape":"AutomaticTapeCreationRules"},
         | 
| 3386 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3387 | 
            -
                  }
         | 
| 3388 | 
            -
                },
         | 
| 3389 | 
            -
                "UpdateAutomaticTapeCreationPolicyOutput":{
         | 
| 3390 | 
            -
                  "type":"structure",
         | 
| 3391 | 
            -
                  "members":{
         | 
| 3392 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3393 | 
            -
                  }
         | 
| 3394 | 
            -
                },
         | 
| 3395 | 
            -
                "UpdateBandwidthRateLimitInput":{
         | 
| 3396 | 
            -
                  "type":"structure",
         | 
| 3397 | 
            -
                  "required":["GatewayARN"],
         | 
| 3398 | 
            -
                  "members":{
         | 
| 3399 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3400 | 
            -
                    "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
         | 
| 3401 | 
            -
                    "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
         | 
| 3402 | 
            -
                  }
         | 
| 3403 | 
            -
                },
         | 
| 3404 | 
            -
                "UpdateBandwidthRateLimitOutput":{
         | 
| 3405 | 
            -
                  "type":"structure",
         | 
| 3406 | 
            -
                  "members":{
         | 
| 3407 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3408 | 
            -
                  }
         | 
| 3409 | 
            -
                },
         | 
| 3410 | 
            -
                "UpdateBandwidthRateLimitScheduleInput":{
         | 
| 3411 | 
            -
                  "type":"structure",
         | 
| 3412 | 
            -
                  "required":[
         | 
| 3413 | 
            -
                    "GatewayARN",
         | 
| 3414 | 
            -
                    "BandwidthRateLimitIntervals"
         | 
| 3415 | 
            -
                  ],
         | 
| 3416 | 
            -
                  "members":{
         | 
| 3417 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3418 | 
            -
                    "BandwidthRateLimitIntervals":{"shape":"BandwidthRateLimitIntervals"}
         | 
| 3419 | 
            -
                  }
         | 
| 3420 | 
            -
                },
         | 
| 3421 | 
            -
                "UpdateBandwidthRateLimitScheduleOutput":{
         | 
| 3422 | 
            -
                  "type":"structure",
         | 
| 3423 | 
            -
                  "members":{
         | 
| 3424 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3425 | 
            -
                  }
         | 
| 3426 | 
            -
                },
         | 
| 3427 | 
            -
                "UpdateChapCredentialsInput":{
         | 
| 3428 | 
            -
                  "type":"structure",
         | 
| 3429 | 
            -
                  "required":[
         | 
| 3430 | 
            -
                    "TargetARN",
         | 
| 3431 | 
            -
                    "SecretToAuthenticateInitiator",
         | 
| 3432 | 
            -
                    "InitiatorName"
         | 
| 3433 | 
            -
                  ],
         | 
| 3434 | 
            -
                  "members":{
         | 
| 3435 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 3436 | 
            -
                    "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
         | 
| 3437 | 
            -
                    "InitiatorName":{"shape":"IqnName"},
         | 
| 3438 | 
            -
                    "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
         | 
| 3439 | 
            -
                  }
         | 
| 3440 | 
            -
                },
         | 
| 3441 | 
            -
                "UpdateChapCredentialsOutput":{
         | 
| 3442 | 
            -
                  "type":"structure",
         | 
| 3443 | 
            -
                  "members":{
         | 
| 3444 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 3445 | 
            -
                    "InitiatorName":{"shape":"IqnName"}
         | 
| 3446 | 
            -
                  }
         | 
| 3447 | 
            -
                },
         | 
| 3448 | 
            -
                "UpdateGatewayInformationInput":{
         | 
| 3449 | 
            -
                  "type":"structure",
         | 
| 3450 | 
            -
                  "required":["GatewayARN"],
         | 
| 3451 | 
            -
                  "members":{
         | 
| 3452 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3453 | 
            -
                    "GatewayName":{"shape":"GatewayName"},
         | 
| 3454 | 
            -
                    "GatewayTimezone":{"shape":"GatewayTimezone"},
         | 
| 3455 | 
            -
                    "CloudWatchLogGroupARN":{"shape":"CloudWatchLogGroupARN"}
         | 
| 3456 | 
            -
                  }
         | 
| 3457 | 
            -
                },
         | 
| 3458 | 
            -
                "UpdateGatewayInformationOutput":{
         | 
| 3459 | 
            -
                  "type":"structure",
         | 
| 3460 | 
            -
                  "members":{
         | 
| 3461 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3462 | 
            -
                    "GatewayName":{"shape":"string"}
         | 
| 3463 | 
            -
                  }
         | 
| 3464 | 
            -
                },
         | 
| 3465 | 
            -
                "UpdateGatewaySoftwareNowInput":{
         | 
| 3466 | 
            -
                  "type":"structure",
         | 
| 3467 | 
            -
                  "required":["GatewayARN"],
         | 
| 3468 | 
            -
                  "members":{
         | 
| 3469 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3470 | 
            -
                  }
         | 
| 3471 | 
            -
                },
         | 
| 3472 | 
            -
                "UpdateGatewaySoftwareNowOutput":{
         | 
| 3473 | 
            -
                  "type":"structure",
         | 
| 3474 | 
            -
                  "members":{
         | 
| 3475 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3476 | 
            -
                  }
         | 
| 3477 | 
            -
                },
         | 
| 3478 | 
            -
                "UpdateMaintenanceStartTimeInput":{
         | 
| 3479 | 
            -
                  "type":"structure",
         | 
| 3480 | 
            -
                  "required":[
         | 
| 3481 | 
            -
                    "GatewayARN",
         | 
| 3482 | 
            -
                    "HourOfDay",
         | 
| 3483 | 
            -
                    "MinuteOfHour"
         | 
| 3484 | 
            -
                  ],
         | 
| 3485 | 
            -
                  "members":{
         | 
| 3486 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3487 | 
            -
                    "HourOfDay":{"shape":"HourOfDay"},
         | 
| 3488 | 
            -
                    "MinuteOfHour":{"shape":"MinuteOfHour"},
         | 
| 3489 | 
            -
                    "DayOfWeek":{"shape":"DayOfWeek"},
         | 
| 3490 | 
            -
                    "DayOfMonth":{"shape":"DayOfMonth"}
         | 
| 3491 | 
            -
                  }
         | 
| 3492 | 
            -
                },
         | 
| 3493 | 
            -
                "UpdateMaintenanceStartTimeOutput":{
         | 
| 3494 | 
            -
                  "type":"structure",
         | 
| 3495 | 
            -
                  "members":{
         | 
| 3496 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3497 | 
            -
                  }
         | 
| 3498 | 
            -
                },
         | 
| 3499 | 
            -
                "UpdateNFSFileShareInput":{
         | 
| 3500 | 
            -
                  "type":"structure",
         | 
| 3501 | 
            -
                  "required":["FileShareARN"],
         | 
| 3502 | 
            -
                  "members":{
         | 
| 3503 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 3504 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 3505 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3506 | 
            -
                    "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
         | 
| 3507 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 3508 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 3509 | 
            -
                    "ClientList":{"shape":"FileShareClientList"},
         | 
| 3510 | 
            -
                    "Squash":{"shape":"Squash"},
         | 
| 3511 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 3512 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 3513 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 3514 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 3515 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 3516 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 3517 | 
            -
                  }
         | 
| 3518 | 
            -
                },
         | 
| 3519 | 
            -
                "UpdateNFSFileShareOutput":{
         | 
| 3520 | 
            -
                  "type":"structure",
         | 
| 3521 | 
            -
                  "members":{
         | 
| 3522 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 3523 | 
            -
                  }
         | 
| 3524 | 
            -
                },
         | 
| 3525 | 
            -
                "UpdateSMBFileShareInput":{
         | 
| 3526 | 
            -
                  "type":"structure",
         | 
| 3527 | 
            -
                  "required":["FileShareARN"],
         | 
| 3528 | 
            -
                  "members":{
         | 
| 3529 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"},
         | 
| 3530 | 
            -
                    "KMSEncrypted":{"shape":"Boolean"},
         | 
| 3531 | 
            -
                    "KMSKey":{"shape":"KMSKey"},
         | 
| 3532 | 
            -
                    "DefaultStorageClass":{"shape":"StorageClass"},
         | 
| 3533 | 
            -
                    "ObjectACL":{"shape":"ObjectACL"},
         | 
| 3534 | 
            -
                    "ReadOnly":{"shape":"Boolean"},
         | 
| 3535 | 
            -
                    "GuessMIMETypeEnabled":{"shape":"Boolean"},
         | 
| 3536 | 
            -
                    "RequesterPays":{"shape":"Boolean"},
         | 
| 3537 | 
            -
                    "SMBACLEnabled":{"shape":"Boolean"},
         | 
| 3538 | 
            -
                    "AccessBasedEnumeration":{"shape":"Boolean"},
         | 
| 3539 | 
            -
                    "AdminUserList":{"shape":"FileShareUserList"},
         | 
| 3540 | 
            -
                    "ValidUserList":{"shape":"FileShareUserList"},
         | 
| 3541 | 
            -
                    "InvalidUserList":{"shape":"FileShareUserList"},
         | 
| 3542 | 
            -
                    "AuditDestinationARN":{"shape":"AuditDestinationARN"},
         | 
| 3543 | 
            -
                    "CaseSensitivity":{"shape":"CaseSensitivity"},
         | 
| 3544 | 
            -
                    "FileShareName":{"shape":"FileShareName"},
         | 
| 3545 | 
            -
                    "CacheAttributes":{"shape":"CacheAttributes"},
         | 
| 3546 | 
            -
                    "NotificationPolicy":{"shape":"NotificationPolicy"}
         | 
| 3547 | 
            -
                  }
         | 
| 3548 | 
            -
                },
         | 
| 3549 | 
            -
                "UpdateSMBFileShareOutput":{
         | 
| 3550 | 
            -
                  "type":"structure",
         | 
| 3551 | 
            -
                  "members":{
         | 
| 3552 | 
            -
                    "FileShareARN":{"shape":"FileShareARN"}
         | 
| 3553 | 
            -
                  }
         | 
| 3554 | 
            -
                },
         | 
| 3555 | 
            -
                "UpdateSMBFileShareVisibilityInput":{
         | 
| 3556 | 
            -
                  "type":"structure",
         | 
| 3557 | 
            -
                  "required":[
         | 
| 3558 | 
            -
                    "GatewayARN",
         | 
| 3559 | 
            -
                    "FileSharesVisible"
         | 
| 3560 | 
            -
                  ],
         | 
| 3561 | 
            -
                  "members":{
         | 
| 3562 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3563 | 
            -
                    "FileSharesVisible":{"shape":"Boolean"}
         | 
| 3564 | 
            -
                  }
         | 
| 3565 | 
            -
                },
         | 
| 3566 | 
            -
                "UpdateSMBFileShareVisibilityOutput":{
         | 
| 3567 | 
            -
                  "type":"structure",
         | 
| 3568 | 
            -
                  "members":{
         | 
| 3569 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3570 | 
            -
                  }
         | 
| 3571 | 
            -
                },
         | 
| 3572 | 
            -
                "UpdateSMBSecurityStrategyInput":{
         | 
| 3573 | 
            -
                  "type":"structure",
         | 
| 3574 | 
            -
                  "required":[
         | 
| 3575 | 
            -
                    "GatewayARN",
         | 
| 3576 | 
            -
                    "SMBSecurityStrategy"
         | 
| 3577 | 
            -
                  ],
         | 
| 3578 | 
            -
                  "members":{
         | 
| 3579 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3580 | 
            -
                    "SMBSecurityStrategy":{"shape":"SMBSecurityStrategy"}
         | 
| 3581 | 
            -
                  }
         | 
| 3582 | 
            -
                },
         | 
| 3583 | 
            -
                "UpdateSMBSecurityStrategyOutput":{
         | 
| 3584 | 
            -
                  "type":"structure",
         | 
| 3585 | 
            -
                  "members":{
         | 
| 3586 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"}
         | 
| 3587 | 
            -
                  }
         | 
| 3588 | 
            -
                },
         | 
| 3589 | 
            -
                "UpdateSnapshotScheduleInput":{
         | 
| 3590 | 
            -
                  "type":"structure",
         | 
| 3591 | 
            -
                  "required":[
         | 
| 3592 | 
            -
                    "VolumeARN",
         | 
| 3593 | 
            -
                    "StartAt",
         | 
| 3594 | 
            -
                    "RecurrenceInHours"
         | 
| 3595 | 
            -
                  ],
         | 
| 3596 | 
            -
                  "members":{
         | 
| 3597 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 3598 | 
            -
                    "StartAt":{"shape":"HourOfDay"},
         | 
| 3599 | 
            -
                    "RecurrenceInHours":{"shape":"RecurrenceInHours"},
         | 
| 3600 | 
            -
                    "Description":{"shape":"Description"},
         | 
| 3601 | 
            -
                    "Tags":{"shape":"Tags"}
         | 
| 3602 | 
            -
                  }
         | 
| 3603 | 
            -
                },
         | 
| 3604 | 
            -
                "UpdateSnapshotScheduleOutput":{
         | 
| 3605 | 
            -
                  "type":"structure",
         | 
| 3606 | 
            -
                  "members":{
         | 
| 3607 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"}
         | 
| 3608 | 
            -
                  }
         | 
| 3609 | 
            -
                },
         | 
| 3610 | 
            -
                "UpdateVTLDeviceTypeInput":{
         | 
| 3611 | 
            -
                  "type":"structure",
         | 
| 3612 | 
            -
                  "required":[
         | 
| 3613 | 
            -
                    "VTLDeviceARN",
         | 
| 3614 | 
            -
                    "DeviceType"
         | 
| 3615 | 
            -
                  ],
         | 
| 3616 | 
            -
                  "members":{
         | 
| 3617 | 
            -
                    "VTLDeviceARN":{"shape":"VTLDeviceARN"},
         | 
| 3618 | 
            -
                    "DeviceType":{"shape":"DeviceType"}
         | 
| 3619 | 
            -
                  }
         | 
| 3620 | 
            -
                },
         | 
| 3621 | 
            -
                "UpdateVTLDeviceTypeOutput":{
         | 
| 3622 | 
            -
                  "type":"structure",
         | 
| 3623 | 
            -
                  "members":{
         | 
| 3624 | 
            -
                    "VTLDeviceARN":{"shape":"VTLDeviceARN"}
         | 
| 3625 | 
            -
                  }
         | 
| 3626 | 
            -
                },
         | 
| 3627 | 
            -
                "VTLDevice":{
         | 
| 3628 | 
            -
                  "type":"structure",
         | 
| 3629 | 
            -
                  "members":{
         | 
| 3630 | 
            -
                    "VTLDeviceARN":{"shape":"VTLDeviceARN"},
         | 
| 3631 | 
            -
                    "VTLDeviceType":{"shape":"VTLDeviceType"},
         | 
| 3632 | 
            -
                    "VTLDeviceVendor":{"shape":"VTLDeviceVendor"},
         | 
| 3633 | 
            -
                    "VTLDeviceProductIdentifier":{"shape":"VTLDeviceProductIdentifier"},
         | 
| 3634 | 
            -
                    "DeviceiSCSIAttributes":{"shape":"DeviceiSCSIAttributes"}
         | 
| 3635 | 
            -
                  }
         | 
| 3636 | 
            -
                },
         | 
| 3637 | 
            -
                "VTLDeviceARN":{
         | 
| 3638 | 
            -
                  "type":"string",
         | 
| 3639 | 
            -
                  "max":500,
         | 
| 3640 | 
            -
                  "min":50
         | 
| 3641 | 
            -
                },
         | 
| 3642 | 
            -
                "VTLDeviceARNs":{
         | 
| 3643 | 
            -
                  "type":"list",
         | 
| 3644 | 
            -
                  "member":{"shape":"VTLDeviceARN"}
         | 
| 3645 | 
            -
                },
         | 
| 3646 | 
            -
                "VTLDeviceProductIdentifier":{"type":"string"},
         | 
| 3647 | 
            -
                "VTLDeviceType":{"type":"string"},
         | 
| 3648 | 
            -
                "VTLDeviceVendor":{"type":"string"},
         | 
| 3649 | 
            -
                "VTLDevices":{
         | 
| 3650 | 
            -
                  "type":"list",
         | 
| 3651 | 
            -
                  "member":{"shape":"VTLDevice"}
         | 
| 3652 | 
            -
                },
         | 
| 3653 | 
            -
                "VolumeARN":{
         | 
| 3654 | 
            -
                  "type":"string",
         | 
| 3655 | 
            -
                  "max":500,
         | 
| 3656 | 
            -
                  "min":50
         | 
| 3657 | 
            -
                },
         | 
| 3658 | 
            -
                "VolumeARNs":{
         | 
| 3659 | 
            -
                  "type":"list",
         | 
| 3660 | 
            -
                  "member":{"shape":"VolumeARN"}
         | 
| 3661 | 
            -
                },
         | 
| 3662 | 
            -
                "VolumeAttachmentStatus":{
         | 
| 3663 | 
            -
                  "type":"string",
         | 
| 3664 | 
            -
                  "max":50,
         | 
| 3665 | 
            -
                  "min":3
         | 
| 3666 | 
            -
                },
         | 
| 3667 | 
            -
                "VolumeId":{
         | 
| 3668 | 
            -
                  "type":"string",
         | 
| 3669 | 
            -
                  "max":30,
         | 
| 3670 | 
            -
                  "min":12
         | 
| 3671 | 
            -
                },
         | 
| 3672 | 
            -
                "VolumeInfo":{
         | 
| 3673 | 
            -
                  "type":"structure",
         | 
| 3674 | 
            -
                  "members":{
         | 
| 3675 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 3676 | 
            -
                    "VolumeId":{"shape":"VolumeId"},
         | 
| 3677 | 
            -
                    "GatewayARN":{"shape":"GatewayARN"},
         | 
| 3678 | 
            -
                    "GatewayId":{"shape":"GatewayId"},
         | 
| 3679 | 
            -
                    "VolumeType":{"shape":"VolumeType"},
         | 
| 3680 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 3681 | 
            -
                    "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"}
         | 
| 3682 | 
            -
                  }
         | 
| 3683 | 
            -
                },
         | 
| 3684 | 
            -
                "VolumeInfos":{
         | 
| 3685 | 
            -
                  "type":"list",
         | 
| 3686 | 
            -
                  "member":{"shape":"VolumeInfo"}
         | 
| 3687 | 
            -
                },
         | 
| 3688 | 
            -
                "VolumeRecoveryPointInfo":{
         | 
| 3689 | 
            -
                  "type":"structure",
         | 
| 3690 | 
            -
                  "members":{
         | 
| 3691 | 
            -
                    "VolumeARN":{"shape":"VolumeARN"},
         | 
| 3692 | 
            -
                    "VolumeSizeInBytes":{"shape":"long"},
         | 
| 3693 | 
            -
                    "VolumeUsageInBytes":{"shape":"long"},
         | 
| 3694 | 
            -
                    "VolumeRecoveryPointTime":{"shape":"string"}
         | 
| 3695 | 
            -
                  }
         | 
| 3696 | 
            -
                },
         | 
| 3697 | 
            -
                "VolumeRecoveryPointInfos":{
         | 
| 3698 | 
            -
                  "type":"list",
         | 
| 3699 | 
            -
                  "member":{"shape":"VolumeRecoveryPointInfo"}
         | 
| 3700 | 
            -
                },
         | 
| 3701 | 
            -
                "VolumeStatus":{
         | 
| 3702 | 
            -
                  "type":"string",
         | 
| 3703 | 
            -
                  "max":50,
         | 
| 3704 | 
            -
                  "min":3
         | 
| 3705 | 
            -
                },
         | 
| 3706 | 
            -
                "VolumeType":{
         | 
| 3707 | 
            -
                  "type":"string",
         | 
| 3708 | 
            -
                  "max":100,
         | 
| 3709 | 
            -
                  "min":3
         | 
| 3710 | 
            -
                },
         | 
| 3711 | 
            -
                "VolumeUsedInBytes":{"type":"long"},
         | 
| 3712 | 
            -
                "VolumeiSCSIAttributes":{
         | 
| 3713 | 
            -
                  "type":"structure",
         | 
| 3714 | 
            -
                  "members":{
         | 
| 3715 | 
            -
                    "TargetARN":{"shape":"TargetARN"},
         | 
| 3716 | 
            -
                    "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
         | 
| 3717 | 
            -
                    "NetworkInterfacePort":{"shape":"integer"},
         | 
| 3718 | 
            -
                    "LunNumber":{"shape":"PositiveIntObject"},
         | 
| 3719 | 
            -
                    "ChapEnabled":{"shape":"boolean"}
         | 
| 3720 | 
            -
                  }
         | 
| 3721 | 
            -
                },
         | 
| 3722 | 
            -
                "boolean":{"type":"boolean"},
         | 
| 3723 | 
            -
                "double":{"type":"double"},
         | 
| 3724 | 
            -
                "errorDetails":{
         | 
| 3725 | 
            -
                  "type":"map",
         | 
| 3726 | 
            -
                  "key":{"shape":"string"},
         | 
| 3727 | 
            -
                  "value":{"shape":"string"}
         | 
| 3728 | 
            -
                },
         | 
| 3729 | 
            -
                "integer":{"type":"integer"},
         | 
| 3730 | 
            -
                "long":{"type":"long"},
         | 
| 3731 | 
            -
                "string":{"type":"string"}
         | 
| 3732 | 
            -
              }
         | 
| 3733 | 
            -
            }
         |