aws-sdk-core 2.11.429 → 3.88.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +89 -582
- data/lib/aws-sdk-core/arn.rb +77 -0
- data/lib/aws-sdk-core/arn_parser.rb +38 -0
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +0 -29
- data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
- data/lib/aws-sdk-core/errors.rb +146 -24
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +7 -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 +60 -26
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -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/invocation_id.rb +33 -0
- 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/api_gateway.rb +10 -0
- 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 +27 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.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/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +187 -15
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- 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 +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +2156 -0
- data/lib/aws-sdk-sts/client_api.rb +336 -0
- data/lib/aws-sdk-sts/customizations.rb +2 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
- data/lib/aws-sdk-sts/presigner.rb +67 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1504 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +246 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +6 -2
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +18 -5
- data/lib/seahorse/client/net_http/handler.rb +12 -1
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +67 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- 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 +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +101 -1165
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
- 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 -1128
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- 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 -872
- 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 -4129
- 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 -2374
- 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 -5384
- 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 -6379
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1391
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
- 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 -1141
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
- 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 -3424
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- 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 -2285
- 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 -989
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- 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 -2464
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- 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 -2345
- 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 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1633
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -14
- data/apis/chime/2018-05-01/api-2.json +0 -4653
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -59
- data/apis/cloud9/2017-09-23/api-2.json +0 -549
- 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 -3389
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
- 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 -257
- 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 -4032
- 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/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 -718
- 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/codebuild/2016-10-06/api-2.json +0 -1888
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -5383
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- 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 -351
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
- 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 -194
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
- 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 -1062
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
- 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 -2664
- 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 -924
- 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 -571
- 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 -4340
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -21
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -2139
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- 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 -277
- 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/dataexchange/2017-07-25/api-2.json +0 -2263
- 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 -1354
- 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 -447
- 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 -2074
- 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 -687
- 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 -2296
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- 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 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- 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 -3012
- 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 -3182
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
- 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 -277
- 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 -28951
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -462
- data/apis/ec2/2016-11-15/resources-1.json +0 -2688
- 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 -1615
- 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 -3130
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -46
- 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 -1432
- 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 -174
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
- data/apis/elasticache/2015-02-02/api-2.json +0 -3301
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- 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 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
- 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 -2346
- 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 -2241
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- 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 -1584
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- 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 -1462
- 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 -1445
- 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 -829
- 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 -1418
- 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 -154
- 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 -1541
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
- data/apis/fsx/2018-03-01/api-2.json +0 -1340
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -19
- data/apis/gamelift/2015-10-01/api-2.json +0 -3695
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- 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 -818
- 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 -6302
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5124
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3508
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
- data/apis/health/2016-08-04/api-2.json +0 -836
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -52
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5787
- 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/imagebuilder/2019-12-02/api-2.json +0 -2387
- 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 -264
- 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 -11061
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- 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 -2223
- 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 -1144
- 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 -388
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- 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/kafka/2018-11-14/api-2.json +0 -2113
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kendra/2019-02-03/api-2.json +0 -1738
- 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 -418
- 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 -1409
- 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 -2266
- 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 -954
- 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 -2151
- 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 -708
- 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 -2937
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- 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 -2363
- 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 -5017
- 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 -1701
- 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/managedblockchain/2018-09-24/api-2.json +0 -1363
- 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 -550
- 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 -1901
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -10694
- data/apis/medialive/2017-10-14/paginators-1.json +0 -52
- data/apis/medialive/2017-10-14/waiters-2.json +0 -217
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
- 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 -737
- 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 -544
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
- 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 -207
- 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 -1867
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2577
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- 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 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- 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 -947
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2401
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/outposts/2019-12-03/api-2.json +0 -367
- 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 -91
- 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 -147
- 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 -1863
- 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 -11495
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- 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 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -5482
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
- data/apis/ram/2018-01-04/api-2.json +0 -1272
- 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 -7445
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -158
- 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/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -5263
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -106
- 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 -2659
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
- 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 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- 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 -2160
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- 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 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
- 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 -165
- 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 -6653
- 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 -1377
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -14
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
- 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 -9105
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -749
- 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 -2700
- 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 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- 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 -2333
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
- 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/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/sesv2/2019-09-27/api-2.json +0 -2433
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -817
- 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 -1366
- 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 -955
- 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 -1468
- 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 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- 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 -9210
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- 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 -1476
- 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 -3259
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- 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 -598
- 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/textract/2018-06-27/api-2.json +0 -653
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
- 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 -740
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
- data/apis/transfer/2018-11-05/api-2.json +0 -964
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -658
- 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 -3992
- 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 -3857
- 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 -2418
- 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 -21
- 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 -1266
- 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 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- 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 -2029
- 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 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -5835
- 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/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/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/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 -62
- 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/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 -6
- 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_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/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/iam.rb +0 -8
- 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 -4
- 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/iotthingsgraph.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/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/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/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/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/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/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 -6
- data/lib/aws-sdk-core/sso.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/textract.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/version.rb +0 -3
- 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 -881
@@ -1,1381 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "1.0",
|
3
|
-
"examples": {
|
4
|
-
"ActivateGateway": [
|
5
|
-
{
|
6
|
-
"input": {
|
7
|
-
"ActivationKey": "29AV1-3OFV9-VVIUB-NKT0I-LRO6V",
|
8
|
-
"GatewayName": "My_Gateway",
|
9
|
-
"GatewayRegion": "us-east-1",
|
10
|
-
"GatewayTimezone": "GMT-12:00",
|
11
|
-
"GatewayType": "STORED",
|
12
|
-
"MediumChangerType": "AWS-Gateway-VTL",
|
13
|
-
"TapeDriveType": "IBM-ULT3580-TD5"
|
14
|
-
},
|
15
|
-
"output": {
|
16
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B"
|
17
|
-
},
|
18
|
-
"comments": {
|
19
|
-
"input": {
|
20
|
-
},
|
21
|
-
"output": {
|
22
|
-
}
|
23
|
-
},
|
24
|
-
"description": "Activates the gateway you previously deployed on your host.",
|
25
|
-
"id": "to-activate-the-gateway-1471281611207",
|
26
|
-
"title": "To activate the gateway"
|
27
|
-
}
|
28
|
-
],
|
29
|
-
"AddCache": [
|
30
|
-
{
|
31
|
-
"input": {
|
32
|
-
"DiskIds": [
|
33
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
34
|
-
"pci-0000:03:00.0-scsi-0:0:1:0"
|
35
|
-
],
|
36
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
37
|
-
},
|
38
|
-
"output": {
|
39
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
40
|
-
},
|
41
|
-
"comments": {
|
42
|
-
"input": {
|
43
|
-
},
|
44
|
-
"output": {
|
45
|
-
}
|
46
|
-
},
|
47
|
-
"description": "The following example shows a request that activates a gateway-stored volume.",
|
48
|
-
"id": "to-add-a-cache-1471043606854",
|
49
|
-
"title": "To add a cache"
|
50
|
-
}
|
51
|
-
],
|
52
|
-
"AddTagsToResource": [
|
53
|
-
{
|
54
|
-
"input": {
|
55
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B",
|
56
|
-
"Tags": [
|
57
|
-
{
|
58
|
-
"Key": "Dev Gatgeway Region",
|
59
|
-
"Value": "East Coast"
|
60
|
-
}
|
61
|
-
]
|
62
|
-
},
|
63
|
-
"output": {
|
64
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B"
|
65
|
-
},
|
66
|
-
"comments": {
|
67
|
-
"input": {
|
68
|
-
},
|
69
|
-
"output": {
|
70
|
-
}
|
71
|
-
},
|
72
|
-
"description": "Adds one or more tags to the specified resource.",
|
73
|
-
"id": "to-add-tags-to-resource-1471283689460",
|
74
|
-
"title": "To add tags to resource"
|
75
|
-
}
|
76
|
-
],
|
77
|
-
"AddUploadBuffer": [
|
78
|
-
{
|
79
|
-
"input": {
|
80
|
-
"DiskIds": [
|
81
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
82
|
-
"pci-0000:03:00.0-scsi-0:0:1:0"
|
83
|
-
],
|
84
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
85
|
-
},
|
86
|
-
"output": {
|
87
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
88
|
-
},
|
89
|
-
"comments": {
|
90
|
-
"input": {
|
91
|
-
},
|
92
|
-
"output": {
|
93
|
-
}
|
94
|
-
},
|
95
|
-
"description": "Configures one or more gateway local disks as upload buffer for a specified gateway.",
|
96
|
-
"id": "to-add-upload-buffer-on-local-disk-1471293902847",
|
97
|
-
"title": "To add upload buffer on local disk"
|
98
|
-
}
|
99
|
-
],
|
100
|
-
"AddWorkingStorage": [
|
101
|
-
{
|
102
|
-
"input": {
|
103
|
-
"DiskIds": [
|
104
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
105
|
-
"pci-0000:03:00.0-scsi-0:0:1:0"
|
106
|
-
],
|
107
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
108
|
-
},
|
109
|
-
"output": {
|
110
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
111
|
-
},
|
112
|
-
"comments": {
|
113
|
-
"input": {
|
114
|
-
},
|
115
|
-
"output": {
|
116
|
-
}
|
117
|
-
},
|
118
|
-
"description": "Configures one or more gateway local disks as working storage for a gateway. (Working storage is also referred to as upload buffer.)",
|
119
|
-
"id": "to-add-storage-on-local-disk-1471294305401",
|
120
|
-
"title": "To add storage on local disk"
|
121
|
-
}
|
122
|
-
],
|
123
|
-
"CancelArchival": [
|
124
|
-
{
|
125
|
-
"input": {
|
126
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
127
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
|
128
|
-
},
|
129
|
-
"output": {
|
130
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
|
131
|
-
},
|
132
|
-
"comments": {
|
133
|
-
"input": {
|
134
|
-
},
|
135
|
-
"output": {
|
136
|
-
}
|
137
|
-
},
|
138
|
-
"description": "Cancels archiving of a virtual tape to the virtual tape shelf (VTS) after the archiving process is initiated.",
|
139
|
-
"id": "to-cancel-virtual-tape-archiving-1471294865203",
|
140
|
-
"title": "To cancel virtual tape archiving"
|
141
|
-
}
|
142
|
-
],
|
143
|
-
"CancelRetrieval": [
|
144
|
-
{
|
145
|
-
"input": {
|
146
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
147
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
|
148
|
-
},
|
149
|
-
"output": {
|
150
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
|
151
|
-
},
|
152
|
-
"comments": {
|
153
|
-
"input": {
|
154
|
-
},
|
155
|
-
"output": {
|
156
|
-
}
|
157
|
-
},
|
158
|
-
"description": "Cancels retrieval of a virtual tape from the virtual tape shelf (VTS) to a gateway after the retrieval process is initiated.",
|
159
|
-
"id": "to-cancel-virtual-tape-retrieval-1471295704491",
|
160
|
-
"title": "To cancel virtual tape retrieval"
|
161
|
-
}
|
162
|
-
],
|
163
|
-
"CreateCachediSCSIVolume": [
|
164
|
-
{
|
165
|
-
"input": {
|
166
|
-
"ClientToken": "cachedvol112233",
|
167
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
168
|
-
"NetworkInterfaceId": "10.1.1.1",
|
169
|
-
"SnapshotId": "snap-f47b7b94",
|
170
|
-
"TargetName": "my-volume",
|
171
|
-
"VolumeSizeInBytes": 536870912000
|
172
|
-
},
|
173
|
-
"output": {
|
174
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume",
|
175
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
176
|
-
},
|
177
|
-
"comments": {
|
178
|
-
"input": {
|
179
|
-
},
|
180
|
-
"output": {
|
181
|
-
}
|
182
|
-
},
|
183
|
-
"description": "Creates a cached volume on a specified cached gateway.",
|
184
|
-
"id": "to-create-a-cached-iscsi-volume-1471296661787",
|
185
|
-
"title": "To create a cached iSCSI volume"
|
186
|
-
}
|
187
|
-
],
|
188
|
-
"CreateSnapshot": [
|
189
|
-
{
|
190
|
-
"input": {
|
191
|
-
"SnapshotDescription": "My root volume snapshot as of 10/03/2017",
|
192
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
193
|
-
},
|
194
|
-
"output": {
|
195
|
-
"SnapshotId": "snap-78e22663",
|
196
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
197
|
-
},
|
198
|
-
"comments": {
|
199
|
-
"input": {
|
200
|
-
},
|
201
|
-
"output": {
|
202
|
-
}
|
203
|
-
},
|
204
|
-
"description": "Initiates an ad-hoc snapshot of a gateway volume.",
|
205
|
-
"id": "to-create-a-snapshot-of-a-gateway-volume-1471301469561",
|
206
|
-
"title": "To create a snapshot of a gateway volume"
|
207
|
-
}
|
208
|
-
],
|
209
|
-
"CreateSnapshotFromVolumeRecoveryPoint": [
|
210
|
-
{
|
211
|
-
"input": {
|
212
|
-
"SnapshotDescription": "My root volume snapshot as of 2017-06-30T10:10:10.000Z",
|
213
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
214
|
-
},
|
215
|
-
"output": {
|
216
|
-
"SnapshotId": "snap-78e22663",
|
217
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
218
|
-
"VolumeRecoveryPointTime": "2017-06-30T10:10:10.000Z"
|
219
|
-
},
|
220
|
-
"comments": {
|
221
|
-
"input": {
|
222
|
-
},
|
223
|
-
"output": {
|
224
|
-
}
|
225
|
-
},
|
226
|
-
"description": "Initiates a snapshot of a gateway from a volume recovery point.",
|
227
|
-
"id": "to-create-a-snapshot-of-a-gateway-volume-1471301469561",
|
228
|
-
"title": "To create a snapshot of a gateway volume"
|
229
|
-
}
|
230
|
-
],
|
231
|
-
"CreateStorediSCSIVolume": [
|
232
|
-
{
|
233
|
-
"input": {
|
234
|
-
"DiskId": "pci-0000:03:00.0-scsi-0:0:0:0",
|
235
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
236
|
-
"NetworkInterfaceId": "10.1.1.1",
|
237
|
-
"PreserveExistingData": true,
|
238
|
-
"SnapshotId": "snap-f47b7b94",
|
239
|
-
"TargetName": "my-volume"
|
240
|
-
},
|
241
|
-
"output": {
|
242
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume",
|
243
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
244
|
-
"VolumeSizeInBytes": 1099511627776
|
245
|
-
},
|
246
|
-
"comments": {
|
247
|
-
"input": {
|
248
|
-
},
|
249
|
-
"output": {
|
250
|
-
}
|
251
|
-
},
|
252
|
-
"description": "Creates a stored volume on a specified stored gateway.",
|
253
|
-
"id": "to-create-a-stored-iscsi-volume-1471367662813",
|
254
|
-
"title": "To create a stored iSCSI volume"
|
255
|
-
}
|
256
|
-
],
|
257
|
-
"CreateTapeWithBarcode": [
|
258
|
-
{
|
259
|
-
"input": {
|
260
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
261
|
-
"TapeBarcode": "TEST12345",
|
262
|
-
"TapeSizeInBytes": 107374182400
|
263
|
-
},
|
264
|
-
"output": {
|
265
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST12345"
|
266
|
-
},
|
267
|
-
"comments": {
|
268
|
-
"input": {
|
269
|
-
},
|
270
|
-
"output": {
|
271
|
-
}
|
272
|
-
},
|
273
|
-
"description": "Creates a virtual tape by using your own barcode.",
|
274
|
-
"id": "to-create-a-virtual-tape-using-a-barcode-1471371842452",
|
275
|
-
"title": "To create a virtual tape using a barcode"
|
276
|
-
}
|
277
|
-
],
|
278
|
-
"CreateTapes": [
|
279
|
-
{
|
280
|
-
"input": {
|
281
|
-
"ClientToken": "77777",
|
282
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
283
|
-
"NumTapesToCreate": 3,
|
284
|
-
"TapeBarcodePrefix": "TEST",
|
285
|
-
"TapeSizeInBytes": 107374182400
|
286
|
-
},
|
287
|
-
"output": {
|
288
|
-
"TapeARNs": [
|
289
|
-
"arn:aws:storagegateway:us-east-1:999999999999:tape/TEST38A29D",
|
290
|
-
"arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3AA29F",
|
291
|
-
"arn:aws:storagegateway:us-east-1:204469490176:tape/TEST3BA29E"
|
292
|
-
]
|
293
|
-
},
|
294
|
-
"comments": {
|
295
|
-
"input": {
|
296
|
-
},
|
297
|
-
"output": {
|
298
|
-
}
|
299
|
-
},
|
300
|
-
"description": "Creates one or more virtual tapes.",
|
301
|
-
"id": "to-create-a-virtual-tape-1471372061659",
|
302
|
-
"title": "To create a virtual tape"
|
303
|
-
}
|
304
|
-
],
|
305
|
-
"DeleteBandwidthRateLimit": [
|
306
|
-
{
|
307
|
-
"input": {
|
308
|
-
"BandwidthType": "All",
|
309
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
310
|
-
},
|
311
|
-
"output": {
|
312
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
313
|
-
},
|
314
|
-
"comments": {
|
315
|
-
"input": {
|
316
|
-
},
|
317
|
-
"output": {
|
318
|
-
}
|
319
|
-
},
|
320
|
-
"description": "Deletes the bandwidth rate limits of a gateway; either the upload or download limit, or both.",
|
321
|
-
"id": "to-delete-bandwidth-rate-limits-of-gateway-1471373225520",
|
322
|
-
"title": "To delete bandwidth rate limits of gateway"
|
323
|
-
}
|
324
|
-
],
|
325
|
-
"DeleteChapCredentials": [
|
326
|
-
{
|
327
|
-
"input": {
|
328
|
-
"InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com",
|
329
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
330
|
-
},
|
331
|
-
"output": {
|
332
|
-
"InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com",
|
333
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
334
|
-
},
|
335
|
-
"comments": {
|
336
|
-
"input": {
|
337
|
-
},
|
338
|
-
"output": {
|
339
|
-
}
|
340
|
-
},
|
341
|
-
"description": "Deletes Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target and initiator pair.",
|
342
|
-
"id": "to-delete-chap-credentials-1471375025612",
|
343
|
-
"title": "To delete CHAP credentials"
|
344
|
-
}
|
345
|
-
],
|
346
|
-
"DeleteGateway": [
|
347
|
-
{
|
348
|
-
"input": {
|
349
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
350
|
-
},
|
351
|
-
"output": {
|
352
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
353
|
-
},
|
354
|
-
"comments": {
|
355
|
-
"input": {
|
356
|
-
},
|
357
|
-
"output": {
|
358
|
-
}
|
359
|
-
},
|
360
|
-
"description": "This operation deletes the gateway, but not the gateway's VM from the host computer.",
|
361
|
-
"id": "to-delete-a-gatgeway-1471381697333",
|
362
|
-
"title": "To delete a gatgeway"
|
363
|
-
}
|
364
|
-
],
|
365
|
-
"DeleteSnapshotSchedule": [
|
366
|
-
{
|
367
|
-
"input": {
|
368
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
369
|
-
},
|
370
|
-
"output": {
|
371
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
372
|
-
},
|
373
|
-
"comments": {
|
374
|
-
"input": {
|
375
|
-
},
|
376
|
-
"output": {
|
377
|
-
}
|
378
|
-
},
|
379
|
-
"description": "This action enables you to delete a snapshot schedule for a volume.",
|
380
|
-
"id": "to-delete-a-snapshot-of-a-volume-1471382234377",
|
381
|
-
"title": "To delete a snapshot of a volume"
|
382
|
-
}
|
383
|
-
],
|
384
|
-
"DeleteTape": [
|
385
|
-
{
|
386
|
-
"input": {
|
387
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:204469490176:gateway/sgw-12A3456B",
|
388
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0"
|
389
|
-
},
|
390
|
-
"output": {
|
391
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0"
|
392
|
-
},
|
393
|
-
"comments": {
|
394
|
-
"input": {
|
395
|
-
},
|
396
|
-
"output": {
|
397
|
-
}
|
398
|
-
},
|
399
|
-
"description": "This example deletes the specified virtual tape.",
|
400
|
-
"id": "to-delete-a-virtual-tape-1471382444157",
|
401
|
-
"title": "To delete a virtual tape"
|
402
|
-
}
|
403
|
-
],
|
404
|
-
"DeleteTapeArchive": [
|
405
|
-
{
|
406
|
-
"input": {
|
407
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0"
|
408
|
-
},
|
409
|
-
"output": {
|
410
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:204469490176:tape/TEST05A2A0"
|
411
|
-
},
|
412
|
-
"comments": {
|
413
|
-
"input": {
|
414
|
-
},
|
415
|
-
"output": {
|
416
|
-
}
|
417
|
-
},
|
418
|
-
"description": "Deletes the specified virtual tape from the virtual tape shelf (VTS).",
|
419
|
-
"id": "to-delete-a-virtual-tape-from-the-shelf-vts-1471383964329",
|
420
|
-
"title": "To delete a virtual tape from the shelf (VTS)"
|
421
|
-
}
|
422
|
-
],
|
423
|
-
"DeleteVolume": [
|
424
|
-
{
|
425
|
-
"input": {
|
426
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
427
|
-
},
|
428
|
-
"output": {
|
429
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
430
|
-
},
|
431
|
-
"comments": {
|
432
|
-
"input": {
|
433
|
-
},
|
434
|
-
"output": {
|
435
|
-
}
|
436
|
-
},
|
437
|
-
"description": "Deletes the specified gateway volume that you previously created using the CreateCachediSCSIVolume or CreateStorediSCSIVolume API.",
|
438
|
-
"id": "to-delete-a-gateway-volume-1471384418416",
|
439
|
-
"title": "To delete a gateway volume"
|
440
|
-
}
|
441
|
-
],
|
442
|
-
"DescribeBandwidthRateLimit": [
|
443
|
-
{
|
444
|
-
"input": {
|
445
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
446
|
-
},
|
447
|
-
"output": {
|
448
|
-
"AverageDownloadRateLimitInBitsPerSec": 204800,
|
449
|
-
"AverageUploadRateLimitInBitsPerSec": 102400,
|
450
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
451
|
-
},
|
452
|
-
"comments": {
|
453
|
-
"input": {
|
454
|
-
},
|
455
|
-
"output": {
|
456
|
-
}
|
457
|
-
},
|
458
|
-
"description": "Returns a value for a bandwidth rate limit if set. If not set, then only the gateway ARN is returned.",
|
459
|
-
"id": "to-describe-the-bandwidth-rate-limits-of-a-gateway-1471384826404",
|
460
|
-
"title": "To describe the bandwidth rate limits of a gateway"
|
461
|
-
}
|
462
|
-
],
|
463
|
-
"DescribeCache": [
|
464
|
-
{
|
465
|
-
"input": {
|
466
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
467
|
-
},
|
468
|
-
"output": {
|
469
|
-
"CacheAllocatedInBytes": 2199023255552,
|
470
|
-
"CacheDirtyPercentage": 0.07,
|
471
|
-
"CacheHitPercentage": 99.68,
|
472
|
-
"CacheMissPercentage": 0.32,
|
473
|
-
"CacheUsedPercentage": 0.07,
|
474
|
-
"DiskIds": [
|
475
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
476
|
-
"pci-0000:04:00.0-scsi-0:1:0:0"
|
477
|
-
],
|
478
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
479
|
-
},
|
480
|
-
"comments": {
|
481
|
-
"input": {
|
482
|
-
},
|
483
|
-
"output": {
|
484
|
-
}
|
485
|
-
},
|
486
|
-
"description": "Returns information about the cache of a gateway.",
|
487
|
-
"id": "to-describe-cache-information-1471385756036",
|
488
|
-
"title": "To describe cache information"
|
489
|
-
}
|
490
|
-
],
|
491
|
-
"DescribeCachediSCSIVolumes": [
|
492
|
-
{
|
493
|
-
"input": {
|
494
|
-
"VolumeARNs": [
|
495
|
-
"arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
496
|
-
]
|
497
|
-
},
|
498
|
-
"output": {
|
499
|
-
"CachediSCSIVolumes": [
|
500
|
-
{
|
501
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
502
|
-
"VolumeId": "vol-1122AABB",
|
503
|
-
"VolumeSizeInBytes": 1099511627776,
|
504
|
-
"VolumeStatus": "AVAILABLE",
|
505
|
-
"VolumeType": "CACHED iSCSI",
|
506
|
-
"VolumeiSCSIAttributes": {
|
507
|
-
"ChapEnabled": true,
|
508
|
-
"LunNumber": 1,
|
509
|
-
"NetworkInterfaceId": "10.243.43.207",
|
510
|
-
"NetworkInterfacePort": 3260,
|
511
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
512
|
-
}
|
513
|
-
}
|
514
|
-
]
|
515
|
-
},
|
516
|
-
"comments": {
|
517
|
-
"input": {
|
518
|
-
},
|
519
|
-
"output": {
|
520
|
-
}
|
521
|
-
},
|
522
|
-
"description": "Returns a description of the gateway cached iSCSI volumes specified in the request.",
|
523
|
-
"id": "to-describe-gateway-cached-iscsi-volumes-1471458094649",
|
524
|
-
"title": "To describe gateway cached iSCSI volumes"
|
525
|
-
}
|
526
|
-
],
|
527
|
-
"DescribeChapCredentials": [
|
528
|
-
{
|
529
|
-
"input": {
|
530
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
531
|
-
},
|
532
|
-
"output": {
|
533
|
-
"ChapCredentials": [
|
534
|
-
{
|
535
|
-
"InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com",
|
536
|
-
"SecretToAuthenticateInitiator": "111111111111",
|
537
|
-
"SecretToAuthenticateTarget": "222222222222",
|
538
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
539
|
-
}
|
540
|
-
]
|
541
|
-
},
|
542
|
-
"comments": {
|
543
|
-
"input": {
|
544
|
-
},
|
545
|
-
"output": {
|
546
|
-
}
|
547
|
-
},
|
548
|
-
"description": "Returns an array of Challenge-Handshake Authentication Protocol (CHAP) credentials information for a specified iSCSI target, one for each target-initiator pair.",
|
549
|
-
"id": "to-describe-chap-credetnitals-for-an-iscsi-1471467462967",
|
550
|
-
"title": "To describe CHAP credetnitals for an iSCSI"
|
551
|
-
}
|
552
|
-
],
|
553
|
-
"DescribeGatewayInformation": [
|
554
|
-
{
|
555
|
-
"input": {
|
556
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
557
|
-
},
|
558
|
-
"output": {
|
559
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
560
|
-
"GatewayId": "sgw-AABB1122",
|
561
|
-
"GatewayName": "My_Gateway",
|
562
|
-
"GatewayNetworkInterfaces": [
|
563
|
-
{
|
564
|
-
"Ipv4Address": "10.35.69.216"
|
565
|
-
}
|
566
|
-
],
|
567
|
-
"GatewayState": "STATE_RUNNING",
|
568
|
-
"GatewayTimezone": "GMT-8:00",
|
569
|
-
"GatewayType": "STORED",
|
570
|
-
"LastSoftwareUpdate": "2016-01-02T16:00:00",
|
571
|
-
"NextUpdateAvailabilityDate": "2017-01-02T16:00:00"
|
572
|
-
},
|
573
|
-
"comments": {
|
574
|
-
"input": {
|
575
|
-
},
|
576
|
-
"output": {
|
577
|
-
}
|
578
|
-
},
|
579
|
-
"description": "Returns metadata about a gateway such as its name, network interfaces, configured time zone, and the state (whether the gateway is running or not).",
|
580
|
-
"id": "to-describe-metadata-about-the-gateway-1471467849079",
|
581
|
-
"title": "To describe metadata about the gateway"
|
582
|
-
}
|
583
|
-
],
|
584
|
-
"DescribeMaintenanceStartTime": [
|
585
|
-
{
|
586
|
-
"input": {
|
587
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
588
|
-
},
|
589
|
-
"output": {
|
590
|
-
"DayOfWeek": 2,
|
591
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
592
|
-
"HourOfDay": 15,
|
593
|
-
"MinuteOfHour": 35,
|
594
|
-
"Timezone": "GMT+7:00"
|
595
|
-
},
|
596
|
-
"comments": {
|
597
|
-
"input": {
|
598
|
-
},
|
599
|
-
"output": {
|
600
|
-
}
|
601
|
-
},
|
602
|
-
"description": "Returns your gateway's weekly maintenance start time including the day and time of the week.",
|
603
|
-
"id": "to-describe-gateways-maintenance-start-time-1471470727387",
|
604
|
-
"title": "To describe gateway's maintenance start time"
|
605
|
-
}
|
606
|
-
],
|
607
|
-
"DescribeSnapshotSchedule": [
|
608
|
-
{
|
609
|
-
"input": {
|
610
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
611
|
-
},
|
612
|
-
"output": {
|
613
|
-
"Description": "sgw-AABB1122:vol-AABB1122:Schedule",
|
614
|
-
"RecurrenceInHours": 24,
|
615
|
-
"StartAt": 6,
|
616
|
-
"Timezone": "GMT+7:00",
|
617
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
618
|
-
},
|
619
|
-
"comments": {
|
620
|
-
"input": {
|
621
|
-
},
|
622
|
-
"output": {
|
623
|
-
}
|
624
|
-
},
|
625
|
-
"description": "Describes the snapshot schedule for the specified gateway volume including intervals at which snapshots are automatically initiated.",
|
626
|
-
"id": "to-describe-snapshot-schedule-for-gateway-volume-1471471139538",
|
627
|
-
"title": "To describe snapshot schedule for gateway volume"
|
628
|
-
}
|
629
|
-
],
|
630
|
-
"DescribeStorediSCSIVolumes": [
|
631
|
-
{
|
632
|
-
"input": {
|
633
|
-
"VolumeARNs": [
|
634
|
-
"arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
635
|
-
]
|
636
|
-
},
|
637
|
-
"output": {
|
638
|
-
"StorediSCSIVolumes": [
|
639
|
-
{
|
640
|
-
"PreservedExistingData": false,
|
641
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
642
|
-
"VolumeDiskId": "pci-0000:03:00.0-scsi-0:0:0:0",
|
643
|
-
"VolumeId": "vol-1122AABB",
|
644
|
-
"VolumeProgress": 23.7,
|
645
|
-
"VolumeSizeInBytes": 1099511627776,
|
646
|
-
"VolumeStatus": "BOOTSTRAPPING",
|
647
|
-
"VolumeiSCSIAttributes": {
|
648
|
-
"ChapEnabled": true,
|
649
|
-
"NetworkInterfaceId": "10.243.43.207",
|
650
|
-
"NetworkInterfacePort": 3260,
|
651
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
652
|
-
}
|
653
|
-
}
|
654
|
-
]
|
655
|
-
},
|
656
|
-
"comments": {
|
657
|
-
"input": {
|
658
|
-
},
|
659
|
-
"output": {
|
660
|
-
}
|
661
|
-
},
|
662
|
-
"description": "Returns the description of the gateway volumes specified in the request belonging to the same gateway.",
|
663
|
-
"id": "to-describe-the-volumes-of-a-gateway-1471472640660",
|
664
|
-
"title": "To describe the volumes of a gateway"
|
665
|
-
}
|
666
|
-
],
|
667
|
-
"DescribeTapeArchives": [
|
668
|
-
{
|
669
|
-
"input": {
|
670
|
-
"Limit": 123,
|
671
|
-
"Marker": "1",
|
672
|
-
"TapeARNs": [
|
673
|
-
"arn:aws:storagegateway:us-east-1:999999999999:tape/AM08A1AD",
|
674
|
-
"arn:aws:storagegateway:us-east-1:999999999999:tape/AMZN01A2A4"
|
675
|
-
]
|
676
|
-
},
|
677
|
-
"output": {
|
678
|
-
"Marker": "1",
|
679
|
-
"TapeArchives": [
|
680
|
-
{
|
681
|
-
"CompletionTime": "2016-12-16T13:50Z",
|
682
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AM08A1AD",
|
683
|
-
"TapeBarcode": "AM08A1AD",
|
684
|
-
"TapeSizeInBytes": 107374182400,
|
685
|
-
"TapeStatus": "ARCHIVED"
|
686
|
-
},
|
687
|
-
{
|
688
|
-
"CompletionTime": "2016-12-16T13:59Z",
|
689
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4",
|
690
|
-
"TapeBarcode": "AMZN01A2A4",
|
691
|
-
"TapeSizeInBytes": 429496729600,
|
692
|
-
"TapeStatus": "ARCHIVED"
|
693
|
-
}
|
694
|
-
]
|
695
|
-
},
|
696
|
-
"comments": {
|
697
|
-
"input": {
|
698
|
-
},
|
699
|
-
"output": {
|
700
|
-
}
|
701
|
-
},
|
702
|
-
"description": "Returns a description of specified virtual tapes in the virtual tape shelf (VTS).",
|
703
|
-
"id": "to-describe-virtual-tapes-in-the-vts-1471473188198",
|
704
|
-
"title": "To describe virtual tapes in the VTS"
|
705
|
-
}
|
706
|
-
],
|
707
|
-
"DescribeTapeRecoveryPoints": [
|
708
|
-
{
|
709
|
-
"input": {
|
710
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
711
|
-
"Limit": 1,
|
712
|
-
"Marker": "1"
|
713
|
-
},
|
714
|
-
"output": {
|
715
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
716
|
-
"Marker": "1",
|
717
|
-
"TapeRecoveryPointInfos": [
|
718
|
-
{
|
719
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999:tape/AMZN01A2A4",
|
720
|
-
"TapeRecoveryPointTime": "2016-12-16T13:50Z",
|
721
|
-
"TapeSizeInBytes": 1471550497,
|
722
|
-
"TapeStatus": "AVAILABLE"
|
723
|
-
}
|
724
|
-
]
|
725
|
-
},
|
726
|
-
"comments": {
|
727
|
-
"input": {
|
728
|
-
},
|
729
|
-
"output": {
|
730
|
-
}
|
731
|
-
},
|
732
|
-
"description": "Returns a list of virtual tape recovery points that are available for the specified gateway-VTL.",
|
733
|
-
"id": "to-describe-virtual-tape-recovery-points-1471542042026",
|
734
|
-
"title": "To describe virtual tape recovery points"
|
735
|
-
}
|
736
|
-
],
|
737
|
-
"DescribeTapes": [
|
738
|
-
{
|
739
|
-
"input": {
|
740
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
741
|
-
"Limit": 2,
|
742
|
-
"Marker": "1",
|
743
|
-
"TapeARNs": [
|
744
|
-
"arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1",
|
745
|
-
"arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0"
|
746
|
-
]
|
747
|
-
},
|
748
|
-
"output": {
|
749
|
-
"Marker": "1",
|
750
|
-
"Tapes": [
|
751
|
-
{
|
752
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST04A2A1",
|
753
|
-
"TapeBarcode": "TEST04A2A1",
|
754
|
-
"TapeSizeInBytes": 107374182400,
|
755
|
-
"TapeStatus": "AVAILABLE"
|
756
|
-
},
|
757
|
-
{
|
758
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST05A2A0",
|
759
|
-
"TapeBarcode": "TEST05A2A0",
|
760
|
-
"TapeSizeInBytes": 107374182400,
|
761
|
-
"TapeStatus": "AVAILABLE"
|
762
|
-
}
|
763
|
-
]
|
764
|
-
},
|
765
|
-
"comments": {
|
766
|
-
"input": {
|
767
|
-
},
|
768
|
-
"output": {
|
769
|
-
}
|
770
|
-
},
|
771
|
-
"description": "Returns a description of the specified Amazon Resource Name (ARN) of virtual tapes. If a TapeARN is not specified, returns a description of all virtual tapes.",
|
772
|
-
"id": "to-describe-virtual-tapes-associated-with-gateway-1471629287727",
|
773
|
-
"title": "To describe virtual tape(s) associated with gateway"
|
774
|
-
}
|
775
|
-
],
|
776
|
-
"DescribeUploadBuffer": [
|
777
|
-
{
|
778
|
-
"input": {
|
779
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
780
|
-
},
|
781
|
-
"output": {
|
782
|
-
"DiskIds": [
|
783
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
784
|
-
"pci-0000:04:00.0-scsi-0:1:0:0"
|
785
|
-
],
|
786
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
787
|
-
"UploadBufferAllocatedInBytes": 0,
|
788
|
-
"UploadBufferUsedInBytes": 161061273600
|
789
|
-
},
|
790
|
-
"comments": {
|
791
|
-
"input": {
|
792
|
-
},
|
793
|
-
"output": {
|
794
|
-
}
|
795
|
-
},
|
796
|
-
"description": "Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated/used.",
|
797
|
-
"id": "to-describe-upload-buffer-of-gateway-1471631099003",
|
798
|
-
"title": "To describe upload buffer of gateway"
|
799
|
-
},
|
800
|
-
{
|
801
|
-
"input": {
|
802
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
803
|
-
},
|
804
|
-
"output": {
|
805
|
-
"DiskIds": [
|
806
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
807
|
-
"pci-0000:04:00.0-scsi-0:1:0:0"
|
808
|
-
],
|
809
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
810
|
-
"UploadBufferAllocatedInBytes": 161061273600,
|
811
|
-
"UploadBufferUsedInBytes": 0
|
812
|
-
},
|
813
|
-
"comments": {
|
814
|
-
"input": {
|
815
|
-
},
|
816
|
-
"output": {
|
817
|
-
}
|
818
|
-
},
|
819
|
-
"description": "Returns information about the upload buffer of a gateway including disk IDs and the amount of upload buffer space allocated and used.",
|
820
|
-
"id": "to-describe-upload-buffer-of-a-gateway--1471904566370",
|
821
|
-
"title": "To describe upload buffer of a gateway"
|
822
|
-
}
|
823
|
-
],
|
824
|
-
"DescribeVTLDevices": [
|
825
|
-
{
|
826
|
-
"input": {
|
827
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
828
|
-
"Limit": 123,
|
829
|
-
"Marker": "1",
|
830
|
-
"VTLDeviceARNs": [
|
831
|
-
|
832
|
-
]
|
833
|
-
},
|
834
|
-
"output": {
|
835
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
836
|
-
"Marker": "1",
|
837
|
-
"VTLDevices": [
|
838
|
-
{
|
839
|
-
"DeviceiSCSIAttributes": {
|
840
|
-
"ChapEnabled": false,
|
841
|
-
"NetworkInterfaceId": "10.243.43.207",
|
842
|
-
"NetworkInterfacePort": 3260,
|
843
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-mediachanger"
|
844
|
-
},
|
845
|
-
"VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001",
|
846
|
-
"VTLDeviceProductIdentifier": "L700",
|
847
|
-
"VTLDeviceType": "Medium Changer",
|
848
|
-
"VTLDeviceVendor": "STK"
|
849
|
-
},
|
850
|
-
{
|
851
|
-
"DeviceiSCSIAttributes": {
|
852
|
-
"ChapEnabled": false,
|
853
|
-
"NetworkInterfaceId": "10.243.43.209",
|
854
|
-
"NetworkInterfacePort": 3260,
|
855
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-01"
|
856
|
-
},
|
857
|
-
"VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00001",
|
858
|
-
"VTLDeviceProductIdentifier": "ULT3580-TD5",
|
859
|
-
"VTLDeviceType": "Tape Drive",
|
860
|
-
"VTLDeviceVendor": "IBM"
|
861
|
-
},
|
862
|
-
{
|
863
|
-
"DeviceiSCSIAttributes": {
|
864
|
-
"ChapEnabled": false,
|
865
|
-
"NetworkInterfaceId": "10.243.43.209",
|
866
|
-
"NetworkInterfacePort": 3260,
|
867
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:sgw-1fad4876-tapedrive-02"
|
868
|
-
},
|
869
|
-
"VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_TAPEDRIVE_00002",
|
870
|
-
"VTLDeviceProductIdentifier": "ULT3580-TD5",
|
871
|
-
"VTLDeviceType": "Tape Drive",
|
872
|
-
"VTLDeviceVendor": "IBM"
|
873
|
-
}
|
874
|
-
]
|
875
|
-
},
|
876
|
-
"comments": {
|
877
|
-
"input": {
|
878
|
-
},
|
879
|
-
"output": {
|
880
|
-
}
|
881
|
-
},
|
882
|
-
"description": "Returns a description of virtual tape library (VTL) devices for the specified gateway.",
|
883
|
-
"id": "to-describe-virtual-tape-library-vtl-devices-of-a-single-gateway-1471906071410",
|
884
|
-
"title": "To describe virtual tape library (VTL) devices of a single gateway"
|
885
|
-
}
|
886
|
-
],
|
887
|
-
"DescribeWorkingStorage": [
|
888
|
-
{
|
889
|
-
"input": {
|
890
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
891
|
-
},
|
892
|
-
"output": {
|
893
|
-
"DiskIds": [
|
894
|
-
"pci-0000:03:00.0-scsi-0:0:0:0",
|
895
|
-
"pci-0000:03:00.0-scsi-0:0:1:0"
|
896
|
-
],
|
897
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
898
|
-
"WorkingStorageAllocatedInBytes": 2199023255552,
|
899
|
-
"WorkingStorageUsedInBytes": 789207040
|
900
|
-
},
|
901
|
-
"comments": {
|
902
|
-
"input": {
|
903
|
-
},
|
904
|
-
"output": {
|
905
|
-
}
|
906
|
-
},
|
907
|
-
"description": "This operation is supported only for the gateway-stored volume architecture. This operation is deprecated in cached-volumes API version (20120630). Use DescribeUploadBuffer instead.",
|
908
|
-
"id": "to-describe-the-working-storage-of-a-gateway-depreciated-1472070842332",
|
909
|
-
"title": "To describe the working storage of a gateway [Depreciated]"
|
910
|
-
}
|
911
|
-
],
|
912
|
-
"DisableGateway": [
|
913
|
-
{
|
914
|
-
"input": {
|
915
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
916
|
-
},
|
917
|
-
"output": {
|
918
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
919
|
-
},
|
920
|
-
"comments": {
|
921
|
-
"input": {
|
922
|
-
},
|
923
|
-
"output": {
|
924
|
-
}
|
925
|
-
},
|
926
|
-
"description": "Disables a gateway when the gateway is no longer functioning. Use this operation for a gateway-VTL that is not reachable or not functioning.",
|
927
|
-
"id": "to-disable-a-gateway-when-it-is-no-longer-functioning-1472076046936",
|
928
|
-
"title": "To disable a gateway when it is no longer functioning"
|
929
|
-
}
|
930
|
-
],
|
931
|
-
"ListGateways": [
|
932
|
-
{
|
933
|
-
"input": {
|
934
|
-
"Limit": 2,
|
935
|
-
"Marker": "1"
|
936
|
-
},
|
937
|
-
"output": {
|
938
|
-
"Gateways": [
|
939
|
-
{
|
940
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
941
|
-
},
|
942
|
-
{
|
943
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-23A4567C"
|
944
|
-
}
|
945
|
-
],
|
946
|
-
"Marker": "1"
|
947
|
-
},
|
948
|
-
"comments": {
|
949
|
-
"input": {
|
950
|
-
},
|
951
|
-
"output": {
|
952
|
-
}
|
953
|
-
},
|
954
|
-
"description": "Lists gateways owned by an AWS account in a specified region as requested. Results are sorted by gateway ARN up to a maximum of 100 gateways.",
|
955
|
-
"id": "to-lists-region-specific-gateways-per-aws-account-1472077860657",
|
956
|
-
"title": "To lists region specific gateways per AWS account"
|
957
|
-
}
|
958
|
-
],
|
959
|
-
"ListLocalDisks": [
|
960
|
-
{
|
961
|
-
"input": {
|
962
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
963
|
-
},
|
964
|
-
"output": {
|
965
|
-
"Disks": [
|
966
|
-
{
|
967
|
-
"DiskAllocationType": "CACHE_STORAGE",
|
968
|
-
"DiskId": "pci-0000:03:00.0-scsi-0:0:0:0",
|
969
|
-
"DiskNode": "SCSI(0:0)",
|
970
|
-
"DiskPath": "/dev/sda",
|
971
|
-
"DiskSizeInBytes": 1099511627776,
|
972
|
-
"DiskStatus": "missing"
|
973
|
-
},
|
974
|
-
{
|
975
|
-
"DiskAllocationResource": "",
|
976
|
-
"DiskAllocationType": "UPLOAD_BUFFER",
|
977
|
-
"DiskId": "pci-0000:03:00.0-scsi-0:0:1:0",
|
978
|
-
"DiskNode": "SCSI(0:1)",
|
979
|
-
"DiskPath": "/dev/sdb",
|
980
|
-
"DiskSizeInBytes": 1099511627776,
|
981
|
-
"DiskStatus": "present"
|
982
|
-
}
|
983
|
-
],
|
984
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
985
|
-
},
|
986
|
-
"comments": {
|
987
|
-
"input": {
|
988
|
-
},
|
989
|
-
"output": {
|
990
|
-
}
|
991
|
-
},
|
992
|
-
"description": "The request returns a list of all disks, specifying which are configured as working storage, cache storage, or stored volume or not configured at all.",
|
993
|
-
"id": "to-list-the-gateways-local-disks-1472079564618",
|
994
|
-
"title": "To list the gateway's local disks"
|
995
|
-
}
|
996
|
-
],
|
997
|
-
"ListTagsForResource": [
|
998
|
-
{
|
999
|
-
"input": {
|
1000
|
-
"Limit": 1,
|
1001
|
-
"Marker": "1",
|
1002
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B"
|
1003
|
-
},
|
1004
|
-
"output": {
|
1005
|
-
"Marker": "1",
|
1006
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B",
|
1007
|
-
"Tags": [
|
1008
|
-
{
|
1009
|
-
"Key": "Dev Gatgeway Region",
|
1010
|
-
"Value": "East Coast"
|
1011
|
-
}
|
1012
|
-
]
|
1013
|
-
},
|
1014
|
-
"comments": {
|
1015
|
-
"input": {
|
1016
|
-
},
|
1017
|
-
"output": {
|
1018
|
-
}
|
1019
|
-
},
|
1020
|
-
"description": "Lists the tags that have been added to the specified resource.",
|
1021
|
-
"id": "to-list-tags-that-have-been-added-to-a-resource-1472080268972",
|
1022
|
-
"title": "To list tags that have been added to a resource"
|
1023
|
-
}
|
1024
|
-
],
|
1025
|
-
"ListVolumeRecoveryPoints": [
|
1026
|
-
{
|
1027
|
-
"input": {
|
1028
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1029
|
-
},
|
1030
|
-
"output": {
|
1031
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1032
|
-
"VolumeRecoveryPointInfos": [
|
1033
|
-
{
|
1034
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
1035
|
-
"VolumeRecoveryPointTime": "2012-09-04T21:08:44.627Z",
|
1036
|
-
"VolumeSizeInBytes": 536870912000
|
1037
|
-
}
|
1038
|
-
]
|
1039
|
-
},
|
1040
|
-
"comments": {
|
1041
|
-
"input": {
|
1042
|
-
},
|
1043
|
-
"output": {
|
1044
|
-
}
|
1045
|
-
},
|
1046
|
-
"description": "Lists the recovery points for a specified gateway in which all data of the volume is consistent and can be used to create a snapshot.",
|
1047
|
-
"id": "to-list-recovery-points-for-a-gateway-1472143015088",
|
1048
|
-
"title": "To list recovery points for a gateway"
|
1049
|
-
}
|
1050
|
-
],
|
1051
|
-
"ListVolumes": [
|
1052
|
-
{
|
1053
|
-
"input": {
|
1054
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1055
|
-
"Limit": 2,
|
1056
|
-
"Marker": "1"
|
1057
|
-
},
|
1058
|
-
"output": {
|
1059
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1060
|
-
"Marker": "1",
|
1061
|
-
"VolumeInfos": [
|
1062
|
-
{
|
1063
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1064
|
-
"GatewayId": "sgw-12A3456B",
|
1065
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB",
|
1066
|
-
"VolumeId": "vol-1122AABB",
|
1067
|
-
"VolumeSizeInBytes": 107374182400,
|
1068
|
-
"VolumeType": "STORED"
|
1069
|
-
},
|
1070
|
-
{
|
1071
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C",
|
1072
|
-
"GatewayId": "sgw-gw-13B4567C",
|
1073
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C/volume/vol-3344CCDD",
|
1074
|
-
"VolumeId": "vol-1122AABB",
|
1075
|
-
"VolumeSizeInBytes": 107374182400,
|
1076
|
-
"VolumeType": "STORED"
|
1077
|
-
}
|
1078
|
-
]
|
1079
|
-
},
|
1080
|
-
"comments": {
|
1081
|
-
"input": {
|
1082
|
-
},
|
1083
|
-
"output": {
|
1084
|
-
}
|
1085
|
-
},
|
1086
|
-
"description": "Lists the iSCSI stored volumes of a gateway. Results are sorted by volume ARN up to a maximum of 100 volumes.",
|
1087
|
-
"id": "to-list-the-iscsi-stored-volumes-of-a-gateway-1472145723653",
|
1088
|
-
"title": "To list the iSCSI stored volumes of a gateway"
|
1089
|
-
}
|
1090
|
-
],
|
1091
|
-
"RemoveTagsFromResource": [
|
1092
|
-
{
|
1093
|
-
"input": {
|
1094
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B",
|
1095
|
-
"TagKeys": [
|
1096
|
-
"Dev Gatgeway Region",
|
1097
|
-
"East Coast"
|
1098
|
-
]
|
1099
|
-
},
|
1100
|
-
"output": {
|
1101
|
-
"ResourceARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-11A2222B"
|
1102
|
-
},
|
1103
|
-
"comments": {
|
1104
|
-
"input": {
|
1105
|
-
},
|
1106
|
-
"output": {
|
1107
|
-
}
|
1108
|
-
},
|
1109
|
-
"description": "Lists the iSCSI stored volumes of a gateway. Removes one or more tags from the specified resource.",
|
1110
|
-
"id": "to-remove-tags-from-a-resource-1472147210553",
|
1111
|
-
"title": "To remove tags from a resource"
|
1112
|
-
}
|
1113
|
-
],
|
1114
|
-
"ResetCache": [
|
1115
|
-
{
|
1116
|
-
"input": {
|
1117
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C"
|
1118
|
-
},
|
1119
|
-
"output": {
|
1120
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-13B4567C"
|
1121
|
-
},
|
1122
|
-
"comments": {
|
1123
|
-
"input": {
|
1124
|
-
},
|
1125
|
-
"output": {
|
1126
|
-
}
|
1127
|
-
},
|
1128
|
-
"description": "Resets all cache disks that have encountered a error and makes the disks available for reconfiguration as cache storage.",
|
1129
|
-
"id": "to-reset-cache-disks-in-error-status-1472148909807",
|
1130
|
-
"title": "To reset cache disks in error status"
|
1131
|
-
}
|
1132
|
-
],
|
1133
|
-
"RetrieveTapeArchive": [
|
1134
|
-
{
|
1135
|
-
"input": {
|
1136
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
1137
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF"
|
1138
|
-
},
|
1139
|
-
"output": {
|
1140
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF"
|
1141
|
-
},
|
1142
|
-
"comments": {
|
1143
|
-
"input": {
|
1144
|
-
},
|
1145
|
-
"output": {
|
1146
|
-
}
|
1147
|
-
},
|
1148
|
-
"description": "Retrieves an archived virtual tape from the virtual tape shelf (VTS) to a gateway-VTL. Virtual tapes archived in the VTS are not associated with any gateway.",
|
1149
|
-
"id": "to-retrieve-an-archived-tape-from-the-vts-1472149812358",
|
1150
|
-
"title": "To retrieve an archived tape from the VTS"
|
1151
|
-
}
|
1152
|
-
],
|
1153
|
-
"RetrieveTapeRecoveryPoint": [
|
1154
|
-
{
|
1155
|
-
"input": {
|
1156
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
1157
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF"
|
1158
|
-
},
|
1159
|
-
"output": {
|
1160
|
-
"TapeARN": "arn:aws:storagegateway:us-east-1:999999999999:tape/TEST0AA2AF"
|
1161
|
-
},
|
1162
|
-
"comments": {
|
1163
|
-
"input": {
|
1164
|
-
},
|
1165
|
-
"output": {
|
1166
|
-
}
|
1167
|
-
},
|
1168
|
-
"description": "Retrieves the recovery point for the specified virtual tape.",
|
1169
|
-
"id": "to-retrieve-the-recovery-point-of-a-virtual-tape-1472150014805",
|
1170
|
-
"title": "To retrieve the recovery point of a virtual tape"
|
1171
|
-
}
|
1172
|
-
],
|
1173
|
-
"SetLocalConsolePassword": [
|
1174
|
-
{
|
1175
|
-
"input": {
|
1176
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B",
|
1177
|
-
"LocalConsolePassword": "PassWordMustBeAtLeast6Chars."
|
1178
|
-
},
|
1179
|
-
"output": {
|
1180
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
|
1181
|
-
},
|
1182
|
-
"comments": {
|
1183
|
-
"input": {
|
1184
|
-
},
|
1185
|
-
"output": {
|
1186
|
-
}
|
1187
|
-
},
|
1188
|
-
"description": "Sets the password for your VM local console.",
|
1189
|
-
"id": "to-set-a-password-for-your-vm-1472150202632",
|
1190
|
-
"title": "To set a password for your VM"
|
1191
|
-
}
|
1192
|
-
],
|
1193
|
-
"ShutdownGateway": [
|
1194
|
-
{
|
1195
|
-
"input": {
|
1196
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
|
1197
|
-
},
|
1198
|
-
"output": {
|
1199
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
|
1200
|
-
},
|
1201
|
-
"comments": {
|
1202
|
-
"input": {
|
1203
|
-
},
|
1204
|
-
"output": {
|
1205
|
-
}
|
1206
|
-
},
|
1207
|
-
"description": "This operation shuts down the gateway service component running in the storage gateway's virtual machine (VM) and not the VM.",
|
1208
|
-
"id": "to-shut-down-a-gateway-service-1472150508835",
|
1209
|
-
"title": "To shut down a gateway service"
|
1210
|
-
}
|
1211
|
-
],
|
1212
|
-
"StartGateway": [
|
1213
|
-
{
|
1214
|
-
"input": {
|
1215
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
|
1216
|
-
},
|
1217
|
-
"output": {
|
1218
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
|
1219
|
-
},
|
1220
|
-
"comments": {
|
1221
|
-
"input": {
|
1222
|
-
},
|
1223
|
-
"output": {
|
1224
|
-
}
|
1225
|
-
},
|
1226
|
-
"description": "Starts a gateway service that was previously shut down.",
|
1227
|
-
"id": "to-start-a-gateway-service-1472150722315",
|
1228
|
-
"title": "To start a gateway service"
|
1229
|
-
}
|
1230
|
-
],
|
1231
|
-
"UpdateBandwidthRateLimit": [
|
1232
|
-
{
|
1233
|
-
"input": {
|
1234
|
-
"AverageDownloadRateLimitInBitsPerSec": 102400,
|
1235
|
-
"AverageUploadRateLimitInBitsPerSec": 51200,
|
1236
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1237
|
-
},
|
1238
|
-
"output": {
|
1239
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1240
|
-
},
|
1241
|
-
"comments": {
|
1242
|
-
"input": {
|
1243
|
-
},
|
1244
|
-
"output": {
|
1245
|
-
}
|
1246
|
-
},
|
1247
|
-
"description": "Updates the bandwidth rate limits of a gateway. Both the upload and download bandwidth rate limit can be set, or either one of the two. If a new limit is not set, the existing rate limit remains.",
|
1248
|
-
"id": "to-update-the-bandwidth-rate-limits-of-a-gateway-1472151016202",
|
1249
|
-
"title": "To update the bandwidth rate limits of a gateway"
|
1250
|
-
}
|
1251
|
-
],
|
1252
|
-
"UpdateChapCredentials": [
|
1253
|
-
{
|
1254
|
-
"input": {
|
1255
|
-
"InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com",
|
1256
|
-
"SecretToAuthenticateInitiator": "111111111111",
|
1257
|
-
"SecretToAuthenticateTarget": "222222222222",
|
1258
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
1259
|
-
},
|
1260
|
-
"output": {
|
1261
|
-
"InitiatorName": "iqn.1991-05.com.microsoft:computername.domain.example.com",
|
1262
|
-
"TargetARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume"
|
1263
|
-
},
|
1264
|
-
"comments": {
|
1265
|
-
"input": {
|
1266
|
-
},
|
1267
|
-
"output": {
|
1268
|
-
}
|
1269
|
-
},
|
1270
|
-
"description": "Updates the Challenge-Handshake Authentication Protocol (CHAP) credentials for a specified iSCSI target.",
|
1271
|
-
"id": "to-update-chap-credentials-for-an-iscsi-target-1472151325795",
|
1272
|
-
"title": "To update CHAP credentials for an iSCSI target"
|
1273
|
-
}
|
1274
|
-
],
|
1275
|
-
"UpdateGatewayInformation": [
|
1276
|
-
{
|
1277
|
-
"input": {
|
1278
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1279
|
-
"GatewayName": "MyGateway2",
|
1280
|
-
"GatewayTimezone": "GMT-12:00"
|
1281
|
-
},
|
1282
|
-
"output": {
|
1283
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1284
|
-
"GatewayName": ""
|
1285
|
-
},
|
1286
|
-
"comments": {
|
1287
|
-
"input": {
|
1288
|
-
},
|
1289
|
-
"output": {
|
1290
|
-
}
|
1291
|
-
},
|
1292
|
-
"description": "Updates a gateway's metadata, which includes the gateway's name and time zone.",
|
1293
|
-
"id": "to-update-a-gateways-metadata-1472151688693",
|
1294
|
-
"title": "To update a gateway's metadata"
|
1295
|
-
}
|
1296
|
-
],
|
1297
|
-
"UpdateGatewaySoftwareNow": [
|
1298
|
-
{
|
1299
|
-
"input": {
|
1300
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1301
|
-
},
|
1302
|
-
"output": {
|
1303
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1304
|
-
},
|
1305
|
-
"comments": {
|
1306
|
-
"input": {
|
1307
|
-
},
|
1308
|
-
"output": {
|
1309
|
-
}
|
1310
|
-
},
|
1311
|
-
"description": "Updates the gateway virtual machine (VM) software. The request immediately triggers the software update.",
|
1312
|
-
"id": "to-update-a-gateways-vm-software-1472152020929",
|
1313
|
-
"title": "To update a gateway's VM software"
|
1314
|
-
}
|
1315
|
-
],
|
1316
|
-
"UpdateMaintenanceStartTime": [
|
1317
|
-
{
|
1318
|
-
"input": {
|
1319
|
-
"DayOfWeek": 2,
|
1320
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B",
|
1321
|
-
"HourOfDay": 0,
|
1322
|
-
"MinuteOfHour": 30
|
1323
|
-
},
|
1324
|
-
"output": {
|
1325
|
-
"GatewayARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
|
1326
|
-
},
|
1327
|
-
"comments": {
|
1328
|
-
"input": {
|
1329
|
-
},
|
1330
|
-
"output": {
|
1331
|
-
}
|
1332
|
-
},
|
1333
|
-
"description": "Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is in your gateway's time zone.",
|
1334
|
-
"id": "to-update-a-gateways-maintenance-start-time-1472152552031",
|
1335
|
-
"title": "To update a gateway's maintenance start time"
|
1336
|
-
}
|
1337
|
-
],
|
1338
|
-
"UpdateSnapshotSchedule": [
|
1339
|
-
{
|
1340
|
-
"input": {
|
1341
|
-
"Description": "Hourly snapshot",
|
1342
|
-
"RecurrenceInHours": 1,
|
1343
|
-
"StartAt": 0,
|
1344
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
1345
|
-
},
|
1346
|
-
"output": {
|
1347
|
-
"VolumeARN": "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
|
1348
|
-
},
|
1349
|
-
"comments": {
|
1350
|
-
"input": {
|
1351
|
-
},
|
1352
|
-
"output": {
|
1353
|
-
}
|
1354
|
-
},
|
1355
|
-
"description": "Updates a snapshot schedule configured for a gateway volume.",
|
1356
|
-
"id": "to-update-a-volume-snapshot-schedule-1472152757068",
|
1357
|
-
"title": "To update a volume snapshot schedule"
|
1358
|
-
}
|
1359
|
-
],
|
1360
|
-
"UpdateVTLDeviceType": [
|
1361
|
-
{
|
1362
|
-
"input": {
|
1363
|
-
"DeviceType": "Medium Changer",
|
1364
|
-
"VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001"
|
1365
|
-
},
|
1366
|
-
"output": {
|
1367
|
-
"VTLDeviceARN": "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B/device/AMZN_SGW-1FAD4876_MEDIACHANGER_00001"
|
1368
|
-
},
|
1369
|
-
"comments": {
|
1370
|
-
"input": {
|
1371
|
-
},
|
1372
|
-
"output": {
|
1373
|
-
}
|
1374
|
-
},
|
1375
|
-
"description": "Updates the type of medium changer in a gateway-VTL after a gateway-VTL is activated.",
|
1376
|
-
"id": "to-update-a-vtl-device-type-1472153012967",
|
1377
|
-
"title": "To update a VTL device type"
|
1378
|
-
}
|
1379
|
-
]
|
1380
|
-
}
|
1381
|
-
}
|