aws-sdk-core 2.11.335 → 3.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -547
- 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 +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- data/lib/aws-sdk-core/errors.rb +123 -22
- 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 +1 -1
- 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/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 +56 -21
- 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 +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- 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 +147 -10
- 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 +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -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 +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- 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 +2 -0
- 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 +66 -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 +91 -1021
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- 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 -843
- 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 -3994
- 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 -1972
- 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 -5382
- 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 -96
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- 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 -3202
- 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 -2304
- 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 -2003
- 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 -984
- 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 -2455
- 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 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- 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 -807
- 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 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- 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 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- 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 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- 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 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- 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/codepipeline/2015-07-09/api-2.json +0 -2382
- 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/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 -1053
- 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 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- 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 -2361
- 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 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3270
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -16
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -247
- 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/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 -1204
- 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/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- 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 -1334
- 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 -444
- 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 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- 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 -2482
- 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 -2634
- 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 -803
- 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 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- 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/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 -24837
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2809
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- 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 -597
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -4
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3131
- 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 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- 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 -2299
- 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 -2187
- 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 -1543
- 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 -1376
- 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 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3447
- 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 -798
- 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 -6291
- 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 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- 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/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 -9676
- 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 -2222
- 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 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- 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 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- 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/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 -2121
- 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 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- 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 -2345
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- 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 -780
- 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 -4781
- 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/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -8711
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- 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 -735
- 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 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- 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 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- 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 -2490
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/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 -766
- 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 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- 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 -132
- 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 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- 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 -2080
- 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 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- 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/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- 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 -6575
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- 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 -175
- 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 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- 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 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- 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 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2093
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- 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 -152
- 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 -6576
- 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 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- 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 -2095
- 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 -1774
- 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/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 -670
- 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 -929
- 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 -1078
- 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 -8913
- 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/states/2016-11-23/api-2.json +0 -1372
- 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 -3160
- 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 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- 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 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- 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 -572
- 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/2017-10-26/api-2.json +0 -504
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -851
- 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 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- 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/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- 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 -4601
- 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 -299
- 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/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/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 -5
- 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/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.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/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.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/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/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/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- 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/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 -104
- 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/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/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/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- 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/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/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/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/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/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_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/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/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 -6
- 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/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/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/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/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/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 -749
@@ -1,19 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"ListApplications": {
|
4
|
-
"input_token": "NextToken",
|
5
|
-
"output_token": "NextToken",
|
6
|
-
"limit_key": "MaxResults"
|
7
|
-
},
|
8
|
-
"ListComponents": {
|
9
|
-
"input_token": "NextToken",
|
10
|
-
"output_token": "NextToken",
|
11
|
-
"limit_key": "MaxResults"
|
12
|
-
},
|
13
|
-
"ListProblems": {
|
14
|
-
"input_token": "NextToken",
|
15
|
-
"output_token": "NextToken",
|
16
|
-
"limit_key": "MaxResults"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|
@@ -1,1972 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "2.0",
|
3
|
-
"metadata": {
|
4
|
-
"apiVersion": "2018-10-01",
|
5
|
-
"endpointPrefix": "appmesh",
|
6
|
-
"jsonVersion": "1.1",
|
7
|
-
"protocol": "rest-json",
|
8
|
-
"serviceFullName": "AWS App Mesh",
|
9
|
-
"serviceId": "App Mesh",
|
10
|
-
"signatureVersion": "v4",
|
11
|
-
"signingName": "appmesh",
|
12
|
-
"uid": "appmesh-2018-10-01"
|
13
|
-
},
|
14
|
-
"operations": {
|
15
|
-
"CreateMesh": {
|
16
|
-
"name": "CreateMesh",
|
17
|
-
"http": {
|
18
|
-
"method": "PUT",
|
19
|
-
"requestUri": "/meshes",
|
20
|
-
"responseCode": 200
|
21
|
-
},
|
22
|
-
"input": {
|
23
|
-
"shape": "CreateMeshInput"
|
24
|
-
},
|
25
|
-
"output": {
|
26
|
-
"shape": "CreateMeshOutput"
|
27
|
-
},
|
28
|
-
"errors": [
|
29
|
-
{
|
30
|
-
"shape": "BadRequestException"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"shape": "ConflictException"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"shape": "ForbiddenException"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"shape": "InternalServerErrorException"
|
40
|
-
},
|
41
|
-
{
|
42
|
-
"shape": "LimitExceededException"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"shape": "NotFoundException"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"shape": "ServiceUnavailableException"
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"shape": "TooManyRequestsException"
|
52
|
-
}
|
53
|
-
],
|
54
|
-
"idempotent": true
|
55
|
-
},
|
56
|
-
"CreateRoute": {
|
57
|
-
"name": "CreateRoute",
|
58
|
-
"http": {
|
59
|
-
"method": "PUT",
|
60
|
-
"requestUri": "/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
|
61
|
-
"responseCode": 200
|
62
|
-
},
|
63
|
-
"input": {
|
64
|
-
"shape": "CreateRouteInput"
|
65
|
-
},
|
66
|
-
"output": {
|
67
|
-
"shape": "CreateRouteOutput"
|
68
|
-
},
|
69
|
-
"errors": [
|
70
|
-
{
|
71
|
-
"shape": "BadRequestException"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"shape": "ConflictException"
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"shape": "ForbiddenException"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"shape": "InternalServerErrorException"
|
81
|
-
},
|
82
|
-
{
|
83
|
-
"shape": "LimitExceededException"
|
84
|
-
},
|
85
|
-
{
|
86
|
-
"shape": "NotFoundException"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"shape": "ServiceUnavailableException"
|
90
|
-
},
|
91
|
-
{
|
92
|
-
"shape": "TooManyRequestsException"
|
93
|
-
}
|
94
|
-
],
|
95
|
-
"idempotent": true
|
96
|
-
},
|
97
|
-
"CreateVirtualNode": {
|
98
|
-
"name": "CreateVirtualNode",
|
99
|
-
"http": {
|
100
|
-
"method": "PUT",
|
101
|
-
"requestUri": "/meshes/{meshName}/virtualNodes",
|
102
|
-
"responseCode": 200
|
103
|
-
},
|
104
|
-
"input": {
|
105
|
-
"shape": "CreateVirtualNodeInput"
|
106
|
-
},
|
107
|
-
"output": {
|
108
|
-
"shape": "CreateVirtualNodeOutput"
|
109
|
-
},
|
110
|
-
"errors": [
|
111
|
-
{
|
112
|
-
"shape": "BadRequestException"
|
113
|
-
},
|
114
|
-
{
|
115
|
-
"shape": "ConflictException"
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"shape": "ForbiddenException"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"shape": "InternalServerErrorException"
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"shape": "LimitExceededException"
|
125
|
-
},
|
126
|
-
{
|
127
|
-
"shape": "NotFoundException"
|
128
|
-
},
|
129
|
-
{
|
130
|
-
"shape": "ServiceUnavailableException"
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"shape": "TooManyRequestsException"
|
134
|
-
}
|
135
|
-
],
|
136
|
-
"idempotent": true
|
137
|
-
},
|
138
|
-
"CreateVirtualRouter": {
|
139
|
-
"name": "CreateVirtualRouter",
|
140
|
-
"http": {
|
141
|
-
"method": "PUT",
|
142
|
-
"requestUri": "/meshes/{meshName}/virtualRouters",
|
143
|
-
"responseCode": 200
|
144
|
-
},
|
145
|
-
"input": {
|
146
|
-
"shape": "CreateVirtualRouterInput"
|
147
|
-
},
|
148
|
-
"output": {
|
149
|
-
"shape": "CreateVirtualRouterOutput"
|
150
|
-
},
|
151
|
-
"errors": [
|
152
|
-
{
|
153
|
-
"shape": "BadRequestException"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"shape": "ConflictException"
|
157
|
-
},
|
158
|
-
{
|
159
|
-
"shape": "ForbiddenException"
|
160
|
-
},
|
161
|
-
{
|
162
|
-
"shape": "InternalServerErrorException"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"shape": "LimitExceededException"
|
166
|
-
},
|
167
|
-
{
|
168
|
-
"shape": "NotFoundException"
|
169
|
-
},
|
170
|
-
{
|
171
|
-
"shape": "ServiceUnavailableException"
|
172
|
-
},
|
173
|
-
{
|
174
|
-
"shape": "TooManyRequestsException"
|
175
|
-
}
|
176
|
-
],
|
177
|
-
"idempotent": true
|
178
|
-
},
|
179
|
-
"DeleteMesh": {
|
180
|
-
"name": "DeleteMesh",
|
181
|
-
"http": {
|
182
|
-
"method": "DELETE",
|
183
|
-
"requestUri": "/meshes/{meshName}",
|
184
|
-
"responseCode": 200
|
185
|
-
},
|
186
|
-
"input": {
|
187
|
-
"shape": "DeleteMeshInput"
|
188
|
-
},
|
189
|
-
"output": {
|
190
|
-
"shape": "DeleteMeshOutput"
|
191
|
-
},
|
192
|
-
"errors": [
|
193
|
-
{
|
194
|
-
"shape": "BadRequestException"
|
195
|
-
},
|
196
|
-
{
|
197
|
-
"shape": "ForbiddenException"
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"shape": "InternalServerErrorException"
|
201
|
-
},
|
202
|
-
{
|
203
|
-
"shape": "NotFoundException"
|
204
|
-
},
|
205
|
-
{
|
206
|
-
"shape": "ResourceInUseException"
|
207
|
-
},
|
208
|
-
{
|
209
|
-
"shape": "ServiceUnavailableException"
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"shape": "TooManyRequestsException"
|
213
|
-
}
|
214
|
-
],
|
215
|
-
"idempotent": true
|
216
|
-
},
|
217
|
-
"DeleteRoute": {
|
218
|
-
"name": "DeleteRoute",
|
219
|
-
"http": {
|
220
|
-
"method": "DELETE",
|
221
|
-
"requestUri": "/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
|
222
|
-
"responseCode": 200
|
223
|
-
},
|
224
|
-
"input": {
|
225
|
-
"shape": "DeleteRouteInput"
|
226
|
-
},
|
227
|
-
"output": {
|
228
|
-
"shape": "DeleteRouteOutput"
|
229
|
-
},
|
230
|
-
"errors": [
|
231
|
-
{
|
232
|
-
"shape": "BadRequestException"
|
233
|
-
},
|
234
|
-
{
|
235
|
-
"shape": "ForbiddenException"
|
236
|
-
},
|
237
|
-
{
|
238
|
-
"shape": "InternalServerErrorException"
|
239
|
-
},
|
240
|
-
{
|
241
|
-
"shape": "NotFoundException"
|
242
|
-
},
|
243
|
-
{
|
244
|
-
"shape": "ResourceInUseException"
|
245
|
-
},
|
246
|
-
{
|
247
|
-
"shape": "ServiceUnavailableException"
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"shape": "TooManyRequestsException"
|
251
|
-
}
|
252
|
-
],
|
253
|
-
"idempotent": true
|
254
|
-
},
|
255
|
-
"DeleteVirtualNode": {
|
256
|
-
"name": "DeleteVirtualNode",
|
257
|
-
"http": {
|
258
|
-
"method": "DELETE",
|
259
|
-
"requestUri": "/meshes/{meshName}/virtualNodes/{virtualNodeName}",
|
260
|
-
"responseCode": 200
|
261
|
-
},
|
262
|
-
"input": {
|
263
|
-
"shape": "DeleteVirtualNodeInput"
|
264
|
-
},
|
265
|
-
"output": {
|
266
|
-
"shape": "DeleteVirtualNodeOutput"
|
267
|
-
},
|
268
|
-
"errors": [
|
269
|
-
{
|
270
|
-
"shape": "BadRequestException"
|
271
|
-
},
|
272
|
-
{
|
273
|
-
"shape": "ForbiddenException"
|
274
|
-
},
|
275
|
-
{
|
276
|
-
"shape": "InternalServerErrorException"
|
277
|
-
},
|
278
|
-
{
|
279
|
-
"shape": "NotFoundException"
|
280
|
-
},
|
281
|
-
{
|
282
|
-
"shape": "ResourceInUseException"
|
283
|
-
},
|
284
|
-
{
|
285
|
-
"shape": "ServiceUnavailableException"
|
286
|
-
},
|
287
|
-
{
|
288
|
-
"shape": "TooManyRequestsException"
|
289
|
-
}
|
290
|
-
],
|
291
|
-
"idempotent": true
|
292
|
-
},
|
293
|
-
"DeleteVirtualRouter": {
|
294
|
-
"name": "DeleteVirtualRouter",
|
295
|
-
"http": {
|
296
|
-
"method": "DELETE",
|
297
|
-
"requestUri": "/meshes/{meshName}/virtualRouters/{virtualRouterName}",
|
298
|
-
"responseCode": 200
|
299
|
-
},
|
300
|
-
"input": {
|
301
|
-
"shape": "DeleteVirtualRouterInput"
|
302
|
-
},
|
303
|
-
"output": {
|
304
|
-
"shape": "DeleteVirtualRouterOutput"
|
305
|
-
},
|
306
|
-
"errors": [
|
307
|
-
{
|
308
|
-
"shape": "BadRequestException"
|
309
|
-
},
|
310
|
-
{
|
311
|
-
"shape": "ForbiddenException"
|
312
|
-
},
|
313
|
-
{
|
314
|
-
"shape": "InternalServerErrorException"
|
315
|
-
},
|
316
|
-
{
|
317
|
-
"shape": "NotFoundException"
|
318
|
-
},
|
319
|
-
{
|
320
|
-
"shape": "ResourceInUseException"
|
321
|
-
},
|
322
|
-
{
|
323
|
-
"shape": "ServiceUnavailableException"
|
324
|
-
},
|
325
|
-
{
|
326
|
-
"shape": "TooManyRequestsException"
|
327
|
-
}
|
328
|
-
],
|
329
|
-
"idempotent": true
|
330
|
-
},
|
331
|
-
"DescribeMesh": {
|
332
|
-
"name": "DescribeMesh",
|
333
|
-
"http": {
|
334
|
-
"method": "GET",
|
335
|
-
"requestUri": "/meshes/{meshName}",
|
336
|
-
"responseCode": 200
|
337
|
-
},
|
338
|
-
"input": {
|
339
|
-
"shape": "DescribeMeshInput"
|
340
|
-
},
|
341
|
-
"output": {
|
342
|
-
"shape": "DescribeMeshOutput"
|
343
|
-
},
|
344
|
-
"errors": [
|
345
|
-
{
|
346
|
-
"shape": "BadRequestException"
|
347
|
-
},
|
348
|
-
{
|
349
|
-
"shape": "ForbiddenException"
|
350
|
-
},
|
351
|
-
{
|
352
|
-
"shape": "InternalServerErrorException"
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"shape": "NotFoundException"
|
356
|
-
},
|
357
|
-
{
|
358
|
-
"shape": "ServiceUnavailableException"
|
359
|
-
},
|
360
|
-
{
|
361
|
-
"shape": "TooManyRequestsException"
|
362
|
-
}
|
363
|
-
]
|
364
|
-
},
|
365
|
-
"DescribeRoute": {
|
366
|
-
"name": "DescribeRoute",
|
367
|
-
"http": {
|
368
|
-
"method": "GET",
|
369
|
-
"requestUri": "/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
|
370
|
-
"responseCode": 200
|
371
|
-
},
|
372
|
-
"input": {
|
373
|
-
"shape": "DescribeRouteInput"
|
374
|
-
},
|
375
|
-
"output": {
|
376
|
-
"shape": "DescribeRouteOutput"
|
377
|
-
},
|
378
|
-
"errors": [
|
379
|
-
{
|
380
|
-
"shape": "BadRequestException"
|
381
|
-
},
|
382
|
-
{
|
383
|
-
"shape": "ForbiddenException"
|
384
|
-
},
|
385
|
-
{
|
386
|
-
"shape": "InternalServerErrorException"
|
387
|
-
},
|
388
|
-
{
|
389
|
-
"shape": "NotFoundException"
|
390
|
-
},
|
391
|
-
{
|
392
|
-
"shape": "ServiceUnavailableException"
|
393
|
-
},
|
394
|
-
{
|
395
|
-
"shape": "TooManyRequestsException"
|
396
|
-
}
|
397
|
-
]
|
398
|
-
},
|
399
|
-
"DescribeVirtualNode": {
|
400
|
-
"name": "DescribeVirtualNode",
|
401
|
-
"http": {
|
402
|
-
"method": "GET",
|
403
|
-
"requestUri": "/meshes/{meshName}/virtualNodes/{virtualNodeName}",
|
404
|
-
"responseCode": 200
|
405
|
-
},
|
406
|
-
"input": {
|
407
|
-
"shape": "DescribeVirtualNodeInput"
|
408
|
-
},
|
409
|
-
"output": {
|
410
|
-
"shape": "DescribeVirtualNodeOutput"
|
411
|
-
},
|
412
|
-
"errors": [
|
413
|
-
{
|
414
|
-
"shape": "BadRequestException"
|
415
|
-
},
|
416
|
-
{
|
417
|
-
"shape": "ForbiddenException"
|
418
|
-
},
|
419
|
-
{
|
420
|
-
"shape": "InternalServerErrorException"
|
421
|
-
},
|
422
|
-
{
|
423
|
-
"shape": "NotFoundException"
|
424
|
-
},
|
425
|
-
{
|
426
|
-
"shape": "ServiceUnavailableException"
|
427
|
-
},
|
428
|
-
{
|
429
|
-
"shape": "TooManyRequestsException"
|
430
|
-
}
|
431
|
-
]
|
432
|
-
},
|
433
|
-
"DescribeVirtualRouter": {
|
434
|
-
"name": "DescribeVirtualRouter",
|
435
|
-
"http": {
|
436
|
-
"method": "GET",
|
437
|
-
"requestUri": "/meshes/{meshName}/virtualRouters/{virtualRouterName}",
|
438
|
-
"responseCode": 200
|
439
|
-
},
|
440
|
-
"input": {
|
441
|
-
"shape": "DescribeVirtualRouterInput"
|
442
|
-
},
|
443
|
-
"output": {
|
444
|
-
"shape": "DescribeVirtualRouterOutput"
|
445
|
-
},
|
446
|
-
"errors": [
|
447
|
-
{
|
448
|
-
"shape": "BadRequestException"
|
449
|
-
},
|
450
|
-
{
|
451
|
-
"shape": "ForbiddenException"
|
452
|
-
},
|
453
|
-
{
|
454
|
-
"shape": "InternalServerErrorException"
|
455
|
-
},
|
456
|
-
{
|
457
|
-
"shape": "NotFoundException"
|
458
|
-
},
|
459
|
-
{
|
460
|
-
"shape": "ServiceUnavailableException"
|
461
|
-
},
|
462
|
-
{
|
463
|
-
"shape": "TooManyRequestsException"
|
464
|
-
}
|
465
|
-
]
|
466
|
-
},
|
467
|
-
"ListMeshes": {
|
468
|
-
"name": "ListMeshes",
|
469
|
-
"http": {
|
470
|
-
"method": "GET",
|
471
|
-
"requestUri": "/meshes",
|
472
|
-
"responseCode": 200
|
473
|
-
},
|
474
|
-
"input": {
|
475
|
-
"shape": "ListMeshesInput"
|
476
|
-
},
|
477
|
-
"output": {
|
478
|
-
"shape": "ListMeshesOutput"
|
479
|
-
},
|
480
|
-
"errors": [
|
481
|
-
{
|
482
|
-
"shape": "BadRequestException"
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"shape": "ForbiddenException"
|
486
|
-
},
|
487
|
-
{
|
488
|
-
"shape": "InternalServerErrorException"
|
489
|
-
},
|
490
|
-
{
|
491
|
-
"shape": "NotFoundException"
|
492
|
-
},
|
493
|
-
{
|
494
|
-
"shape": "ServiceUnavailableException"
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"shape": "TooManyRequestsException"
|
498
|
-
}
|
499
|
-
]
|
500
|
-
},
|
501
|
-
"ListRoutes": {
|
502
|
-
"name": "ListRoutes",
|
503
|
-
"http": {
|
504
|
-
"method": "GET",
|
505
|
-
"requestUri": "/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
|
506
|
-
"responseCode": 200
|
507
|
-
},
|
508
|
-
"input": {
|
509
|
-
"shape": "ListRoutesInput"
|
510
|
-
},
|
511
|
-
"output": {
|
512
|
-
"shape": "ListRoutesOutput"
|
513
|
-
},
|
514
|
-
"errors": [
|
515
|
-
{
|
516
|
-
"shape": "BadRequestException"
|
517
|
-
},
|
518
|
-
{
|
519
|
-
"shape": "ForbiddenException"
|
520
|
-
},
|
521
|
-
{
|
522
|
-
"shape": "InternalServerErrorException"
|
523
|
-
},
|
524
|
-
{
|
525
|
-
"shape": "NotFoundException"
|
526
|
-
},
|
527
|
-
{
|
528
|
-
"shape": "ServiceUnavailableException"
|
529
|
-
},
|
530
|
-
{
|
531
|
-
"shape": "TooManyRequestsException"
|
532
|
-
}
|
533
|
-
]
|
534
|
-
},
|
535
|
-
"ListVirtualNodes": {
|
536
|
-
"name": "ListVirtualNodes",
|
537
|
-
"http": {
|
538
|
-
"method": "GET",
|
539
|
-
"requestUri": "/meshes/{meshName}/virtualNodes",
|
540
|
-
"responseCode": 200
|
541
|
-
},
|
542
|
-
"input": {
|
543
|
-
"shape": "ListVirtualNodesInput"
|
544
|
-
},
|
545
|
-
"output": {
|
546
|
-
"shape": "ListVirtualNodesOutput"
|
547
|
-
},
|
548
|
-
"errors": [
|
549
|
-
{
|
550
|
-
"shape": "BadRequestException"
|
551
|
-
},
|
552
|
-
{
|
553
|
-
"shape": "ForbiddenException"
|
554
|
-
},
|
555
|
-
{
|
556
|
-
"shape": "InternalServerErrorException"
|
557
|
-
},
|
558
|
-
{
|
559
|
-
"shape": "NotFoundException"
|
560
|
-
},
|
561
|
-
{
|
562
|
-
"shape": "ServiceUnavailableException"
|
563
|
-
},
|
564
|
-
{
|
565
|
-
"shape": "TooManyRequestsException"
|
566
|
-
}
|
567
|
-
]
|
568
|
-
},
|
569
|
-
"ListVirtualRouters": {
|
570
|
-
"name": "ListVirtualRouters",
|
571
|
-
"http": {
|
572
|
-
"method": "GET",
|
573
|
-
"requestUri": "/meshes/{meshName}/virtualRouters",
|
574
|
-
"responseCode": 200
|
575
|
-
},
|
576
|
-
"input": {
|
577
|
-
"shape": "ListVirtualRoutersInput"
|
578
|
-
},
|
579
|
-
"output": {
|
580
|
-
"shape": "ListVirtualRoutersOutput"
|
581
|
-
},
|
582
|
-
"errors": [
|
583
|
-
{
|
584
|
-
"shape": "BadRequestException"
|
585
|
-
},
|
586
|
-
{
|
587
|
-
"shape": "ForbiddenException"
|
588
|
-
},
|
589
|
-
{
|
590
|
-
"shape": "InternalServerErrorException"
|
591
|
-
},
|
592
|
-
{
|
593
|
-
"shape": "NotFoundException"
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"shape": "ServiceUnavailableException"
|
597
|
-
},
|
598
|
-
{
|
599
|
-
"shape": "TooManyRequestsException"
|
600
|
-
}
|
601
|
-
]
|
602
|
-
},
|
603
|
-
"UpdateRoute": {
|
604
|
-
"name": "UpdateRoute",
|
605
|
-
"http": {
|
606
|
-
"method": "PUT",
|
607
|
-
"requestUri": "/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
|
608
|
-
"responseCode": 200
|
609
|
-
},
|
610
|
-
"input": {
|
611
|
-
"shape": "UpdateRouteInput"
|
612
|
-
},
|
613
|
-
"output": {
|
614
|
-
"shape": "UpdateRouteOutput"
|
615
|
-
},
|
616
|
-
"errors": [
|
617
|
-
{
|
618
|
-
"shape": "BadRequestException"
|
619
|
-
},
|
620
|
-
{
|
621
|
-
"shape": "ConflictException"
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"shape": "ForbiddenException"
|
625
|
-
},
|
626
|
-
{
|
627
|
-
"shape": "InternalServerErrorException"
|
628
|
-
},
|
629
|
-
{
|
630
|
-
"shape": "LimitExceededException"
|
631
|
-
},
|
632
|
-
{
|
633
|
-
"shape": "NotFoundException"
|
634
|
-
},
|
635
|
-
{
|
636
|
-
"shape": "ServiceUnavailableException"
|
637
|
-
},
|
638
|
-
{
|
639
|
-
"shape": "TooManyRequestsException"
|
640
|
-
}
|
641
|
-
],
|
642
|
-
"idempotent": true
|
643
|
-
},
|
644
|
-
"UpdateVirtualNode": {
|
645
|
-
"name": "UpdateVirtualNode",
|
646
|
-
"http": {
|
647
|
-
"method": "PUT",
|
648
|
-
"requestUri": "/meshes/{meshName}/virtualNodes/{virtualNodeName}",
|
649
|
-
"responseCode": 200
|
650
|
-
},
|
651
|
-
"input": {
|
652
|
-
"shape": "UpdateVirtualNodeInput"
|
653
|
-
},
|
654
|
-
"output": {
|
655
|
-
"shape": "UpdateVirtualNodeOutput"
|
656
|
-
},
|
657
|
-
"errors": [
|
658
|
-
{
|
659
|
-
"shape": "BadRequestException"
|
660
|
-
},
|
661
|
-
{
|
662
|
-
"shape": "ConflictException"
|
663
|
-
},
|
664
|
-
{
|
665
|
-
"shape": "ForbiddenException"
|
666
|
-
},
|
667
|
-
{
|
668
|
-
"shape": "InternalServerErrorException"
|
669
|
-
},
|
670
|
-
{
|
671
|
-
"shape": "LimitExceededException"
|
672
|
-
},
|
673
|
-
{
|
674
|
-
"shape": "NotFoundException"
|
675
|
-
},
|
676
|
-
{
|
677
|
-
"shape": "ServiceUnavailableException"
|
678
|
-
},
|
679
|
-
{
|
680
|
-
"shape": "TooManyRequestsException"
|
681
|
-
}
|
682
|
-
],
|
683
|
-
"idempotent": true
|
684
|
-
},
|
685
|
-
"UpdateVirtualRouter": {
|
686
|
-
"name": "UpdateVirtualRouter",
|
687
|
-
"http": {
|
688
|
-
"method": "PUT",
|
689
|
-
"requestUri": "/meshes/{meshName}/virtualRouters/{virtualRouterName}",
|
690
|
-
"responseCode": 200
|
691
|
-
},
|
692
|
-
"input": {
|
693
|
-
"shape": "UpdateVirtualRouterInput"
|
694
|
-
},
|
695
|
-
"output": {
|
696
|
-
"shape": "UpdateVirtualRouterOutput"
|
697
|
-
},
|
698
|
-
"errors": [
|
699
|
-
{
|
700
|
-
"shape": "BadRequestException"
|
701
|
-
},
|
702
|
-
{
|
703
|
-
"shape": "ConflictException"
|
704
|
-
},
|
705
|
-
{
|
706
|
-
"shape": "ForbiddenException"
|
707
|
-
},
|
708
|
-
{
|
709
|
-
"shape": "InternalServerErrorException"
|
710
|
-
},
|
711
|
-
{
|
712
|
-
"shape": "LimitExceededException"
|
713
|
-
},
|
714
|
-
{
|
715
|
-
"shape": "NotFoundException"
|
716
|
-
},
|
717
|
-
{
|
718
|
-
"shape": "ServiceUnavailableException"
|
719
|
-
},
|
720
|
-
{
|
721
|
-
"shape": "TooManyRequestsException"
|
722
|
-
}
|
723
|
-
],
|
724
|
-
"idempotent": true
|
725
|
-
}
|
726
|
-
},
|
727
|
-
"shapes": {
|
728
|
-
"ServiceName": {
|
729
|
-
"type": "string"
|
730
|
-
},
|
731
|
-
"InternalServerErrorException": {
|
732
|
-
"type": "structure",
|
733
|
-
"members": {
|
734
|
-
"message": {
|
735
|
-
"shape": "String"
|
736
|
-
}
|
737
|
-
},
|
738
|
-
"exception": true,
|
739
|
-
"error": {
|
740
|
-
"code": "InternalServerErrorException",
|
741
|
-
"httpStatusCode": 500,
|
742
|
-
"fault": true
|
743
|
-
}
|
744
|
-
},
|
745
|
-
"HealthCheckThreshold": {
|
746
|
-
"type": "integer",
|
747
|
-
"min": 2,
|
748
|
-
"max": 10
|
749
|
-
},
|
750
|
-
"DeleteMeshOutput": {
|
751
|
-
"type": "structure",
|
752
|
-
"members": {
|
753
|
-
"mesh": {
|
754
|
-
"shape": "MeshData"
|
755
|
-
}
|
756
|
-
},
|
757
|
-
"payload": "mesh"
|
758
|
-
},
|
759
|
-
"Long": {
|
760
|
-
"type": "long",
|
761
|
-
"box": true
|
762
|
-
},
|
763
|
-
"ForbiddenException": {
|
764
|
-
"type": "structure",
|
765
|
-
"members": {
|
766
|
-
"message": {
|
767
|
-
"shape": "String"
|
768
|
-
}
|
769
|
-
},
|
770
|
-
"exception": true,
|
771
|
-
"error": {
|
772
|
-
"code": "ForbiddenException",
|
773
|
-
"httpStatusCode": 403,
|
774
|
-
"senderFault": true
|
775
|
-
}
|
776
|
-
},
|
777
|
-
"UpdateVirtualRouterOutput": {
|
778
|
-
"type": "structure",
|
779
|
-
"members": {
|
780
|
-
"virtualRouter": {
|
781
|
-
"shape": "VirtualRouterData"
|
782
|
-
}
|
783
|
-
},
|
784
|
-
"payload": "virtualRouter"
|
785
|
-
},
|
786
|
-
"MeshStatusCode": {
|
787
|
-
"type": "string",
|
788
|
-
"enum": [
|
789
|
-
"ACTIVE",
|
790
|
-
"DELETED",
|
791
|
-
"INACTIVE"
|
792
|
-
]
|
793
|
-
},
|
794
|
-
"PortNumber": {
|
795
|
-
"type": "integer",
|
796
|
-
"min": 1,
|
797
|
-
"max": 65535
|
798
|
-
},
|
799
|
-
"WeightedTarget": {
|
800
|
-
"type": "structure",
|
801
|
-
"members": {
|
802
|
-
"virtualNode": {
|
803
|
-
"shape": "ResourceName"
|
804
|
-
},
|
805
|
-
"weight": {
|
806
|
-
"shape": "PercentInt"
|
807
|
-
}
|
808
|
-
}
|
809
|
-
},
|
810
|
-
"VirtualNodeList": {
|
811
|
-
"type": "list",
|
812
|
-
"member": {
|
813
|
-
"shape": "VirtualNodeRef"
|
814
|
-
}
|
815
|
-
},
|
816
|
-
"CreateRouteOutput": {
|
817
|
-
"type": "structure",
|
818
|
-
"members": {
|
819
|
-
"route": {
|
820
|
-
"shape": "RouteData"
|
821
|
-
}
|
822
|
-
},
|
823
|
-
"payload": "route"
|
824
|
-
},
|
825
|
-
"RouteList": {
|
826
|
-
"type": "list",
|
827
|
-
"member": {
|
828
|
-
"shape": "RouteRef"
|
829
|
-
}
|
830
|
-
},
|
831
|
-
"DeleteVirtualNodeInput": {
|
832
|
-
"type": "structure",
|
833
|
-
"required": [
|
834
|
-
"meshName",
|
835
|
-
"virtualNodeName"
|
836
|
-
],
|
837
|
-
"members": {
|
838
|
-
"meshName": {
|
839
|
-
"shape": "ResourceName",
|
840
|
-
"location": "uri",
|
841
|
-
"locationName": "meshName"
|
842
|
-
},
|
843
|
-
"virtualNodeName": {
|
844
|
-
"shape": "ResourceName",
|
845
|
-
"location": "uri",
|
846
|
-
"locationName": "virtualNodeName"
|
847
|
-
}
|
848
|
-
}
|
849
|
-
},
|
850
|
-
"ListVirtualRoutersLimit": {
|
851
|
-
"type": "integer",
|
852
|
-
"box": true,
|
853
|
-
"min": 1,
|
854
|
-
"max": 100
|
855
|
-
},
|
856
|
-
"DnsServiceDiscovery": {
|
857
|
-
"type": "structure",
|
858
|
-
"members": {
|
859
|
-
"serviceName": {
|
860
|
-
"shape": "ServiceName"
|
861
|
-
}
|
862
|
-
}
|
863
|
-
},
|
864
|
-
"ConflictException": {
|
865
|
-
"type": "structure",
|
866
|
-
"members": {
|
867
|
-
"message": {
|
868
|
-
"shape": "String"
|
869
|
-
}
|
870
|
-
},
|
871
|
-
"exception": true,
|
872
|
-
"error": {
|
873
|
-
"code": "ConflictException",
|
874
|
-
"httpStatusCode": 409,
|
875
|
-
"senderFault": true
|
876
|
-
}
|
877
|
-
},
|
878
|
-
"HealthCheckIntervalMillis": {
|
879
|
-
"type": "long",
|
880
|
-
"box": true,
|
881
|
-
"min": 5000,
|
882
|
-
"max": 300000
|
883
|
-
},
|
884
|
-
"VirtualNodeRef": {
|
885
|
-
"type": "structure",
|
886
|
-
"members": {
|
887
|
-
"arn": {
|
888
|
-
"shape": "Arn"
|
889
|
-
},
|
890
|
-
"meshName": {
|
891
|
-
"shape": "ResourceName"
|
892
|
-
},
|
893
|
-
"virtualNodeName": {
|
894
|
-
"shape": "ResourceName"
|
895
|
-
}
|
896
|
-
}
|
897
|
-
},
|
898
|
-
"DescribeRouteOutput": {
|
899
|
-
"type": "structure",
|
900
|
-
"members": {
|
901
|
-
"route": {
|
902
|
-
"shape": "RouteData"
|
903
|
-
}
|
904
|
-
},
|
905
|
-
"payload": "route"
|
906
|
-
},
|
907
|
-
"ServiceDiscovery": {
|
908
|
-
"type": "structure",
|
909
|
-
"members": {
|
910
|
-
"dns": {
|
911
|
-
"shape": "DnsServiceDiscovery"
|
912
|
-
}
|
913
|
-
}
|
914
|
-
},
|
915
|
-
"MeshStatus": {
|
916
|
-
"type": "structure",
|
917
|
-
"members": {
|
918
|
-
"status": {
|
919
|
-
"shape": "MeshStatusCode"
|
920
|
-
}
|
921
|
-
}
|
922
|
-
},
|
923
|
-
"VirtualNodeData": {
|
924
|
-
"type": "structure",
|
925
|
-
"required": [
|
926
|
-
"meshName",
|
927
|
-
"virtualNodeName"
|
928
|
-
],
|
929
|
-
"members": {
|
930
|
-
"meshName": {
|
931
|
-
"shape": "ResourceName"
|
932
|
-
},
|
933
|
-
"metadata": {
|
934
|
-
"shape": "ResourceMetadata"
|
935
|
-
},
|
936
|
-
"spec": {
|
937
|
-
"shape": "VirtualNodeSpec"
|
938
|
-
},
|
939
|
-
"status": {
|
940
|
-
"shape": "VirtualNodeStatus"
|
941
|
-
},
|
942
|
-
"virtualNodeName": {
|
943
|
-
"shape": "ResourceName"
|
944
|
-
}
|
945
|
-
}
|
946
|
-
},
|
947
|
-
"VirtualNodeSpec": {
|
948
|
-
"type": "structure",
|
949
|
-
"members": {
|
950
|
-
"backends": {
|
951
|
-
"shape": "Backends"
|
952
|
-
},
|
953
|
-
"listeners": {
|
954
|
-
"shape": "Listeners"
|
955
|
-
},
|
956
|
-
"serviceDiscovery": {
|
957
|
-
"shape": "ServiceDiscovery"
|
958
|
-
}
|
959
|
-
}
|
960
|
-
},
|
961
|
-
"ServiceNames": {
|
962
|
-
"type": "list",
|
963
|
-
"member": {
|
964
|
-
"shape": "ServiceName"
|
965
|
-
},
|
966
|
-
"max": 10
|
967
|
-
},
|
968
|
-
"MeshRef": {
|
969
|
-
"type": "structure",
|
970
|
-
"members": {
|
971
|
-
"arn": {
|
972
|
-
"shape": "Arn"
|
973
|
-
},
|
974
|
-
"meshName": {
|
975
|
-
"shape": "ResourceName"
|
976
|
-
}
|
977
|
-
}
|
978
|
-
},
|
979
|
-
"DescribeVirtualRouterInput": {
|
980
|
-
"type": "structure",
|
981
|
-
"required": [
|
982
|
-
"meshName",
|
983
|
-
"virtualRouterName"
|
984
|
-
],
|
985
|
-
"members": {
|
986
|
-
"meshName": {
|
987
|
-
"shape": "ResourceName",
|
988
|
-
"location": "uri",
|
989
|
-
"locationName": "meshName"
|
990
|
-
},
|
991
|
-
"virtualRouterName": {
|
992
|
-
"shape": "ResourceName",
|
993
|
-
"location": "uri",
|
994
|
-
"locationName": "virtualRouterName"
|
995
|
-
}
|
996
|
-
}
|
997
|
-
},
|
998
|
-
"DescribeVirtualRouterOutput": {
|
999
|
-
"type": "structure",
|
1000
|
-
"members": {
|
1001
|
-
"virtualRouter": {
|
1002
|
-
"shape": "VirtualRouterData"
|
1003
|
-
}
|
1004
|
-
},
|
1005
|
-
"payload": "virtualRouter"
|
1006
|
-
},
|
1007
|
-
"LimitExceededException": {
|
1008
|
-
"type": "structure",
|
1009
|
-
"members": {
|
1010
|
-
"message": {
|
1011
|
-
"shape": "String"
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
"exception": true,
|
1015
|
-
"error": {
|
1016
|
-
"code": "LimitExceededException",
|
1017
|
-
"httpStatusCode": 400,
|
1018
|
-
"senderFault": true
|
1019
|
-
}
|
1020
|
-
},
|
1021
|
-
"UpdateRouteOutput": {
|
1022
|
-
"type": "structure",
|
1023
|
-
"members": {
|
1024
|
-
"route": {
|
1025
|
-
"shape": "RouteData"
|
1026
|
-
}
|
1027
|
-
},
|
1028
|
-
"payload": "route"
|
1029
|
-
},
|
1030
|
-
"HttpRouteAction": {
|
1031
|
-
"type": "structure",
|
1032
|
-
"members": {
|
1033
|
-
"weightedTargets": {
|
1034
|
-
"shape": "WeightedTargets"
|
1035
|
-
}
|
1036
|
-
}
|
1037
|
-
},
|
1038
|
-
"CreateVirtualRouterOutput": {
|
1039
|
-
"type": "structure",
|
1040
|
-
"members": {
|
1041
|
-
"virtualRouter": {
|
1042
|
-
"shape": "VirtualRouterData"
|
1043
|
-
}
|
1044
|
-
},
|
1045
|
-
"payload": "virtualRouter"
|
1046
|
-
},
|
1047
|
-
"HealthCheckTimeoutMillis": {
|
1048
|
-
"type": "long",
|
1049
|
-
"box": true,
|
1050
|
-
"min": 2000,
|
1051
|
-
"max": 60000
|
1052
|
-
},
|
1053
|
-
"CreateVirtualRouterInput": {
|
1054
|
-
"type": "structure",
|
1055
|
-
"required": [
|
1056
|
-
"meshName",
|
1057
|
-
"spec",
|
1058
|
-
"virtualRouterName"
|
1059
|
-
],
|
1060
|
-
"members": {
|
1061
|
-
"clientToken": {
|
1062
|
-
"shape": "String",
|
1063
|
-
"idempotencyToken": true
|
1064
|
-
},
|
1065
|
-
"meshName": {
|
1066
|
-
"shape": "ResourceName",
|
1067
|
-
"location": "uri",
|
1068
|
-
"locationName": "meshName"
|
1069
|
-
},
|
1070
|
-
"spec": {
|
1071
|
-
"shape": "VirtualRouterSpec"
|
1072
|
-
},
|
1073
|
-
"virtualRouterName": {
|
1074
|
-
"shape": "ResourceName"
|
1075
|
-
}
|
1076
|
-
}
|
1077
|
-
},
|
1078
|
-
"RouteStatus": {
|
1079
|
-
"type": "structure",
|
1080
|
-
"members": {
|
1081
|
-
"status": {
|
1082
|
-
"shape": "RouteStatusCode"
|
1083
|
-
}
|
1084
|
-
}
|
1085
|
-
},
|
1086
|
-
"ListMeshesInput": {
|
1087
|
-
"type": "structure",
|
1088
|
-
"members": {
|
1089
|
-
"limit": {
|
1090
|
-
"shape": "ListMeshesLimit",
|
1091
|
-
"location": "querystring",
|
1092
|
-
"locationName": "limit"
|
1093
|
-
},
|
1094
|
-
"nextToken": {
|
1095
|
-
"shape": "String",
|
1096
|
-
"location": "querystring",
|
1097
|
-
"locationName": "nextToken"
|
1098
|
-
}
|
1099
|
-
}
|
1100
|
-
},
|
1101
|
-
"VirtualRouterStatus": {
|
1102
|
-
"type": "structure",
|
1103
|
-
"members": {
|
1104
|
-
"status": {
|
1105
|
-
"shape": "VirtualRouterStatusCode"
|
1106
|
-
}
|
1107
|
-
}
|
1108
|
-
},
|
1109
|
-
"TooManyRequestsException": {
|
1110
|
-
"type": "structure",
|
1111
|
-
"members": {
|
1112
|
-
"message": {
|
1113
|
-
"shape": "String"
|
1114
|
-
}
|
1115
|
-
},
|
1116
|
-
"exception": true,
|
1117
|
-
"error": {
|
1118
|
-
"code": "TooManyRequestsException",
|
1119
|
-
"httpStatusCode": 429,
|
1120
|
-
"senderFault": true
|
1121
|
-
}
|
1122
|
-
},
|
1123
|
-
"ListMeshesOutput": {
|
1124
|
-
"type": "structure",
|
1125
|
-
"required": [
|
1126
|
-
"meshes"
|
1127
|
-
],
|
1128
|
-
"members": {
|
1129
|
-
"meshes": {
|
1130
|
-
"shape": "MeshList"
|
1131
|
-
},
|
1132
|
-
"nextToken": {
|
1133
|
-
"shape": "String"
|
1134
|
-
}
|
1135
|
-
}
|
1136
|
-
},
|
1137
|
-
"DescribeVirtualNodeOutput": {
|
1138
|
-
"type": "structure",
|
1139
|
-
"members": {
|
1140
|
-
"virtualNode": {
|
1141
|
-
"shape": "VirtualNodeData"
|
1142
|
-
}
|
1143
|
-
},
|
1144
|
-
"payload": "virtualNode"
|
1145
|
-
},
|
1146
|
-
"CreateMeshOutput": {
|
1147
|
-
"type": "structure",
|
1148
|
-
"members": {
|
1149
|
-
"mesh": {
|
1150
|
-
"shape": "MeshData"
|
1151
|
-
}
|
1152
|
-
},
|
1153
|
-
"payload": "mesh"
|
1154
|
-
},
|
1155
|
-
"ResourceName": {
|
1156
|
-
"type": "string",
|
1157
|
-
"min": 1,
|
1158
|
-
"max": 255
|
1159
|
-
},
|
1160
|
-
"RouteData": {
|
1161
|
-
"type": "structure",
|
1162
|
-
"required": [
|
1163
|
-
"meshName",
|
1164
|
-
"routeName",
|
1165
|
-
"virtualRouterName"
|
1166
|
-
],
|
1167
|
-
"members": {
|
1168
|
-
"meshName": {
|
1169
|
-
"shape": "ResourceName"
|
1170
|
-
},
|
1171
|
-
"metadata": {
|
1172
|
-
"shape": "ResourceMetadata"
|
1173
|
-
},
|
1174
|
-
"routeName": {
|
1175
|
-
"shape": "ResourceName"
|
1176
|
-
},
|
1177
|
-
"spec": {
|
1178
|
-
"shape": "RouteSpec"
|
1179
|
-
},
|
1180
|
-
"status": {
|
1181
|
-
"shape": "RouteStatus"
|
1182
|
-
},
|
1183
|
-
"virtualRouterName": {
|
1184
|
-
"shape": "ResourceName"
|
1185
|
-
}
|
1186
|
-
}
|
1187
|
-
},
|
1188
|
-
"Arn": {
|
1189
|
-
"type": "string"
|
1190
|
-
},
|
1191
|
-
"NotFoundException": {
|
1192
|
-
"type": "structure",
|
1193
|
-
"members": {
|
1194
|
-
"message": {
|
1195
|
-
"shape": "String"
|
1196
|
-
}
|
1197
|
-
},
|
1198
|
-
"exception": true,
|
1199
|
-
"error": {
|
1200
|
-
"code": "NotFoundException",
|
1201
|
-
"httpStatusCode": 404,
|
1202
|
-
"senderFault": true
|
1203
|
-
}
|
1204
|
-
},
|
1205
|
-
"UpdateVirtualNodeInput": {
|
1206
|
-
"type": "structure",
|
1207
|
-
"required": [
|
1208
|
-
"meshName",
|
1209
|
-
"spec",
|
1210
|
-
"virtualNodeName"
|
1211
|
-
],
|
1212
|
-
"members": {
|
1213
|
-
"clientToken": {
|
1214
|
-
"shape": "String",
|
1215
|
-
"idempotencyToken": true
|
1216
|
-
},
|
1217
|
-
"meshName": {
|
1218
|
-
"shape": "ResourceName",
|
1219
|
-
"location": "uri",
|
1220
|
-
"locationName": "meshName"
|
1221
|
-
},
|
1222
|
-
"spec": {
|
1223
|
-
"shape": "VirtualNodeSpec"
|
1224
|
-
},
|
1225
|
-
"virtualNodeName": {
|
1226
|
-
"shape": "ResourceName",
|
1227
|
-
"location": "uri",
|
1228
|
-
"locationName": "virtualNodeName"
|
1229
|
-
}
|
1230
|
-
}
|
1231
|
-
},
|
1232
|
-
"DeleteRouteInput": {
|
1233
|
-
"type": "structure",
|
1234
|
-
"required": [
|
1235
|
-
"meshName",
|
1236
|
-
"routeName",
|
1237
|
-
"virtualRouterName"
|
1238
|
-
],
|
1239
|
-
"members": {
|
1240
|
-
"meshName": {
|
1241
|
-
"shape": "ResourceName",
|
1242
|
-
"location": "uri",
|
1243
|
-
"locationName": "meshName"
|
1244
|
-
},
|
1245
|
-
"routeName": {
|
1246
|
-
"shape": "ResourceName",
|
1247
|
-
"location": "uri",
|
1248
|
-
"locationName": "routeName"
|
1249
|
-
},
|
1250
|
-
"virtualRouterName": {
|
1251
|
-
"shape": "ResourceName",
|
1252
|
-
"location": "uri",
|
1253
|
-
"locationName": "virtualRouterName"
|
1254
|
-
}
|
1255
|
-
}
|
1256
|
-
},
|
1257
|
-
"ServiceUnavailableException": {
|
1258
|
-
"type": "structure",
|
1259
|
-
"members": {
|
1260
|
-
"message": {
|
1261
|
-
"shape": "String"
|
1262
|
-
}
|
1263
|
-
},
|
1264
|
-
"exception": true,
|
1265
|
-
"error": {
|
1266
|
-
"code": "ServiceUnavailableException",
|
1267
|
-
"httpStatusCode": 503,
|
1268
|
-
"fault": true
|
1269
|
-
}
|
1270
|
-
},
|
1271
|
-
"Listeners": {
|
1272
|
-
"type": "list",
|
1273
|
-
"member": {
|
1274
|
-
"shape": "Listener"
|
1275
|
-
}
|
1276
|
-
},
|
1277
|
-
"ListRoutesInput": {
|
1278
|
-
"type": "structure",
|
1279
|
-
"required": [
|
1280
|
-
"meshName",
|
1281
|
-
"virtualRouterName"
|
1282
|
-
],
|
1283
|
-
"members": {
|
1284
|
-
"limit": {
|
1285
|
-
"shape": "ListRoutesLimit",
|
1286
|
-
"location": "querystring",
|
1287
|
-
"locationName": "limit"
|
1288
|
-
},
|
1289
|
-
"meshName": {
|
1290
|
-
"shape": "ResourceName",
|
1291
|
-
"location": "uri",
|
1292
|
-
"locationName": "meshName"
|
1293
|
-
},
|
1294
|
-
"nextToken": {
|
1295
|
-
"shape": "String",
|
1296
|
-
"location": "querystring",
|
1297
|
-
"locationName": "nextToken"
|
1298
|
-
},
|
1299
|
-
"virtualRouterName": {
|
1300
|
-
"shape": "ResourceName",
|
1301
|
-
"location": "uri",
|
1302
|
-
"locationName": "virtualRouterName"
|
1303
|
-
}
|
1304
|
-
}
|
1305
|
-
},
|
1306
|
-
"HttpRoute": {
|
1307
|
-
"type": "structure",
|
1308
|
-
"members": {
|
1309
|
-
"action": {
|
1310
|
-
"shape": "HttpRouteAction"
|
1311
|
-
},
|
1312
|
-
"match": {
|
1313
|
-
"shape": "HttpRouteMatch"
|
1314
|
-
}
|
1315
|
-
}
|
1316
|
-
},
|
1317
|
-
"Timestamp": {
|
1318
|
-
"type": "timestamp"
|
1319
|
-
},
|
1320
|
-
"ListRoutesOutput": {
|
1321
|
-
"type": "structure",
|
1322
|
-
"required": [
|
1323
|
-
"routes"
|
1324
|
-
],
|
1325
|
-
"members": {
|
1326
|
-
"nextToken": {
|
1327
|
-
"shape": "String"
|
1328
|
-
},
|
1329
|
-
"routes": {
|
1330
|
-
"shape": "RouteList"
|
1331
|
-
}
|
1332
|
-
}
|
1333
|
-
},
|
1334
|
-
"RouteSpec": {
|
1335
|
-
"type": "structure",
|
1336
|
-
"members": {
|
1337
|
-
"httpRoute": {
|
1338
|
-
"shape": "HttpRoute"
|
1339
|
-
}
|
1340
|
-
}
|
1341
|
-
},
|
1342
|
-
"DescribeVirtualNodeInput": {
|
1343
|
-
"type": "structure",
|
1344
|
-
"required": [
|
1345
|
-
"meshName",
|
1346
|
-
"virtualNodeName"
|
1347
|
-
],
|
1348
|
-
"members": {
|
1349
|
-
"meshName": {
|
1350
|
-
"shape": "ResourceName",
|
1351
|
-
"location": "uri",
|
1352
|
-
"locationName": "meshName"
|
1353
|
-
},
|
1354
|
-
"virtualNodeName": {
|
1355
|
-
"shape": "ResourceName",
|
1356
|
-
"location": "uri",
|
1357
|
-
"locationName": "virtualNodeName"
|
1358
|
-
}
|
1359
|
-
}
|
1360
|
-
},
|
1361
|
-
"VirtualRouterRef": {
|
1362
|
-
"type": "structure",
|
1363
|
-
"members": {
|
1364
|
-
"arn": {
|
1365
|
-
"shape": "Arn"
|
1366
|
-
},
|
1367
|
-
"meshName": {
|
1368
|
-
"shape": "ResourceName"
|
1369
|
-
},
|
1370
|
-
"virtualRouterName": {
|
1371
|
-
"shape": "ResourceName"
|
1372
|
-
}
|
1373
|
-
}
|
1374
|
-
},
|
1375
|
-
"VirtualRouterStatusCode": {
|
1376
|
-
"type": "string",
|
1377
|
-
"enum": [
|
1378
|
-
"ACTIVE",
|
1379
|
-
"DELETED",
|
1380
|
-
"INACTIVE"
|
1381
|
-
]
|
1382
|
-
},
|
1383
|
-
"ListVirtualNodesOutput": {
|
1384
|
-
"type": "structure",
|
1385
|
-
"required": [
|
1386
|
-
"virtualNodes"
|
1387
|
-
],
|
1388
|
-
"members": {
|
1389
|
-
"nextToken": {
|
1390
|
-
"shape": "String"
|
1391
|
-
},
|
1392
|
-
"virtualNodes": {
|
1393
|
-
"shape": "VirtualNodeList"
|
1394
|
-
}
|
1395
|
-
}
|
1396
|
-
},
|
1397
|
-
"DeleteVirtualNodeOutput": {
|
1398
|
-
"type": "structure",
|
1399
|
-
"members": {
|
1400
|
-
"virtualNode": {
|
1401
|
-
"shape": "VirtualNodeData"
|
1402
|
-
}
|
1403
|
-
},
|
1404
|
-
"payload": "virtualNode"
|
1405
|
-
},
|
1406
|
-
"UpdateVirtualRouterInput": {
|
1407
|
-
"type": "structure",
|
1408
|
-
"required": [
|
1409
|
-
"meshName",
|
1410
|
-
"spec",
|
1411
|
-
"virtualRouterName"
|
1412
|
-
],
|
1413
|
-
"members": {
|
1414
|
-
"clientToken": {
|
1415
|
-
"shape": "String",
|
1416
|
-
"idempotencyToken": true
|
1417
|
-
},
|
1418
|
-
"meshName": {
|
1419
|
-
"shape": "ResourceName",
|
1420
|
-
"location": "uri",
|
1421
|
-
"locationName": "meshName"
|
1422
|
-
},
|
1423
|
-
"spec": {
|
1424
|
-
"shape": "VirtualRouterSpec"
|
1425
|
-
},
|
1426
|
-
"virtualRouterName": {
|
1427
|
-
"shape": "ResourceName",
|
1428
|
-
"location": "uri",
|
1429
|
-
"locationName": "virtualRouterName"
|
1430
|
-
}
|
1431
|
-
}
|
1432
|
-
},
|
1433
|
-
"ResourceInUseException": {
|
1434
|
-
"type": "structure",
|
1435
|
-
"members": {
|
1436
|
-
"message": {
|
1437
|
-
"shape": "String"
|
1438
|
-
}
|
1439
|
-
},
|
1440
|
-
"exception": true,
|
1441
|
-
"error": {
|
1442
|
-
"code": "ResourceInUseException",
|
1443
|
-
"httpStatusCode": 409,
|
1444
|
-
"senderFault": true
|
1445
|
-
}
|
1446
|
-
},
|
1447
|
-
"DescribeRouteInput": {
|
1448
|
-
"type": "structure",
|
1449
|
-
"required": [
|
1450
|
-
"meshName",
|
1451
|
-
"routeName",
|
1452
|
-
"virtualRouterName"
|
1453
|
-
],
|
1454
|
-
"members": {
|
1455
|
-
"meshName": {
|
1456
|
-
"shape": "ResourceName",
|
1457
|
-
"location": "uri",
|
1458
|
-
"locationName": "meshName"
|
1459
|
-
},
|
1460
|
-
"routeName": {
|
1461
|
-
"shape": "ResourceName",
|
1462
|
-
"location": "uri",
|
1463
|
-
"locationName": "routeName"
|
1464
|
-
},
|
1465
|
-
"virtualRouterName": {
|
1466
|
-
"shape": "ResourceName",
|
1467
|
-
"location": "uri",
|
1468
|
-
"locationName": "virtualRouterName"
|
1469
|
-
}
|
1470
|
-
}
|
1471
|
-
},
|
1472
|
-
"ListVirtualRoutersOutput": {
|
1473
|
-
"type": "structure",
|
1474
|
-
"required": [
|
1475
|
-
"virtualRouters"
|
1476
|
-
],
|
1477
|
-
"members": {
|
1478
|
-
"nextToken": {
|
1479
|
-
"shape": "String"
|
1480
|
-
},
|
1481
|
-
"virtualRouters": {
|
1482
|
-
"shape": "VirtualRouterList"
|
1483
|
-
}
|
1484
|
-
}
|
1485
|
-
},
|
1486
|
-
"CreateVirtualNodeOutput": {
|
1487
|
-
"type": "structure",
|
1488
|
-
"members": {
|
1489
|
-
"virtualNode": {
|
1490
|
-
"shape": "VirtualNodeData"
|
1491
|
-
}
|
1492
|
-
},
|
1493
|
-
"payload": "virtualNode"
|
1494
|
-
},
|
1495
|
-
"DeleteVirtualRouterOutput": {
|
1496
|
-
"type": "structure",
|
1497
|
-
"members": {
|
1498
|
-
"virtualRouter": {
|
1499
|
-
"shape": "VirtualRouterData"
|
1500
|
-
}
|
1501
|
-
},
|
1502
|
-
"payload": "virtualRouter"
|
1503
|
-
},
|
1504
|
-
"ListRoutesLimit": {
|
1505
|
-
"type": "integer",
|
1506
|
-
"box": true,
|
1507
|
-
"min": 1,
|
1508
|
-
"max": 100
|
1509
|
-
},
|
1510
|
-
"PortProtocol": {
|
1511
|
-
"type": "string",
|
1512
|
-
"enum": [
|
1513
|
-
"http",
|
1514
|
-
"tcp"
|
1515
|
-
]
|
1516
|
-
},
|
1517
|
-
"MeshList": {
|
1518
|
-
"type": "list",
|
1519
|
-
"member": {
|
1520
|
-
"shape": "MeshRef"
|
1521
|
-
}
|
1522
|
-
},
|
1523
|
-
"ResourceMetadata": {
|
1524
|
-
"type": "structure",
|
1525
|
-
"members": {
|
1526
|
-
"arn": {
|
1527
|
-
"shape": "Arn"
|
1528
|
-
},
|
1529
|
-
"createdAt": {
|
1530
|
-
"shape": "Timestamp"
|
1531
|
-
},
|
1532
|
-
"lastUpdatedAt": {
|
1533
|
-
"shape": "Timestamp"
|
1534
|
-
},
|
1535
|
-
"uid": {
|
1536
|
-
"shape": "String"
|
1537
|
-
},
|
1538
|
-
"version": {
|
1539
|
-
"shape": "Long"
|
1540
|
-
}
|
1541
|
-
}
|
1542
|
-
},
|
1543
|
-
"CreateMeshInput": {
|
1544
|
-
"type": "structure",
|
1545
|
-
"required": [
|
1546
|
-
"meshName"
|
1547
|
-
],
|
1548
|
-
"members": {
|
1549
|
-
"clientToken": {
|
1550
|
-
"shape": "String",
|
1551
|
-
"idempotencyToken": true
|
1552
|
-
},
|
1553
|
-
"meshName": {
|
1554
|
-
"shape": "ResourceName"
|
1555
|
-
}
|
1556
|
-
}
|
1557
|
-
},
|
1558
|
-
"PortMapping": {
|
1559
|
-
"type": "structure",
|
1560
|
-
"members": {
|
1561
|
-
"port": {
|
1562
|
-
"shape": "PortNumber"
|
1563
|
-
},
|
1564
|
-
"protocol": {
|
1565
|
-
"shape": "PortProtocol"
|
1566
|
-
}
|
1567
|
-
}
|
1568
|
-
},
|
1569
|
-
"VirtualNodeStatusCode": {
|
1570
|
-
"type": "string",
|
1571
|
-
"enum": [
|
1572
|
-
"ACTIVE",
|
1573
|
-
"DELETED",
|
1574
|
-
"INACTIVE"
|
1575
|
-
]
|
1576
|
-
},
|
1577
|
-
"DeleteVirtualRouterInput": {
|
1578
|
-
"type": "structure",
|
1579
|
-
"required": [
|
1580
|
-
"meshName",
|
1581
|
-
"virtualRouterName"
|
1582
|
-
],
|
1583
|
-
"members": {
|
1584
|
-
"meshName": {
|
1585
|
-
"shape": "ResourceName",
|
1586
|
-
"location": "uri",
|
1587
|
-
"locationName": "meshName"
|
1588
|
-
},
|
1589
|
-
"virtualRouterName": {
|
1590
|
-
"shape": "ResourceName",
|
1591
|
-
"location": "uri",
|
1592
|
-
"locationName": "virtualRouterName"
|
1593
|
-
}
|
1594
|
-
}
|
1595
|
-
},
|
1596
|
-
"VirtualRouterSpec": {
|
1597
|
-
"type": "structure",
|
1598
|
-
"members": {
|
1599
|
-
"serviceNames": {
|
1600
|
-
"shape": "ServiceNames"
|
1601
|
-
}
|
1602
|
-
}
|
1603
|
-
},
|
1604
|
-
"UpdateRouteInput": {
|
1605
|
-
"type": "structure",
|
1606
|
-
"required": [
|
1607
|
-
"meshName",
|
1608
|
-
"routeName",
|
1609
|
-
"spec",
|
1610
|
-
"virtualRouterName"
|
1611
|
-
],
|
1612
|
-
"members": {
|
1613
|
-
"clientToken": {
|
1614
|
-
"shape": "String",
|
1615
|
-
"idempotencyToken": true
|
1616
|
-
},
|
1617
|
-
"meshName": {
|
1618
|
-
"shape": "ResourceName",
|
1619
|
-
"location": "uri",
|
1620
|
-
"locationName": "meshName"
|
1621
|
-
},
|
1622
|
-
"routeName": {
|
1623
|
-
"shape": "ResourceName",
|
1624
|
-
"location": "uri",
|
1625
|
-
"locationName": "routeName"
|
1626
|
-
},
|
1627
|
-
"spec": {
|
1628
|
-
"shape": "RouteSpec"
|
1629
|
-
},
|
1630
|
-
"virtualRouterName": {
|
1631
|
-
"shape": "ResourceName",
|
1632
|
-
"location": "uri",
|
1633
|
-
"locationName": "virtualRouterName"
|
1634
|
-
}
|
1635
|
-
}
|
1636
|
-
},
|
1637
|
-
"PercentInt": {
|
1638
|
-
"type": "integer",
|
1639
|
-
"min": 0,
|
1640
|
-
"max": 100
|
1641
|
-
},
|
1642
|
-
"ListMeshesLimit": {
|
1643
|
-
"type": "integer",
|
1644
|
-
"box": true,
|
1645
|
-
"min": 1,
|
1646
|
-
"max": 100
|
1647
|
-
},
|
1648
|
-
"DescribeMeshInput": {
|
1649
|
-
"type": "structure",
|
1650
|
-
"required": [
|
1651
|
-
"meshName"
|
1652
|
-
],
|
1653
|
-
"members": {
|
1654
|
-
"meshName": {
|
1655
|
-
"shape": "ResourceName",
|
1656
|
-
"location": "uri",
|
1657
|
-
"locationName": "meshName"
|
1658
|
-
}
|
1659
|
-
}
|
1660
|
-
},
|
1661
|
-
"DescribeMeshOutput": {
|
1662
|
-
"type": "structure",
|
1663
|
-
"members": {
|
1664
|
-
"mesh": {
|
1665
|
-
"shape": "MeshData"
|
1666
|
-
}
|
1667
|
-
},
|
1668
|
-
"payload": "mesh"
|
1669
|
-
},
|
1670
|
-
"VirtualRouterData": {
|
1671
|
-
"type": "structure",
|
1672
|
-
"required": [
|
1673
|
-
"meshName",
|
1674
|
-
"virtualRouterName"
|
1675
|
-
],
|
1676
|
-
"members": {
|
1677
|
-
"meshName": {
|
1678
|
-
"shape": "ResourceName"
|
1679
|
-
},
|
1680
|
-
"metadata": {
|
1681
|
-
"shape": "ResourceMetadata"
|
1682
|
-
},
|
1683
|
-
"spec": {
|
1684
|
-
"shape": "VirtualRouterSpec"
|
1685
|
-
},
|
1686
|
-
"status": {
|
1687
|
-
"shape": "VirtualRouterStatus"
|
1688
|
-
},
|
1689
|
-
"virtualRouterName": {
|
1690
|
-
"shape": "ResourceName"
|
1691
|
-
}
|
1692
|
-
}
|
1693
|
-
},
|
1694
|
-
"VirtualRouterList": {
|
1695
|
-
"type": "list",
|
1696
|
-
"member": {
|
1697
|
-
"shape": "VirtualRouterRef"
|
1698
|
-
}
|
1699
|
-
},
|
1700
|
-
"Listener": {
|
1701
|
-
"type": "structure",
|
1702
|
-
"members": {
|
1703
|
-
"healthCheck": {
|
1704
|
-
"shape": "HealthCheckPolicy"
|
1705
|
-
},
|
1706
|
-
"portMapping": {
|
1707
|
-
"shape": "PortMapping"
|
1708
|
-
}
|
1709
|
-
}
|
1710
|
-
},
|
1711
|
-
"String": {
|
1712
|
-
"type": "string"
|
1713
|
-
},
|
1714
|
-
"HealthCheckPolicy": {
|
1715
|
-
"type": "structure",
|
1716
|
-
"required": [
|
1717
|
-
"healthyThreshold",
|
1718
|
-
"intervalMillis",
|
1719
|
-
"protocol",
|
1720
|
-
"timeoutMillis",
|
1721
|
-
"unhealthyThreshold"
|
1722
|
-
],
|
1723
|
-
"members": {
|
1724
|
-
"healthyThreshold": {
|
1725
|
-
"shape": "HealthCheckThreshold"
|
1726
|
-
},
|
1727
|
-
"intervalMillis": {
|
1728
|
-
"shape": "HealthCheckIntervalMillis"
|
1729
|
-
},
|
1730
|
-
"path": {
|
1731
|
-
"shape": "String"
|
1732
|
-
},
|
1733
|
-
"port": {
|
1734
|
-
"shape": "PortNumber"
|
1735
|
-
},
|
1736
|
-
"protocol": {
|
1737
|
-
"shape": "PortProtocol"
|
1738
|
-
},
|
1739
|
-
"timeoutMillis": {
|
1740
|
-
"shape": "HealthCheckTimeoutMillis"
|
1741
|
-
},
|
1742
|
-
"unhealthyThreshold": {
|
1743
|
-
"shape": "HealthCheckThreshold"
|
1744
|
-
}
|
1745
|
-
}
|
1746
|
-
},
|
1747
|
-
"ListVirtualRoutersInput": {
|
1748
|
-
"type": "structure",
|
1749
|
-
"required": [
|
1750
|
-
"meshName"
|
1751
|
-
],
|
1752
|
-
"members": {
|
1753
|
-
"limit": {
|
1754
|
-
"shape": "ListVirtualRoutersLimit",
|
1755
|
-
"location": "querystring",
|
1756
|
-
"locationName": "limit"
|
1757
|
-
},
|
1758
|
-
"meshName": {
|
1759
|
-
"shape": "ResourceName",
|
1760
|
-
"location": "uri",
|
1761
|
-
"locationName": "meshName"
|
1762
|
-
},
|
1763
|
-
"nextToken": {
|
1764
|
-
"shape": "String",
|
1765
|
-
"location": "querystring",
|
1766
|
-
"locationName": "nextToken"
|
1767
|
-
}
|
1768
|
-
}
|
1769
|
-
},
|
1770
|
-
"CreateVirtualNodeInput": {
|
1771
|
-
"type": "structure",
|
1772
|
-
"required": [
|
1773
|
-
"meshName",
|
1774
|
-
"spec",
|
1775
|
-
"virtualNodeName"
|
1776
|
-
],
|
1777
|
-
"members": {
|
1778
|
-
"clientToken": {
|
1779
|
-
"shape": "String",
|
1780
|
-
"idempotencyToken": true
|
1781
|
-
},
|
1782
|
-
"meshName": {
|
1783
|
-
"shape": "ResourceName",
|
1784
|
-
"location": "uri",
|
1785
|
-
"locationName": "meshName"
|
1786
|
-
},
|
1787
|
-
"spec": {
|
1788
|
-
"shape": "VirtualNodeSpec"
|
1789
|
-
},
|
1790
|
-
"virtualNodeName": {
|
1791
|
-
"shape": "ResourceName"
|
1792
|
-
}
|
1793
|
-
}
|
1794
|
-
},
|
1795
|
-
"BadRequestException": {
|
1796
|
-
"type": "structure",
|
1797
|
-
"members": {
|
1798
|
-
"message": {
|
1799
|
-
"shape": "String"
|
1800
|
-
}
|
1801
|
-
},
|
1802
|
-
"exception": true,
|
1803
|
-
"error": {
|
1804
|
-
"code": "BadRequestException",
|
1805
|
-
"httpStatusCode": 400,
|
1806
|
-
"senderFault": true
|
1807
|
-
}
|
1808
|
-
},
|
1809
|
-
"MeshData": {
|
1810
|
-
"type": "structure",
|
1811
|
-
"required": [
|
1812
|
-
"meshName",
|
1813
|
-
"metadata"
|
1814
|
-
],
|
1815
|
-
"members": {
|
1816
|
-
"meshName": {
|
1817
|
-
"shape": "ResourceName"
|
1818
|
-
},
|
1819
|
-
"metadata": {
|
1820
|
-
"shape": "ResourceMetadata"
|
1821
|
-
},
|
1822
|
-
"status": {
|
1823
|
-
"shape": "MeshStatus"
|
1824
|
-
}
|
1825
|
-
}
|
1826
|
-
},
|
1827
|
-
"ListVirtualNodesLimit": {
|
1828
|
-
"type": "integer",
|
1829
|
-
"box": true,
|
1830
|
-
"min": 1,
|
1831
|
-
"max": 100
|
1832
|
-
},
|
1833
|
-
"WeightedTargets": {
|
1834
|
-
"type": "list",
|
1835
|
-
"member": {
|
1836
|
-
"shape": "WeightedTarget"
|
1837
|
-
}
|
1838
|
-
},
|
1839
|
-
"DeleteMeshInput": {
|
1840
|
-
"type": "structure",
|
1841
|
-
"required": [
|
1842
|
-
"meshName"
|
1843
|
-
],
|
1844
|
-
"members": {
|
1845
|
-
"meshName": {
|
1846
|
-
"shape": "ResourceName",
|
1847
|
-
"location": "uri",
|
1848
|
-
"locationName": "meshName"
|
1849
|
-
}
|
1850
|
-
}
|
1851
|
-
},
|
1852
|
-
"HttpRouteMatch": {
|
1853
|
-
"type": "structure",
|
1854
|
-
"members": {
|
1855
|
-
"prefix": {
|
1856
|
-
"shape": "String"
|
1857
|
-
}
|
1858
|
-
}
|
1859
|
-
},
|
1860
|
-
"DeleteRouteOutput": {
|
1861
|
-
"type": "structure",
|
1862
|
-
"members": {
|
1863
|
-
"route": {
|
1864
|
-
"shape": "RouteData"
|
1865
|
-
}
|
1866
|
-
},
|
1867
|
-
"payload": "route"
|
1868
|
-
},
|
1869
|
-
"Backends": {
|
1870
|
-
"type": "list",
|
1871
|
-
"member": {
|
1872
|
-
"shape": "ServiceName"
|
1873
|
-
}
|
1874
|
-
},
|
1875
|
-
"CreateRouteInput": {
|
1876
|
-
"type": "structure",
|
1877
|
-
"required": [
|
1878
|
-
"meshName",
|
1879
|
-
"routeName",
|
1880
|
-
"spec",
|
1881
|
-
"virtualRouterName"
|
1882
|
-
],
|
1883
|
-
"members": {
|
1884
|
-
"clientToken": {
|
1885
|
-
"shape": "String",
|
1886
|
-
"idempotencyToken": true
|
1887
|
-
},
|
1888
|
-
"meshName": {
|
1889
|
-
"shape": "ResourceName",
|
1890
|
-
"location": "uri",
|
1891
|
-
"locationName": "meshName"
|
1892
|
-
},
|
1893
|
-
"routeName": {
|
1894
|
-
"shape": "ResourceName"
|
1895
|
-
},
|
1896
|
-
"spec": {
|
1897
|
-
"shape": "RouteSpec"
|
1898
|
-
},
|
1899
|
-
"virtualRouterName": {
|
1900
|
-
"shape": "ResourceName",
|
1901
|
-
"location": "uri",
|
1902
|
-
"locationName": "virtualRouterName"
|
1903
|
-
}
|
1904
|
-
}
|
1905
|
-
},
|
1906
|
-
"VirtualNodeStatus": {
|
1907
|
-
"type": "structure",
|
1908
|
-
"members": {
|
1909
|
-
"status": {
|
1910
|
-
"shape": "VirtualNodeStatusCode"
|
1911
|
-
}
|
1912
|
-
}
|
1913
|
-
},
|
1914
|
-
"ListVirtualNodesInput": {
|
1915
|
-
"type": "structure",
|
1916
|
-
"required": [
|
1917
|
-
"meshName"
|
1918
|
-
],
|
1919
|
-
"members": {
|
1920
|
-
"limit": {
|
1921
|
-
"shape": "ListVirtualNodesLimit",
|
1922
|
-
"location": "querystring",
|
1923
|
-
"locationName": "limit"
|
1924
|
-
},
|
1925
|
-
"meshName": {
|
1926
|
-
"shape": "ResourceName",
|
1927
|
-
"location": "uri",
|
1928
|
-
"locationName": "meshName"
|
1929
|
-
},
|
1930
|
-
"nextToken": {
|
1931
|
-
"shape": "String",
|
1932
|
-
"location": "querystring",
|
1933
|
-
"locationName": "nextToken"
|
1934
|
-
}
|
1935
|
-
}
|
1936
|
-
},
|
1937
|
-
"RouteRef": {
|
1938
|
-
"type": "structure",
|
1939
|
-
"members": {
|
1940
|
-
"arn": {
|
1941
|
-
"shape": "Arn"
|
1942
|
-
},
|
1943
|
-
"meshName": {
|
1944
|
-
"shape": "ResourceName"
|
1945
|
-
},
|
1946
|
-
"routeName": {
|
1947
|
-
"shape": "ResourceName"
|
1948
|
-
},
|
1949
|
-
"virtualRouterName": {
|
1950
|
-
"shape": "ResourceName"
|
1951
|
-
}
|
1952
|
-
}
|
1953
|
-
},
|
1954
|
-
"RouteStatusCode": {
|
1955
|
-
"type": "string",
|
1956
|
-
"enum": [
|
1957
|
-
"ACTIVE",
|
1958
|
-
"DELETED",
|
1959
|
-
"INACTIVE"
|
1960
|
-
]
|
1961
|
-
},
|
1962
|
-
"UpdateVirtualNodeOutput": {
|
1963
|
-
"type": "structure",
|
1964
|
-
"members": {
|
1965
|
-
"virtualNode": {
|
1966
|
-
"shape": "VirtualNodeData"
|
1967
|
-
}
|
1968
|
-
},
|
1969
|
-
"payload": "virtualNode"
|
1970
|
-
}
|
1971
|
-
}
|
1972
|
-
}
|