aws-sdk-core 2.11.440 → 3.85.1
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 +88 -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 -6
- 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 +2126 -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 +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- 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 +103 -1167
- 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 -4133
- 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 -1208
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -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 -2288
- 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 -741
- 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 -1910
- 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 -2505
- 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 -1451
- 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 -3018
- 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 -29133
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -474
- 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 -3150
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -52
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -1434
- 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 -146
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -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 -1409
- data/apis/groundstation/2019-05-23/examples-1.json +0 -5
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -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 -5797
- 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 -2414
- 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 -2208
- data/apis/kafka/2018-11-14/paginators-1.json +0 -40
- 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 -2154
- 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 -2944
- 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 -2395
- 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 -8695
- 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 -1876
- 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 -3523
- 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 -7646
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -164
- 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 -2380
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
- 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 -9199
- 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 -2757
- 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 -9217
- 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 -3260
- 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 -1704
- 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 -5943
- 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,61 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeDBEngineVersions": {
|
4
|
-
"input_token": "Marker",
|
5
|
-
"limit_key": "MaxRecords",
|
6
|
-
"output_token": "Marker",
|
7
|
-
"result_key": "DBEngineVersions"
|
8
|
-
},
|
9
|
-
"DescribeDBInstances": {
|
10
|
-
"input_token": "Marker",
|
11
|
-
"limit_key": "MaxRecords",
|
12
|
-
"output_token": "Marker",
|
13
|
-
"result_key": "DBInstances"
|
14
|
-
},
|
15
|
-
"DescribeDBParameterGroups": {
|
16
|
-
"input_token": "Marker",
|
17
|
-
"limit_key": "MaxRecords",
|
18
|
-
"output_token": "Marker",
|
19
|
-
"result_key": "DBParameterGroups"
|
20
|
-
},
|
21
|
-
"DescribeDBParameters": {
|
22
|
-
"input_token": "Marker",
|
23
|
-
"limit_key": "MaxRecords",
|
24
|
-
"output_token": "Marker",
|
25
|
-
"result_key": "Parameters"
|
26
|
-
},
|
27
|
-
"DescribeDBSubnetGroups": {
|
28
|
-
"input_token": "Marker",
|
29
|
-
"limit_key": "MaxRecords",
|
30
|
-
"output_token": "Marker",
|
31
|
-
"result_key": "DBSubnetGroups"
|
32
|
-
},
|
33
|
-
"DescribeEngineDefaultParameters": {
|
34
|
-
"input_token": "Marker",
|
35
|
-
"limit_key": "MaxRecords",
|
36
|
-
"output_token": "EngineDefaults.Marker",
|
37
|
-
"result_key": "EngineDefaults.Parameters"
|
38
|
-
},
|
39
|
-
"DescribeEventSubscriptions": {
|
40
|
-
"input_token": "Marker",
|
41
|
-
"limit_key": "MaxRecords",
|
42
|
-
"output_token": "Marker",
|
43
|
-
"result_key": "EventSubscriptionsList"
|
44
|
-
},
|
45
|
-
"DescribeEvents": {
|
46
|
-
"input_token": "Marker",
|
47
|
-
"limit_key": "MaxRecords",
|
48
|
-
"output_token": "Marker",
|
49
|
-
"result_key": "Events"
|
50
|
-
},
|
51
|
-
"DescribeOrderableDBInstanceOptions": {
|
52
|
-
"input_token": "Marker",
|
53
|
-
"limit_key": "MaxRecords",
|
54
|
-
"output_token": "Marker",
|
55
|
-
"result_key": "OrderableDBInstanceOptions"
|
56
|
-
},
|
57
|
-
"ListTagsForResource": {
|
58
|
-
"result_key": "TagList"
|
59
|
-
}
|
60
|
-
}
|
61
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 1,
|
3
|
-
"defaultRegion": "us-west-2",
|
4
|
-
"testCases": [
|
5
|
-
{
|
6
|
-
"operationName": "DescribeDBEngineVersions",
|
7
|
-
"input": {},
|
8
|
-
"errorExpectedFromService": false
|
9
|
-
},
|
10
|
-
{
|
11
|
-
"operationName": "DescribeDBInstances",
|
12
|
-
"input": {
|
13
|
-
"DBInstanceIdentifier": "fake-id"
|
14
|
-
},
|
15
|
-
"errorExpectedFromService": true
|
16
|
-
}
|
17
|
-
]
|
18
|
-
}
|
@@ -1,90 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": 2,
|
3
|
-
"waiters": {
|
4
|
-
"DBInstanceAvailable": {
|
5
|
-
"delay": 30,
|
6
|
-
"operation": "DescribeDBInstances",
|
7
|
-
"maxAttempts": 60,
|
8
|
-
"acceptors": [
|
9
|
-
{
|
10
|
-
"expected": "available",
|
11
|
-
"matcher": "pathAll",
|
12
|
-
"state": "success",
|
13
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"expected": "deleted",
|
17
|
-
"matcher": "pathAny",
|
18
|
-
"state": "failure",
|
19
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
20
|
-
},
|
21
|
-
{
|
22
|
-
"expected": "deleting",
|
23
|
-
"matcher": "pathAny",
|
24
|
-
"state": "failure",
|
25
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"expected": "failed",
|
29
|
-
"matcher": "pathAny",
|
30
|
-
"state": "failure",
|
31
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"expected": "incompatible-restore",
|
35
|
-
"matcher": "pathAny",
|
36
|
-
"state": "failure",
|
37
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"expected": "incompatible-parameters",
|
41
|
-
"matcher": "pathAny",
|
42
|
-
"state": "failure",
|
43
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
44
|
-
}
|
45
|
-
]
|
46
|
-
},
|
47
|
-
"DBInstanceDeleted": {
|
48
|
-
"delay": 30,
|
49
|
-
"operation": "DescribeDBInstances",
|
50
|
-
"maxAttempts": 60,
|
51
|
-
"acceptors": [
|
52
|
-
{
|
53
|
-
"expected": "deleted",
|
54
|
-
"matcher": "pathAll",
|
55
|
-
"state": "success",
|
56
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
57
|
-
},
|
58
|
-
{
|
59
|
-
"expected": "DBInstanceNotFound",
|
60
|
-
"matcher": "error",
|
61
|
-
"state": "success"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"expected": "creating",
|
65
|
-
"matcher": "pathAny",
|
66
|
-
"state": "failure",
|
67
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
68
|
-
},
|
69
|
-
{
|
70
|
-
"expected": "modifying",
|
71
|
-
"matcher": "pathAny",
|
72
|
-
"state": "failure",
|
73
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"expected": "rebooting",
|
77
|
-
"matcher": "pathAny",
|
78
|
-
"state": "failure",
|
79
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"expected": "resetting-master-credentials",
|
83
|
-
"matcher": "pathAny",
|
84
|
-
"state": "failure",
|
85
|
-
"argument": "DBInstances[].DBInstanceStatus"
|
86
|
-
}
|
87
|
-
]
|
88
|
-
}
|
89
|
-
}
|
90
|
-
}
|
@@ -1,1588 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2019-07-05",
|
5
|
-
"endpointPrefix":"networkmanager",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceAbbreviation":"NetworkManager",
|
9
|
-
"serviceFullName":"AWS Network Manager",
|
10
|
-
"serviceId":"NetworkManager",
|
11
|
-
"signatureVersion":"v4",
|
12
|
-
"signingName":"networkmanager",
|
13
|
-
"uid":"networkmanager-2019-07-05"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"AssociateCustomerGateway":{
|
17
|
-
"name":"AssociateCustomerGateway",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/global-networks/{globalNetworkId}/customer-gateway-associations"
|
21
|
-
},
|
22
|
-
"input":{"shape":"AssociateCustomerGatewayRequest"},
|
23
|
-
"output":{"shape":"AssociateCustomerGatewayResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"ValidationException"},
|
26
|
-
{"shape":"ServiceQuotaExceededException"},
|
27
|
-
{"shape":"AccessDeniedException"},
|
28
|
-
{"shape":"ResourceNotFoundException"},
|
29
|
-
{"shape":"ConflictException"},
|
30
|
-
{"shape":"ThrottlingException"},
|
31
|
-
{"shape":"InternalServerException"}
|
32
|
-
]
|
33
|
-
},
|
34
|
-
"AssociateLink":{
|
35
|
-
"name":"AssociateLink",
|
36
|
-
"http":{
|
37
|
-
"method":"POST",
|
38
|
-
"requestUri":"/global-networks/{globalNetworkId}/link-associations"
|
39
|
-
},
|
40
|
-
"input":{"shape":"AssociateLinkRequest"},
|
41
|
-
"output":{"shape":"AssociateLinkResponse"},
|
42
|
-
"errors":[
|
43
|
-
{"shape":"ValidationException"},
|
44
|
-
{"shape":"ServiceQuotaExceededException"},
|
45
|
-
{"shape":"AccessDeniedException"},
|
46
|
-
{"shape":"ResourceNotFoundException"},
|
47
|
-
{"shape":"ConflictException"},
|
48
|
-
{"shape":"ThrottlingException"},
|
49
|
-
{"shape":"InternalServerException"}
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"CreateDevice":{
|
53
|
-
"name":"CreateDevice",
|
54
|
-
"http":{
|
55
|
-
"method":"POST",
|
56
|
-
"requestUri":"/global-networks/{globalNetworkId}/devices"
|
57
|
-
},
|
58
|
-
"input":{"shape":"CreateDeviceRequest"},
|
59
|
-
"output":{"shape":"CreateDeviceResponse"},
|
60
|
-
"errors":[
|
61
|
-
{"shape":"ValidationException"},
|
62
|
-
{"shape":"ServiceQuotaExceededException"},
|
63
|
-
{"shape":"AccessDeniedException"},
|
64
|
-
{"shape":"ResourceNotFoundException"},
|
65
|
-
{"shape":"ConflictException"},
|
66
|
-
{"shape":"ThrottlingException"},
|
67
|
-
{"shape":"InternalServerException"}
|
68
|
-
]
|
69
|
-
},
|
70
|
-
"CreateGlobalNetwork":{
|
71
|
-
"name":"CreateGlobalNetwork",
|
72
|
-
"http":{
|
73
|
-
"method":"POST",
|
74
|
-
"requestUri":"/global-networks"
|
75
|
-
},
|
76
|
-
"input":{"shape":"CreateGlobalNetworkRequest"},
|
77
|
-
"output":{"shape":"CreateGlobalNetworkResponse"},
|
78
|
-
"errors":[
|
79
|
-
{"shape":"ValidationException"},
|
80
|
-
{"shape":"ServiceQuotaExceededException"},
|
81
|
-
{"shape":"AccessDeniedException"},
|
82
|
-
{"shape":"ConflictException"},
|
83
|
-
{"shape":"ThrottlingException"},
|
84
|
-
{"shape":"InternalServerException"}
|
85
|
-
]
|
86
|
-
},
|
87
|
-
"CreateLink":{
|
88
|
-
"name":"CreateLink",
|
89
|
-
"http":{
|
90
|
-
"method":"POST",
|
91
|
-
"requestUri":"/global-networks/{globalNetworkId}/links"
|
92
|
-
},
|
93
|
-
"input":{"shape":"CreateLinkRequest"},
|
94
|
-
"output":{"shape":"CreateLinkResponse"},
|
95
|
-
"errors":[
|
96
|
-
{"shape":"ValidationException"},
|
97
|
-
{"shape":"ServiceQuotaExceededException"},
|
98
|
-
{"shape":"AccessDeniedException"},
|
99
|
-
{"shape":"ResourceNotFoundException"},
|
100
|
-
{"shape":"ConflictException"},
|
101
|
-
{"shape":"ThrottlingException"},
|
102
|
-
{"shape":"InternalServerException"}
|
103
|
-
]
|
104
|
-
},
|
105
|
-
"CreateSite":{
|
106
|
-
"name":"CreateSite",
|
107
|
-
"http":{
|
108
|
-
"method":"POST",
|
109
|
-
"requestUri":"/global-networks/{globalNetworkId}/sites"
|
110
|
-
},
|
111
|
-
"input":{"shape":"CreateSiteRequest"},
|
112
|
-
"output":{"shape":"CreateSiteResponse"},
|
113
|
-
"errors":[
|
114
|
-
{"shape":"ValidationException"},
|
115
|
-
{"shape":"ServiceQuotaExceededException"},
|
116
|
-
{"shape":"AccessDeniedException"},
|
117
|
-
{"shape":"ResourceNotFoundException"},
|
118
|
-
{"shape":"ConflictException"},
|
119
|
-
{"shape":"ThrottlingException"},
|
120
|
-
{"shape":"InternalServerException"}
|
121
|
-
]
|
122
|
-
},
|
123
|
-
"DeleteDevice":{
|
124
|
-
"name":"DeleteDevice",
|
125
|
-
"http":{
|
126
|
-
"method":"DELETE",
|
127
|
-
"requestUri":"/global-networks/{globalNetworkId}/devices/{deviceId}"
|
128
|
-
},
|
129
|
-
"input":{"shape":"DeleteDeviceRequest"},
|
130
|
-
"output":{"shape":"DeleteDeviceResponse"},
|
131
|
-
"errors":[
|
132
|
-
{"shape":"ValidationException"},
|
133
|
-
{"shape":"AccessDeniedException"},
|
134
|
-
{"shape":"ResourceNotFoundException"},
|
135
|
-
{"shape":"ConflictException"},
|
136
|
-
{"shape":"ThrottlingException"},
|
137
|
-
{"shape":"InternalServerException"}
|
138
|
-
]
|
139
|
-
},
|
140
|
-
"DeleteGlobalNetwork":{
|
141
|
-
"name":"DeleteGlobalNetwork",
|
142
|
-
"http":{
|
143
|
-
"method":"DELETE",
|
144
|
-
"requestUri":"/global-networks/{globalNetworkId}"
|
145
|
-
},
|
146
|
-
"input":{"shape":"DeleteGlobalNetworkRequest"},
|
147
|
-
"output":{"shape":"DeleteGlobalNetworkResponse"},
|
148
|
-
"errors":[
|
149
|
-
{"shape":"ValidationException"},
|
150
|
-
{"shape":"AccessDeniedException"},
|
151
|
-
{"shape":"ResourceNotFoundException"},
|
152
|
-
{"shape":"ConflictException"},
|
153
|
-
{"shape":"ThrottlingException"},
|
154
|
-
{"shape":"InternalServerException"}
|
155
|
-
]
|
156
|
-
},
|
157
|
-
"DeleteLink":{
|
158
|
-
"name":"DeleteLink",
|
159
|
-
"http":{
|
160
|
-
"method":"DELETE",
|
161
|
-
"requestUri":"/global-networks/{globalNetworkId}/links/{linkId}"
|
162
|
-
},
|
163
|
-
"input":{"shape":"DeleteLinkRequest"},
|
164
|
-
"output":{"shape":"DeleteLinkResponse"},
|
165
|
-
"errors":[
|
166
|
-
{"shape":"ValidationException"},
|
167
|
-
{"shape":"AccessDeniedException"},
|
168
|
-
{"shape":"ResourceNotFoundException"},
|
169
|
-
{"shape":"ConflictException"},
|
170
|
-
{"shape":"ThrottlingException"},
|
171
|
-
{"shape":"InternalServerException"}
|
172
|
-
]
|
173
|
-
},
|
174
|
-
"DeleteSite":{
|
175
|
-
"name":"DeleteSite",
|
176
|
-
"http":{
|
177
|
-
"method":"DELETE",
|
178
|
-
"requestUri":"/global-networks/{globalNetworkId}/sites/{siteId}"
|
179
|
-
},
|
180
|
-
"input":{"shape":"DeleteSiteRequest"},
|
181
|
-
"output":{"shape":"DeleteSiteResponse"},
|
182
|
-
"errors":[
|
183
|
-
{"shape":"ValidationException"},
|
184
|
-
{"shape":"AccessDeniedException"},
|
185
|
-
{"shape":"ResourceNotFoundException"},
|
186
|
-
{"shape":"ConflictException"},
|
187
|
-
{"shape":"ThrottlingException"},
|
188
|
-
{"shape":"InternalServerException"}
|
189
|
-
]
|
190
|
-
},
|
191
|
-
"DeregisterTransitGateway":{
|
192
|
-
"name":"DeregisterTransitGateway",
|
193
|
-
"http":{
|
194
|
-
"method":"DELETE",
|
195
|
-
"requestUri":"/global-networks/{globalNetworkId}/transit-gateway-registrations/{transitGatewayArn}"
|
196
|
-
},
|
197
|
-
"input":{"shape":"DeregisterTransitGatewayRequest"},
|
198
|
-
"output":{"shape":"DeregisterTransitGatewayResponse"},
|
199
|
-
"errors":[
|
200
|
-
{"shape":"ValidationException"},
|
201
|
-
{"shape":"AccessDeniedException"},
|
202
|
-
{"shape":"ResourceNotFoundException"},
|
203
|
-
{"shape":"ConflictException"},
|
204
|
-
{"shape":"ThrottlingException"},
|
205
|
-
{"shape":"InternalServerException"}
|
206
|
-
]
|
207
|
-
},
|
208
|
-
"DescribeGlobalNetworks":{
|
209
|
-
"name":"DescribeGlobalNetworks",
|
210
|
-
"http":{
|
211
|
-
"method":"GET",
|
212
|
-
"requestUri":"/global-networks"
|
213
|
-
},
|
214
|
-
"input":{"shape":"DescribeGlobalNetworksRequest"},
|
215
|
-
"output":{"shape":"DescribeGlobalNetworksResponse"},
|
216
|
-
"errors":[
|
217
|
-
{"shape":"ValidationException"},
|
218
|
-
{"shape":"AccessDeniedException"},
|
219
|
-
{"shape":"ResourceNotFoundException"},
|
220
|
-
{"shape":"ThrottlingException"},
|
221
|
-
{"shape":"InternalServerException"}
|
222
|
-
]
|
223
|
-
},
|
224
|
-
"DisassociateCustomerGateway":{
|
225
|
-
"name":"DisassociateCustomerGateway",
|
226
|
-
"http":{
|
227
|
-
"method":"DELETE",
|
228
|
-
"requestUri":"/global-networks/{globalNetworkId}/customer-gateway-associations/{customerGatewayArn}"
|
229
|
-
},
|
230
|
-
"input":{"shape":"DisassociateCustomerGatewayRequest"},
|
231
|
-
"output":{"shape":"DisassociateCustomerGatewayResponse"},
|
232
|
-
"errors":[
|
233
|
-
{"shape":"ValidationException"},
|
234
|
-
{"shape":"AccessDeniedException"},
|
235
|
-
{"shape":"ResourceNotFoundException"},
|
236
|
-
{"shape":"ConflictException"},
|
237
|
-
{"shape":"ThrottlingException"},
|
238
|
-
{"shape":"InternalServerException"}
|
239
|
-
]
|
240
|
-
},
|
241
|
-
"DisassociateLink":{
|
242
|
-
"name":"DisassociateLink",
|
243
|
-
"http":{
|
244
|
-
"method":"DELETE",
|
245
|
-
"requestUri":"/global-networks/{globalNetworkId}/link-associations"
|
246
|
-
},
|
247
|
-
"input":{"shape":"DisassociateLinkRequest"},
|
248
|
-
"output":{"shape":"DisassociateLinkResponse"},
|
249
|
-
"errors":[
|
250
|
-
{"shape":"ValidationException"},
|
251
|
-
{"shape":"AccessDeniedException"},
|
252
|
-
{"shape":"ResourceNotFoundException"},
|
253
|
-
{"shape":"ConflictException"},
|
254
|
-
{"shape":"ThrottlingException"},
|
255
|
-
{"shape":"InternalServerException"}
|
256
|
-
]
|
257
|
-
},
|
258
|
-
"GetCustomerGatewayAssociations":{
|
259
|
-
"name":"GetCustomerGatewayAssociations",
|
260
|
-
"http":{
|
261
|
-
"method":"GET",
|
262
|
-
"requestUri":"/global-networks/{globalNetworkId}/customer-gateway-associations"
|
263
|
-
},
|
264
|
-
"input":{"shape":"GetCustomerGatewayAssociationsRequest"},
|
265
|
-
"output":{"shape":"GetCustomerGatewayAssociationsResponse"},
|
266
|
-
"errors":[
|
267
|
-
{"shape":"ValidationException"},
|
268
|
-
{"shape":"AccessDeniedException"},
|
269
|
-
{"shape":"ResourceNotFoundException"},
|
270
|
-
{"shape":"ConflictException"},
|
271
|
-
{"shape":"ThrottlingException"},
|
272
|
-
{"shape":"InternalServerException"}
|
273
|
-
]
|
274
|
-
},
|
275
|
-
"GetDevices":{
|
276
|
-
"name":"GetDevices",
|
277
|
-
"http":{
|
278
|
-
"method":"GET",
|
279
|
-
"requestUri":"/global-networks/{globalNetworkId}/devices"
|
280
|
-
},
|
281
|
-
"input":{"shape":"GetDevicesRequest"},
|
282
|
-
"output":{"shape":"GetDevicesResponse"},
|
283
|
-
"errors":[
|
284
|
-
{"shape":"ValidationException"},
|
285
|
-
{"shape":"AccessDeniedException"},
|
286
|
-
{"shape":"ResourceNotFoundException"},
|
287
|
-
{"shape":"ThrottlingException"},
|
288
|
-
{"shape":"InternalServerException"}
|
289
|
-
]
|
290
|
-
},
|
291
|
-
"GetLinkAssociations":{
|
292
|
-
"name":"GetLinkAssociations",
|
293
|
-
"http":{
|
294
|
-
"method":"GET",
|
295
|
-
"requestUri":"/global-networks/{globalNetworkId}/link-associations"
|
296
|
-
},
|
297
|
-
"input":{"shape":"GetLinkAssociationsRequest"},
|
298
|
-
"output":{"shape":"GetLinkAssociationsResponse"},
|
299
|
-
"errors":[
|
300
|
-
{"shape":"ValidationException"},
|
301
|
-
{"shape":"AccessDeniedException"},
|
302
|
-
{"shape":"ResourceNotFoundException"},
|
303
|
-
{"shape":"ThrottlingException"},
|
304
|
-
{"shape":"InternalServerException"}
|
305
|
-
]
|
306
|
-
},
|
307
|
-
"GetLinks":{
|
308
|
-
"name":"GetLinks",
|
309
|
-
"http":{
|
310
|
-
"method":"GET",
|
311
|
-
"requestUri":"/global-networks/{globalNetworkId}/links"
|
312
|
-
},
|
313
|
-
"input":{"shape":"GetLinksRequest"},
|
314
|
-
"output":{"shape":"GetLinksResponse"},
|
315
|
-
"errors":[
|
316
|
-
{"shape":"ValidationException"},
|
317
|
-
{"shape":"AccessDeniedException"},
|
318
|
-
{"shape":"ResourceNotFoundException"},
|
319
|
-
{"shape":"ThrottlingException"},
|
320
|
-
{"shape":"InternalServerException"}
|
321
|
-
]
|
322
|
-
},
|
323
|
-
"GetSites":{
|
324
|
-
"name":"GetSites",
|
325
|
-
"http":{
|
326
|
-
"method":"GET",
|
327
|
-
"requestUri":"/global-networks/{globalNetworkId}/sites"
|
328
|
-
},
|
329
|
-
"input":{"shape":"GetSitesRequest"},
|
330
|
-
"output":{"shape":"GetSitesResponse"},
|
331
|
-
"errors":[
|
332
|
-
{"shape":"ValidationException"},
|
333
|
-
{"shape":"AccessDeniedException"},
|
334
|
-
{"shape":"ResourceNotFoundException"},
|
335
|
-
{"shape":"ThrottlingException"},
|
336
|
-
{"shape":"InternalServerException"}
|
337
|
-
]
|
338
|
-
},
|
339
|
-
"GetTransitGatewayRegistrations":{
|
340
|
-
"name":"GetTransitGatewayRegistrations",
|
341
|
-
"http":{
|
342
|
-
"method":"GET",
|
343
|
-
"requestUri":"/global-networks/{globalNetworkId}/transit-gateway-registrations"
|
344
|
-
},
|
345
|
-
"input":{"shape":"GetTransitGatewayRegistrationsRequest"},
|
346
|
-
"output":{"shape":"GetTransitGatewayRegistrationsResponse"},
|
347
|
-
"errors":[
|
348
|
-
{"shape":"ValidationException"},
|
349
|
-
{"shape":"AccessDeniedException"},
|
350
|
-
{"shape":"ResourceNotFoundException"},
|
351
|
-
{"shape":"ThrottlingException"},
|
352
|
-
{"shape":"InternalServerException"}
|
353
|
-
]
|
354
|
-
},
|
355
|
-
"ListTagsForResource":{
|
356
|
-
"name":"ListTagsForResource",
|
357
|
-
"http":{
|
358
|
-
"method":"GET",
|
359
|
-
"requestUri":"/tags/{resourceArn}"
|
360
|
-
},
|
361
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
362
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
363
|
-
"errors":[
|
364
|
-
{"shape":"ValidationException"},
|
365
|
-
{"shape":"AccessDeniedException"},
|
366
|
-
{"shape":"ResourceNotFoundException"},
|
367
|
-
{"shape":"ThrottlingException"},
|
368
|
-
{"shape":"InternalServerException"}
|
369
|
-
]
|
370
|
-
},
|
371
|
-
"RegisterTransitGateway":{
|
372
|
-
"name":"RegisterTransitGateway",
|
373
|
-
"http":{
|
374
|
-
"method":"POST",
|
375
|
-
"requestUri":"/global-networks/{globalNetworkId}/transit-gateway-registrations"
|
376
|
-
},
|
377
|
-
"input":{"shape":"RegisterTransitGatewayRequest"},
|
378
|
-
"output":{"shape":"RegisterTransitGatewayResponse"},
|
379
|
-
"errors":[
|
380
|
-
{"shape":"ValidationException"},
|
381
|
-
{"shape":"AccessDeniedException"},
|
382
|
-
{"shape":"ResourceNotFoundException"},
|
383
|
-
{"shape":"ConflictException"},
|
384
|
-
{"shape":"ThrottlingException"},
|
385
|
-
{"shape":"InternalServerException"}
|
386
|
-
]
|
387
|
-
},
|
388
|
-
"TagResource":{
|
389
|
-
"name":"TagResource",
|
390
|
-
"http":{
|
391
|
-
"method":"POST",
|
392
|
-
"requestUri":"/tags/{resourceArn}"
|
393
|
-
},
|
394
|
-
"input":{"shape":"TagResourceRequest"},
|
395
|
-
"output":{"shape":"TagResourceResponse"},
|
396
|
-
"errors":[
|
397
|
-
{"shape":"ValidationException"},
|
398
|
-
{"shape":"ServiceQuotaExceededException"},
|
399
|
-
{"shape":"AccessDeniedException"},
|
400
|
-
{"shape":"ResourceNotFoundException"},
|
401
|
-
{"shape":"ConflictException"},
|
402
|
-
{"shape":"ThrottlingException"},
|
403
|
-
{"shape":"InternalServerException"}
|
404
|
-
]
|
405
|
-
},
|
406
|
-
"UntagResource":{
|
407
|
-
"name":"UntagResource",
|
408
|
-
"http":{
|
409
|
-
"method":"DELETE",
|
410
|
-
"requestUri":"/tags/{resourceArn}"
|
411
|
-
},
|
412
|
-
"input":{"shape":"UntagResourceRequest"},
|
413
|
-
"output":{"shape":"UntagResourceResponse"},
|
414
|
-
"errors":[
|
415
|
-
{"shape":"ValidationException"},
|
416
|
-
{"shape":"AccessDeniedException"},
|
417
|
-
{"shape":"ResourceNotFoundException"},
|
418
|
-
{"shape":"ConflictException"},
|
419
|
-
{"shape":"ThrottlingException"},
|
420
|
-
{"shape":"InternalServerException"}
|
421
|
-
]
|
422
|
-
},
|
423
|
-
"UpdateDevice":{
|
424
|
-
"name":"UpdateDevice",
|
425
|
-
"http":{
|
426
|
-
"method":"PATCH",
|
427
|
-
"requestUri":"/global-networks/{globalNetworkId}/devices/{deviceId}"
|
428
|
-
},
|
429
|
-
"input":{"shape":"UpdateDeviceRequest"},
|
430
|
-
"output":{"shape":"UpdateDeviceResponse"},
|
431
|
-
"errors":[
|
432
|
-
{"shape":"ValidationException"},
|
433
|
-
{"shape":"AccessDeniedException"},
|
434
|
-
{"shape":"ResourceNotFoundException"},
|
435
|
-
{"shape":"ConflictException"},
|
436
|
-
{"shape":"ThrottlingException"},
|
437
|
-
{"shape":"InternalServerException"}
|
438
|
-
]
|
439
|
-
},
|
440
|
-
"UpdateGlobalNetwork":{
|
441
|
-
"name":"UpdateGlobalNetwork",
|
442
|
-
"http":{
|
443
|
-
"method":"PATCH",
|
444
|
-
"requestUri":"/global-networks/{globalNetworkId}"
|
445
|
-
},
|
446
|
-
"input":{"shape":"UpdateGlobalNetworkRequest"},
|
447
|
-
"output":{"shape":"UpdateGlobalNetworkResponse"},
|
448
|
-
"errors":[
|
449
|
-
{"shape":"ValidationException"},
|
450
|
-
{"shape":"AccessDeniedException"},
|
451
|
-
{"shape":"ResourceNotFoundException"},
|
452
|
-
{"shape":"ConflictException"},
|
453
|
-
{"shape":"ThrottlingException"},
|
454
|
-
{"shape":"InternalServerException"}
|
455
|
-
]
|
456
|
-
},
|
457
|
-
"UpdateLink":{
|
458
|
-
"name":"UpdateLink",
|
459
|
-
"http":{
|
460
|
-
"method":"PATCH",
|
461
|
-
"requestUri":"/global-networks/{globalNetworkId}/links/{linkId}"
|
462
|
-
},
|
463
|
-
"input":{"shape":"UpdateLinkRequest"},
|
464
|
-
"output":{"shape":"UpdateLinkResponse"},
|
465
|
-
"errors":[
|
466
|
-
{"shape":"ValidationException"},
|
467
|
-
{"shape":"ServiceQuotaExceededException"},
|
468
|
-
{"shape":"AccessDeniedException"},
|
469
|
-
{"shape":"ResourceNotFoundException"},
|
470
|
-
{"shape":"ConflictException"},
|
471
|
-
{"shape":"ThrottlingException"},
|
472
|
-
{"shape":"InternalServerException"}
|
473
|
-
]
|
474
|
-
},
|
475
|
-
"UpdateSite":{
|
476
|
-
"name":"UpdateSite",
|
477
|
-
"http":{
|
478
|
-
"method":"PATCH",
|
479
|
-
"requestUri":"/global-networks/{globalNetworkId}/sites/{siteId}"
|
480
|
-
},
|
481
|
-
"input":{"shape":"UpdateSiteRequest"},
|
482
|
-
"output":{"shape":"UpdateSiteResponse"},
|
483
|
-
"errors":[
|
484
|
-
{"shape":"ValidationException"},
|
485
|
-
{"shape":"AccessDeniedException"},
|
486
|
-
{"shape":"ResourceNotFoundException"},
|
487
|
-
{"shape":"ConflictException"},
|
488
|
-
{"shape":"ThrottlingException"},
|
489
|
-
{"shape":"InternalServerException"}
|
490
|
-
]
|
491
|
-
}
|
492
|
-
},
|
493
|
-
"shapes":{
|
494
|
-
"AccessDeniedException":{
|
495
|
-
"type":"structure",
|
496
|
-
"required":["Message"],
|
497
|
-
"members":{
|
498
|
-
"Message":{"shape":"String"}
|
499
|
-
},
|
500
|
-
"error":{"httpStatusCode":403},
|
501
|
-
"exception":true
|
502
|
-
},
|
503
|
-
"AssociateCustomerGatewayRequest":{
|
504
|
-
"type":"structure",
|
505
|
-
"required":[
|
506
|
-
"CustomerGatewayArn",
|
507
|
-
"GlobalNetworkId",
|
508
|
-
"DeviceId"
|
509
|
-
],
|
510
|
-
"members":{
|
511
|
-
"CustomerGatewayArn":{"shape":"String"},
|
512
|
-
"GlobalNetworkId":{
|
513
|
-
"shape":"String",
|
514
|
-
"location":"uri",
|
515
|
-
"locationName":"globalNetworkId"
|
516
|
-
},
|
517
|
-
"DeviceId":{"shape":"String"},
|
518
|
-
"LinkId":{"shape":"String"}
|
519
|
-
}
|
520
|
-
},
|
521
|
-
"AssociateCustomerGatewayResponse":{
|
522
|
-
"type":"structure",
|
523
|
-
"members":{
|
524
|
-
"CustomerGatewayAssociation":{"shape":"CustomerGatewayAssociation"}
|
525
|
-
}
|
526
|
-
},
|
527
|
-
"AssociateLinkRequest":{
|
528
|
-
"type":"structure",
|
529
|
-
"required":[
|
530
|
-
"GlobalNetworkId",
|
531
|
-
"DeviceId",
|
532
|
-
"LinkId"
|
533
|
-
],
|
534
|
-
"members":{
|
535
|
-
"GlobalNetworkId":{
|
536
|
-
"shape":"String",
|
537
|
-
"location":"uri",
|
538
|
-
"locationName":"globalNetworkId"
|
539
|
-
},
|
540
|
-
"DeviceId":{"shape":"String"},
|
541
|
-
"LinkId":{"shape":"String"}
|
542
|
-
}
|
543
|
-
},
|
544
|
-
"AssociateLinkResponse":{
|
545
|
-
"type":"structure",
|
546
|
-
"members":{
|
547
|
-
"LinkAssociation":{"shape":"LinkAssociation"}
|
548
|
-
}
|
549
|
-
},
|
550
|
-
"Bandwidth":{
|
551
|
-
"type":"structure",
|
552
|
-
"members":{
|
553
|
-
"UploadSpeed":{"shape":"Integer"},
|
554
|
-
"DownloadSpeed":{"shape":"Integer"}
|
555
|
-
}
|
556
|
-
},
|
557
|
-
"ConflictException":{
|
558
|
-
"type":"structure",
|
559
|
-
"required":[
|
560
|
-
"Message",
|
561
|
-
"ResourceId",
|
562
|
-
"ResourceType"
|
563
|
-
],
|
564
|
-
"members":{
|
565
|
-
"Message":{"shape":"String"},
|
566
|
-
"ResourceId":{"shape":"String"},
|
567
|
-
"ResourceType":{"shape":"String"}
|
568
|
-
},
|
569
|
-
"error":{"httpStatusCode":409},
|
570
|
-
"exception":true
|
571
|
-
},
|
572
|
-
"CreateDeviceRequest":{
|
573
|
-
"type":"structure",
|
574
|
-
"required":["GlobalNetworkId"],
|
575
|
-
"members":{
|
576
|
-
"GlobalNetworkId":{
|
577
|
-
"shape":"String",
|
578
|
-
"location":"uri",
|
579
|
-
"locationName":"globalNetworkId"
|
580
|
-
},
|
581
|
-
"Description":{"shape":"String"},
|
582
|
-
"Type":{"shape":"String"},
|
583
|
-
"Vendor":{"shape":"String"},
|
584
|
-
"Model":{"shape":"String"},
|
585
|
-
"SerialNumber":{"shape":"String"},
|
586
|
-
"Location":{"shape":"Location"},
|
587
|
-
"SiteId":{"shape":"String"},
|
588
|
-
"Tags":{"shape":"TagList"}
|
589
|
-
}
|
590
|
-
},
|
591
|
-
"CreateDeviceResponse":{
|
592
|
-
"type":"structure",
|
593
|
-
"members":{
|
594
|
-
"Device":{"shape":"Device"}
|
595
|
-
}
|
596
|
-
},
|
597
|
-
"CreateGlobalNetworkRequest":{
|
598
|
-
"type":"structure",
|
599
|
-
"members":{
|
600
|
-
"Description":{"shape":"String"},
|
601
|
-
"Tags":{"shape":"TagList"}
|
602
|
-
}
|
603
|
-
},
|
604
|
-
"CreateGlobalNetworkResponse":{
|
605
|
-
"type":"structure",
|
606
|
-
"members":{
|
607
|
-
"GlobalNetwork":{"shape":"GlobalNetwork"}
|
608
|
-
}
|
609
|
-
},
|
610
|
-
"CreateLinkRequest":{
|
611
|
-
"type":"structure",
|
612
|
-
"required":[
|
613
|
-
"GlobalNetworkId",
|
614
|
-
"Bandwidth",
|
615
|
-
"SiteId"
|
616
|
-
],
|
617
|
-
"members":{
|
618
|
-
"GlobalNetworkId":{
|
619
|
-
"shape":"String",
|
620
|
-
"location":"uri",
|
621
|
-
"locationName":"globalNetworkId"
|
622
|
-
},
|
623
|
-
"Description":{"shape":"String"},
|
624
|
-
"Type":{"shape":"String"},
|
625
|
-
"Bandwidth":{"shape":"Bandwidth"},
|
626
|
-
"Provider":{"shape":"String"},
|
627
|
-
"SiteId":{"shape":"String"},
|
628
|
-
"Tags":{"shape":"TagList"}
|
629
|
-
}
|
630
|
-
},
|
631
|
-
"CreateLinkResponse":{
|
632
|
-
"type":"structure",
|
633
|
-
"members":{
|
634
|
-
"Link":{"shape":"Link"}
|
635
|
-
}
|
636
|
-
},
|
637
|
-
"CreateSiteRequest":{
|
638
|
-
"type":"structure",
|
639
|
-
"required":["GlobalNetworkId"],
|
640
|
-
"members":{
|
641
|
-
"GlobalNetworkId":{
|
642
|
-
"shape":"String",
|
643
|
-
"location":"uri",
|
644
|
-
"locationName":"globalNetworkId"
|
645
|
-
},
|
646
|
-
"Description":{"shape":"String"},
|
647
|
-
"Location":{"shape":"Location"},
|
648
|
-
"Tags":{"shape":"TagList"}
|
649
|
-
}
|
650
|
-
},
|
651
|
-
"CreateSiteResponse":{
|
652
|
-
"type":"structure",
|
653
|
-
"members":{
|
654
|
-
"Site":{"shape":"Site"}
|
655
|
-
}
|
656
|
-
},
|
657
|
-
"CustomerGatewayAssociation":{
|
658
|
-
"type":"structure",
|
659
|
-
"members":{
|
660
|
-
"CustomerGatewayArn":{"shape":"String"},
|
661
|
-
"GlobalNetworkId":{"shape":"String"},
|
662
|
-
"DeviceId":{"shape":"String"},
|
663
|
-
"LinkId":{"shape":"String"},
|
664
|
-
"State":{"shape":"CustomerGatewayAssociationState"}
|
665
|
-
}
|
666
|
-
},
|
667
|
-
"CustomerGatewayAssociationList":{
|
668
|
-
"type":"list",
|
669
|
-
"member":{"shape":"CustomerGatewayAssociation"}
|
670
|
-
},
|
671
|
-
"CustomerGatewayAssociationState":{
|
672
|
-
"type":"string",
|
673
|
-
"enum":[
|
674
|
-
"PENDING",
|
675
|
-
"AVAILABLE",
|
676
|
-
"DELETING",
|
677
|
-
"DELETED"
|
678
|
-
]
|
679
|
-
},
|
680
|
-
"DateTime":{"type":"timestamp"},
|
681
|
-
"DeleteDeviceRequest":{
|
682
|
-
"type":"structure",
|
683
|
-
"required":[
|
684
|
-
"GlobalNetworkId",
|
685
|
-
"DeviceId"
|
686
|
-
],
|
687
|
-
"members":{
|
688
|
-
"GlobalNetworkId":{
|
689
|
-
"shape":"String",
|
690
|
-
"location":"uri",
|
691
|
-
"locationName":"globalNetworkId"
|
692
|
-
},
|
693
|
-
"DeviceId":{
|
694
|
-
"shape":"String",
|
695
|
-
"location":"uri",
|
696
|
-
"locationName":"deviceId"
|
697
|
-
}
|
698
|
-
}
|
699
|
-
},
|
700
|
-
"DeleteDeviceResponse":{
|
701
|
-
"type":"structure",
|
702
|
-
"members":{
|
703
|
-
"Device":{"shape":"Device"}
|
704
|
-
}
|
705
|
-
},
|
706
|
-
"DeleteGlobalNetworkRequest":{
|
707
|
-
"type":"structure",
|
708
|
-
"required":["GlobalNetworkId"],
|
709
|
-
"members":{
|
710
|
-
"GlobalNetworkId":{
|
711
|
-
"shape":"String",
|
712
|
-
"location":"uri",
|
713
|
-
"locationName":"globalNetworkId"
|
714
|
-
}
|
715
|
-
}
|
716
|
-
},
|
717
|
-
"DeleteGlobalNetworkResponse":{
|
718
|
-
"type":"structure",
|
719
|
-
"members":{
|
720
|
-
"GlobalNetwork":{"shape":"GlobalNetwork"}
|
721
|
-
}
|
722
|
-
},
|
723
|
-
"DeleteLinkRequest":{
|
724
|
-
"type":"structure",
|
725
|
-
"required":[
|
726
|
-
"GlobalNetworkId",
|
727
|
-
"LinkId"
|
728
|
-
],
|
729
|
-
"members":{
|
730
|
-
"GlobalNetworkId":{
|
731
|
-
"shape":"String",
|
732
|
-
"location":"uri",
|
733
|
-
"locationName":"globalNetworkId"
|
734
|
-
},
|
735
|
-
"LinkId":{
|
736
|
-
"shape":"String",
|
737
|
-
"location":"uri",
|
738
|
-
"locationName":"linkId"
|
739
|
-
}
|
740
|
-
}
|
741
|
-
},
|
742
|
-
"DeleteLinkResponse":{
|
743
|
-
"type":"structure",
|
744
|
-
"members":{
|
745
|
-
"Link":{"shape":"Link"}
|
746
|
-
}
|
747
|
-
},
|
748
|
-
"DeleteSiteRequest":{
|
749
|
-
"type":"structure",
|
750
|
-
"required":[
|
751
|
-
"GlobalNetworkId",
|
752
|
-
"SiteId"
|
753
|
-
],
|
754
|
-
"members":{
|
755
|
-
"GlobalNetworkId":{
|
756
|
-
"shape":"String",
|
757
|
-
"location":"uri",
|
758
|
-
"locationName":"globalNetworkId"
|
759
|
-
},
|
760
|
-
"SiteId":{
|
761
|
-
"shape":"String",
|
762
|
-
"location":"uri",
|
763
|
-
"locationName":"siteId"
|
764
|
-
}
|
765
|
-
}
|
766
|
-
},
|
767
|
-
"DeleteSiteResponse":{
|
768
|
-
"type":"structure",
|
769
|
-
"members":{
|
770
|
-
"Site":{"shape":"Site"}
|
771
|
-
}
|
772
|
-
},
|
773
|
-
"DeregisterTransitGatewayRequest":{
|
774
|
-
"type":"structure",
|
775
|
-
"required":[
|
776
|
-
"GlobalNetworkId",
|
777
|
-
"TransitGatewayArn"
|
778
|
-
],
|
779
|
-
"members":{
|
780
|
-
"GlobalNetworkId":{
|
781
|
-
"shape":"String",
|
782
|
-
"location":"uri",
|
783
|
-
"locationName":"globalNetworkId"
|
784
|
-
},
|
785
|
-
"TransitGatewayArn":{
|
786
|
-
"shape":"String",
|
787
|
-
"location":"uri",
|
788
|
-
"locationName":"transitGatewayArn"
|
789
|
-
}
|
790
|
-
}
|
791
|
-
},
|
792
|
-
"DeregisterTransitGatewayResponse":{
|
793
|
-
"type":"structure",
|
794
|
-
"members":{
|
795
|
-
"TransitGatewayRegistration":{"shape":"TransitGatewayRegistration"}
|
796
|
-
}
|
797
|
-
},
|
798
|
-
"DescribeGlobalNetworksRequest":{
|
799
|
-
"type":"structure",
|
800
|
-
"members":{
|
801
|
-
"GlobalNetworkIds":{
|
802
|
-
"shape":"StringList",
|
803
|
-
"location":"querystring",
|
804
|
-
"locationName":"globalNetworkIds"
|
805
|
-
},
|
806
|
-
"MaxResults":{
|
807
|
-
"shape":"MaxResults",
|
808
|
-
"location":"querystring",
|
809
|
-
"locationName":"maxResults"
|
810
|
-
},
|
811
|
-
"NextToken":{
|
812
|
-
"shape":"String",
|
813
|
-
"location":"querystring",
|
814
|
-
"locationName":"nextToken"
|
815
|
-
}
|
816
|
-
}
|
817
|
-
},
|
818
|
-
"DescribeGlobalNetworksResponse":{
|
819
|
-
"type":"structure",
|
820
|
-
"members":{
|
821
|
-
"GlobalNetworks":{"shape":"GlobalNetworkList"},
|
822
|
-
"NextToken":{"shape":"String"}
|
823
|
-
}
|
824
|
-
},
|
825
|
-
"Device":{
|
826
|
-
"type":"structure",
|
827
|
-
"members":{
|
828
|
-
"DeviceId":{"shape":"String"},
|
829
|
-
"DeviceArn":{"shape":"String"},
|
830
|
-
"GlobalNetworkId":{"shape":"String"},
|
831
|
-
"Description":{"shape":"String"},
|
832
|
-
"Type":{"shape":"String"},
|
833
|
-
"Vendor":{"shape":"String"},
|
834
|
-
"Model":{"shape":"String"},
|
835
|
-
"SerialNumber":{"shape":"String"},
|
836
|
-
"Location":{"shape":"Location"},
|
837
|
-
"SiteId":{"shape":"String"},
|
838
|
-
"CreatedAt":{"shape":"DateTime"},
|
839
|
-
"State":{"shape":"DeviceState"},
|
840
|
-
"Tags":{"shape":"TagList"}
|
841
|
-
}
|
842
|
-
},
|
843
|
-
"DeviceList":{
|
844
|
-
"type":"list",
|
845
|
-
"member":{"shape":"Device"}
|
846
|
-
},
|
847
|
-
"DeviceState":{
|
848
|
-
"type":"string",
|
849
|
-
"enum":[
|
850
|
-
"PENDING",
|
851
|
-
"AVAILABLE",
|
852
|
-
"DELETING",
|
853
|
-
"UPDATING"
|
854
|
-
]
|
855
|
-
},
|
856
|
-
"DisassociateCustomerGatewayRequest":{
|
857
|
-
"type":"structure",
|
858
|
-
"required":[
|
859
|
-
"GlobalNetworkId",
|
860
|
-
"CustomerGatewayArn"
|
861
|
-
],
|
862
|
-
"members":{
|
863
|
-
"GlobalNetworkId":{
|
864
|
-
"shape":"String",
|
865
|
-
"location":"uri",
|
866
|
-
"locationName":"globalNetworkId"
|
867
|
-
},
|
868
|
-
"CustomerGatewayArn":{
|
869
|
-
"shape":"String",
|
870
|
-
"location":"uri",
|
871
|
-
"locationName":"customerGatewayArn"
|
872
|
-
}
|
873
|
-
}
|
874
|
-
},
|
875
|
-
"DisassociateCustomerGatewayResponse":{
|
876
|
-
"type":"structure",
|
877
|
-
"members":{
|
878
|
-
"CustomerGatewayAssociation":{"shape":"CustomerGatewayAssociation"}
|
879
|
-
}
|
880
|
-
},
|
881
|
-
"DisassociateLinkRequest":{
|
882
|
-
"type":"structure",
|
883
|
-
"required":[
|
884
|
-
"GlobalNetworkId",
|
885
|
-
"DeviceId",
|
886
|
-
"LinkId"
|
887
|
-
],
|
888
|
-
"members":{
|
889
|
-
"GlobalNetworkId":{
|
890
|
-
"shape":"String",
|
891
|
-
"location":"uri",
|
892
|
-
"locationName":"globalNetworkId"
|
893
|
-
},
|
894
|
-
"DeviceId":{
|
895
|
-
"shape":"String",
|
896
|
-
"location":"querystring",
|
897
|
-
"locationName":"deviceId"
|
898
|
-
},
|
899
|
-
"LinkId":{
|
900
|
-
"shape":"String",
|
901
|
-
"location":"querystring",
|
902
|
-
"locationName":"linkId"
|
903
|
-
}
|
904
|
-
}
|
905
|
-
},
|
906
|
-
"DisassociateLinkResponse":{
|
907
|
-
"type":"structure",
|
908
|
-
"members":{
|
909
|
-
"LinkAssociation":{"shape":"LinkAssociation"}
|
910
|
-
}
|
911
|
-
},
|
912
|
-
"GetCustomerGatewayAssociationsRequest":{
|
913
|
-
"type":"structure",
|
914
|
-
"required":["GlobalNetworkId"],
|
915
|
-
"members":{
|
916
|
-
"GlobalNetworkId":{
|
917
|
-
"shape":"String",
|
918
|
-
"location":"uri",
|
919
|
-
"locationName":"globalNetworkId"
|
920
|
-
},
|
921
|
-
"CustomerGatewayArns":{
|
922
|
-
"shape":"StringList",
|
923
|
-
"location":"querystring",
|
924
|
-
"locationName":"customerGatewayArns"
|
925
|
-
},
|
926
|
-
"MaxResults":{
|
927
|
-
"shape":"MaxResults",
|
928
|
-
"location":"querystring",
|
929
|
-
"locationName":"maxResults"
|
930
|
-
},
|
931
|
-
"NextToken":{
|
932
|
-
"shape":"String",
|
933
|
-
"location":"querystring",
|
934
|
-
"locationName":"nextToken"
|
935
|
-
}
|
936
|
-
}
|
937
|
-
},
|
938
|
-
"GetCustomerGatewayAssociationsResponse":{
|
939
|
-
"type":"structure",
|
940
|
-
"members":{
|
941
|
-
"CustomerGatewayAssociations":{"shape":"CustomerGatewayAssociationList"},
|
942
|
-
"NextToken":{"shape":"String"}
|
943
|
-
}
|
944
|
-
},
|
945
|
-
"GetDevicesRequest":{
|
946
|
-
"type":"structure",
|
947
|
-
"required":["GlobalNetworkId"],
|
948
|
-
"members":{
|
949
|
-
"GlobalNetworkId":{
|
950
|
-
"shape":"String",
|
951
|
-
"location":"uri",
|
952
|
-
"locationName":"globalNetworkId"
|
953
|
-
},
|
954
|
-
"DeviceIds":{
|
955
|
-
"shape":"StringList",
|
956
|
-
"location":"querystring",
|
957
|
-
"locationName":"deviceIds"
|
958
|
-
},
|
959
|
-
"SiteId":{
|
960
|
-
"shape":"String",
|
961
|
-
"location":"querystring",
|
962
|
-
"locationName":"siteId"
|
963
|
-
},
|
964
|
-
"MaxResults":{
|
965
|
-
"shape":"MaxResults",
|
966
|
-
"location":"querystring",
|
967
|
-
"locationName":"maxResults"
|
968
|
-
},
|
969
|
-
"NextToken":{
|
970
|
-
"shape":"String",
|
971
|
-
"location":"querystring",
|
972
|
-
"locationName":"nextToken"
|
973
|
-
}
|
974
|
-
}
|
975
|
-
},
|
976
|
-
"GetDevicesResponse":{
|
977
|
-
"type":"structure",
|
978
|
-
"members":{
|
979
|
-
"Devices":{"shape":"DeviceList"},
|
980
|
-
"NextToken":{"shape":"String"}
|
981
|
-
}
|
982
|
-
},
|
983
|
-
"GetLinkAssociationsRequest":{
|
984
|
-
"type":"structure",
|
985
|
-
"required":["GlobalNetworkId"],
|
986
|
-
"members":{
|
987
|
-
"GlobalNetworkId":{
|
988
|
-
"shape":"String",
|
989
|
-
"location":"uri",
|
990
|
-
"locationName":"globalNetworkId"
|
991
|
-
},
|
992
|
-
"DeviceId":{
|
993
|
-
"shape":"String",
|
994
|
-
"location":"querystring",
|
995
|
-
"locationName":"deviceId"
|
996
|
-
},
|
997
|
-
"LinkId":{
|
998
|
-
"shape":"String",
|
999
|
-
"location":"querystring",
|
1000
|
-
"locationName":"linkId"
|
1001
|
-
},
|
1002
|
-
"MaxResults":{
|
1003
|
-
"shape":"MaxResults",
|
1004
|
-
"location":"querystring",
|
1005
|
-
"locationName":"maxResults"
|
1006
|
-
},
|
1007
|
-
"NextToken":{
|
1008
|
-
"shape":"String",
|
1009
|
-
"location":"querystring",
|
1010
|
-
"locationName":"nextToken"
|
1011
|
-
}
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
"GetLinkAssociationsResponse":{
|
1015
|
-
"type":"structure",
|
1016
|
-
"members":{
|
1017
|
-
"LinkAssociations":{"shape":"LinkAssociationList"},
|
1018
|
-
"NextToken":{"shape":"String"}
|
1019
|
-
}
|
1020
|
-
},
|
1021
|
-
"GetLinksRequest":{
|
1022
|
-
"type":"structure",
|
1023
|
-
"required":["GlobalNetworkId"],
|
1024
|
-
"members":{
|
1025
|
-
"GlobalNetworkId":{
|
1026
|
-
"shape":"String",
|
1027
|
-
"location":"uri",
|
1028
|
-
"locationName":"globalNetworkId"
|
1029
|
-
},
|
1030
|
-
"LinkIds":{
|
1031
|
-
"shape":"StringList",
|
1032
|
-
"location":"querystring",
|
1033
|
-
"locationName":"linkIds"
|
1034
|
-
},
|
1035
|
-
"SiteId":{
|
1036
|
-
"shape":"String",
|
1037
|
-
"location":"querystring",
|
1038
|
-
"locationName":"siteId"
|
1039
|
-
},
|
1040
|
-
"Type":{
|
1041
|
-
"shape":"String",
|
1042
|
-
"location":"querystring",
|
1043
|
-
"locationName":"type"
|
1044
|
-
},
|
1045
|
-
"Provider":{
|
1046
|
-
"shape":"String",
|
1047
|
-
"location":"querystring",
|
1048
|
-
"locationName":"provider"
|
1049
|
-
},
|
1050
|
-
"MaxResults":{
|
1051
|
-
"shape":"MaxResults",
|
1052
|
-
"location":"querystring",
|
1053
|
-
"locationName":"maxResults"
|
1054
|
-
},
|
1055
|
-
"NextToken":{
|
1056
|
-
"shape":"String",
|
1057
|
-
"location":"querystring",
|
1058
|
-
"locationName":"nextToken"
|
1059
|
-
}
|
1060
|
-
}
|
1061
|
-
},
|
1062
|
-
"GetLinksResponse":{
|
1063
|
-
"type":"structure",
|
1064
|
-
"members":{
|
1065
|
-
"Links":{"shape":"LinkList"},
|
1066
|
-
"NextToken":{"shape":"String"}
|
1067
|
-
}
|
1068
|
-
},
|
1069
|
-
"GetSitesRequest":{
|
1070
|
-
"type":"structure",
|
1071
|
-
"required":["GlobalNetworkId"],
|
1072
|
-
"members":{
|
1073
|
-
"GlobalNetworkId":{
|
1074
|
-
"shape":"String",
|
1075
|
-
"location":"uri",
|
1076
|
-
"locationName":"globalNetworkId"
|
1077
|
-
},
|
1078
|
-
"SiteIds":{
|
1079
|
-
"shape":"StringList",
|
1080
|
-
"location":"querystring",
|
1081
|
-
"locationName":"siteIds"
|
1082
|
-
},
|
1083
|
-
"MaxResults":{
|
1084
|
-
"shape":"MaxResults",
|
1085
|
-
"location":"querystring",
|
1086
|
-
"locationName":"maxResults"
|
1087
|
-
},
|
1088
|
-
"NextToken":{
|
1089
|
-
"shape":"String",
|
1090
|
-
"location":"querystring",
|
1091
|
-
"locationName":"nextToken"
|
1092
|
-
}
|
1093
|
-
}
|
1094
|
-
},
|
1095
|
-
"GetSitesResponse":{
|
1096
|
-
"type":"structure",
|
1097
|
-
"members":{
|
1098
|
-
"Sites":{"shape":"SiteList"},
|
1099
|
-
"NextToken":{"shape":"String"}
|
1100
|
-
}
|
1101
|
-
},
|
1102
|
-
"GetTransitGatewayRegistrationsRequest":{
|
1103
|
-
"type":"structure",
|
1104
|
-
"required":["GlobalNetworkId"],
|
1105
|
-
"members":{
|
1106
|
-
"GlobalNetworkId":{
|
1107
|
-
"shape":"String",
|
1108
|
-
"location":"uri",
|
1109
|
-
"locationName":"globalNetworkId"
|
1110
|
-
},
|
1111
|
-
"TransitGatewayArns":{
|
1112
|
-
"shape":"StringList",
|
1113
|
-
"location":"querystring",
|
1114
|
-
"locationName":"transitGatewayArns"
|
1115
|
-
},
|
1116
|
-
"MaxResults":{
|
1117
|
-
"shape":"MaxResults",
|
1118
|
-
"location":"querystring",
|
1119
|
-
"locationName":"maxResults"
|
1120
|
-
},
|
1121
|
-
"NextToken":{
|
1122
|
-
"shape":"String",
|
1123
|
-
"location":"querystring",
|
1124
|
-
"locationName":"nextToken"
|
1125
|
-
}
|
1126
|
-
}
|
1127
|
-
},
|
1128
|
-
"GetTransitGatewayRegistrationsResponse":{
|
1129
|
-
"type":"structure",
|
1130
|
-
"members":{
|
1131
|
-
"TransitGatewayRegistrations":{"shape":"TransitGatewayRegistrationList"},
|
1132
|
-
"NextToken":{"shape":"String"}
|
1133
|
-
}
|
1134
|
-
},
|
1135
|
-
"GlobalNetwork":{
|
1136
|
-
"type":"structure",
|
1137
|
-
"members":{
|
1138
|
-
"GlobalNetworkId":{"shape":"String"},
|
1139
|
-
"GlobalNetworkArn":{"shape":"String"},
|
1140
|
-
"Description":{"shape":"String"},
|
1141
|
-
"CreatedAt":{"shape":"DateTime"},
|
1142
|
-
"State":{"shape":"GlobalNetworkState"},
|
1143
|
-
"Tags":{"shape":"TagList"}
|
1144
|
-
}
|
1145
|
-
},
|
1146
|
-
"GlobalNetworkList":{
|
1147
|
-
"type":"list",
|
1148
|
-
"member":{"shape":"GlobalNetwork"}
|
1149
|
-
},
|
1150
|
-
"GlobalNetworkState":{
|
1151
|
-
"type":"string",
|
1152
|
-
"enum":[
|
1153
|
-
"PENDING",
|
1154
|
-
"AVAILABLE",
|
1155
|
-
"DELETING",
|
1156
|
-
"UPDATING"
|
1157
|
-
]
|
1158
|
-
},
|
1159
|
-
"Integer":{"type":"integer"},
|
1160
|
-
"InternalServerException":{
|
1161
|
-
"type":"structure",
|
1162
|
-
"required":["Message"],
|
1163
|
-
"members":{
|
1164
|
-
"Message":{"shape":"String"},
|
1165
|
-
"RetryAfterSeconds":{
|
1166
|
-
"shape":"RetryAfterSeconds",
|
1167
|
-
"location":"header",
|
1168
|
-
"locationName":"Retry-After"
|
1169
|
-
}
|
1170
|
-
},
|
1171
|
-
"error":{"httpStatusCode":500},
|
1172
|
-
"exception":true,
|
1173
|
-
"fault":true
|
1174
|
-
},
|
1175
|
-
"Link":{
|
1176
|
-
"type":"structure",
|
1177
|
-
"members":{
|
1178
|
-
"LinkId":{"shape":"String"},
|
1179
|
-
"LinkArn":{"shape":"String"},
|
1180
|
-
"GlobalNetworkId":{"shape":"String"},
|
1181
|
-
"SiteId":{"shape":"String"},
|
1182
|
-
"Description":{"shape":"String"},
|
1183
|
-
"Type":{"shape":"String"},
|
1184
|
-
"Bandwidth":{"shape":"Bandwidth"},
|
1185
|
-
"Provider":{"shape":"String"},
|
1186
|
-
"CreatedAt":{"shape":"DateTime"},
|
1187
|
-
"State":{"shape":"LinkState"},
|
1188
|
-
"Tags":{"shape":"TagList"}
|
1189
|
-
}
|
1190
|
-
},
|
1191
|
-
"LinkAssociation":{
|
1192
|
-
"type":"structure",
|
1193
|
-
"members":{
|
1194
|
-
"GlobalNetworkId":{"shape":"String"},
|
1195
|
-
"DeviceId":{"shape":"String"},
|
1196
|
-
"LinkId":{"shape":"String"},
|
1197
|
-
"LinkAssociationState":{"shape":"LinkAssociationState"}
|
1198
|
-
}
|
1199
|
-
},
|
1200
|
-
"LinkAssociationList":{
|
1201
|
-
"type":"list",
|
1202
|
-
"member":{"shape":"LinkAssociation"}
|
1203
|
-
},
|
1204
|
-
"LinkAssociationState":{
|
1205
|
-
"type":"string",
|
1206
|
-
"enum":[
|
1207
|
-
"PENDING",
|
1208
|
-
"AVAILABLE",
|
1209
|
-
"DELETING",
|
1210
|
-
"DELETED"
|
1211
|
-
]
|
1212
|
-
},
|
1213
|
-
"LinkList":{
|
1214
|
-
"type":"list",
|
1215
|
-
"member":{"shape":"Link"}
|
1216
|
-
},
|
1217
|
-
"LinkState":{
|
1218
|
-
"type":"string",
|
1219
|
-
"enum":[
|
1220
|
-
"PENDING",
|
1221
|
-
"AVAILABLE",
|
1222
|
-
"DELETING",
|
1223
|
-
"UPDATING"
|
1224
|
-
]
|
1225
|
-
},
|
1226
|
-
"ListTagsForResourceRequest":{
|
1227
|
-
"type":"structure",
|
1228
|
-
"required":["ResourceArn"],
|
1229
|
-
"members":{
|
1230
|
-
"ResourceArn":{
|
1231
|
-
"shape":"ResourceARN",
|
1232
|
-
"location":"uri",
|
1233
|
-
"locationName":"resourceArn"
|
1234
|
-
}
|
1235
|
-
}
|
1236
|
-
},
|
1237
|
-
"ListTagsForResourceResponse":{
|
1238
|
-
"type":"structure",
|
1239
|
-
"members":{
|
1240
|
-
"TagList":{"shape":"TagList"}
|
1241
|
-
}
|
1242
|
-
},
|
1243
|
-
"Location":{
|
1244
|
-
"type":"structure",
|
1245
|
-
"members":{
|
1246
|
-
"Address":{"shape":"String"},
|
1247
|
-
"Latitude":{"shape":"String"},
|
1248
|
-
"Longitude":{"shape":"String"}
|
1249
|
-
}
|
1250
|
-
},
|
1251
|
-
"MaxResults":{
|
1252
|
-
"type":"integer",
|
1253
|
-
"max":500,
|
1254
|
-
"min":1
|
1255
|
-
},
|
1256
|
-
"RegisterTransitGatewayRequest":{
|
1257
|
-
"type":"structure",
|
1258
|
-
"required":[
|
1259
|
-
"GlobalNetworkId",
|
1260
|
-
"TransitGatewayArn"
|
1261
|
-
],
|
1262
|
-
"members":{
|
1263
|
-
"GlobalNetworkId":{
|
1264
|
-
"shape":"String",
|
1265
|
-
"location":"uri",
|
1266
|
-
"locationName":"globalNetworkId"
|
1267
|
-
},
|
1268
|
-
"TransitGatewayArn":{"shape":"String"}
|
1269
|
-
}
|
1270
|
-
},
|
1271
|
-
"RegisterTransitGatewayResponse":{
|
1272
|
-
"type":"structure",
|
1273
|
-
"members":{
|
1274
|
-
"TransitGatewayRegistration":{"shape":"TransitGatewayRegistration"}
|
1275
|
-
}
|
1276
|
-
},
|
1277
|
-
"ResourceARN":{"type":"string"},
|
1278
|
-
"ResourceNotFoundException":{
|
1279
|
-
"type":"structure",
|
1280
|
-
"required":[
|
1281
|
-
"Message",
|
1282
|
-
"ResourceId",
|
1283
|
-
"ResourceType"
|
1284
|
-
],
|
1285
|
-
"members":{
|
1286
|
-
"Message":{"shape":"String"},
|
1287
|
-
"ResourceId":{"shape":"String"},
|
1288
|
-
"ResourceType":{"shape":"String"}
|
1289
|
-
},
|
1290
|
-
"error":{"httpStatusCode":404},
|
1291
|
-
"exception":true
|
1292
|
-
},
|
1293
|
-
"RetryAfterSeconds":{"type":"integer"},
|
1294
|
-
"ServiceQuotaExceededException":{
|
1295
|
-
"type":"structure",
|
1296
|
-
"required":[
|
1297
|
-
"Message",
|
1298
|
-
"LimitCode",
|
1299
|
-
"ServiceCode"
|
1300
|
-
],
|
1301
|
-
"members":{
|
1302
|
-
"Message":{"shape":"String"},
|
1303
|
-
"ResourceId":{"shape":"String"},
|
1304
|
-
"ResourceType":{"shape":"String"},
|
1305
|
-
"LimitCode":{"shape":"String"},
|
1306
|
-
"ServiceCode":{"shape":"String"}
|
1307
|
-
},
|
1308
|
-
"error":{"httpStatusCode":402},
|
1309
|
-
"exception":true
|
1310
|
-
},
|
1311
|
-
"Site":{
|
1312
|
-
"type":"structure",
|
1313
|
-
"members":{
|
1314
|
-
"SiteId":{"shape":"String"},
|
1315
|
-
"SiteArn":{"shape":"String"},
|
1316
|
-
"GlobalNetworkId":{"shape":"String"},
|
1317
|
-
"Description":{"shape":"String"},
|
1318
|
-
"Location":{"shape":"Location"},
|
1319
|
-
"CreatedAt":{"shape":"DateTime"},
|
1320
|
-
"State":{"shape":"SiteState"},
|
1321
|
-
"Tags":{"shape":"TagList"}
|
1322
|
-
}
|
1323
|
-
},
|
1324
|
-
"SiteList":{
|
1325
|
-
"type":"list",
|
1326
|
-
"member":{"shape":"Site"}
|
1327
|
-
},
|
1328
|
-
"SiteState":{
|
1329
|
-
"type":"string",
|
1330
|
-
"enum":[
|
1331
|
-
"PENDING",
|
1332
|
-
"AVAILABLE",
|
1333
|
-
"DELETING",
|
1334
|
-
"UPDATING"
|
1335
|
-
]
|
1336
|
-
},
|
1337
|
-
"String":{"type":"string"},
|
1338
|
-
"StringList":{
|
1339
|
-
"type":"list",
|
1340
|
-
"member":{"shape":"String"}
|
1341
|
-
},
|
1342
|
-
"Tag":{
|
1343
|
-
"type":"structure",
|
1344
|
-
"members":{
|
1345
|
-
"Key":{"shape":"TagKey"},
|
1346
|
-
"Value":{"shape":"TagValue"}
|
1347
|
-
}
|
1348
|
-
},
|
1349
|
-
"TagKey":{"type":"string"},
|
1350
|
-
"TagKeyList":{
|
1351
|
-
"type":"list",
|
1352
|
-
"member":{"shape":"TagKey"}
|
1353
|
-
},
|
1354
|
-
"TagList":{
|
1355
|
-
"type":"list",
|
1356
|
-
"member":{"shape":"Tag"}
|
1357
|
-
},
|
1358
|
-
"TagResourceRequest":{
|
1359
|
-
"type":"structure",
|
1360
|
-
"required":[
|
1361
|
-
"ResourceArn",
|
1362
|
-
"Tags"
|
1363
|
-
],
|
1364
|
-
"members":{
|
1365
|
-
"ResourceArn":{
|
1366
|
-
"shape":"ResourceARN",
|
1367
|
-
"location":"uri",
|
1368
|
-
"locationName":"resourceArn"
|
1369
|
-
},
|
1370
|
-
"Tags":{"shape":"TagList"}
|
1371
|
-
}
|
1372
|
-
},
|
1373
|
-
"TagResourceResponse":{
|
1374
|
-
"type":"structure",
|
1375
|
-
"members":{
|
1376
|
-
}
|
1377
|
-
},
|
1378
|
-
"TagValue":{"type":"string"},
|
1379
|
-
"ThrottlingException":{
|
1380
|
-
"type":"structure",
|
1381
|
-
"required":["Message"],
|
1382
|
-
"members":{
|
1383
|
-
"Message":{"shape":"String"},
|
1384
|
-
"RetryAfterSeconds":{
|
1385
|
-
"shape":"RetryAfterSeconds",
|
1386
|
-
"location":"header",
|
1387
|
-
"locationName":"Retry-After"
|
1388
|
-
}
|
1389
|
-
},
|
1390
|
-
"error":{"httpStatusCode":429},
|
1391
|
-
"exception":true
|
1392
|
-
},
|
1393
|
-
"TransitGatewayRegistration":{
|
1394
|
-
"type":"structure",
|
1395
|
-
"members":{
|
1396
|
-
"GlobalNetworkId":{"shape":"String"},
|
1397
|
-
"TransitGatewayArn":{"shape":"String"},
|
1398
|
-
"State":{"shape":"TransitGatewayRegistrationStateReason"}
|
1399
|
-
}
|
1400
|
-
},
|
1401
|
-
"TransitGatewayRegistrationList":{
|
1402
|
-
"type":"list",
|
1403
|
-
"member":{"shape":"TransitGatewayRegistration"}
|
1404
|
-
},
|
1405
|
-
"TransitGatewayRegistrationState":{
|
1406
|
-
"type":"string",
|
1407
|
-
"enum":[
|
1408
|
-
"PENDING",
|
1409
|
-
"AVAILABLE",
|
1410
|
-
"DELETING",
|
1411
|
-
"DELETED",
|
1412
|
-
"FAILED"
|
1413
|
-
]
|
1414
|
-
},
|
1415
|
-
"TransitGatewayRegistrationStateReason":{
|
1416
|
-
"type":"structure",
|
1417
|
-
"members":{
|
1418
|
-
"Code":{"shape":"TransitGatewayRegistrationState"},
|
1419
|
-
"Message":{"shape":"String"}
|
1420
|
-
}
|
1421
|
-
},
|
1422
|
-
"UntagResourceRequest":{
|
1423
|
-
"type":"structure",
|
1424
|
-
"required":[
|
1425
|
-
"ResourceArn",
|
1426
|
-
"TagKeys"
|
1427
|
-
],
|
1428
|
-
"members":{
|
1429
|
-
"ResourceArn":{
|
1430
|
-
"shape":"ResourceARN",
|
1431
|
-
"location":"uri",
|
1432
|
-
"locationName":"resourceArn"
|
1433
|
-
},
|
1434
|
-
"TagKeys":{
|
1435
|
-
"shape":"TagKeyList",
|
1436
|
-
"location":"querystring",
|
1437
|
-
"locationName":"tagKeys"
|
1438
|
-
}
|
1439
|
-
}
|
1440
|
-
},
|
1441
|
-
"UntagResourceResponse":{
|
1442
|
-
"type":"structure",
|
1443
|
-
"members":{
|
1444
|
-
}
|
1445
|
-
},
|
1446
|
-
"UpdateDeviceRequest":{
|
1447
|
-
"type":"structure",
|
1448
|
-
"required":[
|
1449
|
-
"GlobalNetworkId",
|
1450
|
-
"DeviceId"
|
1451
|
-
],
|
1452
|
-
"members":{
|
1453
|
-
"GlobalNetworkId":{
|
1454
|
-
"shape":"String",
|
1455
|
-
"location":"uri",
|
1456
|
-
"locationName":"globalNetworkId"
|
1457
|
-
},
|
1458
|
-
"DeviceId":{
|
1459
|
-
"shape":"String",
|
1460
|
-
"location":"uri",
|
1461
|
-
"locationName":"deviceId"
|
1462
|
-
},
|
1463
|
-
"Description":{"shape":"String"},
|
1464
|
-
"Type":{"shape":"String"},
|
1465
|
-
"Vendor":{"shape":"String"},
|
1466
|
-
"Model":{"shape":"String"},
|
1467
|
-
"SerialNumber":{"shape":"String"},
|
1468
|
-
"Location":{"shape":"Location"},
|
1469
|
-
"SiteId":{"shape":"String"}
|
1470
|
-
}
|
1471
|
-
},
|
1472
|
-
"UpdateDeviceResponse":{
|
1473
|
-
"type":"structure",
|
1474
|
-
"members":{
|
1475
|
-
"Device":{"shape":"Device"}
|
1476
|
-
}
|
1477
|
-
},
|
1478
|
-
"UpdateGlobalNetworkRequest":{
|
1479
|
-
"type":"structure",
|
1480
|
-
"required":["GlobalNetworkId"],
|
1481
|
-
"members":{
|
1482
|
-
"GlobalNetworkId":{
|
1483
|
-
"shape":"String",
|
1484
|
-
"location":"uri",
|
1485
|
-
"locationName":"globalNetworkId"
|
1486
|
-
},
|
1487
|
-
"Description":{"shape":"String"}
|
1488
|
-
}
|
1489
|
-
},
|
1490
|
-
"UpdateGlobalNetworkResponse":{
|
1491
|
-
"type":"structure",
|
1492
|
-
"members":{
|
1493
|
-
"GlobalNetwork":{"shape":"GlobalNetwork"}
|
1494
|
-
}
|
1495
|
-
},
|
1496
|
-
"UpdateLinkRequest":{
|
1497
|
-
"type":"structure",
|
1498
|
-
"required":[
|
1499
|
-
"GlobalNetworkId",
|
1500
|
-
"LinkId"
|
1501
|
-
],
|
1502
|
-
"members":{
|
1503
|
-
"GlobalNetworkId":{
|
1504
|
-
"shape":"String",
|
1505
|
-
"location":"uri",
|
1506
|
-
"locationName":"globalNetworkId"
|
1507
|
-
},
|
1508
|
-
"LinkId":{
|
1509
|
-
"shape":"String",
|
1510
|
-
"location":"uri",
|
1511
|
-
"locationName":"linkId"
|
1512
|
-
},
|
1513
|
-
"Description":{"shape":"String"},
|
1514
|
-
"Type":{"shape":"String"},
|
1515
|
-
"Bandwidth":{"shape":"Bandwidth"},
|
1516
|
-
"Provider":{"shape":"String"}
|
1517
|
-
}
|
1518
|
-
},
|
1519
|
-
"UpdateLinkResponse":{
|
1520
|
-
"type":"structure",
|
1521
|
-
"members":{
|
1522
|
-
"Link":{"shape":"Link"}
|
1523
|
-
}
|
1524
|
-
},
|
1525
|
-
"UpdateSiteRequest":{
|
1526
|
-
"type":"structure",
|
1527
|
-
"required":[
|
1528
|
-
"GlobalNetworkId",
|
1529
|
-
"SiteId"
|
1530
|
-
],
|
1531
|
-
"members":{
|
1532
|
-
"GlobalNetworkId":{
|
1533
|
-
"shape":"String",
|
1534
|
-
"location":"uri",
|
1535
|
-
"locationName":"globalNetworkId"
|
1536
|
-
},
|
1537
|
-
"SiteId":{
|
1538
|
-
"shape":"String",
|
1539
|
-
"location":"uri",
|
1540
|
-
"locationName":"siteId"
|
1541
|
-
},
|
1542
|
-
"Description":{"shape":"String"},
|
1543
|
-
"Location":{"shape":"Location"}
|
1544
|
-
}
|
1545
|
-
},
|
1546
|
-
"UpdateSiteResponse":{
|
1547
|
-
"type":"structure",
|
1548
|
-
"members":{
|
1549
|
-
"Site":{"shape":"Site"}
|
1550
|
-
}
|
1551
|
-
},
|
1552
|
-
"ValidationException":{
|
1553
|
-
"type":"structure",
|
1554
|
-
"required":["Message"],
|
1555
|
-
"members":{
|
1556
|
-
"Message":{"shape":"String"},
|
1557
|
-
"Reason":{"shape":"ValidationExceptionReason"},
|
1558
|
-
"Fields":{"shape":"ValidationExceptionFieldList"}
|
1559
|
-
},
|
1560
|
-
"error":{"httpStatusCode":400},
|
1561
|
-
"exception":true
|
1562
|
-
},
|
1563
|
-
"ValidationExceptionField":{
|
1564
|
-
"type":"structure",
|
1565
|
-
"required":[
|
1566
|
-
"Name",
|
1567
|
-
"Message"
|
1568
|
-
],
|
1569
|
-
"members":{
|
1570
|
-
"Name":{"shape":"String"},
|
1571
|
-
"Message":{"shape":"String"}
|
1572
|
-
}
|
1573
|
-
},
|
1574
|
-
"ValidationExceptionFieldList":{
|
1575
|
-
"type":"list",
|
1576
|
-
"member":{"shape":"ValidationExceptionField"}
|
1577
|
-
},
|
1578
|
-
"ValidationExceptionReason":{
|
1579
|
-
"type":"string",
|
1580
|
-
"enum":[
|
1581
|
-
"UnknownOperation",
|
1582
|
-
"CannotParse",
|
1583
|
-
"FieldValidationFailed",
|
1584
|
-
"Other"
|
1585
|
-
]
|
1586
|
-
}
|
1587
|
-
}
|
1588
|
-
}
|