aws-sdk-core 2.11.502 → 3.94.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +89 -584
- data/lib/aws-sdk-core/arn.rb +77 -0
- data/lib/aws-sdk-core/arn_parser.rb +38 -0
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +102 -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 +20 -16
- data/lib/aws-sdk-core/credential_provider.rb +0 -29
- data/lib/aws-sdk-core/credential_provider_chain.rb +88 -32
- data/lib/aws-sdk-core/deprecations.rb +16 -10
- data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
- data/lib/aws-sdk-core/errors.rb +167 -26
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
- data/lib/aws-sdk-core/json.rb +17 -19
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +7 -1
- data/lib/aws-sdk-core/log/param_filter.rb +6 -5
- data/lib/aws-sdk-core/pageable_response.rb +35 -20
- 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 +58 -25
- 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 +281 -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 +44 -51
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +137 -0
- data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +98 -0
- data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +142 -0
- data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +57 -0
- data/lib/aws-sdk-core/plugins/retry_errors.rb +332 -98
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +152 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +36 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +51 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +139 -96
- 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 +70 -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 +48 -0
- data/lib/aws-sdk-sts/client.rb +2210 -0
- data/lib/aws-sdk-sts/client_api.rb +336 -0
- data/lib/aws-sdk-sts/customizations.rb +2 -0
- data/lib/aws-sdk-sts/errors.rb +164 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
- data/lib/aws-sdk-sts/presigner.rb +67 -0
- data/lib/aws-sdk-sts/resource.rb +24 -0
- data/lib/aws-sdk-sts/types.rb +1504 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +5 -9
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +246 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/handler_list_entry.rb +2 -2
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +6 -2
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +35 -24
- data/lib/seahorse/client/net_http/handler.rb +12 -1
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +67 -6
- data/lib/seahorse/client/plugins/content_length.rb +5 -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/client/response.rb +3 -5
- 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 +110 -1176
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
- data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1195
- data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
- data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -872
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -2374
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5384
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6981
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/appconfig/2019-10-09/api-2.json +0 -1428
- data/apis/appconfig/2019-10-09/examples-1.json +0 -5
- data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -791
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -1261
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3756
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2356
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2288
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -989
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2467
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2345
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -64
- data/apis/batch/2016-08-10/api-2.json +0 -1137
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -830
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1722
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -19
- data/apis/chime/2018-05-01/api-2.json +0 -5506
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -64
- data/apis/cloud9/2017-09-23/api-2.json +0 -674
- data/apis/cloud9/2017-09-23/examples-1.json +0 -315
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/smoke.json +0 -19
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
- data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
- data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1910
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -5383
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -820
- data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
- data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
- data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -801
- data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
- data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -15
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar-connections/2019-12-01/api-2.json +0 -315
- data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
- data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
- data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
- data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
- data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5450
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2664
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1209
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
- data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
- data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -4379
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -26
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -2139
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -62
- data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
- data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
- data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/api-2.json +0 -277
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/dataexchange/2017-07-25/api-2.json +0 -2273
- data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1451
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/detective/2018-10-26/api-2.json +0 -486
- data/apis/detective/2018-10-26/examples-1.json +0 -5
- data/apis/detective/2018-10-26/paginators-1.json +0 -19
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2074
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1369
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -687
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2341
- data/apis/dms/2016-01-01/examples-1.json +0 -1074
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2534
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -3019
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -818
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ebs/2019-11-02/api-2.json +0 -277
- data/apis/ebs/2019-11-02/examples-1.json +0 -5
- data/apis/ebs/2019-11-02/paginators-1.json +0 -14
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -29632
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -558
- data/apis/ec2/2016-11-15/resources-1.json +0 -2907
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -640
- data/apis/ecr/2015-09-21/api-2.json +0 -1633
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -48
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecr/2015-09-21/waiters-2.json +0 -45
- data/apis/ecs/2014-11-13/api-2.json +0 -3176
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -52
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -1457
- data/apis/eks/2017-11-01/examples-1.json +0 -135
- data/apis/eks/2017-11-01/paginators-1.json +0 -28
- data/apis/eks/2017-11-01/waiters-2.json +0 -91
- data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
- data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
- data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
- data/apis/elasticache/2015-02-02/api-2.json +0 -3758
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -94
- 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 -2567
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -30
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1377
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2338
- 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 -2044
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -44
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1467
- 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 -1467
- 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 -1552
- 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 -834
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/forecast/2018-06-26/api-2.json +0 -1418
- data/apis/forecast/2018-06-26/examples-1.json +0 -5
- data/apis/forecast/2018-06-26/paginators-1.json +0 -40
- data/apis/forecastquery/2018-06-26/api-2.json +0 -146
- data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
- data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
- data/apis/frauddetector/2019-11-15/api-2.json +0 -1633
- data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
- data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
- data/apis/fsx/2018-03-01/api-2.json +0 -1384
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -19
- data/apis/gamelift/2015-10-01/api-2.json +0 -4455
- 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 -1165
- 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 -6344
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -125
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5124
- data/apis/groundstation/2019-05-23/api-2.json +0 -1409
- data/apis/groundstation/2019-05-23/examples-1.json +0 -5
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3736
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -57
- data/apis/health/2016-08-04/api-2.json +0 -836
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -52
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5797
- data/apis/iam/2010-05-08/examples-1.json +0 -1577
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/imagebuilder/2019-12-02/api-2.json +0 -2431
- data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
- data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -11427
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1262
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
- data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
- data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
- data/apis/iotsitewise/2019-12-02/api-2.json +0 -3580
- data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
- data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
- data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -2297
- data/apis/kafka/2018-11-14/paginators-1.json +0 -40
- data/apis/kendra/2019-02-03/api-2.json +0 -1748
- data/apis/kendra/2019-02-03/examples-1.json +0 -5
- data/apis/kendra/2019-02-03/paginators-1.json +0 -19
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
- data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
- data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
- data/apis/kms/2014-11-01/api-2.json +0 -2155
- 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 -2946
- data/apis/lambda/2015-03-31/examples-1.json +0 -1513
- data/apis/lambda/2015-03-31/paginators-1.json +0 -52
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -74
- data/apis/lex-models/2017-04-19/api-2.json +0 -2550
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -886
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -5429
- 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 -1498
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
- data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
- data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -2405
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8921
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -10868
- data/apis/medialive/2017-10-14/paginators-1.json +0 -52
- data/apis/medialive/2017-10-14/waiters-2.json +0 -217
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1757
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -871
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -584
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
- data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
- data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1973
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
- data/apis/monitoring/2010-08-01/resources-1.json +0 -505
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
- data/apis/mq/2017-11-27/api-2.json +0 -2577
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3583
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
- data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
- data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2578
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -86
- data/apis/outposts/2019-12-03/api-2.json +0 -429
- data/apis/outposts/2019-12-03/examples-1.json +0 -5
- data/apis/outposts/2019-12-03/paginators-1.json +0 -14
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -149
- 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 -1871
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -64
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -12340
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -832
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/qldb-session/2019-07-11/api-2.json +0 -259
- data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
- data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
- data/apis/qldb/2019-01-02/api-2.json +0 -776
- data/apis/qldb/2019-01-02/examples-1.json +0 -5
- data/apis/qldb/2019-01-02/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -5550
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -49
- data/apis/ram/2018-01-04/api-2.json +0 -1315
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -39
- data/apis/rds-data/2018-08-01/api-2.json +0 -552
- data/apis/rds-data/2018-08-01/examples-1.json +0 -5
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -7703
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -164
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -260
- data/apis/redshift/2012-12-01/api-2.json +0 -5526
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -112
- 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 -2854
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -68
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
- data/apis/robomaker/2018-06-29/api-2.json +0 -2420
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
- data/apis/route53/2013-04-01/api-2.json +0 -3791
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -39
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1507
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53domains/2014-05-15/smoke.json +0 -18
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6653
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1585
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -14
- data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
- data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
- data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
- data/apis/sagemaker/2017-07-24/api-2.json +0 -9257
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
- data/apis/savingsplans/2019-06-28/api-2.json +0 -755
- data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
- data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
- data/apis/schemas/2019-12-02/api-2.json +0 -2867
- data/apis/schemas/2019-12-02/paginators-1.json +0 -34
- data/apis/schemas/2019-12-02/waiters-2.json +0 -36
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2979
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3983
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -89
- 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 -342
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/sesv2/2019-09-27/api-2.json +0 -2433
- data/apis/sesv2/2019-09-27/examples-1.json +0 -5
- data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
- data/apis/shield/2016-06-02/api-2.json +0 -968
- 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 -822
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -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 -977
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1128
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -9261
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
- data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
- data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
- data/apis/sso/2019-06-10/api-2.json +0 -281
- data/apis/sso/2019-06-10/examples-1.json +0 -5
- data/apis/sso/2019-06-10/paginators-1.json +0 -16
- data/apis/states/2016-11-23/api-2.json +0 -1477
- 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 -3385
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -598
- data/apis/sts/2011-06-15/examples-1.json +0 -271
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -773
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/support/2013-04-15/smoke.json +0 -22
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/synthetics/2017-10-11/api-2.json +0 -754
- data/apis/synthetics/2017-10-11/examples-1.json +0 -5
- data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
- data/apis/textract/2018-06-27/api-2.json +0 -653
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -272
- data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -1115
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -29
- data/apis/transfer/2018-11-05/api-2.json +0 -1001
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -658
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -14
- data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3958
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/wafv2/2019-07-29/api-2.json +0 -2637
- data/apis/wafv2/2019-07-29/examples-1.json +0 -5
- data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
- data/apis/wafv2/2019-07-29/smoke.json +0 -22
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -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 -1918
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
- data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
- data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
- data/apis/workspaces/2015-04-08/api-2.json +0 -2029
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1355
- 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 -8026
- data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -304
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/appconfig.rb +0 -6
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -72
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -6
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
- data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/codestarconnections.rb +0 -6
- data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/connectparticipant.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/dataexchange.rb +0 -5
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/detective.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ebs.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -7
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticinference.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
- data/lib/aws-sdk-core/forecastservice.rb +0 -6
- data/lib/aws-sdk-core/frauddetector.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/imagebuilder.rb +0 -6
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
- data/lib/aws-sdk-core/iotsitewise.rb +0 -7
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kendra.rb +0 -6
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/networkmanager.rb +0 -6
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/outposts.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/qldb.rb +0 -6
- data/lib/aws-sdk-core/qldbsession.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -7
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/savingsplans.rb +0 -6
- data/lib/aws-sdk-core/schemas.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/sesv2.rb +0 -6
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/sso.rb +0 -6
- data/lib/aws-sdk-core/ssooidc.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/synthetics.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/wafv2.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -889
@@ -1,388 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2018-10-05",
|
5
|
-
"endpointPrefix":"api.tunneling.iot",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"json",
|
8
|
-
"serviceFullName":"AWS IoT Secure Tunneling",
|
9
|
-
"serviceId":"IoTSecureTunneling",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"signingName":"IoTSecuredTunneling",
|
12
|
-
"targetPrefix":"IoTSecuredTunneling",
|
13
|
-
"uid":"iotsecuretunneling-2018-10-05"
|
14
|
-
},
|
15
|
-
"operations":{
|
16
|
-
"CloseTunnel":{
|
17
|
-
"name":"CloseTunnel",
|
18
|
-
"http":{
|
19
|
-
"method":"POST",
|
20
|
-
"requestUri":"/"
|
21
|
-
},
|
22
|
-
"input":{"shape":"CloseTunnelRequest"},
|
23
|
-
"output":{"shape":"CloseTunnelResponse"},
|
24
|
-
"errors":[
|
25
|
-
{"shape":"ResourceNotFoundException"}
|
26
|
-
]
|
27
|
-
},
|
28
|
-
"DescribeTunnel":{
|
29
|
-
"name":"DescribeTunnel",
|
30
|
-
"http":{
|
31
|
-
"method":"POST",
|
32
|
-
"requestUri":"/"
|
33
|
-
},
|
34
|
-
"input":{"shape":"DescribeTunnelRequest"},
|
35
|
-
"output":{"shape":"DescribeTunnelResponse"},
|
36
|
-
"errors":[
|
37
|
-
{"shape":"ResourceNotFoundException"}
|
38
|
-
]
|
39
|
-
},
|
40
|
-
"ListTagsForResource":{
|
41
|
-
"name":"ListTagsForResource",
|
42
|
-
"http":{
|
43
|
-
"method":"POST",
|
44
|
-
"requestUri":"/"
|
45
|
-
},
|
46
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
47
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
48
|
-
"errors":[
|
49
|
-
{"shape":"ResourceNotFoundException"}
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"ListTunnels":{
|
53
|
-
"name":"ListTunnels",
|
54
|
-
"http":{
|
55
|
-
"method":"POST",
|
56
|
-
"requestUri":"/"
|
57
|
-
},
|
58
|
-
"input":{"shape":"ListTunnelsRequest"},
|
59
|
-
"output":{"shape":"ListTunnelsResponse"}
|
60
|
-
},
|
61
|
-
"OpenTunnel":{
|
62
|
-
"name":"OpenTunnel",
|
63
|
-
"http":{
|
64
|
-
"method":"POST",
|
65
|
-
"requestUri":"/"
|
66
|
-
},
|
67
|
-
"input":{"shape":"OpenTunnelRequest"},
|
68
|
-
"output":{"shape":"OpenTunnelResponse"},
|
69
|
-
"errors":[
|
70
|
-
{"shape":"LimitExceededException"}
|
71
|
-
]
|
72
|
-
},
|
73
|
-
"TagResource":{
|
74
|
-
"name":"TagResource",
|
75
|
-
"http":{
|
76
|
-
"method":"POST",
|
77
|
-
"requestUri":"/"
|
78
|
-
},
|
79
|
-
"input":{"shape":"TagResourceRequest"},
|
80
|
-
"output":{"shape":"TagResourceResponse"},
|
81
|
-
"errors":[
|
82
|
-
{"shape":"ResourceNotFoundException"}
|
83
|
-
]
|
84
|
-
},
|
85
|
-
"UntagResource":{
|
86
|
-
"name":"UntagResource",
|
87
|
-
"http":{
|
88
|
-
"method":"POST",
|
89
|
-
"requestUri":"/"
|
90
|
-
},
|
91
|
-
"input":{"shape":"UntagResourceRequest"},
|
92
|
-
"output":{"shape":"UntagResourceResponse"},
|
93
|
-
"errors":[
|
94
|
-
{"shape":"ResourceNotFoundException"}
|
95
|
-
]
|
96
|
-
}
|
97
|
-
},
|
98
|
-
"shapes":{
|
99
|
-
"AmazonResourceName":{
|
100
|
-
"type":"string",
|
101
|
-
"max":1011,
|
102
|
-
"min":1
|
103
|
-
},
|
104
|
-
"ClientAccessToken":{
|
105
|
-
"type":"string",
|
106
|
-
"sensitive":true
|
107
|
-
},
|
108
|
-
"CloseTunnelRequest":{
|
109
|
-
"type":"structure",
|
110
|
-
"required":["tunnelId"],
|
111
|
-
"members":{
|
112
|
-
"tunnelId":{"shape":"TunnelId"},
|
113
|
-
"delete":{
|
114
|
-
"shape":"DeleteFlag",
|
115
|
-
"box":true
|
116
|
-
}
|
117
|
-
}
|
118
|
-
},
|
119
|
-
"CloseTunnelResponse":{
|
120
|
-
"type":"structure",
|
121
|
-
"members":{
|
122
|
-
}
|
123
|
-
},
|
124
|
-
"ConnectionState":{
|
125
|
-
"type":"structure",
|
126
|
-
"members":{
|
127
|
-
"status":{"shape":"ConnectionStatus"},
|
128
|
-
"lastUpdatedAt":{"shape":"DateType"}
|
129
|
-
}
|
130
|
-
},
|
131
|
-
"ConnectionStatus":{
|
132
|
-
"type":"string",
|
133
|
-
"enum":[
|
134
|
-
"CONNECTED",
|
135
|
-
"DISCONNECTED"
|
136
|
-
]
|
137
|
-
},
|
138
|
-
"DateType":{"type":"timestamp"},
|
139
|
-
"DeleteFlag":{"type":"boolean"},
|
140
|
-
"DescribeTunnelRequest":{
|
141
|
-
"type":"structure",
|
142
|
-
"required":["tunnelId"],
|
143
|
-
"members":{
|
144
|
-
"tunnelId":{"shape":"TunnelId"}
|
145
|
-
}
|
146
|
-
},
|
147
|
-
"DescribeTunnelResponse":{
|
148
|
-
"type":"structure",
|
149
|
-
"members":{
|
150
|
-
"tunnel":{"shape":"Tunnel"}
|
151
|
-
}
|
152
|
-
},
|
153
|
-
"Description":{
|
154
|
-
"type":"string",
|
155
|
-
"pattern":"[^\\p{C}]{1,2048}"
|
156
|
-
},
|
157
|
-
"DestinationConfig":{
|
158
|
-
"type":"structure",
|
159
|
-
"required":[
|
160
|
-
"thingName",
|
161
|
-
"services"
|
162
|
-
],
|
163
|
-
"members":{
|
164
|
-
"thingName":{"shape":"ThingName"},
|
165
|
-
"services":{"shape":"ServiceList"}
|
166
|
-
}
|
167
|
-
},
|
168
|
-
"ErrorMessage":{"type":"string"},
|
169
|
-
"LimitExceededException":{
|
170
|
-
"type":"structure",
|
171
|
-
"members":{
|
172
|
-
"message":{"shape":"ErrorMessage"}
|
173
|
-
},
|
174
|
-
"exception":true
|
175
|
-
},
|
176
|
-
"ListTagsForResourceRequest":{
|
177
|
-
"type":"structure",
|
178
|
-
"required":["resourceArn"],
|
179
|
-
"members":{
|
180
|
-
"resourceArn":{"shape":"AmazonResourceName"}
|
181
|
-
}
|
182
|
-
},
|
183
|
-
"ListTagsForResourceResponse":{
|
184
|
-
"type":"structure",
|
185
|
-
"members":{
|
186
|
-
"tags":{"shape":"TagList"}
|
187
|
-
}
|
188
|
-
},
|
189
|
-
"ListTunnelsRequest":{
|
190
|
-
"type":"structure",
|
191
|
-
"members":{
|
192
|
-
"thingName":{"shape":"ThingName"},
|
193
|
-
"maxResults":{
|
194
|
-
"shape":"MaxResults",
|
195
|
-
"box":true
|
196
|
-
},
|
197
|
-
"nextToken":{"shape":"NextToken"}
|
198
|
-
}
|
199
|
-
},
|
200
|
-
"ListTunnelsResponse":{
|
201
|
-
"type":"structure",
|
202
|
-
"members":{
|
203
|
-
"tunnelSummaries":{"shape":"TunnelSummaryList"},
|
204
|
-
"nextToken":{"shape":"NextToken"}
|
205
|
-
}
|
206
|
-
},
|
207
|
-
"MaxResults":{
|
208
|
-
"type":"integer",
|
209
|
-
"max":100,
|
210
|
-
"min":1
|
211
|
-
},
|
212
|
-
"NextToken":{
|
213
|
-
"type":"string",
|
214
|
-
"pattern":"[a-zA-Z0-9_=-]{1,4096}"
|
215
|
-
},
|
216
|
-
"OpenTunnelRequest":{
|
217
|
-
"type":"structure",
|
218
|
-
"members":{
|
219
|
-
"description":{"shape":"Description"},
|
220
|
-
"tags":{"shape":"TagList"},
|
221
|
-
"destinationConfig":{"shape":"DestinationConfig"},
|
222
|
-
"timeoutConfig":{"shape":"TimeoutConfig"}
|
223
|
-
}
|
224
|
-
},
|
225
|
-
"OpenTunnelResponse":{
|
226
|
-
"type":"structure",
|
227
|
-
"members":{
|
228
|
-
"tunnelId":{"shape":"TunnelId"},
|
229
|
-
"tunnelArn":{"shape":"TunnelArn"},
|
230
|
-
"sourceAccessToken":{"shape":"ClientAccessToken"},
|
231
|
-
"destinationAccessToken":{"shape":"ClientAccessToken"}
|
232
|
-
}
|
233
|
-
},
|
234
|
-
"ResourceNotFoundException":{
|
235
|
-
"type":"structure",
|
236
|
-
"members":{
|
237
|
-
"message":{"shape":"ErrorMessage"}
|
238
|
-
},
|
239
|
-
"exception":true
|
240
|
-
},
|
241
|
-
"Service":{
|
242
|
-
"type":"string",
|
243
|
-
"max":8,
|
244
|
-
"min":1,
|
245
|
-
"pattern":"[a-zA-Z0-9:_-]+"
|
246
|
-
},
|
247
|
-
"ServiceList":{
|
248
|
-
"type":"list",
|
249
|
-
"member":{"shape":"Service"},
|
250
|
-
"max":1,
|
251
|
-
"min":1
|
252
|
-
},
|
253
|
-
"Tag":{
|
254
|
-
"type":"structure",
|
255
|
-
"required":[
|
256
|
-
"key",
|
257
|
-
"value"
|
258
|
-
],
|
259
|
-
"members":{
|
260
|
-
"key":{"shape":"TagKey"},
|
261
|
-
"value":{"shape":"TagValue"}
|
262
|
-
}
|
263
|
-
},
|
264
|
-
"TagKey":{
|
265
|
-
"type":"string",
|
266
|
-
"max":128,
|
267
|
-
"min":1,
|
268
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
269
|
-
},
|
270
|
-
"TagKeyList":{
|
271
|
-
"type":"list",
|
272
|
-
"member":{"shape":"TagKey"},
|
273
|
-
"max":200,
|
274
|
-
"min":0
|
275
|
-
},
|
276
|
-
"TagList":{
|
277
|
-
"type":"list",
|
278
|
-
"member":{"shape":"Tag"},
|
279
|
-
"max":200,
|
280
|
-
"min":1
|
281
|
-
},
|
282
|
-
"TagResourceRequest":{
|
283
|
-
"type":"structure",
|
284
|
-
"required":[
|
285
|
-
"resourceArn",
|
286
|
-
"tags"
|
287
|
-
],
|
288
|
-
"members":{
|
289
|
-
"resourceArn":{"shape":"AmazonResourceName"},
|
290
|
-
"tags":{"shape":"TagList"}
|
291
|
-
}
|
292
|
-
},
|
293
|
-
"TagResourceResponse":{
|
294
|
-
"type":"structure",
|
295
|
-
"members":{
|
296
|
-
}
|
297
|
-
},
|
298
|
-
"TagValue":{
|
299
|
-
"type":"string",
|
300
|
-
"max":256,
|
301
|
-
"min":0,
|
302
|
-
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
303
|
-
},
|
304
|
-
"ThingName":{
|
305
|
-
"type":"string",
|
306
|
-
"max":128,
|
307
|
-
"min":1,
|
308
|
-
"pattern":"[a-zA-Z0-9:_-]+"
|
309
|
-
},
|
310
|
-
"TimeoutConfig":{
|
311
|
-
"type":"structure",
|
312
|
-
"members":{
|
313
|
-
"maxLifetimeTimeoutMinutes":{
|
314
|
-
"shape":"TimeoutInMin",
|
315
|
-
"box":true
|
316
|
-
}
|
317
|
-
}
|
318
|
-
},
|
319
|
-
"TimeoutInMin":{
|
320
|
-
"type":"integer",
|
321
|
-
"max":720,
|
322
|
-
"min":1
|
323
|
-
},
|
324
|
-
"Tunnel":{
|
325
|
-
"type":"structure",
|
326
|
-
"members":{
|
327
|
-
"tunnelId":{"shape":"TunnelId"},
|
328
|
-
"tunnelArn":{"shape":"TunnelArn"},
|
329
|
-
"status":{"shape":"TunnelStatus"},
|
330
|
-
"sourceConnectionState":{"shape":"ConnectionState"},
|
331
|
-
"destinationConnectionState":{"shape":"ConnectionState"},
|
332
|
-
"description":{"shape":"Description"},
|
333
|
-
"destinationConfig":{"shape":"DestinationConfig"},
|
334
|
-
"timeoutConfig":{"shape":"TimeoutConfig"},
|
335
|
-
"tags":{"shape":"TagList"},
|
336
|
-
"createdAt":{"shape":"DateType"},
|
337
|
-
"lastUpdatedAt":{"shape":"DateType"}
|
338
|
-
}
|
339
|
-
},
|
340
|
-
"TunnelArn":{
|
341
|
-
"type":"string",
|
342
|
-
"max":1600,
|
343
|
-
"min":1
|
344
|
-
},
|
345
|
-
"TunnelId":{
|
346
|
-
"type":"string",
|
347
|
-
"pattern":"[a-zA-Z0-9_\\-+=:]{1,128}"
|
348
|
-
},
|
349
|
-
"TunnelStatus":{
|
350
|
-
"type":"string",
|
351
|
-
"enum":[
|
352
|
-
"OPEN",
|
353
|
-
"CLOSED"
|
354
|
-
]
|
355
|
-
},
|
356
|
-
"TunnelSummary":{
|
357
|
-
"type":"structure",
|
358
|
-
"members":{
|
359
|
-
"tunnelId":{"shape":"TunnelId"},
|
360
|
-
"tunnelArn":{"shape":"TunnelArn"},
|
361
|
-
"status":{"shape":"TunnelStatus"},
|
362
|
-
"description":{"shape":"Description"},
|
363
|
-
"createdAt":{"shape":"DateType"},
|
364
|
-
"lastUpdatedAt":{"shape":"DateType"}
|
365
|
-
}
|
366
|
-
},
|
367
|
-
"TunnelSummaryList":{
|
368
|
-
"type":"list",
|
369
|
-
"member":{"shape":"TunnelSummary"}
|
370
|
-
},
|
371
|
-
"UntagResourceRequest":{
|
372
|
-
"type":"structure",
|
373
|
-
"required":[
|
374
|
-
"resourceArn",
|
375
|
-
"tagKeys"
|
376
|
-
],
|
377
|
-
"members":{
|
378
|
-
"resourceArn":{"shape":"AmazonResourceName"},
|
379
|
-
"tagKeys":{"shape":"TagKeyList"}
|
380
|
-
}
|
381
|
-
},
|
382
|
-
"UntagResourceResponse":{
|
383
|
-
"type":"structure",
|
384
|
-
"members":{
|
385
|
-
}
|
386
|
-
}
|
387
|
-
}
|
388
|
-
}
|
@@ -1,3580 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2019-12-02",
|
5
|
-
"endpointPrefix":"iotsitewise",
|
6
|
-
"jsonVersion":"1.1",
|
7
|
-
"protocol":"rest-json",
|
8
|
-
"serviceFullName":"AWS IoT SiteWise",
|
9
|
-
"serviceId":"IoTSiteWise",
|
10
|
-
"signatureVersion":"v4",
|
11
|
-
"signingName":"iotsitewise",
|
12
|
-
"uid":"iotsitewise-2019-12-02"
|
13
|
-
},
|
14
|
-
"operations":{
|
15
|
-
"AssociateAssets":{
|
16
|
-
"name":"AssociateAssets",
|
17
|
-
"http":{
|
18
|
-
"method":"POST",
|
19
|
-
"requestUri":"/assets/{assetId}/associate"
|
20
|
-
},
|
21
|
-
"input":{"shape":"AssociateAssetsRequest"},
|
22
|
-
"errors":[
|
23
|
-
{"shape":"InvalidRequestException"},
|
24
|
-
{"shape":"ResourceNotFoundException"},
|
25
|
-
{"shape":"InternalFailureException"},
|
26
|
-
{"shape":"LimitExceededException"},
|
27
|
-
{"shape":"ThrottlingException"},
|
28
|
-
{"shape":"ConflictingOperationException"}
|
29
|
-
],
|
30
|
-
"endpoint":{"hostPrefix":"model."}
|
31
|
-
},
|
32
|
-
"BatchAssociateProjectAssets":{
|
33
|
-
"name":"BatchAssociateProjectAssets",
|
34
|
-
"http":{
|
35
|
-
"method":"POST",
|
36
|
-
"requestUri":"/projects/{projectId}/assets/associate",
|
37
|
-
"responseCode":200
|
38
|
-
},
|
39
|
-
"input":{"shape":"BatchAssociateProjectAssetsRequest"},
|
40
|
-
"output":{"shape":"BatchAssociateProjectAssetsResponse"},
|
41
|
-
"errors":[
|
42
|
-
{"shape":"InvalidRequestException"},
|
43
|
-
{"shape":"ResourceNotFoundException"},
|
44
|
-
{"shape":"InternalFailureException"},
|
45
|
-
{"shape":"ThrottlingException"},
|
46
|
-
{"shape":"LimitExceededException"}
|
47
|
-
],
|
48
|
-
"endpoint":{"hostPrefix":"monitor."}
|
49
|
-
},
|
50
|
-
"BatchDisassociateProjectAssets":{
|
51
|
-
"name":"BatchDisassociateProjectAssets",
|
52
|
-
"http":{
|
53
|
-
"method":"POST",
|
54
|
-
"requestUri":"/projects/{projectId}/assets/disassociate",
|
55
|
-
"responseCode":200
|
56
|
-
},
|
57
|
-
"input":{"shape":"BatchDisassociateProjectAssetsRequest"},
|
58
|
-
"output":{"shape":"BatchDisassociateProjectAssetsResponse"},
|
59
|
-
"errors":[
|
60
|
-
{"shape":"InvalidRequestException"},
|
61
|
-
{"shape":"ResourceNotFoundException"},
|
62
|
-
{"shape":"InternalFailureException"},
|
63
|
-
{"shape":"ThrottlingException"}
|
64
|
-
],
|
65
|
-
"endpoint":{"hostPrefix":"monitor."}
|
66
|
-
},
|
67
|
-
"BatchPutAssetPropertyValue":{
|
68
|
-
"name":"BatchPutAssetPropertyValue",
|
69
|
-
"http":{
|
70
|
-
"method":"POST",
|
71
|
-
"requestUri":"/properties"
|
72
|
-
},
|
73
|
-
"input":{"shape":"BatchPutAssetPropertyValueRequest"},
|
74
|
-
"output":{"shape":"BatchPutAssetPropertyValueResponse"},
|
75
|
-
"errors":[
|
76
|
-
{"shape":"InvalidRequestException"},
|
77
|
-
{"shape":"ResourceNotFoundException"},
|
78
|
-
{"shape":"InternalFailureException"},
|
79
|
-
{"shape":"ThrottlingException"},
|
80
|
-
{"shape":"LimitExceededException"},
|
81
|
-
{"shape":"ServiceUnavailableException"},
|
82
|
-
{"shape":"ConflictingOperationException"}
|
83
|
-
],
|
84
|
-
"endpoint":{"hostPrefix":"data."}
|
85
|
-
},
|
86
|
-
"CreateAccessPolicy":{
|
87
|
-
"name":"CreateAccessPolicy",
|
88
|
-
"http":{
|
89
|
-
"method":"POST",
|
90
|
-
"requestUri":"/access-policies",
|
91
|
-
"responseCode":201
|
92
|
-
},
|
93
|
-
"input":{"shape":"CreateAccessPolicyRequest"},
|
94
|
-
"output":{"shape":"CreateAccessPolicyResponse"},
|
95
|
-
"errors":[
|
96
|
-
{"shape":"InvalidRequestException"},
|
97
|
-
{"shape":"ResourceNotFoundException"},
|
98
|
-
{"shape":"InternalFailureException"},
|
99
|
-
{"shape":"ThrottlingException"},
|
100
|
-
{"shape":"LimitExceededException"}
|
101
|
-
],
|
102
|
-
"endpoint":{"hostPrefix":"monitor."}
|
103
|
-
},
|
104
|
-
"CreateAsset":{
|
105
|
-
"name":"CreateAsset",
|
106
|
-
"http":{
|
107
|
-
"method":"POST",
|
108
|
-
"requestUri":"/assets",
|
109
|
-
"responseCode":202
|
110
|
-
},
|
111
|
-
"input":{"shape":"CreateAssetRequest"},
|
112
|
-
"output":{"shape":"CreateAssetResponse"},
|
113
|
-
"errors":[
|
114
|
-
{"shape":"InvalidRequestException"},
|
115
|
-
{"shape":"ResourceAlreadyExistsException"},
|
116
|
-
{"shape":"ResourceNotFoundException"},
|
117
|
-
{"shape":"InternalFailureException"},
|
118
|
-
{"shape":"ThrottlingException"},
|
119
|
-
{"shape":"LimitExceededException"},
|
120
|
-
{"shape":"ConflictingOperationException"}
|
121
|
-
],
|
122
|
-
"endpoint":{"hostPrefix":"model."}
|
123
|
-
},
|
124
|
-
"CreateAssetModel":{
|
125
|
-
"name":"CreateAssetModel",
|
126
|
-
"http":{
|
127
|
-
"method":"POST",
|
128
|
-
"requestUri":"/asset-models",
|
129
|
-
"responseCode":202
|
130
|
-
},
|
131
|
-
"input":{"shape":"CreateAssetModelRequest"},
|
132
|
-
"output":{"shape":"CreateAssetModelResponse"},
|
133
|
-
"errors":[
|
134
|
-
{"shape":"InvalidRequestException"},
|
135
|
-
{"shape":"ResourceAlreadyExistsException"},
|
136
|
-
{"shape":"ResourceNotFoundException"},
|
137
|
-
{"shape":"InternalFailureException"},
|
138
|
-
{"shape":"ThrottlingException"},
|
139
|
-
{"shape":"LimitExceededException"},
|
140
|
-
{"shape":"ConflictingOperationException"}
|
141
|
-
],
|
142
|
-
"endpoint":{"hostPrefix":"model."}
|
143
|
-
},
|
144
|
-
"CreateDashboard":{
|
145
|
-
"name":"CreateDashboard",
|
146
|
-
"http":{
|
147
|
-
"method":"POST",
|
148
|
-
"requestUri":"/dashboards",
|
149
|
-
"responseCode":201
|
150
|
-
},
|
151
|
-
"input":{"shape":"CreateDashboardRequest"},
|
152
|
-
"output":{"shape":"CreateDashboardResponse"},
|
153
|
-
"errors":[
|
154
|
-
{"shape":"InvalidRequestException"},
|
155
|
-
{"shape":"ResourceNotFoundException"},
|
156
|
-
{"shape":"InternalFailureException"},
|
157
|
-
{"shape":"ThrottlingException"},
|
158
|
-
{"shape":"LimitExceededException"}
|
159
|
-
],
|
160
|
-
"endpoint":{"hostPrefix":"monitor."}
|
161
|
-
},
|
162
|
-
"CreateGateway":{
|
163
|
-
"name":"CreateGateway",
|
164
|
-
"http":{
|
165
|
-
"method":"POST",
|
166
|
-
"requestUri":"/20200301/gateways",
|
167
|
-
"responseCode":201
|
168
|
-
},
|
169
|
-
"input":{"shape":"CreateGatewayRequest"},
|
170
|
-
"output":{"shape":"CreateGatewayResponse"},
|
171
|
-
"errors":[
|
172
|
-
{"shape":"InvalidRequestException"},
|
173
|
-
{"shape":"ResourceAlreadyExistsException"},
|
174
|
-
{"shape":"InternalFailureException"},
|
175
|
-
{"shape":"ThrottlingException"},
|
176
|
-
{"shape":"LimitExceededException"}
|
177
|
-
],
|
178
|
-
"endpoint":{"hostPrefix":"edge."}
|
179
|
-
},
|
180
|
-
"CreatePortal":{
|
181
|
-
"name":"CreatePortal",
|
182
|
-
"http":{
|
183
|
-
"method":"POST",
|
184
|
-
"requestUri":"/portals",
|
185
|
-
"responseCode":202
|
186
|
-
},
|
187
|
-
"input":{"shape":"CreatePortalRequest"},
|
188
|
-
"output":{"shape":"CreatePortalResponse"},
|
189
|
-
"errors":[
|
190
|
-
{"shape":"InvalidRequestException"},
|
191
|
-
{"shape":"ResourceNotFoundException"},
|
192
|
-
{"shape":"InternalFailureException"},
|
193
|
-
{"shape":"ThrottlingException"},
|
194
|
-
{"shape":"LimitExceededException"}
|
195
|
-
],
|
196
|
-
"endpoint":{"hostPrefix":"monitor."}
|
197
|
-
},
|
198
|
-
"CreateProject":{
|
199
|
-
"name":"CreateProject",
|
200
|
-
"http":{
|
201
|
-
"method":"POST",
|
202
|
-
"requestUri":"/projects",
|
203
|
-
"responseCode":201
|
204
|
-
},
|
205
|
-
"input":{"shape":"CreateProjectRequest"},
|
206
|
-
"output":{"shape":"CreateProjectResponse"},
|
207
|
-
"errors":[
|
208
|
-
{"shape":"InvalidRequestException"},
|
209
|
-
{"shape":"ResourceNotFoundException"},
|
210
|
-
{"shape":"InternalFailureException"},
|
211
|
-
{"shape":"ThrottlingException"},
|
212
|
-
{"shape":"LimitExceededException"}
|
213
|
-
],
|
214
|
-
"endpoint":{"hostPrefix":"monitor."}
|
215
|
-
},
|
216
|
-
"DeleteAccessPolicy":{
|
217
|
-
"name":"DeleteAccessPolicy",
|
218
|
-
"http":{
|
219
|
-
"method":"DELETE",
|
220
|
-
"requestUri":"/access-policies/{accessPolicyId}",
|
221
|
-
"responseCode":204
|
222
|
-
},
|
223
|
-
"input":{"shape":"DeleteAccessPolicyRequest"},
|
224
|
-
"output":{"shape":"DeleteAccessPolicyResponse"},
|
225
|
-
"errors":[
|
226
|
-
{"shape":"InvalidRequestException"},
|
227
|
-
{"shape":"ResourceNotFoundException"},
|
228
|
-
{"shape":"InternalFailureException"},
|
229
|
-
{"shape":"ThrottlingException"}
|
230
|
-
],
|
231
|
-
"endpoint":{"hostPrefix":"monitor."}
|
232
|
-
},
|
233
|
-
"DeleteAsset":{
|
234
|
-
"name":"DeleteAsset",
|
235
|
-
"http":{
|
236
|
-
"method":"DELETE",
|
237
|
-
"requestUri":"/assets/{assetId}",
|
238
|
-
"responseCode":202
|
239
|
-
},
|
240
|
-
"input":{"shape":"DeleteAssetRequest"},
|
241
|
-
"output":{"shape":"DeleteAssetResponse"},
|
242
|
-
"errors":[
|
243
|
-
{"shape":"InvalidRequestException"},
|
244
|
-
{"shape":"ResourceNotFoundException"},
|
245
|
-
{"shape":"InternalFailureException"},
|
246
|
-
{"shape":"ThrottlingException"},
|
247
|
-
{"shape":"ConflictingOperationException"}
|
248
|
-
],
|
249
|
-
"endpoint":{"hostPrefix":"model."}
|
250
|
-
},
|
251
|
-
"DeleteAssetModel":{
|
252
|
-
"name":"DeleteAssetModel",
|
253
|
-
"http":{
|
254
|
-
"method":"DELETE",
|
255
|
-
"requestUri":"/asset-models/{assetModelId}",
|
256
|
-
"responseCode":202
|
257
|
-
},
|
258
|
-
"input":{"shape":"DeleteAssetModelRequest"},
|
259
|
-
"output":{"shape":"DeleteAssetModelResponse"},
|
260
|
-
"errors":[
|
261
|
-
{"shape":"InvalidRequestException"},
|
262
|
-
{"shape":"ResourceNotFoundException"},
|
263
|
-
{"shape":"InternalFailureException"},
|
264
|
-
{"shape":"ThrottlingException"},
|
265
|
-
{"shape":"ConflictingOperationException"}
|
266
|
-
],
|
267
|
-
"endpoint":{"hostPrefix":"model."}
|
268
|
-
},
|
269
|
-
"DeleteDashboard":{
|
270
|
-
"name":"DeleteDashboard",
|
271
|
-
"http":{
|
272
|
-
"method":"DELETE",
|
273
|
-
"requestUri":"/dashboards/{dashboardId}",
|
274
|
-
"responseCode":204
|
275
|
-
},
|
276
|
-
"input":{"shape":"DeleteDashboardRequest"},
|
277
|
-
"output":{"shape":"DeleteDashboardResponse"},
|
278
|
-
"errors":[
|
279
|
-
{"shape":"InvalidRequestException"},
|
280
|
-
{"shape":"ResourceNotFoundException"},
|
281
|
-
{"shape":"InternalFailureException"},
|
282
|
-
{"shape":"ThrottlingException"}
|
283
|
-
],
|
284
|
-
"endpoint":{"hostPrefix":"monitor."}
|
285
|
-
},
|
286
|
-
"DeleteGateway":{
|
287
|
-
"name":"DeleteGateway",
|
288
|
-
"http":{
|
289
|
-
"method":"DELETE",
|
290
|
-
"requestUri":"/20200301/gateways/{gatewayId}"
|
291
|
-
},
|
292
|
-
"input":{"shape":"DeleteGatewayRequest"},
|
293
|
-
"errors":[
|
294
|
-
{"shape":"InvalidRequestException"},
|
295
|
-
{"shape":"ResourceNotFoundException"},
|
296
|
-
{"shape":"InternalFailureException"},
|
297
|
-
{"shape":"ThrottlingException"}
|
298
|
-
],
|
299
|
-
"endpoint":{"hostPrefix":"edge."}
|
300
|
-
},
|
301
|
-
"DeletePortal":{
|
302
|
-
"name":"DeletePortal",
|
303
|
-
"http":{
|
304
|
-
"method":"DELETE",
|
305
|
-
"requestUri":"/portals/{portalId}",
|
306
|
-
"responseCode":202
|
307
|
-
},
|
308
|
-
"input":{"shape":"DeletePortalRequest"},
|
309
|
-
"output":{"shape":"DeletePortalResponse"},
|
310
|
-
"errors":[
|
311
|
-
{"shape":"InvalidRequestException"},
|
312
|
-
{"shape":"ResourceNotFoundException"},
|
313
|
-
{"shape":"InternalFailureException"},
|
314
|
-
{"shape":"ThrottlingException"},
|
315
|
-
{"shape":"ConflictingOperationException"}
|
316
|
-
],
|
317
|
-
"endpoint":{"hostPrefix":"monitor."}
|
318
|
-
},
|
319
|
-
"DeleteProject":{
|
320
|
-
"name":"DeleteProject",
|
321
|
-
"http":{
|
322
|
-
"method":"DELETE",
|
323
|
-
"requestUri":"/projects/{projectId}",
|
324
|
-
"responseCode":204
|
325
|
-
},
|
326
|
-
"input":{"shape":"DeleteProjectRequest"},
|
327
|
-
"output":{"shape":"DeleteProjectResponse"},
|
328
|
-
"errors":[
|
329
|
-
{"shape":"InvalidRequestException"},
|
330
|
-
{"shape":"ResourceNotFoundException"},
|
331
|
-
{"shape":"InternalFailureException"},
|
332
|
-
{"shape":"ThrottlingException"}
|
333
|
-
],
|
334
|
-
"endpoint":{"hostPrefix":"monitor."}
|
335
|
-
},
|
336
|
-
"DescribeAccessPolicy":{
|
337
|
-
"name":"DescribeAccessPolicy",
|
338
|
-
"http":{
|
339
|
-
"method":"GET",
|
340
|
-
"requestUri":"/access-policies/{accessPolicyId}",
|
341
|
-
"responseCode":200
|
342
|
-
},
|
343
|
-
"input":{"shape":"DescribeAccessPolicyRequest"},
|
344
|
-
"output":{"shape":"DescribeAccessPolicyResponse"},
|
345
|
-
"errors":[
|
346
|
-
{"shape":"InvalidRequestException"},
|
347
|
-
{"shape":"ResourceNotFoundException"},
|
348
|
-
{"shape":"InternalFailureException"},
|
349
|
-
{"shape":"ThrottlingException"}
|
350
|
-
],
|
351
|
-
"endpoint":{"hostPrefix":"monitor."}
|
352
|
-
},
|
353
|
-
"DescribeAsset":{
|
354
|
-
"name":"DescribeAsset",
|
355
|
-
"http":{
|
356
|
-
"method":"GET",
|
357
|
-
"requestUri":"/assets/{assetId}"
|
358
|
-
},
|
359
|
-
"input":{"shape":"DescribeAssetRequest"},
|
360
|
-
"output":{"shape":"DescribeAssetResponse"},
|
361
|
-
"errors":[
|
362
|
-
{"shape":"InvalidRequestException"},
|
363
|
-
{"shape":"ResourceNotFoundException"},
|
364
|
-
{"shape":"InternalFailureException"},
|
365
|
-
{"shape":"ThrottlingException"}
|
366
|
-
],
|
367
|
-
"endpoint":{"hostPrefix":"model."}
|
368
|
-
},
|
369
|
-
"DescribeAssetModel":{
|
370
|
-
"name":"DescribeAssetModel",
|
371
|
-
"http":{
|
372
|
-
"method":"GET",
|
373
|
-
"requestUri":"/asset-models/{assetModelId}"
|
374
|
-
},
|
375
|
-
"input":{"shape":"DescribeAssetModelRequest"},
|
376
|
-
"output":{"shape":"DescribeAssetModelResponse"},
|
377
|
-
"errors":[
|
378
|
-
{"shape":"InvalidRequestException"},
|
379
|
-
{"shape":"ResourceNotFoundException"},
|
380
|
-
{"shape":"InternalFailureException"},
|
381
|
-
{"shape":"ThrottlingException"}
|
382
|
-
],
|
383
|
-
"endpoint":{"hostPrefix":"model."}
|
384
|
-
},
|
385
|
-
"DescribeAssetProperty":{
|
386
|
-
"name":"DescribeAssetProperty",
|
387
|
-
"http":{
|
388
|
-
"method":"GET",
|
389
|
-
"requestUri":"/assets/{assetId}/properties/{propertyId}"
|
390
|
-
},
|
391
|
-
"input":{"shape":"DescribeAssetPropertyRequest"},
|
392
|
-
"output":{"shape":"DescribeAssetPropertyResponse"},
|
393
|
-
"errors":[
|
394
|
-
{"shape":"InvalidRequestException"},
|
395
|
-
{"shape":"ResourceNotFoundException"},
|
396
|
-
{"shape":"InternalFailureException"},
|
397
|
-
{"shape":"ThrottlingException"}
|
398
|
-
],
|
399
|
-
"endpoint":{"hostPrefix":"model."}
|
400
|
-
},
|
401
|
-
"DescribeDashboard":{
|
402
|
-
"name":"DescribeDashboard",
|
403
|
-
"http":{
|
404
|
-
"method":"GET",
|
405
|
-
"requestUri":"/dashboards/{dashboardId}",
|
406
|
-
"responseCode":200
|
407
|
-
},
|
408
|
-
"input":{"shape":"DescribeDashboardRequest"},
|
409
|
-
"output":{"shape":"DescribeDashboardResponse"},
|
410
|
-
"errors":[
|
411
|
-
{"shape":"InvalidRequestException"},
|
412
|
-
{"shape":"ResourceNotFoundException"},
|
413
|
-
{"shape":"InternalFailureException"},
|
414
|
-
{"shape":"ThrottlingException"}
|
415
|
-
],
|
416
|
-
"endpoint":{"hostPrefix":"monitor."}
|
417
|
-
},
|
418
|
-
"DescribeGateway":{
|
419
|
-
"name":"DescribeGateway",
|
420
|
-
"http":{
|
421
|
-
"method":"GET",
|
422
|
-
"requestUri":"/20200301/gateways/{gatewayId}"
|
423
|
-
},
|
424
|
-
"input":{"shape":"DescribeGatewayRequest"},
|
425
|
-
"output":{"shape":"DescribeGatewayResponse"},
|
426
|
-
"errors":[
|
427
|
-
{"shape":"InvalidRequestException"},
|
428
|
-
{"shape":"ResourceNotFoundException"},
|
429
|
-
{"shape":"InternalFailureException"},
|
430
|
-
{"shape":"ThrottlingException"}
|
431
|
-
],
|
432
|
-
"endpoint":{"hostPrefix":"edge."}
|
433
|
-
},
|
434
|
-
"DescribeGatewayCapabilityConfiguration":{
|
435
|
-
"name":"DescribeGatewayCapabilityConfiguration",
|
436
|
-
"http":{
|
437
|
-
"method":"GET",
|
438
|
-
"requestUri":"/20200301/gateways/{gatewayId}/capability/{capabilityNamespace}"
|
439
|
-
},
|
440
|
-
"input":{"shape":"DescribeGatewayCapabilityConfigurationRequest"},
|
441
|
-
"output":{"shape":"DescribeGatewayCapabilityConfigurationResponse"},
|
442
|
-
"errors":[
|
443
|
-
{"shape":"InvalidRequestException"},
|
444
|
-
{"shape":"ResourceNotFoundException"},
|
445
|
-
{"shape":"InternalFailureException"},
|
446
|
-
{"shape":"ThrottlingException"}
|
447
|
-
],
|
448
|
-
"endpoint":{"hostPrefix":"edge."}
|
449
|
-
},
|
450
|
-
"DescribeLoggingOptions":{
|
451
|
-
"name":"DescribeLoggingOptions",
|
452
|
-
"http":{
|
453
|
-
"method":"GET",
|
454
|
-
"requestUri":"/logging"
|
455
|
-
},
|
456
|
-
"input":{"shape":"DescribeLoggingOptionsRequest"},
|
457
|
-
"output":{"shape":"DescribeLoggingOptionsResponse"},
|
458
|
-
"errors":[
|
459
|
-
{"shape":"InvalidRequestException"},
|
460
|
-
{"shape":"ThrottlingException"},
|
461
|
-
{"shape":"InternalFailureException"},
|
462
|
-
{"shape":"ResourceNotFoundException"}
|
463
|
-
],
|
464
|
-
"endpoint":{"hostPrefix":"model."}
|
465
|
-
},
|
466
|
-
"DescribePortal":{
|
467
|
-
"name":"DescribePortal",
|
468
|
-
"http":{
|
469
|
-
"method":"GET",
|
470
|
-
"requestUri":"/portals/{portalId}",
|
471
|
-
"responseCode":200
|
472
|
-
},
|
473
|
-
"input":{"shape":"DescribePortalRequest"},
|
474
|
-
"output":{"shape":"DescribePortalResponse"},
|
475
|
-
"errors":[
|
476
|
-
{"shape":"InvalidRequestException"},
|
477
|
-
{"shape":"ResourceNotFoundException"},
|
478
|
-
{"shape":"InternalFailureException"},
|
479
|
-
{"shape":"ThrottlingException"}
|
480
|
-
],
|
481
|
-
"endpoint":{"hostPrefix":"monitor."}
|
482
|
-
},
|
483
|
-
"DescribeProject":{
|
484
|
-
"name":"DescribeProject",
|
485
|
-
"http":{
|
486
|
-
"method":"GET",
|
487
|
-
"requestUri":"/projects/{projectId}",
|
488
|
-
"responseCode":200
|
489
|
-
},
|
490
|
-
"input":{"shape":"DescribeProjectRequest"},
|
491
|
-
"output":{"shape":"DescribeProjectResponse"},
|
492
|
-
"errors":[
|
493
|
-
{"shape":"InvalidRequestException"},
|
494
|
-
{"shape":"ResourceNotFoundException"},
|
495
|
-
{"shape":"InternalFailureException"},
|
496
|
-
{"shape":"ThrottlingException"}
|
497
|
-
],
|
498
|
-
"endpoint":{"hostPrefix":"monitor."}
|
499
|
-
},
|
500
|
-
"DisassociateAssets":{
|
501
|
-
"name":"DisassociateAssets",
|
502
|
-
"http":{
|
503
|
-
"method":"POST",
|
504
|
-
"requestUri":"/assets/{assetId}/disassociate"
|
505
|
-
},
|
506
|
-
"input":{"shape":"DisassociateAssetsRequest"},
|
507
|
-
"errors":[
|
508
|
-
{"shape":"InvalidRequestException"},
|
509
|
-
{"shape":"ResourceNotFoundException"},
|
510
|
-
{"shape":"InternalFailureException"},
|
511
|
-
{"shape":"ThrottlingException"},
|
512
|
-
{"shape":"ConflictingOperationException"}
|
513
|
-
],
|
514
|
-
"endpoint":{"hostPrefix":"model."}
|
515
|
-
},
|
516
|
-
"GetAssetPropertyAggregates":{
|
517
|
-
"name":"GetAssetPropertyAggregates",
|
518
|
-
"http":{
|
519
|
-
"method":"GET",
|
520
|
-
"requestUri":"/properties/aggregates"
|
521
|
-
},
|
522
|
-
"input":{"shape":"GetAssetPropertyAggregatesRequest"},
|
523
|
-
"output":{"shape":"GetAssetPropertyAggregatesResponse"},
|
524
|
-
"errors":[
|
525
|
-
{"shape":"InvalidRequestException"},
|
526
|
-
{"shape":"ResourceNotFoundException"},
|
527
|
-
{"shape":"InternalFailureException"},
|
528
|
-
{"shape":"ThrottlingException"},
|
529
|
-
{"shape":"ServiceUnavailableException"}
|
530
|
-
],
|
531
|
-
"endpoint":{"hostPrefix":"data."}
|
532
|
-
},
|
533
|
-
"GetAssetPropertyValue":{
|
534
|
-
"name":"GetAssetPropertyValue",
|
535
|
-
"http":{
|
536
|
-
"method":"GET",
|
537
|
-
"requestUri":"/properties/latest"
|
538
|
-
},
|
539
|
-
"input":{"shape":"GetAssetPropertyValueRequest"},
|
540
|
-
"output":{"shape":"GetAssetPropertyValueResponse"},
|
541
|
-
"errors":[
|
542
|
-
{"shape":"InvalidRequestException"},
|
543
|
-
{"shape":"ResourceNotFoundException"},
|
544
|
-
{"shape":"InternalFailureException"},
|
545
|
-
{"shape":"ThrottlingException"},
|
546
|
-
{"shape":"ServiceUnavailableException"}
|
547
|
-
],
|
548
|
-
"endpoint":{"hostPrefix":"data."}
|
549
|
-
},
|
550
|
-
"GetAssetPropertyValueHistory":{
|
551
|
-
"name":"GetAssetPropertyValueHistory",
|
552
|
-
"http":{
|
553
|
-
"method":"GET",
|
554
|
-
"requestUri":"/properties/history"
|
555
|
-
},
|
556
|
-
"input":{"shape":"GetAssetPropertyValueHistoryRequest"},
|
557
|
-
"output":{"shape":"GetAssetPropertyValueHistoryResponse"},
|
558
|
-
"errors":[
|
559
|
-
{"shape":"InvalidRequestException"},
|
560
|
-
{"shape":"ResourceNotFoundException"},
|
561
|
-
{"shape":"InternalFailureException"},
|
562
|
-
{"shape":"ThrottlingException"},
|
563
|
-
{"shape":"ServiceUnavailableException"}
|
564
|
-
],
|
565
|
-
"endpoint":{"hostPrefix":"data."}
|
566
|
-
},
|
567
|
-
"ListAccessPolicies":{
|
568
|
-
"name":"ListAccessPolicies",
|
569
|
-
"http":{
|
570
|
-
"method":"GET",
|
571
|
-
"requestUri":"/access-policies",
|
572
|
-
"responseCode":200
|
573
|
-
},
|
574
|
-
"input":{"shape":"ListAccessPoliciesRequest"},
|
575
|
-
"output":{"shape":"ListAccessPoliciesResponse"},
|
576
|
-
"errors":[
|
577
|
-
{"shape":"InvalidRequestException"},
|
578
|
-
{"shape":"InternalFailureException"},
|
579
|
-
{"shape":"ThrottlingException"}
|
580
|
-
],
|
581
|
-
"endpoint":{"hostPrefix":"monitor."}
|
582
|
-
},
|
583
|
-
"ListAssetModels":{
|
584
|
-
"name":"ListAssetModels",
|
585
|
-
"http":{
|
586
|
-
"method":"GET",
|
587
|
-
"requestUri":"/asset-models"
|
588
|
-
},
|
589
|
-
"input":{"shape":"ListAssetModelsRequest"},
|
590
|
-
"output":{"shape":"ListAssetModelsResponse"},
|
591
|
-
"errors":[
|
592
|
-
{"shape":"InvalidRequestException"},
|
593
|
-
{"shape":"InternalFailureException"},
|
594
|
-
{"shape":"ThrottlingException"}
|
595
|
-
],
|
596
|
-
"endpoint":{"hostPrefix":"model."}
|
597
|
-
},
|
598
|
-
"ListAssets":{
|
599
|
-
"name":"ListAssets",
|
600
|
-
"http":{
|
601
|
-
"method":"GET",
|
602
|
-
"requestUri":"/assets"
|
603
|
-
},
|
604
|
-
"input":{"shape":"ListAssetsRequest"},
|
605
|
-
"output":{"shape":"ListAssetsResponse"},
|
606
|
-
"errors":[
|
607
|
-
{"shape":"InvalidRequestException"},
|
608
|
-
{"shape":"InternalFailureException"},
|
609
|
-
{"shape":"ResourceNotFoundException"},
|
610
|
-
{"shape":"ThrottlingException"}
|
611
|
-
],
|
612
|
-
"endpoint":{"hostPrefix":"model."}
|
613
|
-
},
|
614
|
-
"ListAssociatedAssets":{
|
615
|
-
"name":"ListAssociatedAssets",
|
616
|
-
"http":{
|
617
|
-
"method":"GET",
|
618
|
-
"requestUri":"/assets/{assetId}/hierarchies"
|
619
|
-
},
|
620
|
-
"input":{"shape":"ListAssociatedAssetsRequest"},
|
621
|
-
"output":{"shape":"ListAssociatedAssetsResponse"},
|
622
|
-
"errors":[
|
623
|
-
{"shape":"InvalidRequestException"},
|
624
|
-
{"shape":"InternalFailureException"},
|
625
|
-
{"shape":"ResourceNotFoundException"},
|
626
|
-
{"shape":"ThrottlingException"}
|
627
|
-
],
|
628
|
-
"endpoint":{"hostPrefix":"model."}
|
629
|
-
},
|
630
|
-
"ListDashboards":{
|
631
|
-
"name":"ListDashboards",
|
632
|
-
"http":{
|
633
|
-
"method":"GET",
|
634
|
-
"requestUri":"/dashboards",
|
635
|
-
"responseCode":200
|
636
|
-
},
|
637
|
-
"input":{"shape":"ListDashboardsRequest"},
|
638
|
-
"output":{"shape":"ListDashboardsResponse"},
|
639
|
-
"errors":[
|
640
|
-
{"shape":"InvalidRequestException"},
|
641
|
-
{"shape":"InternalFailureException"},
|
642
|
-
{"shape":"ThrottlingException"}
|
643
|
-
],
|
644
|
-
"endpoint":{"hostPrefix":"monitor."}
|
645
|
-
},
|
646
|
-
"ListGateways":{
|
647
|
-
"name":"ListGateways",
|
648
|
-
"http":{
|
649
|
-
"method":"GET",
|
650
|
-
"requestUri":"/20200301/gateways"
|
651
|
-
},
|
652
|
-
"input":{"shape":"ListGatewaysRequest"},
|
653
|
-
"output":{"shape":"ListGatewaysResponse"},
|
654
|
-
"errors":[
|
655
|
-
{"shape":"InvalidRequestException"},
|
656
|
-
{"shape":"InternalFailureException"},
|
657
|
-
{"shape":"ThrottlingException"}
|
658
|
-
],
|
659
|
-
"endpoint":{"hostPrefix":"edge."}
|
660
|
-
},
|
661
|
-
"ListPortals":{
|
662
|
-
"name":"ListPortals",
|
663
|
-
"http":{
|
664
|
-
"method":"GET",
|
665
|
-
"requestUri":"/portals",
|
666
|
-
"responseCode":200
|
667
|
-
},
|
668
|
-
"input":{"shape":"ListPortalsRequest"},
|
669
|
-
"output":{"shape":"ListPortalsResponse"},
|
670
|
-
"errors":[
|
671
|
-
{"shape":"InvalidRequestException"},
|
672
|
-
{"shape":"InternalFailureException"},
|
673
|
-
{"shape":"ThrottlingException"}
|
674
|
-
],
|
675
|
-
"endpoint":{"hostPrefix":"monitor."}
|
676
|
-
},
|
677
|
-
"ListProjectAssets":{
|
678
|
-
"name":"ListProjectAssets",
|
679
|
-
"http":{
|
680
|
-
"method":"GET",
|
681
|
-
"requestUri":"/projects/{projectId}/assets",
|
682
|
-
"responseCode":200
|
683
|
-
},
|
684
|
-
"input":{"shape":"ListProjectAssetsRequest"},
|
685
|
-
"output":{"shape":"ListProjectAssetsResponse"},
|
686
|
-
"errors":[
|
687
|
-
{"shape":"InvalidRequestException"},
|
688
|
-
{"shape":"InternalFailureException"},
|
689
|
-
{"shape":"ThrottlingException"}
|
690
|
-
],
|
691
|
-
"endpoint":{"hostPrefix":"monitor."}
|
692
|
-
},
|
693
|
-
"ListProjects":{
|
694
|
-
"name":"ListProjects",
|
695
|
-
"http":{
|
696
|
-
"method":"GET",
|
697
|
-
"requestUri":"/projects",
|
698
|
-
"responseCode":200
|
699
|
-
},
|
700
|
-
"input":{"shape":"ListProjectsRequest"},
|
701
|
-
"output":{"shape":"ListProjectsResponse"},
|
702
|
-
"errors":[
|
703
|
-
{"shape":"InvalidRequestException"},
|
704
|
-
{"shape":"InternalFailureException"},
|
705
|
-
{"shape":"ThrottlingException"}
|
706
|
-
],
|
707
|
-
"endpoint":{"hostPrefix":"monitor."}
|
708
|
-
},
|
709
|
-
"ListTagsForResource":{
|
710
|
-
"name":"ListTagsForResource",
|
711
|
-
"http":{
|
712
|
-
"method":"GET",
|
713
|
-
"requestUri":"/tags"
|
714
|
-
},
|
715
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
716
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
717
|
-
"errors":[
|
718
|
-
{"shape":"InvalidRequestException"},
|
719
|
-
{"shape":"InternalFailureException"},
|
720
|
-
{"shape":"ThrottlingException"},
|
721
|
-
{"shape":"ResourceNotFoundException"}
|
722
|
-
]
|
723
|
-
},
|
724
|
-
"PutLoggingOptions":{
|
725
|
-
"name":"PutLoggingOptions",
|
726
|
-
"http":{
|
727
|
-
"method":"PUT",
|
728
|
-
"requestUri":"/logging"
|
729
|
-
},
|
730
|
-
"input":{"shape":"PutLoggingOptionsRequest"},
|
731
|
-
"output":{"shape":"PutLoggingOptionsResponse"},
|
732
|
-
"errors":[
|
733
|
-
{"shape":"InvalidRequestException"},
|
734
|
-
{"shape":"ThrottlingException"},
|
735
|
-
{"shape":"InternalFailureException"},
|
736
|
-
{"shape":"ConflictingOperationException"},
|
737
|
-
{"shape":"ResourceNotFoundException"}
|
738
|
-
],
|
739
|
-
"endpoint":{"hostPrefix":"model."}
|
740
|
-
},
|
741
|
-
"TagResource":{
|
742
|
-
"name":"TagResource",
|
743
|
-
"http":{
|
744
|
-
"method":"POST",
|
745
|
-
"requestUri":"/tags"
|
746
|
-
},
|
747
|
-
"input":{"shape":"TagResourceRequest"},
|
748
|
-
"output":{"shape":"TagResourceResponse"},
|
749
|
-
"errors":[
|
750
|
-
{"shape":"InvalidRequestException"},
|
751
|
-
{"shape":"InternalFailureException"},
|
752
|
-
{"shape":"ThrottlingException"},
|
753
|
-
{"shape":"ResourceNotFoundException"},
|
754
|
-
{"shape":"TooManyTagsException"}
|
755
|
-
]
|
756
|
-
},
|
757
|
-
"UntagResource":{
|
758
|
-
"name":"UntagResource",
|
759
|
-
"http":{
|
760
|
-
"method":"DELETE",
|
761
|
-
"requestUri":"/tags"
|
762
|
-
},
|
763
|
-
"input":{"shape":"UntagResourceRequest"},
|
764
|
-
"output":{"shape":"UntagResourceResponse"},
|
765
|
-
"errors":[
|
766
|
-
{"shape":"InvalidRequestException"},
|
767
|
-
{"shape":"InternalFailureException"},
|
768
|
-
{"shape":"ThrottlingException"},
|
769
|
-
{"shape":"ResourceNotFoundException"}
|
770
|
-
]
|
771
|
-
},
|
772
|
-
"UpdateAccessPolicy":{
|
773
|
-
"name":"UpdateAccessPolicy",
|
774
|
-
"http":{
|
775
|
-
"method":"PUT",
|
776
|
-
"requestUri":"/access-policies/{accessPolicyId}",
|
777
|
-
"responseCode":200
|
778
|
-
},
|
779
|
-
"input":{"shape":"UpdateAccessPolicyRequest"},
|
780
|
-
"output":{"shape":"UpdateAccessPolicyResponse"},
|
781
|
-
"errors":[
|
782
|
-
{"shape":"InvalidRequestException"},
|
783
|
-
{"shape":"ResourceNotFoundException"},
|
784
|
-
{"shape":"InternalFailureException"},
|
785
|
-
{"shape":"ThrottlingException"}
|
786
|
-
],
|
787
|
-
"endpoint":{"hostPrefix":"monitor."}
|
788
|
-
},
|
789
|
-
"UpdateAsset":{
|
790
|
-
"name":"UpdateAsset",
|
791
|
-
"http":{
|
792
|
-
"method":"PUT",
|
793
|
-
"requestUri":"/assets/{assetId}",
|
794
|
-
"responseCode":202
|
795
|
-
},
|
796
|
-
"input":{"shape":"UpdateAssetRequest"},
|
797
|
-
"output":{"shape":"UpdateAssetResponse"},
|
798
|
-
"errors":[
|
799
|
-
{"shape":"InvalidRequestException"},
|
800
|
-
{"shape":"ResourceAlreadyExistsException"},
|
801
|
-
{"shape":"ResourceNotFoundException"},
|
802
|
-
{"shape":"InternalFailureException"},
|
803
|
-
{"shape":"ThrottlingException"},
|
804
|
-
{"shape":"ConflictingOperationException"}
|
805
|
-
],
|
806
|
-
"endpoint":{"hostPrefix":"model."}
|
807
|
-
},
|
808
|
-
"UpdateAssetModel":{
|
809
|
-
"name":"UpdateAssetModel",
|
810
|
-
"http":{
|
811
|
-
"method":"PUT",
|
812
|
-
"requestUri":"/asset-models/{assetModelId}",
|
813
|
-
"responseCode":202
|
814
|
-
},
|
815
|
-
"input":{"shape":"UpdateAssetModelRequest"},
|
816
|
-
"output":{"shape":"UpdateAssetModelResponse"},
|
817
|
-
"errors":[
|
818
|
-
{"shape":"InvalidRequestException"},
|
819
|
-
{"shape":"ResourceAlreadyExistsException"},
|
820
|
-
{"shape":"ResourceNotFoundException"},
|
821
|
-
{"shape":"InternalFailureException"},
|
822
|
-
{"shape":"LimitExceededException"},
|
823
|
-
{"shape":"ThrottlingException"},
|
824
|
-
{"shape":"ConflictingOperationException"}
|
825
|
-
],
|
826
|
-
"endpoint":{"hostPrefix":"model."}
|
827
|
-
},
|
828
|
-
"UpdateAssetProperty":{
|
829
|
-
"name":"UpdateAssetProperty",
|
830
|
-
"http":{
|
831
|
-
"method":"PUT",
|
832
|
-
"requestUri":"/assets/{assetId}/properties/{propertyId}"
|
833
|
-
},
|
834
|
-
"input":{"shape":"UpdateAssetPropertyRequest"},
|
835
|
-
"errors":[
|
836
|
-
{"shape":"InvalidRequestException"},
|
837
|
-
{"shape":"ResourceNotFoundException"},
|
838
|
-
{"shape":"InternalFailureException"},
|
839
|
-
{"shape":"ThrottlingException"},
|
840
|
-
{"shape":"ConflictingOperationException"}
|
841
|
-
],
|
842
|
-
"endpoint":{"hostPrefix":"model."}
|
843
|
-
},
|
844
|
-
"UpdateDashboard":{
|
845
|
-
"name":"UpdateDashboard",
|
846
|
-
"http":{
|
847
|
-
"method":"PUT",
|
848
|
-
"requestUri":"/dashboards/{dashboardId}",
|
849
|
-
"responseCode":200
|
850
|
-
},
|
851
|
-
"input":{"shape":"UpdateDashboardRequest"},
|
852
|
-
"output":{"shape":"UpdateDashboardResponse"},
|
853
|
-
"errors":[
|
854
|
-
{"shape":"InvalidRequestException"},
|
855
|
-
{"shape":"ResourceNotFoundException"},
|
856
|
-
{"shape":"InternalFailureException"},
|
857
|
-
{"shape":"ThrottlingException"}
|
858
|
-
],
|
859
|
-
"endpoint":{"hostPrefix":"monitor."}
|
860
|
-
},
|
861
|
-
"UpdateGateway":{
|
862
|
-
"name":"UpdateGateway",
|
863
|
-
"http":{
|
864
|
-
"method":"PUT",
|
865
|
-
"requestUri":"/20200301/gateways/{gatewayId}"
|
866
|
-
},
|
867
|
-
"input":{"shape":"UpdateGatewayRequest"},
|
868
|
-
"errors":[
|
869
|
-
{"shape":"InvalidRequestException"},
|
870
|
-
{"shape":"ResourceNotFoundException"},
|
871
|
-
{"shape":"ConflictingOperationException"},
|
872
|
-
{"shape":"InternalFailureException"},
|
873
|
-
{"shape":"ThrottlingException"}
|
874
|
-
],
|
875
|
-
"endpoint":{"hostPrefix":"edge."}
|
876
|
-
},
|
877
|
-
"UpdateGatewayCapabilityConfiguration":{
|
878
|
-
"name":"UpdateGatewayCapabilityConfiguration",
|
879
|
-
"http":{
|
880
|
-
"method":"POST",
|
881
|
-
"requestUri":"/20200301/gateways/{gatewayId}/capability",
|
882
|
-
"responseCode":201
|
883
|
-
},
|
884
|
-
"input":{"shape":"UpdateGatewayCapabilityConfigurationRequest"},
|
885
|
-
"output":{"shape":"UpdateGatewayCapabilityConfigurationResponse"},
|
886
|
-
"errors":[
|
887
|
-
{"shape":"InvalidRequestException"},
|
888
|
-
{"shape":"ResourceNotFoundException"},
|
889
|
-
{"shape":"ConflictingOperationException"},
|
890
|
-
{"shape":"InternalFailureException"},
|
891
|
-
{"shape":"ThrottlingException"},
|
892
|
-
{"shape":"LimitExceededException"}
|
893
|
-
],
|
894
|
-
"endpoint":{"hostPrefix":"edge."}
|
895
|
-
},
|
896
|
-
"UpdatePortal":{
|
897
|
-
"name":"UpdatePortal",
|
898
|
-
"http":{
|
899
|
-
"method":"PUT",
|
900
|
-
"requestUri":"/portals/{portalId}",
|
901
|
-
"responseCode":202
|
902
|
-
},
|
903
|
-
"input":{"shape":"UpdatePortalRequest"},
|
904
|
-
"output":{"shape":"UpdatePortalResponse"},
|
905
|
-
"errors":[
|
906
|
-
{"shape":"InvalidRequestException"},
|
907
|
-
{"shape":"ResourceNotFoundException"},
|
908
|
-
{"shape":"InternalFailureException"},
|
909
|
-
{"shape":"ThrottlingException"},
|
910
|
-
{"shape":"ConflictingOperationException"}
|
911
|
-
],
|
912
|
-
"endpoint":{"hostPrefix":"monitor."}
|
913
|
-
},
|
914
|
-
"UpdateProject":{
|
915
|
-
"name":"UpdateProject",
|
916
|
-
"http":{
|
917
|
-
"method":"PUT",
|
918
|
-
"requestUri":"/projects/{projectId}",
|
919
|
-
"responseCode":200
|
920
|
-
},
|
921
|
-
"input":{"shape":"UpdateProjectRequest"},
|
922
|
-
"output":{"shape":"UpdateProjectResponse"},
|
923
|
-
"errors":[
|
924
|
-
{"shape":"InvalidRequestException"},
|
925
|
-
{"shape":"ResourceNotFoundException"},
|
926
|
-
{"shape":"InternalFailureException"},
|
927
|
-
{"shape":"ThrottlingException"}
|
928
|
-
],
|
929
|
-
"endpoint":{"hostPrefix":"monitor."}
|
930
|
-
}
|
931
|
-
},
|
932
|
-
"shapes":{
|
933
|
-
"ARN":{
|
934
|
-
"type":"string",
|
935
|
-
"max":1600,
|
936
|
-
"min":1,
|
937
|
-
"pattern":".*"
|
938
|
-
},
|
939
|
-
"AccessPolicySummaries":{
|
940
|
-
"type":"list",
|
941
|
-
"member":{"shape":"AccessPolicySummary"}
|
942
|
-
},
|
943
|
-
"AccessPolicySummary":{
|
944
|
-
"type":"structure",
|
945
|
-
"required":[
|
946
|
-
"id",
|
947
|
-
"identity",
|
948
|
-
"resource",
|
949
|
-
"permission"
|
950
|
-
],
|
951
|
-
"members":{
|
952
|
-
"id":{"shape":"ID"},
|
953
|
-
"identity":{"shape":"Identity"},
|
954
|
-
"resource":{"shape":"Resource"},
|
955
|
-
"permission":{"shape":"Permission"},
|
956
|
-
"creationDate":{"shape":"Timestamp"},
|
957
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
958
|
-
}
|
959
|
-
},
|
960
|
-
"AggregateType":{
|
961
|
-
"type":"string",
|
962
|
-
"enum":[
|
963
|
-
"AVERAGE",
|
964
|
-
"COUNT",
|
965
|
-
"MAXIMUM",
|
966
|
-
"MINIMUM",
|
967
|
-
"SUM"
|
968
|
-
]
|
969
|
-
},
|
970
|
-
"AggregateTypes":{
|
971
|
-
"type":"list",
|
972
|
-
"member":{"shape":"AggregateType"},
|
973
|
-
"min":1
|
974
|
-
},
|
975
|
-
"AggregatedDoubleValue":{"type":"double"},
|
976
|
-
"AggregatedValue":{
|
977
|
-
"type":"structure",
|
978
|
-
"required":[
|
979
|
-
"timestamp",
|
980
|
-
"value"
|
981
|
-
],
|
982
|
-
"members":{
|
983
|
-
"timestamp":{"shape":"Timestamp"},
|
984
|
-
"quality":{"shape":"Quality"},
|
985
|
-
"value":{"shape":"Aggregates"}
|
986
|
-
}
|
987
|
-
},
|
988
|
-
"AggregatedValues":{
|
989
|
-
"type":"list",
|
990
|
-
"member":{"shape":"AggregatedValue"}
|
991
|
-
},
|
992
|
-
"Aggregates":{
|
993
|
-
"type":"structure",
|
994
|
-
"members":{
|
995
|
-
"average":{"shape":"AggregatedDoubleValue"},
|
996
|
-
"count":{"shape":"AggregatedDoubleValue"},
|
997
|
-
"maximum":{"shape":"AggregatedDoubleValue"},
|
998
|
-
"minimum":{"shape":"AggregatedDoubleValue"},
|
999
|
-
"sum":{"shape":"AggregatedDoubleValue"}
|
1000
|
-
}
|
1001
|
-
},
|
1002
|
-
"AmazonResourceName":{
|
1003
|
-
"type":"string",
|
1004
|
-
"max":1011,
|
1005
|
-
"min":1
|
1006
|
-
},
|
1007
|
-
"AssetErrorCode":{
|
1008
|
-
"type":"string",
|
1009
|
-
"enum":["INTERNAL_FAILURE"]
|
1010
|
-
},
|
1011
|
-
"AssetErrorDetails":{
|
1012
|
-
"type":"structure",
|
1013
|
-
"required":[
|
1014
|
-
"assetId",
|
1015
|
-
"code",
|
1016
|
-
"message"
|
1017
|
-
],
|
1018
|
-
"members":{
|
1019
|
-
"assetId":{"shape":"ID"},
|
1020
|
-
"code":{"shape":"AssetErrorCode"},
|
1021
|
-
"message":{"shape":"AssetErrorMessage"}
|
1022
|
-
}
|
1023
|
-
},
|
1024
|
-
"AssetErrorMessage":{"type":"string"},
|
1025
|
-
"AssetHierarchies":{
|
1026
|
-
"type":"list",
|
1027
|
-
"member":{"shape":"AssetHierarchy"}
|
1028
|
-
},
|
1029
|
-
"AssetHierarchy":{
|
1030
|
-
"type":"structure",
|
1031
|
-
"required":["name"],
|
1032
|
-
"members":{
|
1033
|
-
"id":{"shape":"ID"},
|
1034
|
-
"name":{"shape":"Name"}
|
1035
|
-
}
|
1036
|
-
},
|
1037
|
-
"AssetIDs":{
|
1038
|
-
"type":"list",
|
1039
|
-
"member":{"shape":"ID"}
|
1040
|
-
},
|
1041
|
-
"AssetModelHierarchies":{
|
1042
|
-
"type":"list",
|
1043
|
-
"member":{"shape":"AssetModelHierarchy"}
|
1044
|
-
},
|
1045
|
-
"AssetModelHierarchy":{
|
1046
|
-
"type":"structure",
|
1047
|
-
"required":[
|
1048
|
-
"name",
|
1049
|
-
"childAssetModelId"
|
1050
|
-
],
|
1051
|
-
"members":{
|
1052
|
-
"id":{"shape":"ID"},
|
1053
|
-
"name":{"shape":"Name"},
|
1054
|
-
"childAssetModelId":{"shape":"ID"}
|
1055
|
-
}
|
1056
|
-
},
|
1057
|
-
"AssetModelHierarchyDefinition":{
|
1058
|
-
"type":"structure",
|
1059
|
-
"required":[
|
1060
|
-
"name",
|
1061
|
-
"childAssetModelId"
|
1062
|
-
],
|
1063
|
-
"members":{
|
1064
|
-
"name":{"shape":"Name"},
|
1065
|
-
"childAssetModelId":{"shape":"ID"}
|
1066
|
-
}
|
1067
|
-
},
|
1068
|
-
"AssetModelHierarchyDefinitions":{
|
1069
|
-
"type":"list",
|
1070
|
-
"member":{"shape":"AssetModelHierarchyDefinition"}
|
1071
|
-
},
|
1072
|
-
"AssetModelProperties":{
|
1073
|
-
"type":"list",
|
1074
|
-
"member":{"shape":"AssetModelProperty"}
|
1075
|
-
},
|
1076
|
-
"AssetModelProperty":{
|
1077
|
-
"type":"structure",
|
1078
|
-
"required":[
|
1079
|
-
"name",
|
1080
|
-
"dataType",
|
1081
|
-
"type"
|
1082
|
-
],
|
1083
|
-
"members":{
|
1084
|
-
"id":{"shape":"ID"},
|
1085
|
-
"name":{"shape":"Name"},
|
1086
|
-
"dataType":{"shape":"PropertyDataType"},
|
1087
|
-
"unit":{"shape":"PropertyUnit"},
|
1088
|
-
"type":{"shape":"PropertyType"}
|
1089
|
-
}
|
1090
|
-
},
|
1091
|
-
"AssetModelPropertyDefinition":{
|
1092
|
-
"type":"structure",
|
1093
|
-
"required":[
|
1094
|
-
"name",
|
1095
|
-
"dataType",
|
1096
|
-
"type"
|
1097
|
-
],
|
1098
|
-
"members":{
|
1099
|
-
"name":{"shape":"Name"},
|
1100
|
-
"dataType":{"shape":"PropertyDataType"},
|
1101
|
-
"unit":{"shape":"PropertyUnit"},
|
1102
|
-
"type":{"shape":"PropertyType"}
|
1103
|
-
}
|
1104
|
-
},
|
1105
|
-
"AssetModelPropertyDefinitions":{
|
1106
|
-
"type":"list",
|
1107
|
-
"member":{"shape":"AssetModelPropertyDefinition"}
|
1108
|
-
},
|
1109
|
-
"AssetModelState":{
|
1110
|
-
"type":"string",
|
1111
|
-
"enum":[
|
1112
|
-
"CREATING",
|
1113
|
-
"ACTIVE",
|
1114
|
-
"UPDATING",
|
1115
|
-
"PROPAGATING",
|
1116
|
-
"DELETING",
|
1117
|
-
"FAILED"
|
1118
|
-
]
|
1119
|
-
},
|
1120
|
-
"AssetModelStatus":{
|
1121
|
-
"type":"structure",
|
1122
|
-
"required":["state"],
|
1123
|
-
"members":{
|
1124
|
-
"state":{"shape":"AssetModelState"},
|
1125
|
-
"error":{"shape":"ErrorDetails"}
|
1126
|
-
}
|
1127
|
-
},
|
1128
|
-
"AssetModelSummaries":{
|
1129
|
-
"type":"list",
|
1130
|
-
"member":{"shape":"AssetModelSummary"}
|
1131
|
-
},
|
1132
|
-
"AssetModelSummary":{
|
1133
|
-
"type":"structure",
|
1134
|
-
"required":[
|
1135
|
-
"id",
|
1136
|
-
"arn",
|
1137
|
-
"name",
|
1138
|
-
"description",
|
1139
|
-
"creationDate",
|
1140
|
-
"lastUpdateDate",
|
1141
|
-
"status"
|
1142
|
-
],
|
1143
|
-
"members":{
|
1144
|
-
"id":{"shape":"ID"},
|
1145
|
-
"arn":{"shape":"ARN"},
|
1146
|
-
"name":{"shape":"Name"},
|
1147
|
-
"description":{"shape":"Description"},
|
1148
|
-
"creationDate":{"shape":"Timestamp"},
|
1149
|
-
"lastUpdateDate":{"shape":"Timestamp"},
|
1150
|
-
"status":{"shape":"AssetModelStatus"}
|
1151
|
-
}
|
1152
|
-
},
|
1153
|
-
"AssetProperties":{
|
1154
|
-
"type":"list",
|
1155
|
-
"member":{"shape":"AssetProperty"}
|
1156
|
-
},
|
1157
|
-
"AssetProperty":{
|
1158
|
-
"type":"structure",
|
1159
|
-
"required":[
|
1160
|
-
"id",
|
1161
|
-
"name",
|
1162
|
-
"dataType"
|
1163
|
-
],
|
1164
|
-
"members":{
|
1165
|
-
"id":{"shape":"ID"},
|
1166
|
-
"name":{"shape":"Name"},
|
1167
|
-
"alias":{"shape":"PropertyAlias"},
|
1168
|
-
"notification":{"shape":"PropertyNotification"},
|
1169
|
-
"dataType":{"shape":"PropertyDataType"},
|
1170
|
-
"unit":{"shape":"PropertyUnit"}
|
1171
|
-
}
|
1172
|
-
},
|
1173
|
-
"AssetPropertyAlias":{
|
1174
|
-
"type":"string",
|
1175
|
-
"max":2048,
|
1176
|
-
"min":1,
|
1177
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
1178
|
-
},
|
1179
|
-
"AssetPropertyValue":{
|
1180
|
-
"type":"structure",
|
1181
|
-
"required":[
|
1182
|
-
"value",
|
1183
|
-
"timestamp"
|
1184
|
-
],
|
1185
|
-
"members":{
|
1186
|
-
"value":{"shape":"Variant"},
|
1187
|
-
"timestamp":{"shape":"TimeInNanos"},
|
1188
|
-
"quality":{"shape":"Quality"}
|
1189
|
-
}
|
1190
|
-
},
|
1191
|
-
"AssetPropertyValueHistory":{
|
1192
|
-
"type":"list",
|
1193
|
-
"member":{"shape":"AssetPropertyValue"}
|
1194
|
-
},
|
1195
|
-
"AssetPropertyValues":{
|
1196
|
-
"type":"list",
|
1197
|
-
"member":{"shape":"AssetPropertyValue"}
|
1198
|
-
},
|
1199
|
-
"AssetState":{
|
1200
|
-
"type":"string",
|
1201
|
-
"enum":[
|
1202
|
-
"CREATING",
|
1203
|
-
"ACTIVE",
|
1204
|
-
"UPDATING",
|
1205
|
-
"DELETING",
|
1206
|
-
"FAILED"
|
1207
|
-
]
|
1208
|
-
},
|
1209
|
-
"AssetStatus":{
|
1210
|
-
"type":"structure",
|
1211
|
-
"required":["state"],
|
1212
|
-
"members":{
|
1213
|
-
"state":{"shape":"AssetState"},
|
1214
|
-
"error":{"shape":"ErrorDetails"}
|
1215
|
-
}
|
1216
|
-
},
|
1217
|
-
"AssetSummaries":{
|
1218
|
-
"type":"list",
|
1219
|
-
"member":{"shape":"AssetSummary"}
|
1220
|
-
},
|
1221
|
-
"AssetSummary":{
|
1222
|
-
"type":"structure",
|
1223
|
-
"required":[
|
1224
|
-
"id",
|
1225
|
-
"arn",
|
1226
|
-
"name",
|
1227
|
-
"assetModelId",
|
1228
|
-
"creationDate",
|
1229
|
-
"lastUpdateDate",
|
1230
|
-
"status",
|
1231
|
-
"hierarchies"
|
1232
|
-
],
|
1233
|
-
"members":{
|
1234
|
-
"id":{"shape":"ID"},
|
1235
|
-
"arn":{"shape":"ARN"},
|
1236
|
-
"name":{"shape":"Name"},
|
1237
|
-
"assetModelId":{"shape":"ID"},
|
1238
|
-
"creationDate":{"shape":"Timestamp"},
|
1239
|
-
"lastUpdateDate":{"shape":"Timestamp"},
|
1240
|
-
"status":{"shape":"AssetStatus"},
|
1241
|
-
"hierarchies":{"shape":"AssetHierarchies"}
|
1242
|
-
}
|
1243
|
-
},
|
1244
|
-
"AssociateAssetsRequest":{
|
1245
|
-
"type":"structure",
|
1246
|
-
"required":[
|
1247
|
-
"assetId",
|
1248
|
-
"hierarchyId",
|
1249
|
-
"childAssetId"
|
1250
|
-
],
|
1251
|
-
"members":{
|
1252
|
-
"assetId":{
|
1253
|
-
"shape":"ID",
|
1254
|
-
"location":"uri",
|
1255
|
-
"locationName":"assetId"
|
1256
|
-
},
|
1257
|
-
"hierarchyId":{"shape":"ID"},
|
1258
|
-
"childAssetId":{"shape":"ID"},
|
1259
|
-
"clientToken":{
|
1260
|
-
"shape":"ClientToken",
|
1261
|
-
"idempotencyToken":true
|
1262
|
-
}
|
1263
|
-
}
|
1264
|
-
},
|
1265
|
-
"AssociatedAssetsSummaries":{
|
1266
|
-
"type":"list",
|
1267
|
-
"member":{"shape":"AssociatedAssetsSummary"}
|
1268
|
-
},
|
1269
|
-
"AssociatedAssetsSummary":{
|
1270
|
-
"type":"structure",
|
1271
|
-
"required":[
|
1272
|
-
"id",
|
1273
|
-
"arn",
|
1274
|
-
"name",
|
1275
|
-
"assetModelId",
|
1276
|
-
"creationDate",
|
1277
|
-
"lastUpdateDate",
|
1278
|
-
"status",
|
1279
|
-
"hierarchies"
|
1280
|
-
],
|
1281
|
-
"members":{
|
1282
|
-
"id":{"shape":"ID"},
|
1283
|
-
"arn":{"shape":"ARN"},
|
1284
|
-
"name":{"shape":"Name"},
|
1285
|
-
"assetModelId":{"shape":"ID"},
|
1286
|
-
"creationDate":{"shape":"Timestamp"},
|
1287
|
-
"lastUpdateDate":{"shape":"Timestamp"},
|
1288
|
-
"status":{"shape":"AssetStatus"},
|
1289
|
-
"hierarchies":{"shape":"AssetHierarchies"}
|
1290
|
-
}
|
1291
|
-
},
|
1292
|
-
"Attribute":{
|
1293
|
-
"type":"structure",
|
1294
|
-
"members":{
|
1295
|
-
"defaultValue":{"shape":"DefaultValue"}
|
1296
|
-
}
|
1297
|
-
},
|
1298
|
-
"BatchAssociateProjectAssetsErrors":{
|
1299
|
-
"type":"list",
|
1300
|
-
"member":{"shape":"AssetErrorDetails"}
|
1301
|
-
},
|
1302
|
-
"BatchAssociateProjectAssetsRequest":{
|
1303
|
-
"type":"structure",
|
1304
|
-
"required":[
|
1305
|
-
"projectId",
|
1306
|
-
"assetIds"
|
1307
|
-
],
|
1308
|
-
"members":{
|
1309
|
-
"projectId":{
|
1310
|
-
"shape":"ID",
|
1311
|
-
"location":"uri",
|
1312
|
-
"locationName":"projectId"
|
1313
|
-
},
|
1314
|
-
"assetIds":{"shape":"IDs"},
|
1315
|
-
"clientToken":{
|
1316
|
-
"shape":"ClientToken",
|
1317
|
-
"idempotencyToken":true
|
1318
|
-
}
|
1319
|
-
}
|
1320
|
-
},
|
1321
|
-
"BatchAssociateProjectAssetsResponse":{
|
1322
|
-
"type":"structure",
|
1323
|
-
"members":{
|
1324
|
-
"errors":{"shape":"BatchAssociateProjectAssetsErrors"}
|
1325
|
-
}
|
1326
|
-
},
|
1327
|
-
"BatchDisassociateProjectAssetsErrors":{
|
1328
|
-
"type":"list",
|
1329
|
-
"member":{"shape":"AssetErrorDetails"}
|
1330
|
-
},
|
1331
|
-
"BatchDisassociateProjectAssetsRequest":{
|
1332
|
-
"type":"structure",
|
1333
|
-
"required":[
|
1334
|
-
"projectId",
|
1335
|
-
"assetIds"
|
1336
|
-
],
|
1337
|
-
"members":{
|
1338
|
-
"projectId":{
|
1339
|
-
"shape":"ID",
|
1340
|
-
"location":"uri",
|
1341
|
-
"locationName":"projectId"
|
1342
|
-
},
|
1343
|
-
"assetIds":{"shape":"IDs"},
|
1344
|
-
"clientToken":{
|
1345
|
-
"shape":"ClientToken",
|
1346
|
-
"idempotencyToken":true
|
1347
|
-
}
|
1348
|
-
}
|
1349
|
-
},
|
1350
|
-
"BatchDisassociateProjectAssetsResponse":{
|
1351
|
-
"type":"structure",
|
1352
|
-
"members":{
|
1353
|
-
"errors":{"shape":"BatchDisassociateProjectAssetsErrors"}
|
1354
|
-
}
|
1355
|
-
},
|
1356
|
-
"BatchPutAssetPropertyError":{
|
1357
|
-
"type":"structure",
|
1358
|
-
"required":[
|
1359
|
-
"errorCode",
|
1360
|
-
"errorMessage",
|
1361
|
-
"timestamps"
|
1362
|
-
],
|
1363
|
-
"members":{
|
1364
|
-
"errorCode":{"shape":"BatchPutAssetPropertyValueErrorCode"},
|
1365
|
-
"errorMessage":{"shape":"ErrorMessage"},
|
1366
|
-
"timestamps":{"shape":"Timestamps"}
|
1367
|
-
}
|
1368
|
-
},
|
1369
|
-
"BatchPutAssetPropertyErrorEntries":{
|
1370
|
-
"type":"list",
|
1371
|
-
"member":{"shape":"BatchPutAssetPropertyErrorEntry"}
|
1372
|
-
},
|
1373
|
-
"BatchPutAssetPropertyErrorEntry":{
|
1374
|
-
"type":"structure",
|
1375
|
-
"required":[
|
1376
|
-
"entryId",
|
1377
|
-
"errors"
|
1378
|
-
],
|
1379
|
-
"members":{
|
1380
|
-
"entryId":{"shape":"EntryId"},
|
1381
|
-
"errors":{"shape":"BatchPutAssetPropertyErrors"}
|
1382
|
-
}
|
1383
|
-
},
|
1384
|
-
"BatchPutAssetPropertyErrors":{
|
1385
|
-
"type":"list",
|
1386
|
-
"member":{"shape":"BatchPutAssetPropertyError"}
|
1387
|
-
},
|
1388
|
-
"BatchPutAssetPropertyValueErrorCode":{
|
1389
|
-
"type":"string",
|
1390
|
-
"enum":[
|
1391
|
-
"ResourceNotFoundException",
|
1392
|
-
"InvalidRequestException",
|
1393
|
-
"InternalFailureException",
|
1394
|
-
"ServiceUnavailableException",
|
1395
|
-
"ThrottlingException",
|
1396
|
-
"LimitExceededException",
|
1397
|
-
"ConflictingOperationException",
|
1398
|
-
"TimestampOutOfRangeException",
|
1399
|
-
"AccessDeniedException"
|
1400
|
-
]
|
1401
|
-
},
|
1402
|
-
"BatchPutAssetPropertyValueRequest":{
|
1403
|
-
"type":"structure",
|
1404
|
-
"required":["entries"],
|
1405
|
-
"members":{
|
1406
|
-
"entries":{"shape":"PutAssetPropertyValueEntries"}
|
1407
|
-
}
|
1408
|
-
},
|
1409
|
-
"BatchPutAssetPropertyValueResponse":{
|
1410
|
-
"type":"structure",
|
1411
|
-
"required":["errorEntries"],
|
1412
|
-
"members":{
|
1413
|
-
"errorEntries":{"shape":"BatchPutAssetPropertyErrorEntries"}
|
1414
|
-
}
|
1415
|
-
},
|
1416
|
-
"CapabilityConfiguration":{
|
1417
|
-
"type":"string",
|
1418
|
-
"max":204800,
|
1419
|
-
"min":1
|
1420
|
-
},
|
1421
|
-
"CapabilityNamespace":{
|
1422
|
-
"type":"string",
|
1423
|
-
"max":512,
|
1424
|
-
"min":1,
|
1425
|
-
"pattern":"^[a-zA-Z]+:[a-zA-Z]+:[0-9]+$"
|
1426
|
-
},
|
1427
|
-
"CapabilitySyncStatus":{
|
1428
|
-
"type":"string",
|
1429
|
-
"enum":[
|
1430
|
-
"IN_SYNC",
|
1431
|
-
"OUT_OF_SYNC",
|
1432
|
-
"SYNC_FAILED"
|
1433
|
-
]
|
1434
|
-
},
|
1435
|
-
"ClientToken":{
|
1436
|
-
"type":"string",
|
1437
|
-
"max":64,
|
1438
|
-
"min":36,
|
1439
|
-
"pattern":"\\S{36,64}"
|
1440
|
-
},
|
1441
|
-
"ConflictingOperationException":{
|
1442
|
-
"type":"structure",
|
1443
|
-
"required":[
|
1444
|
-
"message",
|
1445
|
-
"resourceId",
|
1446
|
-
"resourceArn"
|
1447
|
-
],
|
1448
|
-
"members":{
|
1449
|
-
"message":{"shape":"ErrorMessage"},
|
1450
|
-
"resourceId":{"shape":"ResourceId"},
|
1451
|
-
"resourceArn":{"shape":"ResourceArn"}
|
1452
|
-
},
|
1453
|
-
"error":{"httpStatusCode":409},
|
1454
|
-
"exception":true
|
1455
|
-
},
|
1456
|
-
"CreateAccessPolicyRequest":{
|
1457
|
-
"type":"structure",
|
1458
|
-
"required":[
|
1459
|
-
"accessPolicyIdentity",
|
1460
|
-
"accessPolicyResource",
|
1461
|
-
"accessPolicyPermission"
|
1462
|
-
],
|
1463
|
-
"members":{
|
1464
|
-
"accessPolicyIdentity":{"shape":"Identity"},
|
1465
|
-
"accessPolicyResource":{"shape":"Resource"},
|
1466
|
-
"accessPolicyPermission":{"shape":"Permission"},
|
1467
|
-
"clientToken":{
|
1468
|
-
"shape":"ClientToken",
|
1469
|
-
"idempotencyToken":true
|
1470
|
-
},
|
1471
|
-
"tags":{"shape":"TagMap"}
|
1472
|
-
}
|
1473
|
-
},
|
1474
|
-
"CreateAccessPolicyResponse":{
|
1475
|
-
"type":"structure",
|
1476
|
-
"required":[
|
1477
|
-
"accessPolicyId",
|
1478
|
-
"accessPolicyArn"
|
1479
|
-
],
|
1480
|
-
"members":{
|
1481
|
-
"accessPolicyId":{"shape":"ID"},
|
1482
|
-
"accessPolicyArn":{"shape":"ARN"}
|
1483
|
-
}
|
1484
|
-
},
|
1485
|
-
"CreateAssetModelRequest":{
|
1486
|
-
"type":"structure",
|
1487
|
-
"required":["assetModelName"],
|
1488
|
-
"members":{
|
1489
|
-
"assetModelName":{"shape":"Name"},
|
1490
|
-
"assetModelDescription":{"shape":"Description"},
|
1491
|
-
"assetModelProperties":{"shape":"AssetModelPropertyDefinitions"},
|
1492
|
-
"assetModelHierarchies":{"shape":"AssetModelHierarchyDefinitions"},
|
1493
|
-
"clientToken":{
|
1494
|
-
"shape":"ClientToken",
|
1495
|
-
"idempotencyToken":true
|
1496
|
-
},
|
1497
|
-
"tags":{"shape":"TagMap"}
|
1498
|
-
}
|
1499
|
-
},
|
1500
|
-
"CreateAssetModelResponse":{
|
1501
|
-
"type":"structure",
|
1502
|
-
"required":[
|
1503
|
-
"assetModelId",
|
1504
|
-
"assetModelArn",
|
1505
|
-
"assetModelStatus"
|
1506
|
-
],
|
1507
|
-
"members":{
|
1508
|
-
"assetModelId":{"shape":"ID"},
|
1509
|
-
"assetModelArn":{"shape":"ARN"},
|
1510
|
-
"assetModelStatus":{"shape":"AssetModelStatus"}
|
1511
|
-
}
|
1512
|
-
},
|
1513
|
-
"CreateAssetRequest":{
|
1514
|
-
"type":"structure",
|
1515
|
-
"required":[
|
1516
|
-
"assetName",
|
1517
|
-
"assetModelId"
|
1518
|
-
],
|
1519
|
-
"members":{
|
1520
|
-
"assetName":{"shape":"Name"},
|
1521
|
-
"assetModelId":{"shape":"ID"},
|
1522
|
-
"clientToken":{
|
1523
|
-
"shape":"ClientToken",
|
1524
|
-
"idempotencyToken":true
|
1525
|
-
},
|
1526
|
-
"tags":{"shape":"TagMap"}
|
1527
|
-
}
|
1528
|
-
},
|
1529
|
-
"CreateAssetResponse":{
|
1530
|
-
"type":"structure",
|
1531
|
-
"required":[
|
1532
|
-
"assetId",
|
1533
|
-
"assetArn",
|
1534
|
-
"assetStatus"
|
1535
|
-
],
|
1536
|
-
"members":{
|
1537
|
-
"assetId":{"shape":"ID"},
|
1538
|
-
"assetArn":{"shape":"ARN"},
|
1539
|
-
"assetStatus":{"shape":"AssetStatus"}
|
1540
|
-
}
|
1541
|
-
},
|
1542
|
-
"CreateDashboardRequest":{
|
1543
|
-
"type":"structure",
|
1544
|
-
"required":[
|
1545
|
-
"projectId",
|
1546
|
-
"dashboardName",
|
1547
|
-
"dashboardDefinition"
|
1548
|
-
],
|
1549
|
-
"members":{
|
1550
|
-
"projectId":{"shape":"ID"},
|
1551
|
-
"dashboardName":{"shape":"Name"},
|
1552
|
-
"dashboardDescription":{"shape":"Description"},
|
1553
|
-
"dashboardDefinition":{"shape":"DashboardDefinition"},
|
1554
|
-
"clientToken":{
|
1555
|
-
"shape":"ClientToken",
|
1556
|
-
"idempotencyToken":true
|
1557
|
-
},
|
1558
|
-
"tags":{"shape":"TagMap"}
|
1559
|
-
}
|
1560
|
-
},
|
1561
|
-
"CreateDashboardResponse":{
|
1562
|
-
"type":"structure",
|
1563
|
-
"required":[
|
1564
|
-
"dashboardId",
|
1565
|
-
"dashboardArn"
|
1566
|
-
],
|
1567
|
-
"members":{
|
1568
|
-
"dashboardId":{"shape":"ID"},
|
1569
|
-
"dashboardArn":{"shape":"ARN"}
|
1570
|
-
}
|
1571
|
-
},
|
1572
|
-
"CreateGatewayRequest":{
|
1573
|
-
"type":"structure",
|
1574
|
-
"required":[
|
1575
|
-
"gatewayName",
|
1576
|
-
"gatewayPlatform"
|
1577
|
-
],
|
1578
|
-
"members":{
|
1579
|
-
"gatewayName":{"shape":"Name"},
|
1580
|
-
"gatewayPlatform":{"shape":"GatewayPlatform"},
|
1581
|
-
"tags":{"shape":"TagMap"}
|
1582
|
-
}
|
1583
|
-
},
|
1584
|
-
"CreateGatewayResponse":{
|
1585
|
-
"type":"structure",
|
1586
|
-
"required":[
|
1587
|
-
"gatewayId",
|
1588
|
-
"gatewayArn"
|
1589
|
-
],
|
1590
|
-
"members":{
|
1591
|
-
"gatewayId":{"shape":"ID"},
|
1592
|
-
"gatewayArn":{"shape":"ARN"}
|
1593
|
-
}
|
1594
|
-
},
|
1595
|
-
"CreatePortalRequest":{
|
1596
|
-
"type":"structure",
|
1597
|
-
"required":[
|
1598
|
-
"portalName",
|
1599
|
-
"portalContactEmail",
|
1600
|
-
"roleArn"
|
1601
|
-
],
|
1602
|
-
"members":{
|
1603
|
-
"portalName":{"shape":"Name"},
|
1604
|
-
"portalDescription":{"shape":"Description"},
|
1605
|
-
"portalContactEmail":{"shape":"Email"},
|
1606
|
-
"clientToken":{
|
1607
|
-
"shape":"ClientToken",
|
1608
|
-
"idempotencyToken":true
|
1609
|
-
},
|
1610
|
-
"portalLogoImageFile":{"shape":"ImageFile"},
|
1611
|
-
"roleArn":{"shape":"ARN"},
|
1612
|
-
"tags":{"shape":"TagMap"}
|
1613
|
-
}
|
1614
|
-
},
|
1615
|
-
"CreatePortalResponse":{
|
1616
|
-
"type":"structure",
|
1617
|
-
"required":[
|
1618
|
-
"portalId",
|
1619
|
-
"portalArn",
|
1620
|
-
"portalStartUrl",
|
1621
|
-
"portalStatus",
|
1622
|
-
"ssoApplicationId"
|
1623
|
-
],
|
1624
|
-
"members":{
|
1625
|
-
"portalId":{"shape":"ID"},
|
1626
|
-
"portalArn":{"shape":"ARN"},
|
1627
|
-
"portalStartUrl":{"shape":"Url"},
|
1628
|
-
"portalStatus":{"shape":"PortalStatus"},
|
1629
|
-
"ssoApplicationId":{"shape":"SSOApplicationId"}
|
1630
|
-
}
|
1631
|
-
},
|
1632
|
-
"CreateProjectRequest":{
|
1633
|
-
"type":"structure",
|
1634
|
-
"required":[
|
1635
|
-
"portalId",
|
1636
|
-
"projectName"
|
1637
|
-
],
|
1638
|
-
"members":{
|
1639
|
-
"portalId":{"shape":"ID"},
|
1640
|
-
"projectName":{"shape":"Name"},
|
1641
|
-
"projectDescription":{"shape":"Description"},
|
1642
|
-
"clientToken":{
|
1643
|
-
"shape":"ClientToken",
|
1644
|
-
"idempotencyToken":true
|
1645
|
-
},
|
1646
|
-
"tags":{"shape":"TagMap"}
|
1647
|
-
}
|
1648
|
-
},
|
1649
|
-
"CreateProjectResponse":{
|
1650
|
-
"type":"structure",
|
1651
|
-
"required":[
|
1652
|
-
"projectId",
|
1653
|
-
"projectArn"
|
1654
|
-
],
|
1655
|
-
"members":{
|
1656
|
-
"projectId":{"shape":"ID"},
|
1657
|
-
"projectArn":{"shape":"ARN"}
|
1658
|
-
}
|
1659
|
-
},
|
1660
|
-
"DashboardDefinition":{
|
1661
|
-
"type":"string",
|
1662
|
-
"max":204800,
|
1663
|
-
"min":0,
|
1664
|
-
"pattern":".+"
|
1665
|
-
},
|
1666
|
-
"DashboardSummaries":{
|
1667
|
-
"type":"list",
|
1668
|
-
"member":{"shape":"DashboardSummary"}
|
1669
|
-
},
|
1670
|
-
"DashboardSummary":{
|
1671
|
-
"type":"structure",
|
1672
|
-
"required":[
|
1673
|
-
"id",
|
1674
|
-
"name"
|
1675
|
-
],
|
1676
|
-
"members":{
|
1677
|
-
"id":{"shape":"ID"},
|
1678
|
-
"name":{"shape":"Name"},
|
1679
|
-
"description":{"shape":"Description"},
|
1680
|
-
"creationDate":{"shape":"Timestamp"},
|
1681
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
1682
|
-
}
|
1683
|
-
},
|
1684
|
-
"DefaultValue":{
|
1685
|
-
"type":"string",
|
1686
|
-
"max":1024,
|
1687
|
-
"min":1,
|
1688
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
1689
|
-
},
|
1690
|
-
"DeleteAccessPolicyRequest":{
|
1691
|
-
"type":"structure",
|
1692
|
-
"required":["accessPolicyId"],
|
1693
|
-
"members":{
|
1694
|
-
"accessPolicyId":{
|
1695
|
-
"shape":"ID",
|
1696
|
-
"location":"uri",
|
1697
|
-
"locationName":"accessPolicyId"
|
1698
|
-
},
|
1699
|
-
"clientToken":{
|
1700
|
-
"shape":"ClientToken",
|
1701
|
-
"idempotencyToken":true,
|
1702
|
-
"location":"querystring",
|
1703
|
-
"locationName":"clientToken"
|
1704
|
-
}
|
1705
|
-
}
|
1706
|
-
},
|
1707
|
-
"DeleteAccessPolicyResponse":{
|
1708
|
-
"type":"structure",
|
1709
|
-
"members":{
|
1710
|
-
}
|
1711
|
-
},
|
1712
|
-
"DeleteAssetModelRequest":{
|
1713
|
-
"type":"structure",
|
1714
|
-
"required":["assetModelId"],
|
1715
|
-
"members":{
|
1716
|
-
"assetModelId":{
|
1717
|
-
"shape":"ID",
|
1718
|
-
"location":"uri",
|
1719
|
-
"locationName":"assetModelId"
|
1720
|
-
},
|
1721
|
-
"clientToken":{
|
1722
|
-
"shape":"ClientToken",
|
1723
|
-
"idempotencyToken":true,
|
1724
|
-
"location":"querystring",
|
1725
|
-
"locationName":"clientToken"
|
1726
|
-
}
|
1727
|
-
}
|
1728
|
-
},
|
1729
|
-
"DeleteAssetModelResponse":{
|
1730
|
-
"type":"structure",
|
1731
|
-
"required":["assetModelStatus"],
|
1732
|
-
"members":{
|
1733
|
-
"assetModelStatus":{"shape":"AssetModelStatus"}
|
1734
|
-
}
|
1735
|
-
},
|
1736
|
-
"DeleteAssetRequest":{
|
1737
|
-
"type":"structure",
|
1738
|
-
"required":["assetId"],
|
1739
|
-
"members":{
|
1740
|
-
"assetId":{
|
1741
|
-
"shape":"ID",
|
1742
|
-
"location":"uri",
|
1743
|
-
"locationName":"assetId"
|
1744
|
-
},
|
1745
|
-
"clientToken":{
|
1746
|
-
"shape":"ClientToken",
|
1747
|
-
"idempotencyToken":true,
|
1748
|
-
"location":"querystring",
|
1749
|
-
"locationName":"clientToken"
|
1750
|
-
}
|
1751
|
-
}
|
1752
|
-
},
|
1753
|
-
"DeleteAssetResponse":{
|
1754
|
-
"type":"structure",
|
1755
|
-
"required":["assetStatus"],
|
1756
|
-
"members":{
|
1757
|
-
"assetStatus":{"shape":"AssetStatus"}
|
1758
|
-
}
|
1759
|
-
},
|
1760
|
-
"DeleteDashboardRequest":{
|
1761
|
-
"type":"structure",
|
1762
|
-
"required":["dashboardId"],
|
1763
|
-
"members":{
|
1764
|
-
"dashboardId":{
|
1765
|
-
"shape":"ID",
|
1766
|
-
"location":"uri",
|
1767
|
-
"locationName":"dashboardId"
|
1768
|
-
},
|
1769
|
-
"clientToken":{
|
1770
|
-
"shape":"ClientToken",
|
1771
|
-
"idempotencyToken":true,
|
1772
|
-
"location":"querystring",
|
1773
|
-
"locationName":"clientToken"
|
1774
|
-
}
|
1775
|
-
}
|
1776
|
-
},
|
1777
|
-
"DeleteDashboardResponse":{
|
1778
|
-
"type":"structure",
|
1779
|
-
"members":{
|
1780
|
-
}
|
1781
|
-
},
|
1782
|
-
"DeleteGatewayRequest":{
|
1783
|
-
"type":"structure",
|
1784
|
-
"required":["gatewayId"],
|
1785
|
-
"members":{
|
1786
|
-
"gatewayId":{
|
1787
|
-
"shape":"ID",
|
1788
|
-
"location":"uri",
|
1789
|
-
"locationName":"gatewayId"
|
1790
|
-
}
|
1791
|
-
}
|
1792
|
-
},
|
1793
|
-
"DeletePortalRequest":{
|
1794
|
-
"type":"structure",
|
1795
|
-
"required":["portalId"],
|
1796
|
-
"members":{
|
1797
|
-
"portalId":{
|
1798
|
-
"shape":"ID",
|
1799
|
-
"location":"uri",
|
1800
|
-
"locationName":"portalId"
|
1801
|
-
},
|
1802
|
-
"clientToken":{
|
1803
|
-
"shape":"ClientToken",
|
1804
|
-
"idempotencyToken":true,
|
1805
|
-
"location":"querystring",
|
1806
|
-
"locationName":"clientToken"
|
1807
|
-
}
|
1808
|
-
}
|
1809
|
-
},
|
1810
|
-
"DeletePortalResponse":{
|
1811
|
-
"type":"structure",
|
1812
|
-
"required":["portalStatus"],
|
1813
|
-
"members":{
|
1814
|
-
"portalStatus":{"shape":"PortalStatus"}
|
1815
|
-
}
|
1816
|
-
},
|
1817
|
-
"DeleteProjectRequest":{
|
1818
|
-
"type":"structure",
|
1819
|
-
"required":["projectId"],
|
1820
|
-
"members":{
|
1821
|
-
"projectId":{
|
1822
|
-
"shape":"ID",
|
1823
|
-
"location":"uri",
|
1824
|
-
"locationName":"projectId"
|
1825
|
-
},
|
1826
|
-
"clientToken":{
|
1827
|
-
"shape":"ClientToken",
|
1828
|
-
"idempotencyToken":true,
|
1829
|
-
"location":"querystring",
|
1830
|
-
"locationName":"clientToken"
|
1831
|
-
}
|
1832
|
-
}
|
1833
|
-
},
|
1834
|
-
"DeleteProjectResponse":{
|
1835
|
-
"type":"structure",
|
1836
|
-
"members":{
|
1837
|
-
}
|
1838
|
-
},
|
1839
|
-
"DescribeAccessPolicyRequest":{
|
1840
|
-
"type":"structure",
|
1841
|
-
"required":["accessPolicyId"],
|
1842
|
-
"members":{
|
1843
|
-
"accessPolicyId":{
|
1844
|
-
"shape":"ID",
|
1845
|
-
"location":"uri",
|
1846
|
-
"locationName":"accessPolicyId"
|
1847
|
-
}
|
1848
|
-
}
|
1849
|
-
},
|
1850
|
-
"DescribeAccessPolicyResponse":{
|
1851
|
-
"type":"structure",
|
1852
|
-
"required":[
|
1853
|
-
"accessPolicyId",
|
1854
|
-
"accessPolicyArn",
|
1855
|
-
"accessPolicyIdentity",
|
1856
|
-
"accessPolicyResource",
|
1857
|
-
"accessPolicyPermission",
|
1858
|
-
"accessPolicyCreationDate",
|
1859
|
-
"accessPolicyLastUpdateDate"
|
1860
|
-
],
|
1861
|
-
"members":{
|
1862
|
-
"accessPolicyId":{"shape":"ID"},
|
1863
|
-
"accessPolicyArn":{"shape":"ARN"},
|
1864
|
-
"accessPolicyIdentity":{"shape":"Identity"},
|
1865
|
-
"accessPolicyResource":{"shape":"Resource"},
|
1866
|
-
"accessPolicyPermission":{"shape":"Permission"},
|
1867
|
-
"accessPolicyCreationDate":{"shape":"Timestamp"},
|
1868
|
-
"accessPolicyLastUpdateDate":{"shape":"Timestamp"}
|
1869
|
-
}
|
1870
|
-
},
|
1871
|
-
"DescribeAssetModelRequest":{
|
1872
|
-
"type":"structure",
|
1873
|
-
"required":["assetModelId"],
|
1874
|
-
"members":{
|
1875
|
-
"assetModelId":{
|
1876
|
-
"shape":"ID",
|
1877
|
-
"location":"uri",
|
1878
|
-
"locationName":"assetModelId"
|
1879
|
-
}
|
1880
|
-
}
|
1881
|
-
},
|
1882
|
-
"DescribeAssetModelResponse":{
|
1883
|
-
"type":"structure",
|
1884
|
-
"required":[
|
1885
|
-
"assetModelId",
|
1886
|
-
"assetModelArn",
|
1887
|
-
"assetModelName",
|
1888
|
-
"assetModelDescription",
|
1889
|
-
"assetModelProperties",
|
1890
|
-
"assetModelHierarchies",
|
1891
|
-
"assetModelCreationDate",
|
1892
|
-
"assetModelLastUpdateDate",
|
1893
|
-
"assetModelStatus"
|
1894
|
-
],
|
1895
|
-
"members":{
|
1896
|
-
"assetModelId":{"shape":"ID"},
|
1897
|
-
"assetModelArn":{"shape":"ARN"},
|
1898
|
-
"assetModelName":{"shape":"Name"},
|
1899
|
-
"assetModelDescription":{"shape":"Description"},
|
1900
|
-
"assetModelProperties":{"shape":"AssetModelProperties"},
|
1901
|
-
"assetModelHierarchies":{"shape":"AssetModelHierarchies"},
|
1902
|
-
"assetModelCreationDate":{"shape":"Timestamp"},
|
1903
|
-
"assetModelLastUpdateDate":{"shape":"Timestamp"},
|
1904
|
-
"assetModelStatus":{"shape":"AssetModelStatus"}
|
1905
|
-
}
|
1906
|
-
},
|
1907
|
-
"DescribeAssetPropertyRequest":{
|
1908
|
-
"type":"structure",
|
1909
|
-
"required":[
|
1910
|
-
"assetId",
|
1911
|
-
"propertyId"
|
1912
|
-
],
|
1913
|
-
"members":{
|
1914
|
-
"assetId":{
|
1915
|
-
"shape":"ID",
|
1916
|
-
"location":"uri",
|
1917
|
-
"locationName":"assetId"
|
1918
|
-
},
|
1919
|
-
"propertyId":{
|
1920
|
-
"shape":"ID",
|
1921
|
-
"location":"uri",
|
1922
|
-
"locationName":"propertyId"
|
1923
|
-
}
|
1924
|
-
}
|
1925
|
-
},
|
1926
|
-
"DescribeAssetPropertyResponse":{
|
1927
|
-
"type":"structure",
|
1928
|
-
"required":[
|
1929
|
-
"assetId",
|
1930
|
-
"assetName",
|
1931
|
-
"assetModelId",
|
1932
|
-
"assetProperty"
|
1933
|
-
],
|
1934
|
-
"members":{
|
1935
|
-
"assetId":{"shape":"ID"},
|
1936
|
-
"assetName":{"shape":"Name"},
|
1937
|
-
"assetModelId":{"shape":"ID"},
|
1938
|
-
"assetProperty":{"shape":"Property"}
|
1939
|
-
}
|
1940
|
-
},
|
1941
|
-
"DescribeAssetRequest":{
|
1942
|
-
"type":"structure",
|
1943
|
-
"required":["assetId"],
|
1944
|
-
"members":{
|
1945
|
-
"assetId":{
|
1946
|
-
"shape":"ID",
|
1947
|
-
"location":"uri",
|
1948
|
-
"locationName":"assetId"
|
1949
|
-
}
|
1950
|
-
}
|
1951
|
-
},
|
1952
|
-
"DescribeAssetResponse":{
|
1953
|
-
"type":"structure",
|
1954
|
-
"required":[
|
1955
|
-
"assetId",
|
1956
|
-
"assetArn",
|
1957
|
-
"assetName",
|
1958
|
-
"assetModelId",
|
1959
|
-
"assetProperties",
|
1960
|
-
"assetHierarchies",
|
1961
|
-
"assetCreationDate",
|
1962
|
-
"assetLastUpdateDate",
|
1963
|
-
"assetStatus"
|
1964
|
-
],
|
1965
|
-
"members":{
|
1966
|
-
"assetId":{"shape":"ID"},
|
1967
|
-
"assetArn":{"shape":"ARN"},
|
1968
|
-
"assetName":{"shape":"Name"},
|
1969
|
-
"assetModelId":{"shape":"ID"},
|
1970
|
-
"assetProperties":{"shape":"AssetProperties"},
|
1971
|
-
"assetHierarchies":{"shape":"AssetHierarchies"},
|
1972
|
-
"assetCreationDate":{"shape":"Timestamp"},
|
1973
|
-
"assetLastUpdateDate":{"shape":"Timestamp"},
|
1974
|
-
"assetStatus":{"shape":"AssetStatus"}
|
1975
|
-
}
|
1976
|
-
},
|
1977
|
-
"DescribeDashboardRequest":{
|
1978
|
-
"type":"structure",
|
1979
|
-
"required":["dashboardId"],
|
1980
|
-
"members":{
|
1981
|
-
"dashboardId":{
|
1982
|
-
"shape":"ID",
|
1983
|
-
"location":"uri",
|
1984
|
-
"locationName":"dashboardId"
|
1985
|
-
}
|
1986
|
-
}
|
1987
|
-
},
|
1988
|
-
"DescribeDashboardResponse":{
|
1989
|
-
"type":"structure",
|
1990
|
-
"required":[
|
1991
|
-
"dashboardId",
|
1992
|
-
"dashboardArn",
|
1993
|
-
"dashboardName",
|
1994
|
-
"projectId",
|
1995
|
-
"dashboardDefinition",
|
1996
|
-
"dashboardCreationDate",
|
1997
|
-
"dashboardLastUpdateDate"
|
1998
|
-
],
|
1999
|
-
"members":{
|
2000
|
-
"dashboardId":{"shape":"ID"},
|
2001
|
-
"dashboardArn":{"shape":"ARN"},
|
2002
|
-
"dashboardName":{"shape":"Name"},
|
2003
|
-
"projectId":{"shape":"ID"},
|
2004
|
-
"dashboardDescription":{"shape":"Description"},
|
2005
|
-
"dashboardDefinition":{"shape":"DashboardDefinition"},
|
2006
|
-
"dashboardCreationDate":{"shape":"Timestamp"},
|
2007
|
-
"dashboardLastUpdateDate":{"shape":"Timestamp"}
|
2008
|
-
}
|
2009
|
-
},
|
2010
|
-
"DescribeGatewayCapabilityConfigurationRequest":{
|
2011
|
-
"type":"structure",
|
2012
|
-
"required":[
|
2013
|
-
"gatewayId",
|
2014
|
-
"capabilityNamespace"
|
2015
|
-
],
|
2016
|
-
"members":{
|
2017
|
-
"gatewayId":{
|
2018
|
-
"shape":"ID",
|
2019
|
-
"location":"uri",
|
2020
|
-
"locationName":"gatewayId"
|
2021
|
-
},
|
2022
|
-
"capabilityNamespace":{
|
2023
|
-
"shape":"CapabilityNamespace",
|
2024
|
-
"location":"uri",
|
2025
|
-
"locationName":"capabilityNamespace"
|
2026
|
-
}
|
2027
|
-
}
|
2028
|
-
},
|
2029
|
-
"DescribeGatewayCapabilityConfigurationResponse":{
|
2030
|
-
"type":"structure",
|
2031
|
-
"required":[
|
2032
|
-
"gatewayId",
|
2033
|
-
"capabilityNamespace",
|
2034
|
-
"capabilityConfiguration",
|
2035
|
-
"capabilitySyncStatus"
|
2036
|
-
],
|
2037
|
-
"members":{
|
2038
|
-
"gatewayId":{"shape":"ID"},
|
2039
|
-
"capabilityNamespace":{"shape":"CapabilityNamespace"},
|
2040
|
-
"capabilityConfiguration":{"shape":"CapabilityConfiguration"},
|
2041
|
-
"capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
|
2042
|
-
}
|
2043
|
-
},
|
2044
|
-
"DescribeGatewayRequest":{
|
2045
|
-
"type":"structure",
|
2046
|
-
"required":["gatewayId"],
|
2047
|
-
"members":{
|
2048
|
-
"gatewayId":{
|
2049
|
-
"shape":"ID",
|
2050
|
-
"location":"uri",
|
2051
|
-
"locationName":"gatewayId"
|
2052
|
-
}
|
2053
|
-
}
|
2054
|
-
},
|
2055
|
-
"DescribeGatewayResponse":{
|
2056
|
-
"type":"structure",
|
2057
|
-
"required":[
|
2058
|
-
"gatewayId",
|
2059
|
-
"gatewayName",
|
2060
|
-
"gatewayArn",
|
2061
|
-
"gatewayCapabilitySummaries",
|
2062
|
-
"creationDate",
|
2063
|
-
"lastUpdateDate"
|
2064
|
-
],
|
2065
|
-
"members":{
|
2066
|
-
"gatewayId":{"shape":"ID"},
|
2067
|
-
"gatewayName":{"shape":"Name"},
|
2068
|
-
"gatewayArn":{"shape":"ARN"},
|
2069
|
-
"gatewayPlatform":{"shape":"GatewayPlatform"},
|
2070
|
-
"gatewayCapabilitySummaries":{"shape":"GatewayCapabilitySummaries"},
|
2071
|
-
"creationDate":{"shape":"Timestamp"},
|
2072
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
2073
|
-
}
|
2074
|
-
},
|
2075
|
-
"DescribeLoggingOptionsRequest":{
|
2076
|
-
"type":"structure",
|
2077
|
-
"members":{
|
2078
|
-
}
|
2079
|
-
},
|
2080
|
-
"DescribeLoggingOptionsResponse":{
|
2081
|
-
"type":"structure",
|
2082
|
-
"required":["loggingOptions"],
|
2083
|
-
"members":{
|
2084
|
-
"loggingOptions":{"shape":"LoggingOptions"}
|
2085
|
-
}
|
2086
|
-
},
|
2087
|
-
"DescribePortalRequest":{
|
2088
|
-
"type":"structure",
|
2089
|
-
"required":["portalId"],
|
2090
|
-
"members":{
|
2091
|
-
"portalId":{
|
2092
|
-
"shape":"ID",
|
2093
|
-
"location":"uri",
|
2094
|
-
"locationName":"portalId"
|
2095
|
-
}
|
2096
|
-
}
|
2097
|
-
},
|
2098
|
-
"DescribePortalResponse":{
|
2099
|
-
"type":"structure",
|
2100
|
-
"required":[
|
2101
|
-
"portalId",
|
2102
|
-
"portalArn",
|
2103
|
-
"portalName",
|
2104
|
-
"portalClientId",
|
2105
|
-
"portalStartUrl",
|
2106
|
-
"portalContactEmail",
|
2107
|
-
"portalStatus",
|
2108
|
-
"portalCreationDate",
|
2109
|
-
"portalLastUpdateDate"
|
2110
|
-
],
|
2111
|
-
"members":{
|
2112
|
-
"portalId":{"shape":"ID"},
|
2113
|
-
"portalArn":{"shape":"ARN"},
|
2114
|
-
"portalName":{"shape":"Name"},
|
2115
|
-
"portalDescription":{"shape":"Description"},
|
2116
|
-
"portalClientId":{"shape":"PortalClientId"},
|
2117
|
-
"portalStartUrl":{"shape":"Url"},
|
2118
|
-
"portalContactEmail":{"shape":"Email"},
|
2119
|
-
"portalStatus":{"shape":"PortalStatus"},
|
2120
|
-
"portalCreationDate":{"shape":"Timestamp"},
|
2121
|
-
"portalLastUpdateDate":{"shape":"Timestamp"},
|
2122
|
-
"portalLogoImage":{"shape":"Image"},
|
2123
|
-
"roleArn":{"shape":"ARN"}
|
2124
|
-
}
|
2125
|
-
},
|
2126
|
-
"DescribeProjectRequest":{
|
2127
|
-
"type":"structure",
|
2128
|
-
"required":["projectId"],
|
2129
|
-
"members":{
|
2130
|
-
"projectId":{
|
2131
|
-
"shape":"ID",
|
2132
|
-
"location":"uri",
|
2133
|
-
"locationName":"projectId"
|
2134
|
-
}
|
2135
|
-
}
|
2136
|
-
},
|
2137
|
-
"DescribeProjectResponse":{
|
2138
|
-
"type":"structure",
|
2139
|
-
"required":[
|
2140
|
-
"projectId",
|
2141
|
-
"projectArn",
|
2142
|
-
"projectName",
|
2143
|
-
"portalId",
|
2144
|
-
"projectCreationDate",
|
2145
|
-
"projectLastUpdateDate"
|
2146
|
-
],
|
2147
|
-
"members":{
|
2148
|
-
"projectId":{"shape":"ID"},
|
2149
|
-
"projectArn":{"shape":"ARN"},
|
2150
|
-
"projectName":{"shape":"Name"},
|
2151
|
-
"portalId":{"shape":"ID"},
|
2152
|
-
"projectDescription":{"shape":"Description"},
|
2153
|
-
"projectCreationDate":{"shape":"Timestamp"},
|
2154
|
-
"projectLastUpdateDate":{"shape":"Timestamp"}
|
2155
|
-
}
|
2156
|
-
},
|
2157
|
-
"Description":{
|
2158
|
-
"type":"string",
|
2159
|
-
"max":2048,
|
2160
|
-
"min":1,
|
2161
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
2162
|
-
},
|
2163
|
-
"DisassociateAssetsRequest":{
|
2164
|
-
"type":"structure",
|
2165
|
-
"required":[
|
2166
|
-
"assetId",
|
2167
|
-
"hierarchyId",
|
2168
|
-
"childAssetId"
|
2169
|
-
],
|
2170
|
-
"members":{
|
2171
|
-
"assetId":{
|
2172
|
-
"shape":"ID",
|
2173
|
-
"location":"uri",
|
2174
|
-
"locationName":"assetId"
|
2175
|
-
},
|
2176
|
-
"hierarchyId":{"shape":"ID"},
|
2177
|
-
"childAssetId":{"shape":"ID"},
|
2178
|
-
"clientToken":{
|
2179
|
-
"shape":"ClientToken",
|
2180
|
-
"idempotencyToken":true
|
2181
|
-
}
|
2182
|
-
}
|
2183
|
-
},
|
2184
|
-
"Email":{
|
2185
|
-
"type":"string",
|
2186
|
-
"max":255,
|
2187
|
-
"min":1,
|
2188
|
-
"pattern":"[^@]+@[^@]+"
|
2189
|
-
},
|
2190
|
-
"EntryId":{
|
2191
|
-
"type":"string",
|
2192
|
-
"max":64,
|
2193
|
-
"min":1,
|
2194
|
-
"pattern":"^[a-zA-Z0-9_-]+$"
|
2195
|
-
},
|
2196
|
-
"ErrorCode":{
|
2197
|
-
"type":"string",
|
2198
|
-
"enum":[
|
2199
|
-
"VALIDATION_ERROR",
|
2200
|
-
"INTERNAL_FAILURE"
|
2201
|
-
]
|
2202
|
-
},
|
2203
|
-
"ErrorDetails":{
|
2204
|
-
"type":"structure",
|
2205
|
-
"required":[
|
2206
|
-
"code",
|
2207
|
-
"message"
|
2208
|
-
],
|
2209
|
-
"members":{
|
2210
|
-
"code":{"shape":"ErrorCode"},
|
2211
|
-
"message":{"shape":"ErrorMessage"}
|
2212
|
-
}
|
2213
|
-
},
|
2214
|
-
"ErrorMessage":{"type":"string"},
|
2215
|
-
"ExceptionMessage":{"type":"string"},
|
2216
|
-
"Expression":{
|
2217
|
-
"type":"string",
|
2218
|
-
"max":1024,
|
2219
|
-
"min":1,
|
2220
|
-
"pattern":"^[a-z0-9._+\\-*%/^, ()]+$"
|
2221
|
-
},
|
2222
|
-
"ExpressionVariable":{
|
2223
|
-
"type":"structure",
|
2224
|
-
"required":[
|
2225
|
-
"name",
|
2226
|
-
"value"
|
2227
|
-
],
|
2228
|
-
"members":{
|
2229
|
-
"name":{"shape":"VariableName"},
|
2230
|
-
"value":{"shape":"VariableValue"}
|
2231
|
-
}
|
2232
|
-
},
|
2233
|
-
"ExpressionVariables":{
|
2234
|
-
"type":"list",
|
2235
|
-
"member":{"shape":"ExpressionVariable"}
|
2236
|
-
},
|
2237
|
-
"GatewayCapabilitySummaries":{
|
2238
|
-
"type":"list",
|
2239
|
-
"member":{"shape":"GatewayCapabilitySummary"}
|
2240
|
-
},
|
2241
|
-
"GatewayCapabilitySummary":{
|
2242
|
-
"type":"structure",
|
2243
|
-
"required":[
|
2244
|
-
"capabilityNamespace",
|
2245
|
-
"capabilitySyncStatus"
|
2246
|
-
],
|
2247
|
-
"members":{
|
2248
|
-
"capabilityNamespace":{"shape":"CapabilityNamespace"},
|
2249
|
-
"capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
|
2250
|
-
}
|
2251
|
-
},
|
2252
|
-
"GatewayPlatform":{
|
2253
|
-
"type":"structure",
|
2254
|
-
"required":["greengrass"],
|
2255
|
-
"members":{
|
2256
|
-
"greengrass":{"shape":"Greengrass"}
|
2257
|
-
}
|
2258
|
-
},
|
2259
|
-
"GatewaySummaries":{
|
2260
|
-
"type":"list",
|
2261
|
-
"member":{"shape":"GatewaySummary"}
|
2262
|
-
},
|
2263
|
-
"GatewaySummary":{
|
2264
|
-
"type":"structure",
|
2265
|
-
"required":[
|
2266
|
-
"gatewayId",
|
2267
|
-
"gatewayName",
|
2268
|
-
"creationDate",
|
2269
|
-
"lastUpdateDate"
|
2270
|
-
],
|
2271
|
-
"members":{
|
2272
|
-
"gatewayId":{"shape":"ID"},
|
2273
|
-
"gatewayName":{"shape":"Name"},
|
2274
|
-
"gatewayCapabilitySummaries":{"shape":"GatewayCapabilitySummaries"},
|
2275
|
-
"creationDate":{"shape":"Timestamp"},
|
2276
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
2277
|
-
}
|
2278
|
-
},
|
2279
|
-
"GetAssetPropertyAggregatesRequest":{
|
2280
|
-
"type":"structure",
|
2281
|
-
"required":[
|
2282
|
-
"aggregateTypes",
|
2283
|
-
"resolution",
|
2284
|
-
"startDate",
|
2285
|
-
"endDate"
|
2286
|
-
],
|
2287
|
-
"members":{
|
2288
|
-
"assetId":{
|
2289
|
-
"shape":"ID",
|
2290
|
-
"location":"querystring",
|
2291
|
-
"locationName":"assetId"
|
2292
|
-
},
|
2293
|
-
"propertyId":{
|
2294
|
-
"shape":"ID",
|
2295
|
-
"location":"querystring",
|
2296
|
-
"locationName":"propertyId"
|
2297
|
-
},
|
2298
|
-
"propertyAlias":{
|
2299
|
-
"shape":"AssetPropertyAlias",
|
2300
|
-
"location":"querystring",
|
2301
|
-
"locationName":"propertyAlias"
|
2302
|
-
},
|
2303
|
-
"aggregateTypes":{
|
2304
|
-
"shape":"AggregateTypes",
|
2305
|
-
"location":"querystring",
|
2306
|
-
"locationName":"aggregateTypes"
|
2307
|
-
},
|
2308
|
-
"resolution":{
|
2309
|
-
"shape":"Resolution",
|
2310
|
-
"location":"querystring",
|
2311
|
-
"locationName":"resolution"
|
2312
|
-
},
|
2313
|
-
"qualities":{
|
2314
|
-
"shape":"Qualities",
|
2315
|
-
"location":"querystring",
|
2316
|
-
"locationName":"qualities"
|
2317
|
-
},
|
2318
|
-
"startDate":{
|
2319
|
-
"shape":"Timestamp",
|
2320
|
-
"location":"querystring",
|
2321
|
-
"locationName":"startDate"
|
2322
|
-
},
|
2323
|
-
"endDate":{
|
2324
|
-
"shape":"Timestamp",
|
2325
|
-
"location":"querystring",
|
2326
|
-
"locationName":"endDate"
|
2327
|
-
},
|
2328
|
-
"timeOrdering":{
|
2329
|
-
"shape":"TimeOrdering",
|
2330
|
-
"location":"querystring",
|
2331
|
-
"locationName":"timeOrdering"
|
2332
|
-
},
|
2333
|
-
"nextToken":{
|
2334
|
-
"shape":"NextToken",
|
2335
|
-
"location":"querystring",
|
2336
|
-
"locationName":"nextToken"
|
2337
|
-
},
|
2338
|
-
"maxResults":{
|
2339
|
-
"shape":"MaxResults",
|
2340
|
-
"location":"querystring",
|
2341
|
-
"locationName":"maxResults"
|
2342
|
-
}
|
2343
|
-
}
|
2344
|
-
},
|
2345
|
-
"GetAssetPropertyAggregatesResponse":{
|
2346
|
-
"type":"structure",
|
2347
|
-
"required":["aggregatedValues"],
|
2348
|
-
"members":{
|
2349
|
-
"aggregatedValues":{"shape":"AggregatedValues"},
|
2350
|
-
"nextToken":{"shape":"NextToken"}
|
2351
|
-
}
|
2352
|
-
},
|
2353
|
-
"GetAssetPropertyValueHistoryRequest":{
|
2354
|
-
"type":"structure",
|
2355
|
-
"required":[
|
2356
|
-
"startDate",
|
2357
|
-
"endDate"
|
2358
|
-
],
|
2359
|
-
"members":{
|
2360
|
-
"assetId":{
|
2361
|
-
"shape":"ID",
|
2362
|
-
"location":"querystring",
|
2363
|
-
"locationName":"assetId"
|
2364
|
-
},
|
2365
|
-
"propertyId":{
|
2366
|
-
"shape":"ID",
|
2367
|
-
"location":"querystring",
|
2368
|
-
"locationName":"propertyId"
|
2369
|
-
},
|
2370
|
-
"propertyAlias":{
|
2371
|
-
"shape":"AssetPropertyAlias",
|
2372
|
-
"location":"querystring",
|
2373
|
-
"locationName":"propertyAlias"
|
2374
|
-
},
|
2375
|
-
"startDate":{
|
2376
|
-
"shape":"Timestamp",
|
2377
|
-
"location":"querystring",
|
2378
|
-
"locationName":"startDate"
|
2379
|
-
},
|
2380
|
-
"endDate":{
|
2381
|
-
"shape":"Timestamp",
|
2382
|
-
"location":"querystring",
|
2383
|
-
"locationName":"endDate"
|
2384
|
-
},
|
2385
|
-
"qualities":{
|
2386
|
-
"shape":"Qualities",
|
2387
|
-
"location":"querystring",
|
2388
|
-
"locationName":"qualities"
|
2389
|
-
},
|
2390
|
-
"timeOrdering":{
|
2391
|
-
"shape":"TimeOrdering",
|
2392
|
-
"location":"querystring",
|
2393
|
-
"locationName":"timeOrdering"
|
2394
|
-
},
|
2395
|
-
"nextToken":{
|
2396
|
-
"shape":"NextToken",
|
2397
|
-
"location":"querystring",
|
2398
|
-
"locationName":"nextToken"
|
2399
|
-
},
|
2400
|
-
"maxResults":{
|
2401
|
-
"shape":"MaxResults",
|
2402
|
-
"location":"querystring",
|
2403
|
-
"locationName":"maxResults"
|
2404
|
-
}
|
2405
|
-
}
|
2406
|
-
},
|
2407
|
-
"GetAssetPropertyValueHistoryResponse":{
|
2408
|
-
"type":"structure",
|
2409
|
-
"required":["assetPropertyValueHistory"],
|
2410
|
-
"members":{
|
2411
|
-
"assetPropertyValueHistory":{"shape":"AssetPropertyValueHistory"},
|
2412
|
-
"nextToken":{"shape":"NextToken"}
|
2413
|
-
}
|
2414
|
-
},
|
2415
|
-
"GetAssetPropertyValueRequest":{
|
2416
|
-
"type":"structure",
|
2417
|
-
"members":{
|
2418
|
-
"assetId":{
|
2419
|
-
"shape":"ID",
|
2420
|
-
"location":"querystring",
|
2421
|
-
"locationName":"assetId"
|
2422
|
-
},
|
2423
|
-
"propertyId":{
|
2424
|
-
"shape":"ID",
|
2425
|
-
"location":"querystring",
|
2426
|
-
"locationName":"propertyId"
|
2427
|
-
},
|
2428
|
-
"propertyAlias":{
|
2429
|
-
"shape":"AssetPropertyAlias",
|
2430
|
-
"location":"querystring",
|
2431
|
-
"locationName":"propertyAlias"
|
2432
|
-
}
|
2433
|
-
}
|
2434
|
-
},
|
2435
|
-
"GetAssetPropertyValueResponse":{
|
2436
|
-
"type":"structure",
|
2437
|
-
"members":{
|
2438
|
-
"propertyValue":{"shape":"AssetPropertyValue"}
|
2439
|
-
}
|
2440
|
-
},
|
2441
|
-
"Greengrass":{
|
2442
|
-
"type":"structure",
|
2443
|
-
"required":["groupArn"],
|
2444
|
-
"members":{
|
2445
|
-
"groupArn":{"shape":"ARN"}
|
2446
|
-
}
|
2447
|
-
},
|
2448
|
-
"GroupIdentity":{
|
2449
|
-
"type":"structure",
|
2450
|
-
"required":["id"],
|
2451
|
-
"members":{
|
2452
|
-
"id":{"shape":"IdentityId"}
|
2453
|
-
}
|
2454
|
-
},
|
2455
|
-
"ID":{
|
2456
|
-
"type":"string",
|
2457
|
-
"max":36,
|
2458
|
-
"min":36,
|
2459
|
-
"pattern":"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
|
2460
|
-
},
|
2461
|
-
"IDs":{
|
2462
|
-
"type":"list",
|
2463
|
-
"member":{"shape":"ID"},
|
2464
|
-
"max":100,
|
2465
|
-
"min":1
|
2466
|
-
},
|
2467
|
-
"Identity":{
|
2468
|
-
"type":"structure",
|
2469
|
-
"members":{
|
2470
|
-
"user":{"shape":"UserIdentity"},
|
2471
|
-
"group":{"shape":"GroupIdentity"}
|
2472
|
-
}
|
2473
|
-
},
|
2474
|
-
"IdentityId":{
|
2475
|
-
"type":"string",
|
2476
|
-
"max":256,
|
2477
|
-
"min":1,
|
2478
|
-
"pattern":"\\S+"
|
2479
|
-
},
|
2480
|
-
"IdentityType":{
|
2481
|
-
"type":"string",
|
2482
|
-
"enum":[
|
2483
|
-
"USER",
|
2484
|
-
"GROUP"
|
2485
|
-
]
|
2486
|
-
},
|
2487
|
-
"Image":{
|
2488
|
-
"type":"structure",
|
2489
|
-
"members":{
|
2490
|
-
"locationUrl":{"shape":"Url"},
|
2491
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
2492
|
-
}
|
2493
|
-
},
|
2494
|
-
"ImageFile":{
|
2495
|
-
"type":"structure",
|
2496
|
-
"required":[
|
2497
|
-
"encodedString",
|
2498
|
-
"fileType"
|
2499
|
-
],
|
2500
|
-
"members":{
|
2501
|
-
"encodedString":{"shape":"ImageFileData"},
|
2502
|
-
"fileType":{"shape":"ImageFileType"}
|
2503
|
-
}
|
2504
|
-
},
|
2505
|
-
"ImageFileData":{"type":"blob"},
|
2506
|
-
"ImageFileType":{
|
2507
|
-
"type":"string",
|
2508
|
-
"enum":["PNG"]
|
2509
|
-
},
|
2510
|
-
"InternalFailureException":{
|
2511
|
-
"type":"structure",
|
2512
|
-
"required":["message"],
|
2513
|
-
"members":{
|
2514
|
-
"message":{"shape":"ErrorMessage"}
|
2515
|
-
},
|
2516
|
-
"error":{"httpStatusCode":500},
|
2517
|
-
"exception":true,
|
2518
|
-
"fault":true
|
2519
|
-
},
|
2520
|
-
"Interval":{
|
2521
|
-
"type":"string",
|
2522
|
-
"max":3,
|
2523
|
-
"min":2,
|
2524
|
-
"pattern":"1w|1d|1h|15m|5m|1m"
|
2525
|
-
},
|
2526
|
-
"InvalidRequestException":{
|
2527
|
-
"type":"structure",
|
2528
|
-
"required":["message"],
|
2529
|
-
"members":{
|
2530
|
-
"message":{"shape":"ErrorMessage"}
|
2531
|
-
},
|
2532
|
-
"error":{"httpStatusCode":400},
|
2533
|
-
"exception":true
|
2534
|
-
},
|
2535
|
-
"LimitExceededException":{
|
2536
|
-
"type":"structure",
|
2537
|
-
"required":["message"],
|
2538
|
-
"members":{
|
2539
|
-
"message":{"shape":"ErrorMessage"}
|
2540
|
-
},
|
2541
|
-
"error":{"httpStatusCode":410},
|
2542
|
-
"exception":true
|
2543
|
-
},
|
2544
|
-
"ListAccessPoliciesRequest":{
|
2545
|
-
"type":"structure",
|
2546
|
-
"members":{
|
2547
|
-
"identityType":{
|
2548
|
-
"shape":"IdentityType",
|
2549
|
-
"location":"querystring",
|
2550
|
-
"locationName":"identityType"
|
2551
|
-
},
|
2552
|
-
"identityId":{
|
2553
|
-
"shape":"IdentityId",
|
2554
|
-
"location":"querystring",
|
2555
|
-
"locationName":"identityId"
|
2556
|
-
},
|
2557
|
-
"resourceType":{
|
2558
|
-
"shape":"ResourceType",
|
2559
|
-
"location":"querystring",
|
2560
|
-
"locationName":"resourceType"
|
2561
|
-
},
|
2562
|
-
"resourceId":{
|
2563
|
-
"shape":"ID",
|
2564
|
-
"location":"querystring",
|
2565
|
-
"locationName":"resourceId"
|
2566
|
-
},
|
2567
|
-
"nextToken":{
|
2568
|
-
"shape":"NextToken",
|
2569
|
-
"location":"querystring",
|
2570
|
-
"locationName":"nextToken"
|
2571
|
-
},
|
2572
|
-
"maxResults":{
|
2573
|
-
"shape":"MaxResults",
|
2574
|
-
"location":"querystring",
|
2575
|
-
"locationName":"maxResults"
|
2576
|
-
}
|
2577
|
-
}
|
2578
|
-
},
|
2579
|
-
"ListAccessPoliciesResponse":{
|
2580
|
-
"type":"structure",
|
2581
|
-
"required":["accessPolicySummaries"],
|
2582
|
-
"members":{
|
2583
|
-
"accessPolicySummaries":{"shape":"AccessPolicySummaries"},
|
2584
|
-
"nextToken":{"shape":"NextToken"}
|
2585
|
-
}
|
2586
|
-
},
|
2587
|
-
"ListAssetModelsRequest":{
|
2588
|
-
"type":"structure",
|
2589
|
-
"members":{
|
2590
|
-
"nextToken":{
|
2591
|
-
"shape":"NextToken",
|
2592
|
-
"location":"querystring",
|
2593
|
-
"locationName":"nextToken"
|
2594
|
-
},
|
2595
|
-
"maxResults":{
|
2596
|
-
"shape":"MaxResults",
|
2597
|
-
"location":"querystring",
|
2598
|
-
"locationName":"maxResults"
|
2599
|
-
}
|
2600
|
-
}
|
2601
|
-
},
|
2602
|
-
"ListAssetModelsResponse":{
|
2603
|
-
"type":"structure",
|
2604
|
-
"required":["assetModelSummaries"],
|
2605
|
-
"members":{
|
2606
|
-
"assetModelSummaries":{"shape":"AssetModelSummaries"},
|
2607
|
-
"nextToken":{"shape":"NextToken"}
|
2608
|
-
}
|
2609
|
-
},
|
2610
|
-
"ListAssetsFilter":{
|
2611
|
-
"type":"string",
|
2612
|
-
"enum":[
|
2613
|
-
"ALL",
|
2614
|
-
"TOP_LEVEL"
|
2615
|
-
]
|
2616
|
-
},
|
2617
|
-
"ListAssetsRequest":{
|
2618
|
-
"type":"structure",
|
2619
|
-
"members":{
|
2620
|
-
"nextToken":{
|
2621
|
-
"shape":"NextToken",
|
2622
|
-
"location":"querystring",
|
2623
|
-
"locationName":"nextToken"
|
2624
|
-
},
|
2625
|
-
"maxResults":{
|
2626
|
-
"shape":"MaxResults",
|
2627
|
-
"location":"querystring",
|
2628
|
-
"locationName":"maxResults"
|
2629
|
-
},
|
2630
|
-
"assetModelId":{
|
2631
|
-
"shape":"ID",
|
2632
|
-
"location":"querystring",
|
2633
|
-
"locationName":"assetModelId"
|
2634
|
-
},
|
2635
|
-
"filter":{
|
2636
|
-
"shape":"ListAssetsFilter",
|
2637
|
-
"location":"querystring",
|
2638
|
-
"locationName":"filter"
|
2639
|
-
}
|
2640
|
-
}
|
2641
|
-
},
|
2642
|
-
"ListAssetsResponse":{
|
2643
|
-
"type":"structure",
|
2644
|
-
"required":["assetSummaries"],
|
2645
|
-
"members":{
|
2646
|
-
"assetSummaries":{"shape":"AssetSummaries"},
|
2647
|
-
"nextToken":{"shape":"NextToken"}
|
2648
|
-
}
|
2649
|
-
},
|
2650
|
-
"ListAssociatedAssetsRequest":{
|
2651
|
-
"type":"structure",
|
2652
|
-
"required":[
|
2653
|
-
"assetId",
|
2654
|
-
"hierarchyId"
|
2655
|
-
],
|
2656
|
-
"members":{
|
2657
|
-
"assetId":{
|
2658
|
-
"shape":"ID",
|
2659
|
-
"location":"uri",
|
2660
|
-
"locationName":"assetId"
|
2661
|
-
},
|
2662
|
-
"hierarchyId":{
|
2663
|
-
"shape":"ID",
|
2664
|
-
"location":"querystring",
|
2665
|
-
"locationName":"hierarchyId"
|
2666
|
-
},
|
2667
|
-
"nextToken":{
|
2668
|
-
"shape":"NextToken",
|
2669
|
-
"location":"querystring",
|
2670
|
-
"locationName":"nextToken"
|
2671
|
-
},
|
2672
|
-
"maxResults":{
|
2673
|
-
"shape":"MaxResults",
|
2674
|
-
"location":"querystring",
|
2675
|
-
"locationName":"maxResults"
|
2676
|
-
}
|
2677
|
-
}
|
2678
|
-
},
|
2679
|
-
"ListAssociatedAssetsResponse":{
|
2680
|
-
"type":"structure",
|
2681
|
-
"required":["assetSummaries"],
|
2682
|
-
"members":{
|
2683
|
-
"assetSummaries":{"shape":"AssociatedAssetsSummaries"},
|
2684
|
-
"nextToken":{"shape":"NextToken"}
|
2685
|
-
}
|
2686
|
-
},
|
2687
|
-
"ListDashboardsRequest":{
|
2688
|
-
"type":"structure",
|
2689
|
-
"required":["projectId"],
|
2690
|
-
"members":{
|
2691
|
-
"projectId":{
|
2692
|
-
"shape":"ID",
|
2693
|
-
"location":"querystring",
|
2694
|
-
"locationName":"projectId"
|
2695
|
-
},
|
2696
|
-
"nextToken":{
|
2697
|
-
"shape":"NextToken",
|
2698
|
-
"location":"querystring",
|
2699
|
-
"locationName":"nextToken"
|
2700
|
-
},
|
2701
|
-
"maxResults":{
|
2702
|
-
"shape":"MaxResults",
|
2703
|
-
"location":"querystring",
|
2704
|
-
"locationName":"maxResults"
|
2705
|
-
}
|
2706
|
-
}
|
2707
|
-
},
|
2708
|
-
"ListDashboardsResponse":{
|
2709
|
-
"type":"structure",
|
2710
|
-
"required":["dashboardSummaries"],
|
2711
|
-
"members":{
|
2712
|
-
"dashboardSummaries":{"shape":"DashboardSummaries"},
|
2713
|
-
"nextToken":{"shape":"NextToken"}
|
2714
|
-
}
|
2715
|
-
},
|
2716
|
-
"ListGatewaysRequest":{
|
2717
|
-
"type":"structure",
|
2718
|
-
"members":{
|
2719
|
-
"nextToken":{
|
2720
|
-
"shape":"NextToken",
|
2721
|
-
"location":"querystring",
|
2722
|
-
"locationName":"nextToken"
|
2723
|
-
},
|
2724
|
-
"maxResults":{
|
2725
|
-
"shape":"MaxResults",
|
2726
|
-
"location":"querystring",
|
2727
|
-
"locationName":"maxResults"
|
2728
|
-
}
|
2729
|
-
}
|
2730
|
-
},
|
2731
|
-
"ListGatewaysResponse":{
|
2732
|
-
"type":"structure",
|
2733
|
-
"required":["gatewaySummaries"],
|
2734
|
-
"members":{
|
2735
|
-
"gatewaySummaries":{"shape":"GatewaySummaries"},
|
2736
|
-
"nextToken":{"shape":"NextToken"}
|
2737
|
-
}
|
2738
|
-
},
|
2739
|
-
"ListPortalsRequest":{
|
2740
|
-
"type":"structure",
|
2741
|
-
"members":{
|
2742
|
-
"nextToken":{
|
2743
|
-
"shape":"NextToken",
|
2744
|
-
"location":"querystring",
|
2745
|
-
"locationName":"nextToken"
|
2746
|
-
},
|
2747
|
-
"maxResults":{
|
2748
|
-
"shape":"MaxResults",
|
2749
|
-
"location":"querystring",
|
2750
|
-
"locationName":"maxResults"
|
2751
|
-
}
|
2752
|
-
}
|
2753
|
-
},
|
2754
|
-
"ListPortalsResponse":{
|
2755
|
-
"type":"structure",
|
2756
|
-
"members":{
|
2757
|
-
"portalSummaries":{"shape":"PortalSummaries"},
|
2758
|
-
"nextToken":{"shape":"NextToken"}
|
2759
|
-
}
|
2760
|
-
},
|
2761
|
-
"ListProjectAssetsRequest":{
|
2762
|
-
"type":"structure",
|
2763
|
-
"required":["projectId"],
|
2764
|
-
"members":{
|
2765
|
-
"projectId":{
|
2766
|
-
"shape":"ID",
|
2767
|
-
"location":"uri",
|
2768
|
-
"locationName":"projectId"
|
2769
|
-
},
|
2770
|
-
"nextToken":{
|
2771
|
-
"shape":"NextToken",
|
2772
|
-
"location":"querystring",
|
2773
|
-
"locationName":"nextToken"
|
2774
|
-
},
|
2775
|
-
"maxResults":{
|
2776
|
-
"shape":"MaxResults",
|
2777
|
-
"location":"querystring",
|
2778
|
-
"locationName":"maxResults"
|
2779
|
-
}
|
2780
|
-
}
|
2781
|
-
},
|
2782
|
-
"ListProjectAssetsResponse":{
|
2783
|
-
"type":"structure",
|
2784
|
-
"required":["assetIds"],
|
2785
|
-
"members":{
|
2786
|
-
"assetIds":{"shape":"AssetIDs"},
|
2787
|
-
"nextToken":{"shape":"NextToken"}
|
2788
|
-
}
|
2789
|
-
},
|
2790
|
-
"ListProjectsRequest":{
|
2791
|
-
"type":"structure",
|
2792
|
-
"required":["portalId"],
|
2793
|
-
"members":{
|
2794
|
-
"portalId":{
|
2795
|
-
"shape":"ID",
|
2796
|
-
"location":"querystring",
|
2797
|
-
"locationName":"portalId"
|
2798
|
-
},
|
2799
|
-
"nextToken":{
|
2800
|
-
"shape":"NextToken",
|
2801
|
-
"location":"querystring",
|
2802
|
-
"locationName":"nextToken"
|
2803
|
-
},
|
2804
|
-
"maxResults":{
|
2805
|
-
"shape":"MaxResults",
|
2806
|
-
"location":"querystring",
|
2807
|
-
"locationName":"maxResults"
|
2808
|
-
}
|
2809
|
-
}
|
2810
|
-
},
|
2811
|
-
"ListProjectsResponse":{
|
2812
|
-
"type":"structure",
|
2813
|
-
"required":["projectSummaries"],
|
2814
|
-
"members":{
|
2815
|
-
"projectSummaries":{"shape":"ProjectSummaries"},
|
2816
|
-
"nextToken":{"shape":"NextToken"}
|
2817
|
-
}
|
2818
|
-
},
|
2819
|
-
"ListTagsForResourceRequest":{
|
2820
|
-
"type":"structure",
|
2821
|
-
"required":["resourceArn"],
|
2822
|
-
"members":{
|
2823
|
-
"resourceArn":{
|
2824
|
-
"shape":"AmazonResourceName",
|
2825
|
-
"location":"querystring",
|
2826
|
-
"locationName":"resourceArn"
|
2827
|
-
}
|
2828
|
-
}
|
2829
|
-
},
|
2830
|
-
"ListTagsForResourceResponse":{
|
2831
|
-
"type":"structure",
|
2832
|
-
"members":{
|
2833
|
-
"tags":{"shape":"TagMap"}
|
2834
|
-
}
|
2835
|
-
},
|
2836
|
-
"LoggingLevel":{
|
2837
|
-
"type":"string",
|
2838
|
-
"enum":[
|
2839
|
-
"ERROR",
|
2840
|
-
"INFO",
|
2841
|
-
"OFF"
|
2842
|
-
]
|
2843
|
-
},
|
2844
|
-
"LoggingOptions":{
|
2845
|
-
"type":"structure",
|
2846
|
-
"required":["level"],
|
2847
|
-
"members":{
|
2848
|
-
"level":{"shape":"LoggingLevel"}
|
2849
|
-
}
|
2850
|
-
},
|
2851
|
-
"Macro":{
|
2852
|
-
"type":"string",
|
2853
|
-
"max":256,
|
2854
|
-
"min":1,
|
2855
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
2856
|
-
},
|
2857
|
-
"MaxResults":{
|
2858
|
-
"type":"integer",
|
2859
|
-
"max":250,
|
2860
|
-
"min":1
|
2861
|
-
},
|
2862
|
-
"Measurement":{
|
2863
|
-
"type":"structure",
|
2864
|
-
"members":{
|
2865
|
-
}
|
2866
|
-
},
|
2867
|
-
"Metric":{
|
2868
|
-
"type":"structure",
|
2869
|
-
"required":[
|
2870
|
-
"expression",
|
2871
|
-
"variables",
|
2872
|
-
"window"
|
2873
|
-
],
|
2874
|
-
"members":{
|
2875
|
-
"expression":{"shape":"Expression"},
|
2876
|
-
"variables":{"shape":"ExpressionVariables"},
|
2877
|
-
"window":{"shape":"MetricWindow"}
|
2878
|
-
}
|
2879
|
-
},
|
2880
|
-
"MetricWindow":{
|
2881
|
-
"type":"structure",
|
2882
|
-
"members":{
|
2883
|
-
"tumbling":{"shape":"TumblingWindow"}
|
2884
|
-
}
|
2885
|
-
},
|
2886
|
-
"MonitorErrorCode":{
|
2887
|
-
"type":"string",
|
2888
|
-
"enum":["INTERNAL_FAILURE"]
|
2889
|
-
},
|
2890
|
-
"MonitorErrorDetails":{
|
2891
|
-
"type":"structure",
|
2892
|
-
"members":{
|
2893
|
-
"code":{"shape":"MonitorErrorCode"},
|
2894
|
-
"message":{"shape":"MonitorErrorMessage"}
|
2895
|
-
}
|
2896
|
-
},
|
2897
|
-
"MonitorErrorMessage":{"type":"string"},
|
2898
|
-
"Name":{
|
2899
|
-
"type":"string",
|
2900
|
-
"max":256,
|
2901
|
-
"min":1,
|
2902
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
2903
|
-
},
|
2904
|
-
"NextToken":{
|
2905
|
-
"type":"string",
|
2906
|
-
"max":2048,
|
2907
|
-
"min":1,
|
2908
|
-
"pattern":"[A-Za-z0-9+/=]+"
|
2909
|
-
},
|
2910
|
-
"OffsetInNanos":{
|
2911
|
-
"type":"integer",
|
2912
|
-
"max":999999999,
|
2913
|
-
"min":0
|
2914
|
-
},
|
2915
|
-
"Permission":{
|
2916
|
-
"type":"string",
|
2917
|
-
"enum":[
|
2918
|
-
"ADMINISTRATOR",
|
2919
|
-
"VIEWER"
|
2920
|
-
]
|
2921
|
-
},
|
2922
|
-
"PortalClientId":{
|
2923
|
-
"type":"string",
|
2924
|
-
"max":256,
|
2925
|
-
"min":1,
|
2926
|
-
"pattern":"^[!-~]*"
|
2927
|
-
},
|
2928
|
-
"PortalResource":{
|
2929
|
-
"type":"structure",
|
2930
|
-
"required":["id"],
|
2931
|
-
"members":{
|
2932
|
-
"id":{"shape":"ID"}
|
2933
|
-
}
|
2934
|
-
},
|
2935
|
-
"PortalState":{
|
2936
|
-
"type":"string",
|
2937
|
-
"enum":[
|
2938
|
-
"CREATING",
|
2939
|
-
"UPDATING",
|
2940
|
-
"DELETING",
|
2941
|
-
"ACTIVE",
|
2942
|
-
"FAILED"
|
2943
|
-
]
|
2944
|
-
},
|
2945
|
-
"PortalStatus":{
|
2946
|
-
"type":"structure",
|
2947
|
-
"required":["state"],
|
2948
|
-
"members":{
|
2949
|
-
"state":{"shape":"PortalState"},
|
2950
|
-
"error":{"shape":"MonitorErrorDetails"}
|
2951
|
-
}
|
2952
|
-
},
|
2953
|
-
"PortalSummaries":{
|
2954
|
-
"type":"list",
|
2955
|
-
"member":{"shape":"PortalSummary"}
|
2956
|
-
},
|
2957
|
-
"PortalSummary":{
|
2958
|
-
"type":"structure",
|
2959
|
-
"required":[
|
2960
|
-
"id",
|
2961
|
-
"name",
|
2962
|
-
"startUrl"
|
2963
|
-
],
|
2964
|
-
"members":{
|
2965
|
-
"id":{"shape":"ID"},
|
2966
|
-
"name":{"shape":"Name"},
|
2967
|
-
"description":{"shape":"Description"},
|
2968
|
-
"startUrl":{"shape":"Url"},
|
2969
|
-
"creationDate":{"shape":"Timestamp"},
|
2970
|
-
"lastUpdateDate":{"shape":"Timestamp"},
|
2971
|
-
"roleArn":{"shape":"ARN"}
|
2972
|
-
}
|
2973
|
-
},
|
2974
|
-
"ProjectResource":{
|
2975
|
-
"type":"structure",
|
2976
|
-
"required":["id"],
|
2977
|
-
"members":{
|
2978
|
-
"id":{"shape":"ID"}
|
2979
|
-
}
|
2980
|
-
},
|
2981
|
-
"ProjectSummaries":{
|
2982
|
-
"type":"list",
|
2983
|
-
"member":{"shape":"ProjectSummary"}
|
2984
|
-
},
|
2985
|
-
"ProjectSummary":{
|
2986
|
-
"type":"structure",
|
2987
|
-
"required":[
|
2988
|
-
"id",
|
2989
|
-
"name"
|
2990
|
-
],
|
2991
|
-
"members":{
|
2992
|
-
"id":{"shape":"ID"},
|
2993
|
-
"name":{"shape":"Name"},
|
2994
|
-
"description":{"shape":"Description"},
|
2995
|
-
"creationDate":{"shape":"Timestamp"},
|
2996
|
-
"lastUpdateDate":{"shape":"Timestamp"}
|
2997
|
-
}
|
2998
|
-
},
|
2999
|
-
"Property":{
|
3000
|
-
"type":"structure",
|
3001
|
-
"required":[
|
3002
|
-
"id",
|
3003
|
-
"name",
|
3004
|
-
"dataType"
|
3005
|
-
],
|
3006
|
-
"members":{
|
3007
|
-
"id":{"shape":"ID"},
|
3008
|
-
"name":{"shape":"Name"},
|
3009
|
-
"alias":{"shape":"PropertyAlias"},
|
3010
|
-
"notification":{"shape":"PropertyNotification"},
|
3011
|
-
"dataType":{"shape":"PropertyDataType"},
|
3012
|
-
"unit":{"shape":"PropertyUnit"},
|
3013
|
-
"type":{"shape":"PropertyType"}
|
3014
|
-
}
|
3015
|
-
},
|
3016
|
-
"PropertyAlias":{
|
3017
|
-
"type":"string",
|
3018
|
-
"max":2048,
|
3019
|
-
"min":1,
|
3020
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
3021
|
-
},
|
3022
|
-
"PropertyDataType":{
|
3023
|
-
"type":"string",
|
3024
|
-
"enum":[
|
3025
|
-
"STRING",
|
3026
|
-
"INTEGER",
|
3027
|
-
"DOUBLE",
|
3028
|
-
"BOOLEAN"
|
3029
|
-
]
|
3030
|
-
},
|
3031
|
-
"PropertyNotification":{
|
3032
|
-
"type":"structure",
|
3033
|
-
"required":[
|
3034
|
-
"topic",
|
3035
|
-
"state"
|
3036
|
-
],
|
3037
|
-
"members":{
|
3038
|
-
"topic":{"shape":"PropertyNotificationTopic"},
|
3039
|
-
"state":{"shape":"PropertyNotificationState"}
|
3040
|
-
}
|
3041
|
-
},
|
3042
|
-
"PropertyNotificationState":{
|
3043
|
-
"type":"string",
|
3044
|
-
"enum":[
|
3045
|
-
"ENABLED",
|
3046
|
-
"DISABLED"
|
3047
|
-
]
|
3048
|
-
},
|
3049
|
-
"PropertyNotificationTopic":{"type":"string"},
|
3050
|
-
"PropertyType":{
|
3051
|
-
"type":"structure",
|
3052
|
-
"members":{
|
3053
|
-
"attribute":{"shape":"Attribute"},
|
3054
|
-
"measurement":{"shape":"Measurement"},
|
3055
|
-
"transform":{"shape":"Transform"},
|
3056
|
-
"metric":{"shape":"Metric"}
|
3057
|
-
}
|
3058
|
-
},
|
3059
|
-
"PropertyUnit":{
|
3060
|
-
"type":"string",
|
3061
|
-
"max":256,
|
3062
|
-
"min":1,
|
3063
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
3064
|
-
},
|
3065
|
-
"PropertyValueBooleanValue":{"type":"boolean"},
|
3066
|
-
"PropertyValueDoubleValue":{"type":"double"},
|
3067
|
-
"PropertyValueIntegerValue":{"type":"integer"},
|
3068
|
-
"PropertyValueStringValue":{
|
3069
|
-
"type":"string",
|
3070
|
-
"max":1024,
|
3071
|
-
"min":1,
|
3072
|
-
"pattern":"[^\\u0000-\\u001F\\u007F]+"
|
3073
|
-
},
|
3074
|
-
"PutAssetPropertyValueEntries":{
|
3075
|
-
"type":"list",
|
3076
|
-
"member":{"shape":"PutAssetPropertyValueEntry"}
|
3077
|
-
},
|
3078
|
-
"PutAssetPropertyValueEntry":{
|
3079
|
-
"type":"structure",
|
3080
|
-
"required":[
|
3081
|
-
"entryId",
|
3082
|
-
"propertyValues"
|
3083
|
-
],
|
3084
|
-
"members":{
|
3085
|
-
"entryId":{"shape":"EntryId"},
|
3086
|
-
"assetId":{"shape":"ID"},
|
3087
|
-
"propertyId":{"shape":"ID"},
|
3088
|
-
"propertyAlias":{"shape":"AssetPropertyAlias"},
|
3089
|
-
"propertyValues":{"shape":"AssetPropertyValues"}
|
3090
|
-
}
|
3091
|
-
},
|
3092
|
-
"PutLoggingOptionsRequest":{
|
3093
|
-
"type":"structure",
|
3094
|
-
"required":["loggingOptions"],
|
3095
|
-
"members":{
|
3096
|
-
"loggingOptions":{"shape":"LoggingOptions"}
|
3097
|
-
}
|
3098
|
-
},
|
3099
|
-
"PutLoggingOptionsResponse":{
|
3100
|
-
"type":"structure",
|
3101
|
-
"members":{
|
3102
|
-
}
|
3103
|
-
},
|
3104
|
-
"Qualities":{
|
3105
|
-
"type":"list",
|
3106
|
-
"member":{"shape":"Quality"},
|
3107
|
-
"max":1,
|
3108
|
-
"min":1
|
3109
|
-
},
|
3110
|
-
"Quality":{
|
3111
|
-
"type":"string",
|
3112
|
-
"enum":[
|
3113
|
-
"GOOD",
|
3114
|
-
"BAD",
|
3115
|
-
"UNCERTAIN"
|
3116
|
-
]
|
3117
|
-
},
|
3118
|
-
"Resolution":{
|
3119
|
-
"type":"string",
|
3120
|
-
"max":2,
|
3121
|
-
"min":2,
|
3122
|
-
"pattern":"1m|1h|1d"
|
3123
|
-
},
|
3124
|
-
"Resource":{
|
3125
|
-
"type":"structure",
|
3126
|
-
"members":{
|
3127
|
-
"portal":{"shape":"PortalResource"},
|
3128
|
-
"project":{"shape":"ProjectResource"}
|
3129
|
-
}
|
3130
|
-
},
|
3131
|
-
"ResourceAlreadyExistsException":{
|
3132
|
-
"type":"structure",
|
3133
|
-
"required":[
|
3134
|
-
"message",
|
3135
|
-
"resourceId",
|
3136
|
-
"resourceArn"
|
3137
|
-
],
|
3138
|
-
"members":{
|
3139
|
-
"message":{"shape":"ErrorMessage"},
|
3140
|
-
"resourceId":{"shape":"ResourceId"},
|
3141
|
-
"resourceArn":{"shape":"ResourceArn"}
|
3142
|
-
},
|
3143
|
-
"error":{"httpStatusCode":409},
|
3144
|
-
"exception":true
|
3145
|
-
},
|
3146
|
-
"ResourceArn":{"type":"string"},
|
3147
|
-
"ResourceId":{"type":"string"},
|
3148
|
-
"ResourceNotFoundException":{
|
3149
|
-
"type":"structure",
|
3150
|
-
"required":["message"],
|
3151
|
-
"members":{
|
3152
|
-
"message":{"shape":"ErrorMessage"}
|
3153
|
-
},
|
3154
|
-
"error":{"httpStatusCode":404},
|
3155
|
-
"exception":true
|
3156
|
-
},
|
3157
|
-
"ResourceType":{
|
3158
|
-
"type":"string",
|
3159
|
-
"enum":[
|
3160
|
-
"PORTAL",
|
3161
|
-
"PROJECT"
|
3162
|
-
]
|
3163
|
-
},
|
3164
|
-
"SSOApplicationId":{
|
3165
|
-
"type":"string",
|
3166
|
-
"max":64,
|
3167
|
-
"min":1,
|
3168
|
-
"pattern":"^[!-~]*"
|
3169
|
-
},
|
3170
|
-
"ServiceUnavailableException":{
|
3171
|
-
"type":"structure",
|
3172
|
-
"required":["message"],
|
3173
|
-
"members":{
|
3174
|
-
"message":{"shape":"ErrorMessage"}
|
3175
|
-
},
|
3176
|
-
"error":{"httpStatusCode":503},
|
3177
|
-
"exception":true,
|
3178
|
-
"fault":true
|
3179
|
-
},
|
3180
|
-
"TagKey":{
|
3181
|
-
"type":"string",
|
3182
|
-
"max":128,
|
3183
|
-
"min":1
|
3184
|
-
},
|
3185
|
-
"TagKeyList":{
|
3186
|
-
"type":"list",
|
3187
|
-
"member":{"shape":"TagKey"},
|
3188
|
-
"max":200,
|
3189
|
-
"min":0
|
3190
|
-
},
|
3191
|
-
"TagMap":{
|
3192
|
-
"type":"map",
|
3193
|
-
"key":{"shape":"TagKey"},
|
3194
|
-
"value":{"shape":"TagValue"},
|
3195
|
-
"max":50,
|
3196
|
-
"min":1
|
3197
|
-
},
|
3198
|
-
"TagResourceRequest":{
|
3199
|
-
"type":"structure",
|
3200
|
-
"required":[
|
3201
|
-
"resourceArn",
|
3202
|
-
"tags"
|
3203
|
-
],
|
3204
|
-
"members":{
|
3205
|
-
"resourceArn":{
|
3206
|
-
"shape":"AmazonResourceName",
|
3207
|
-
"location":"querystring",
|
3208
|
-
"locationName":"resourceArn"
|
3209
|
-
},
|
3210
|
-
"tags":{"shape":"TagMap"}
|
3211
|
-
}
|
3212
|
-
},
|
3213
|
-
"TagResourceResponse":{
|
3214
|
-
"type":"structure",
|
3215
|
-
"members":{
|
3216
|
-
}
|
3217
|
-
},
|
3218
|
-
"TagValue":{
|
3219
|
-
"type":"string",
|
3220
|
-
"max":256,
|
3221
|
-
"min":0
|
3222
|
-
},
|
3223
|
-
"ThrottlingException":{
|
3224
|
-
"type":"structure",
|
3225
|
-
"required":["message"],
|
3226
|
-
"members":{
|
3227
|
-
"message":{"shape":"ErrorMessage"}
|
3228
|
-
},
|
3229
|
-
"error":{"httpStatusCode":429},
|
3230
|
-
"exception":true
|
3231
|
-
},
|
3232
|
-
"TimeInNanos":{
|
3233
|
-
"type":"structure",
|
3234
|
-
"required":["timeInSeconds"],
|
3235
|
-
"members":{
|
3236
|
-
"timeInSeconds":{"shape":"TimeInSeconds"},
|
3237
|
-
"offsetInNanos":{"shape":"OffsetInNanos"}
|
3238
|
-
}
|
3239
|
-
},
|
3240
|
-
"TimeInSeconds":{
|
3241
|
-
"type":"long",
|
3242
|
-
"max":31556889864403199,
|
3243
|
-
"min":1
|
3244
|
-
},
|
3245
|
-
"TimeOrdering":{
|
3246
|
-
"type":"string",
|
3247
|
-
"enum":[
|
3248
|
-
"ASCENDING",
|
3249
|
-
"DESCENDING"
|
3250
|
-
]
|
3251
|
-
},
|
3252
|
-
"Timestamp":{"type":"timestamp"},
|
3253
|
-
"Timestamps":{
|
3254
|
-
"type":"list",
|
3255
|
-
"member":{"shape":"TimeInNanos"}
|
3256
|
-
},
|
3257
|
-
"TooManyTagsException":{
|
3258
|
-
"type":"structure",
|
3259
|
-
"members":{
|
3260
|
-
"message":{"shape":"ExceptionMessage"},
|
3261
|
-
"resourceName":{"shape":"AmazonResourceName"}
|
3262
|
-
},
|
3263
|
-
"error":{"httpStatusCode":400},
|
3264
|
-
"exception":true
|
3265
|
-
},
|
3266
|
-
"Transform":{
|
3267
|
-
"type":"structure",
|
3268
|
-
"required":[
|
3269
|
-
"expression",
|
3270
|
-
"variables"
|
3271
|
-
],
|
3272
|
-
"members":{
|
3273
|
-
"expression":{"shape":"Expression"},
|
3274
|
-
"variables":{"shape":"ExpressionVariables"}
|
3275
|
-
}
|
3276
|
-
},
|
3277
|
-
"TumblingWindow":{
|
3278
|
-
"type":"structure",
|
3279
|
-
"required":["interval"],
|
3280
|
-
"members":{
|
3281
|
-
"interval":{"shape":"Interval"}
|
3282
|
-
}
|
3283
|
-
},
|
3284
|
-
"UntagResourceRequest":{
|
3285
|
-
"type":"structure",
|
3286
|
-
"required":[
|
3287
|
-
"resourceArn",
|
3288
|
-
"tagKeys"
|
3289
|
-
],
|
3290
|
-
"members":{
|
3291
|
-
"resourceArn":{
|
3292
|
-
"shape":"AmazonResourceName",
|
3293
|
-
"location":"querystring",
|
3294
|
-
"locationName":"resourceArn"
|
3295
|
-
},
|
3296
|
-
"tagKeys":{
|
3297
|
-
"shape":"TagKeyList",
|
3298
|
-
"location":"querystring",
|
3299
|
-
"locationName":"tagKeys"
|
3300
|
-
}
|
3301
|
-
}
|
3302
|
-
},
|
3303
|
-
"UntagResourceResponse":{
|
3304
|
-
"type":"structure",
|
3305
|
-
"members":{
|
3306
|
-
}
|
3307
|
-
},
|
3308
|
-
"UpdateAccessPolicyRequest":{
|
3309
|
-
"type":"structure",
|
3310
|
-
"required":[
|
3311
|
-
"accessPolicyId",
|
3312
|
-
"accessPolicyIdentity",
|
3313
|
-
"accessPolicyResource",
|
3314
|
-
"accessPolicyPermission"
|
3315
|
-
],
|
3316
|
-
"members":{
|
3317
|
-
"accessPolicyId":{
|
3318
|
-
"shape":"ID",
|
3319
|
-
"location":"uri",
|
3320
|
-
"locationName":"accessPolicyId"
|
3321
|
-
},
|
3322
|
-
"accessPolicyIdentity":{"shape":"Identity"},
|
3323
|
-
"accessPolicyResource":{"shape":"Resource"},
|
3324
|
-
"accessPolicyPermission":{"shape":"Permission"},
|
3325
|
-
"clientToken":{
|
3326
|
-
"shape":"ClientToken",
|
3327
|
-
"idempotencyToken":true
|
3328
|
-
}
|
3329
|
-
}
|
3330
|
-
},
|
3331
|
-
"UpdateAccessPolicyResponse":{
|
3332
|
-
"type":"structure",
|
3333
|
-
"members":{
|
3334
|
-
}
|
3335
|
-
},
|
3336
|
-
"UpdateAssetModelRequest":{
|
3337
|
-
"type":"structure",
|
3338
|
-
"required":[
|
3339
|
-
"assetModelId",
|
3340
|
-
"assetModelName"
|
3341
|
-
],
|
3342
|
-
"members":{
|
3343
|
-
"assetModelId":{
|
3344
|
-
"shape":"ID",
|
3345
|
-
"location":"uri",
|
3346
|
-
"locationName":"assetModelId"
|
3347
|
-
},
|
3348
|
-
"assetModelName":{"shape":"Name"},
|
3349
|
-
"assetModelDescription":{"shape":"Description"},
|
3350
|
-
"assetModelProperties":{"shape":"AssetModelProperties"},
|
3351
|
-
"assetModelHierarchies":{"shape":"AssetModelHierarchies"},
|
3352
|
-
"clientToken":{
|
3353
|
-
"shape":"ClientToken",
|
3354
|
-
"idempotencyToken":true
|
3355
|
-
}
|
3356
|
-
}
|
3357
|
-
},
|
3358
|
-
"UpdateAssetModelResponse":{
|
3359
|
-
"type":"structure",
|
3360
|
-
"required":["assetModelStatus"],
|
3361
|
-
"members":{
|
3362
|
-
"assetModelStatus":{"shape":"AssetModelStatus"}
|
3363
|
-
}
|
3364
|
-
},
|
3365
|
-
"UpdateAssetPropertyRequest":{
|
3366
|
-
"type":"structure",
|
3367
|
-
"required":[
|
3368
|
-
"assetId",
|
3369
|
-
"propertyId"
|
3370
|
-
],
|
3371
|
-
"members":{
|
3372
|
-
"assetId":{
|
3373
|
-
"shape":"ID",
|
3374
|
-
"location":"uri",
|
3375
|
-
"locationName":"assetId"
|
3376
|
-
},
|
3377
|
-
"propertyId":{
|
3378
|
-
"shape":"ID",
|
3379
|
-
"location":"uri",
|
3380
|
-
"locationName":"propertyId"
|
3381
|
-
},
|
3382
|
-
"propertyAlias":{"shape":"PropertyAlias"},
|
3383
|
-
"propertyNotificationState":{"shape":"PropertyNotificationState"},
|
3384
|
-
"clientToken":{
|
3385
|
-
"shape":"ClientToken",
|
3386
|
-
"idempotencyToken":true
|
3387
|
-
}
|
3388
|
-
}
|
3389
|
-
},
|
3390
|
-
"UpdateAssetRequest":{
|
3391
|
-
"type":"structure",
|
3392
|
-
"required":[
|
3393
|
-
"assetId",
|
3394
|
-
"assetName"
|
3395
|
-
],
|
3396
|
-
"members":{
|
3397
|
-
"assetId":{
|
3398
|
-
"shape":"ID",
|
3399
|
-
"location":"uri",
|
3400
|
-
"locationName":"assetId"
|
3401
|
-
},
|
3402
|
-
"assetName":{"shape":"Name"},
|
3403
|
-
"clientToken":{
|
3404
|
-
"shape":"ClientToken",
|
3405
|
-
"idempotencyToken":true
|
3406
|
-
}
|
3407
|
-
}
|
3408
|
-
},
|
3409
|
-
"UpdateAssetResponse":{
|
3410
|
-
"type":"structure",
|
3411
|
-
"required":["assetStatus"],
|
3412
|
-
"members":{
|
3413
|
-
"assetStatus":{"shape":"AssetStatus"}
|
3414
|
-
}
|
3415
|
-
},
|
3416
|
-
"UpdateDashboardRequest":{
|
3417
|
-
"type":"structure",
|
3418
|
-
"required":[
|
3419
|
-
"dashboardId",
|
3420
|
-
"dashboardName",
|
3421
|
-
"dashboardDefinition"
|
3422
|
-
],
|
3423
|
-
"members":{
|
3424
|
-
"dashboardId":{
|
3425
|
-
"shape":"ID",
|
3426
|
-
"location":"uri",
|
3427
|
-
"locationName":"dashboardId"
|
3428
|
-
},
|
3429
|
-
"dashboardName":{"shape":"Name"},
|
3430
|
-
"dashboardDescription":{"shape":"Description"},
|
3431
|
-
"dashboardDefinition":{"shape":"DashboardDefinition"},
|
3432
|
-
"clientToken":{
|
3433
|
-
"shape":"ClientToken",
|
3434
|
-
"idempotencyToken":true
|
3435
|
-
}
|
3436
|
-
}
|
3437
|
-
},
|
3438
|
-
"UpdateDashboardResponse":{
|
3439
|
-
"type":"structure",
|
3440
|
-
"members":{
|
3441
|
-
}
|
3442
|
-
},
|
3443
|
-
"UpdateGatewayCapabilityConfigurationRequest":{
|
3444
|
-
"type":"structure",
|
3445
|
-
"required":[
|
3446
|
-
"gatewayId",
|
3447
|
-
"capabilityNamespace",
|
3448
|
-
"capabilityConfiguration"
|
3449
|
-
],
|
3450
|
-
"members":{
|
3451
|
-
"gatewayId":{
|
3452
|
-
"shape":"ID",
|
3453
|
-
"location":"uri",
|
3454
|
-
"locationName":"gatewayId"
|
3455
|
-
},
|
3456
|
-
"capabilityNamespace":{"shape":"CapabilityNamespace"},
|
3457
|
-
"capabilityConfiguration":{"shape":"CapabilityConfiguration"}
|
3458
|
-
}
|
3459
|
-
},
|
3460
|
-
"UpdateGatewayCapabilityConfigurationResponse":{
|
3461
|
-
"type":"structure",
|
3462
|
-
"required":[
|
3463
|
-
"capabilityNamespace",
|
3464
|
-
"capabilitySyncStatus"
|
3465
|
-
],
|
3466
|
-
"members":{
|
3467
|
-
"capabilityNamespace":{"shape":"CapabilityNamespace"},
|
3468
|
-
"capabilitySyncStatus":{"shape":"CapabilitySyncStatus"}
|
3469
|
-
}
|
3470
|
-
},
|
3471
|
-
"UpdateGatewayRequest":{
|
3472
|
-
"type":"structure",
|
3473
|
-
"required":[
|
3474
|
-
"gatewayId",
|
3475
|
-
"gatewayName"
|
3476
|
-
],
|
3477
|
-
"members":{
|
3478
|
-
"gatewayId":{
|
3479
|
-
"shape":"ID",
|
3480
|
-
"location":"uri",
|
3481
|
-
"locationName":"gatewayId"
|
3482
|
-
},
|
3483
|
-
"gatewayName":{"shape":"Name"}
|
3484
|
-
}
|
3485
|
-
},
|
3486
|
-
"UpdatePortalRequest":{
|
3487
|
-
"type":"structure",
|
3488
|
-
"required":[
|
3489
|
-
"portalId",
|
3490
|
-
"portalName",
|
3491
|
-
"portalContactEmail",
|
3492
|
-
"roleArn"
|
3493
|
-
],
|
3494
|
-
"members":{
|
3495
|
-
"portalId":{
|
3496
|
-
"shape":"ID",
|
3497
|
-
"location":"uri",
|
3498
|
-
"locationName":"portalId"
|
3499
|
-
},
|
3500
|
-
"portalName":{"shape":"Name"},
|
3501
|
-
"portalDescription":{"shape":"Description"},
|
3502
|
-
"portalContactEmail":{"shape":"Email"},
|
3503
|
-
"portalLogoImageFile":{"shape":"ImageFile"},
|
3504
|
-
"roleArn":{"shape":"ARN"},
|
3505
|
-
"clientToken":{
|
3506
|
-
"shape":"ClientToken",
|
3507
|
-
"idempotencyToken":true
|
3508
|
-
}
|
3509
|
-
}
|
3510
|
-
},
|
3511
|
-
"UpdatePortalResponse":{
|
3512
|
-
"type":"structure",
|
3513
|
-
"required":["portalStatus"],
|
3514
|
-
"members":{
|
3515
|
-
"portalStatus":{"shape":"PortalStatus"}
|
3516
|
-
}
|
3517
|
-
},
|
3518
|
-
"UpdateProjectRequest":{
|
3519
|
-
"type":"structure",
|
3520
|
-
"required":[
|
3521
|
-
"projectId",
|
3522
|
-
"projectName"
|
3523
|
-
],
|
3524
|
-
"members":{
|
3525
|
-
"projectId":{
|
3526
|
-
"shape":"ID",
|
3527
|
-
"location":"uri",
|
3528
|
-
"locationName":"projectId"
|
3529
|
-
},
|
3530
|
-
"projectName":{"shape":"Name"},
|
3531
|
-
"projectDescription":{"shape":"Description"},
|
3532
|
-
"clientToken":{
|
3533
|
-
"shape":"ClientToken",
|
3534
|
-
"idempotencyToken":true
|
3535
|
-
}
|
3536
|
-
}
|
3537
|
-
},
|
3538
|
-
"UpdateProjectResponse":{
|
3539
|
-
"type":"structure",
|
3540
|
-
"members":{
|
3541
|
-
}
|
3542
|
-
},
|
3543
|
-
"Url":{
|
3544
|
-
"type":"string",
|
3545
|
-
"max":256,
|
3546
|
-
"min":1,
|
3547
|
-
"pattern":"^(http|https)\\://\\S+"
|
3548
|
-
},
|
3549
|
-
"UserIdentity":{
|
3550
|
-
"type":"structure",
|
3551
|
-
"required":["id"],
|
3552
|
-
"members":{
|
3553
|
-
"id":{"shape":"IdentityId"}
|
3554
|
-
}
|
3555
|
-
},
|
3556
|
-
"VariableName":{
|
3557
|
-
"type":"string",
|
3558
|
-
"max":64,
|
3559
|
-
"min":1,
|
3560
|
-
"pattern":"^[a-z][a-z0-9_]*$"
|
3561
|
-
},
|
3562
|
-
"VariableValue":{
|
3563
|
-
"type":"structure",
|
3564
|
-
"required":["propertyId"],
|
3565
|
-
"members":{
|
3566
|
-
"propertyId":{"shape":"Macro"},
|
3567
|
-
"hierarchyId":{"shape":"Macro"}
|
3568
|
-
}
|
3569
|
-
},
|
3570
|
-
"Variant":{
|
3571
|
-
"type":"structure",
|
3572
|
-
"members":{
|
3573
|
-
"stringValue":{"shape":"PropertyValueStringValue"},
|
3574
|
-
"integerValue":{"shape":"PropertyValueIntegerValue"},
|
3575
|
-
"doubleValue":{"shape":"PropertyValueDoubleValue"},
|
3576
|
-
"booleanValue":{"shape":"PropertyValueBooleanValue"}
|
3577
|
-
}
|
3578
|
-
}
|
3579
|
-
}
|
3580
|
-
}
|