aws-sdk-core 2.0.0.rc1 → 2.0.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.travis.yml +1 -0
 - data/README.md +6 -3
 - data/Rakefile +2 -0
 - data/apis/AutoScaling-2011-01-01.json +1 -0
 - data/apis/CloudFormation-2010-05-15.json +75 -0
 - data/apis/CloudFront-2012-05-05.json +1 -0
 - data/apis/CloudFront-2013-05-12.json +1 -0
 - data/apis/CloudFront-2013-08-26.json +1 -0
 - data/apis/CloudSearch-2011-02-01.json +1 -0
 - data/apis/CloudWatch-2010-08-01.json +1 -0
 - data/apis/DataPipeline-2012-10-29.json +1 -0
 - data/apis/DirectConnect-2012-10-25.json +1 -0
 - data/apis/DynamoDB-2011-12-05.json +1 -0
 - data/apis/DynamoDB-2012-08-10.json +1 -0
 - data/apis/EC2-2013-06-15.json +1 -0
 - data/apis/EC2-2013-10-01.json +1 -0
 - data/apis/EMR-2009-03-31.json +1 -0
 - data/apis/ElastiCache-2012-11-15.json +1 -0
 - data/apis/ElastiCache-2013-06-15.json +1 -0
 - data/apis/ElasticBeanstalk-2010-12-01.json +1 -0
 - data/apis/ElasticLoadBalancing-2012-06-01.json +73 -0
 - data/apis/ElasticTranscoder-2012-09-25.json +231 -0
 - data/apis/Glacier-2012-06-01.json +2 -0
 - data/apis/IAM-2010-05-08.json +1 -0
 - data/apis/ImportExport-2010-06-01.json +1 -0
 - data/apis/OpsWorks-2013-02-18.json +1 -0
 - data/apis/RDS-2013-01-10.json +1 -0
 - data/apis/RDS-2013-02-12.json +1 -0
 - data/apis/RDS-2013-05-15.json +1 -0
 - data/apis/Redshift-2012-12-01.json +1 -0
 - data/apis/Route53-2012-12-12.json +1 -0
 - data/apis/S3-2006-03-01.json +5 -0
 - data/apis/SDB-2009-04-15.json +1 -0
 - data/apis/SES-2010-12-01.json +1 -0
 - data/apis/SNS-2010-03-31.json +1 -0
 - data/apis/SQS-2012-11-05.json +1 -0
 - data/apis/STS-2011-06-15.json +1 -0
 - data/apis/SWF-2012-01-25.json +1 -0
 - data/apis/StorageGateway-2012-06-30.json +1 -0
 - data/apis/StorageGateway-2013-06-30.json +2018 -0
 - data/apis/Support-2013-04-15.json +1 -0
 - data/apis/source/cloudformation-2010-05-15.json +118 -12
 - data/apis/source/elasticloadbalancing-2012-06-01.json +347 -220
 - data/apis/source/elastictranscoder-2012-09-25.json +315 -5
 - data/apis/source/s3-2006-03-01.json +3 -0
 - data/apis/source/storagegateway-2013-06-30.json +12560 -0
 - data/apis/source/storagegateway-2013-06-30.paginators.json +28 -0
 - data/doc-src/plugins/apis.rb +44 -1
 - data/doc-src/templates/default/fulldoc/html/setup.rb +1 -1
 - data/features/common/step_definitions.rb +3 -5
 - data/features/env.rb +2 -0
 - data/features/glacier/client.feature +8 -0
 - data/features/glacier/step_definitions.rb +7 -7
 - data/features/s3/step_definitions.rb +2 -3
 - data/lib/aws.rb +75 -69
 - data/lib/aws/api/service_translators/glacier.rb +1 -0
 - data/lib/aws/api/translator.rb +13 -8
 - data/lib/aws/credentials.rb +5 -5
 - data/lib/aws/instance_profile_credentials.rb +113 -0
 - data/lib/aws/plugins/credentials.rb +2 -1
 - data/lib/aws/plugins/glacier_account_id.rb +11 -0
 - data/lib/aws/plugins/glacier_checksums.rb +7 -3
 - data/lib/aws/plugins/instance_profile_credentials.rb +14 -0
 - data/lib/aws/plugins/s3_bucket_dns.rb +17 -14
 - data/lib/aws/plugins/s3_md5s.rb +3 -3
 - data/lib/aws/service.rb +10 -9
 - data/lib/aws/signers/s3.rb +2 -2
 - data/lib/aws/signers/v2.rb +1 -1
 - data/lib/aws/signers/v4.rb +2 -2
 - data/lib/aws/version.rb +1 -1
 - data/lib/aws/xml/serializer.rb +1 -1
 - data/spec/aws/instance_profile_credentials_spec.rb +94 -0
 - data/spec/aws/operations_spec.rb +1 -1
 - data/spec/aws/plugins/credentials_spec.rb +2 -2
 - data/spec/fixtures/operations/glacier/account_id_param.yml +13 -0
 - data/spec/fixtures/operations/glacier/custom_account_id.yml +11 -0
 - data/spec/fixtures/operations/glacier/default_account_id.yml +10 -0
 - data/spec/fixtures/operations/s3/content_type_header.yml +12 -0
 - data/spec/fixtures/operations/s3/md5_checksum_disabled.yml +1 -1
 - data/tasks/apis.rake +2 -2
 - data/tasks/docs.rake +2 -1
 - data/tasks/handlers.rake +30 -0
 - data/vendor/seahorse/lib/seahorse/client.rb +1 -0
 - data/vendor/seahorse/lib/seahorse/client/base.rb +0 -18
 - data/vendor/seahorse/lib/seahorse/client/block_io.rb +0 -7
 - data/vendor/seahorse/lib/seahorse/client/configuration.rb +57 -37
 - data/vendor/seahorse/lib/seahorse/client/handler_list.rb +115 -78
 - data/vendor/seahorse/lib/seahorse/client/http/endpoint.rb +19 -15
 - data/vendor/seahorse/lib/seahorse/client/http/request.rb +0 -15
 - data/vendor/seahorse/lib/seahorse/client/logging/formatter.rb +0 -7
 - data/vendor/seahorse/lib/seahorse/client/managed_file.rb +14 -0
 - data/vendor/seahorse/lib/seahorse/client/net_http/handler.rb +1 -3
 - data/vendor/seahorse/lib/seahorse/client/plugins/content_length.rb +1 -1
 - data/vendor/seahorse/lib/seahorse/client/plugins/endpoint.rb +81 -10
 - data/vendor/seahorse/lib/seahorse/client/plugins/restful_bindings.rb +1 -71
 - data/vendor/seahorse/lib/seahorse/client/request.rb +26 -3
 - data/vendor/seahorse/spec/seahorse/client/base_spec.rb +1 -5
 - data/vendor/seahorse/spec/seahorse/client/configuration_spec.rb +1 -10
 - data/vendor/seahorse/spec/seahorse/client/handler_list_spec.rb +10 -10
 - data/vendor/seahorse/spec/seahorse/client/http/endpoint_spec.rb +46 -14
 - data/vendor/seahorse/spec/seahorse/client/http/request_spec.rb +1 -42
 - data/vendor/seahorse/spec/seahorse/client/logging/formatter_spec.rb +1 -6
 - data/vendor/seahorse/spec/seahorse/client/logging/handler_spec.rb +1 -1
 - data/vendor/seahorse/spec/seahorse/client/net_http/handler_spec.rb +5 -4
 - data/vendor/seahorse/spec/seahorse/client/param_converter_spec.rb +1 -0
 - data/vendor/seahorse/spec/seahorse/client/plugins/{restful_bindings/uri_path_builder_spec.rb → endpoint/request_uri_builder_spec.rb} +3 -3
 - data/vendor/seahorse/spec/seahorse/client/plugins/endpoint_spec.rb +1 -11
 - data/vendor/seahorse/spec/seahorse/client/request_spec.rb +63 -13
 - metadata +21 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: f24616b28606389321ba4b8ae5b3478d036f494b
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 573a25497fb68599df00af82d5c620570e8e8a8b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 568552c69c6e12ec12c158e6b7545ee15e6f917e079a3ca18be5f12090786285be09a7bc043277cc7f9139692eeb7a061d763f036271c29c86be58ef4f1598f3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 13802e6fb09a5bfce2a39974a02d2c76a5d672b799065044acd6f299d7a94609b448da2a918c63d89488196ff744a819d8fbcbac352a8cf22ac992273b1031ec
         
     | 
    
        data/.travis.yml
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    | 
         @@ -21,13 +21,16 @@ For version 1.0 of the Ruby SDK, see [aws/aws-sdk-ruby](http://github.com/aws/aw 
     | 
|
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            You can install the AWS SDK Core from rubygems:
         
     | 
| 
       23 
23 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
                gem install aws-sdk-core
         
     | 
| 
      
 24 
     | 
    
         
            +
                gem install aws-sdk-core --pre
         
     | 
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            If you are using Bundler, we recommend that you express a major version
         
     | 
| 
       27 
27 
     | 
    
         
             
            dependency (this library uses [semantic versioning](http://semver.org/)):
         
     | 
| 
       28 
28 
     | 
    
         | 
| 
       29 
29 
     | 
    
         
             
                gem 'aws-sdk-core', '~> 2.0'
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
      
 31 
     | 
    
         
            +
            Until the final release becomes available on Rubygems, leave off the version
         
     | 
| 
      
 32 
     | 
    
         
            +
            dependency in your Gemfile so Bundler can find it.
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
       31 
34 
     | 
    
         
             
            **Note:** AWS SDK Core requires Ruby 1.9.3+.
         
     | 
| 
       32 
35 
     | 
    
         | 
| 
       33 
36 
     | 
    
         
             
            ## Configuration
         
     | 
| 
         @@ -59,7 +62,7 @@ s3 = Aws.s3 # helper method returns a new client 
     | 
|
| 
       59 
62 
     | 
    
         
             
            ```
         
     | 
| 
       60 
63 
     | 
    
         | 
| 
       61 
64 
     | 
    
         
             
            Each client provides one operation per API operation. Refer to the
         
     | 
| 
       62 
     | 
    
         
            -
            [API documentation](http://docs. 
     | 
| 
      
 65 
     | 
    
         
            +
            [API documentation](http://docs.amazonwebservices.com/sdkforruby/api/frames.html)
         
     | 
| 
       63 
66 
     | 
    
         
             
            for a complete list of available methods.
         
     | 
| 
       64 
67 
     | 
    
         | 
| 
       65 
68 
     | 
    
         
             
            ```ruby
         
     | 
| 
         @@ -143,7 +146,7 @@ version. 
     | 
|
| 
       143 
146 
     | 
    
         
             
            | AWS Import/Export                   | Aws::ImportExport         | 2010-06-01                     |
         
     | 
| 
       144 
147 
     | 
    
         
             
            | AWS OpsWorks                        | Aws::OpsWorks             | 2013-02-18                     |
         
     | 
| 
       145 
148 
     | 
    
         
             
            | AWS Security Token Service          | Aws::STS                  | 2011-06-15                     |
         
     | 
| 
       146 
     | 
    
         
            -
            | AWS Storage Gateway                 | Aws::StorageGateway       | 2012-06-30 
     | 
| 
      
 149 
     | 
    
         
            +
            | AWS Storage Gateway                 | Aws::StorageGateway       | 2012-06-30 — 2013-06-30  |
         
     | 
| 
       147 
150 
     | 
    
         
             
            | AWS Support                         | Aws::Support              | 2013-04-15                     |
         
     | 
| 
       148 
151 
     | 
    
         
             
            | Elastic Load Balancing              | Aws::ElasticLoadBalancing | 2012-06-01                     |
         
     | 
| 
       149 
152 
     | 
    
         | 
    
        data/Rakefile
    CHANGED
    
    
| 
         @@ -23,6 +23,7 @@ 
     | 
|
| 
       23 
23 
     | 
    
         
             
                "Aws::Plugins::RetryErrors",
         
     | 
| 
       24 
24 
     | 
    
         
             
                "Aws::Plugins::GlobalConfiguration",
         
     | 
| 
       25 
25 
     | 
    
         
             
                "Aws::Plugins::RegionalEndpoint",
         
     | 
| 
      
 26 
     | 
    
         
            +
                "Aws::Plugins::InstanceProfileCredentials",
         
     | 
| 
       26 
27 
     | 
    
         
             
                "Aws::Plugins::Credentials",
         
     | 
| 
       27 
28 
     | 
    
         
             
                "Aws::Plugins::QueryProtocol",
         
     | 
| 
       28 
29 
     | 
    
         
             
                "Aws::Plugins::SignatureV4"
         
     | 
| 
         @@ -114,6 +115,14 @@ 
     | 
|
| 
       114 
115 
     | 
    
         
             
                          "DELETE"
         
     | 
| 
       115 
116 
     | 
    
         
             
                        ]
         
     | 
| 
       116 
117 
     | 
    
         
             
                      },
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "stack_policy_body": {
         
     | 
| 
      
 119 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 120 
     | 
    
         
            +
                        "serialized_name": "StackPolicyBody"
         
     | 
| 
      
 121 
     | 
    
         
            +
                      },
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "stack_policy_url": {
         
     | 
| 
      
 123 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 124 
     | 
    
         
            +
                        "serialized_name": "StackPolicyURL"
         
     | 
| 
      
 125 
     | 
    
         
            +
                      },
         
     | 
| 
       117 
126 
     | 
    
         
             
                      "tags": {
         
     | 
| 
       118 
127 
     | 
    
         
             
                        "type": "list",
         
     | 
| 
       119 
128 
     | 
    
         
             
                        "serialized_name": "Tags",
         
     | 
| 
         @@ -634,6 +643,33 @@ 
     | 
|
| 
       634 
643 
     | 
    
         
             
                    }
         
     | 
| 
       635 
644 
     | 
    
         
             
                  }
         
     | 
| 
       636 
645 
     | 
    
         
             
                },
         
     | 
| 
      
 646 
     | 
    
         
            +
                "get_stack_policy": {
         
     | 
| 
      
 647 
     | 
    
         
            +
                  "name": "GetStackPolicy",
         
     | 
| 
      
 648 
     | 
    
         
            +
                  "http_method": "POST",
         
     | 
| 
      
 649 
     | 
    
         
            +
                  "http_path": "/",
         
     | 
| 
      
 650 
     | 
    
         
            +
                  "input": {
         
     | 
| 
      
 651 
     | 
    
         
            +
                    "type": "input",
         
     | 
| 
      
 652 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 653 
     | 
    
         
            +
                      "stack_name": {
         
     | 
| 
      
 654 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 655 
     | 
    
         
            +
                        "required": true,
         
     | 
| 
      
 656 
     | 
    
         
            +
                        "serialized_name": "StackName"
         
     | 
| 
      
 657 
     | 
    
         
            +
                      }
         
     | 
| 
      
 658 
     | 
    
         
            +
                    }
         
     | 
| 
      
 659 
     | 
    
         
            +
                  },
         
     | 
| 
      
 660 
     | 
    
         
            +
                  "output": {
         
     | 
| 
      
 661 
     | 
    
         
            +
                    "type": "output",
         
     | 
| 
      
 662 
     | 
    
         
            +
                    "metadata": {
         
     | 
| 
      
 663 
     | 
    
         
            +
                      "wrapper": "GetStackPolicyResult"
         
     | 
| 
      
 664 
     | 
    
         
            +
                    },
         
     | 
| 
      
 665 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 666 
     | 
    
         
            +
                      "stack_policy_body": {
         
     | 
| 
      
 667 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 668 
     | 
    
         
            +
                        "serialized_name": "StackPolicyBody"
         
     | 
| 
      
 669 
     | 
    
         
            +
                      }
         
     | 
| 
      
 670 
     | 
    
         
            +
                    }
         
     | 
| 
      
 671 
     | 
    
         
            +
                  }
         
     | 
| 
      
 672 
     | 
    
         
            +
                },
         
     | 
| 
       637 
673 
     | 
    
         
             
                "get_template": {
         
     | 
| 
       638 
674 
     | 
    
         
             
                  "name": "GetTemplate",
         
     | 
| 
       639 
675 
     | 
    
         
             
                  "http_method": "POST",
         
     | 
| 
         @@ -846,6 +882,29 @@ 
     | 
|
| 
       846 
882 
     | 
    
         
             
                    }
         
     | 
| 
       847 
883 
     | 
    
         
             
                  }
         
     | 
| 
       848 
884 
     | 
    
         
             
                },
         
     | 
| 
      
 885 
     | 
    
         
            +
                "set_stack_policy": {
         
     | 
| 
      
 886 
     | 
    
         
            +
                  "name": "SetStackPolicy",
         
     | 
| 
      
 887 
     | 
    
         
            +
                  "http_method": "POST",
         
     | 
| 
      
 888 
     | 
    
         
            +
                  "http_path": "/",
         
     | 
| 
      
 889 
     | 
    
         
            +
                  "input": {
         
     | 
| 
      
 890 
     | 
    
         
            +
                    "type": "input",
         
     | 
| 
      
 891 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 892 
     | 
    
         
            +
                      "stack_name": {
         
     | 
| 
      
 893 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 894 
     | 
    
         
            +
                        "required": true,
         
     | 
| 
      
 895 
     | 
    
         
            +
                        "serialized_name": "StackName"
         
     | 
| 
      
 896 
     | 
    
         
            +
                      },
         
     | 
| 
      
 897 
     | 
    
         
            +
                      "stack_policy_body": {
         
     | 
| 
      
 898 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 899 
     | 
    
         
            +
                        "serialized_name": "StackPolicyBody"
         
     | 
| 
      
 900 
     | 
    
         
            +
                      },
         
     | 
| 
      
 901 
     | 
    
         
            +
                      "stack_policy_url": {
         
     | 
| 
      
 902 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 903 
     | 
    
         
            +
                        "serialized_name": "StackPolicyURL"
         
     | 
| 
      
 904 
     | 
    
         
            +
                      }
         
     | 
| 
      
 905 
     | 
    
         
            +
                    }
         
     | 
| 
      
 906 
     | 
    
         
            +
                  }
         
     | 
| 
      
 907 
     | 
    
         
            +
                },
         
     | 
| 
       849 
908 
     | 
    
         
             
                "update_stack": {
         
     | 
| 
       850 
909 
     | 
    
         
             
                  "name": "UpdateStack",
         
     | 
| 
       851 
910 
     | 
    
         
             
                  "http_method": "POST",
         
     | 
| 
         @@ -866,6 +925,14 @@ 
     | 
|
| 
       866 
925 
     | 
    
         
             
                        "type": "string",
         
     | 
| 
       867 
926 
     | 
    
         
             
                        "serialized_name": "TemplateURL"
         
     | 
| 
       868 
927 
     | 
    
         
             
                      },
         
     | 
| 
      
 928 
     | 
    
         
            +
                      "stack_policy_during_update_body": {
         
     | 
| 
      
 929 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 930 
     | 
    
         
            +
                        "serialized_name": "StackPolicyDuringUpdateBody"
         
     | 
| 
      
 931 
     | 
    
         
            +
                      },
         
     | 
| 
      
 932 
     | 
    
         
            +
                      "stack_policy_during_update_url": {
         
     | 
| 
      
 933 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 934 
     | 
    
         
            +
                        "serialized_name": "StackPolicyDuringUpdateURL"
         
     | 
| 
      
 935 
     | 
    
         
            +
                      },
         
     | 
| 
       869 
936 
     | 
    
         
             
                      "parameters": {
         
     | 
| 
       870 
937 
     | 
    
         
             
                        "type": "list",
         
     | 
| 
       871 
938 
     | 
    
         
             
                        "serialized_name": "Parameters",
         
     | 
| 
         @@ -892,6 +959,14 @@ 
     | 
|
| 
       892 
959 
     | 
    
         
             
                            "CAPABILITY_IAM"
         
     | 
| 
       893 
960 
     | 
    
         
             
                          ]
         
     | 
| 
       894 
961 
     | 
    
         
             
                        }
         
     | 
| 
      
 962 
     | 
    
         
            +
                      },
         
     | 
| 
      
 963 
     | 
    
         
            +
                      "stack_policy_body": {
         
     | 
| 
      
 964 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 965 
     | 
    
         
            +
                        "serialized_name": "StackPolicyBody"
         
     | 
| 
      
 966 
     | 
    
         
            +
                      },
         
     | 
| 
      
 967 
     | 
    
         
            +
                      "stack_policy_url": {
         
     | 
| 
      
 968 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 969 
     | 
    
         
            +
                        "serialized_name": "StackPolicyURL"
         
     | 
| 
       895 
970 
     | 
    
         
             
                      }
         
     | 
| 
       896 
971 
     | 
    
         
             
                    }
         
     | 
| 
       897 
972 
     | 
    
         
             
                  },
         
     | 
    
        data/apis/EC2-2013-06-15.json
    CHANGED
    
    
    
        data/apis/EC2-2013-10-01.json
    CHANGED
    
    
    
        data/apis/EMR-2009-03-31.json
    CHANGED
    
    
| 
         @@ -24,6 +24,7 @@ 
     | 
|
| 
       24 
24 
     | 
    
         
             
                "Aws::Plugins::RetryErrors",
         
     | 
| 
       25 
25 
     | 
    
         
             
                "Aws::Plugins::GlobalConfiguration",
         
     | 
| 
       26 
26 
     | 
    
         
             
                "Aws::Plugins::RegionalEndpoint",
         
     | 
| 
      
 27 
     | 
    
         
            +
                "Aws::Plugins::InstanceProfileCredentials",
         
     | 
| 
       27 
28 
     | 
    
         
             
                "Aws::Plugins::Credentials",
         
     | 
| 
       28 
29 
     | 
    
         
             
                "Aws::Plugins::QueryProtocol",
         
     | 
| 
       29 
30 
     | 
    
         
             
                "Aws::Plugins::SignatureV4"
         
     | 
| 
         @@ -579,6 +580,45 @@ 
     | 
|
| 
       579 
580 
     | 
    
         
             
                    }
         
     | 
| 
       580 
581 
     | 
    
         
             
                  }
         
     | 
| 
       581 
582 
     | 
    
         
             
                },
         
     | 
| 
      
 583 
     | 
    
         
            +
                "describe_load_balancer_attributes": {
         
     | 
| 
      
 584 
     | 
    
         
            +
                  "name": "DescribeLoadBalancerAttributes",
         
     | 
| 
      
 585 
     | 
    
         
            +
                  "http_method": "POST",
         
     | 
| 
      
 586 
     | 
    
         
            +
                  "http_path": "/",
         
     | 
| 
      
 587 
     | 
    
         
            +
                  "input": {
         
     | 
| 
      
 588 
     | 
    
         
            +
                    "type": "input",
         
     | 
| 
      
 589 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 590 
     | 
    
         
            +
                      "load_balancer_name": {
         
     | 
| 
      
 591 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 592 
     | 
    
         
            +
                        "required": true,
         
     | 
| 
      
 593 
     | 
    
         
            +
                        "serialized_name": "LoadBalancerName"
         
     | 
| 
      
 594 
     | 
    
         
            +
                      }
         
     | 
| 
      
 595 
     | 
    
         
            +
                    }
         
     | 
| 
      
 596 
     | 
    
         
            +
                  },
         
     | 
| 
      
 597 
     | 
    
         
            +
                  "output": {
         
     | 
| 
      
 598 
     | 
    
         
            +
                    "type": "output",
         
     | 
| 
      
 599 
     | 
    
         
            +
                    "metadata": {
         
     | 
| 
      
 600 
     | 
    
         
            +
                      "wrapper": "DescribeLoadBalancerAttributesResult"
         
     | 
| 
      
 601 
     | 
    
         
            +
                    },
         
     | 
| 
      
 602 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "load_balancer_attributes": {
         
     | 
| 
      
 604 
     | 
    
         
            +
                        "type": "structure",
         
     | 
| 
      
 605 
     | 
    
         
            +
                        "serialized_name": "LoadBalancerAttributes",
         
     | 
| 
      
 606 
     | 
    
         
            +
                        "members": {
         
     | 
| 
      
 607 
     | 
    
         
            +
                          "cross_zone_load_balancing": {
         
     | 
| 
      
 608 
     | 
    
         
            +
                            "type": "structure",
         
     | 
| 
      
 609 
     | 
    
         
            +
                            "serialized_name": "CrossZoneLoadBalancing",
         
     | 
| 
      
 610 
     | 
    
         
            +
                            "members": {
         
     | 
| 
      
 611 
     | 
    
         
            +
                              "enabled": {
         
     | 
| 
      
 612 
     | 
    
         
            +
                                "type": "boolean",
         
     | 
| 
      
 613 
     | 
    
         
            +
                                "serialized_name": "Enabled"
         
     | 
| 
      
 614 
     | 
    
         
            +
                              }
         
     | 
| 
      
 615 
     | 
    
         
            +
                            }
         
     | 
| 
      
 616 
     | 
    
         
            +
                          }
         
     | 
| 
      
 617 
     | 
    
         
            +
                        }
         
     | 
| 
      
 618 
     | 
    
         
            +
                      }
         
     | 
| 
      
 619 
     | 
    
         
            +
                    }
         
     | 
| 
      
 620 
     | 
    
         
            +
                  }
         
     | 
| 
      
 621 
     | 
    
         
            +
                },
         
     | 
| 
       582 
622 
     | 
    
         
             
                "describe_load_balancer_policies": {
         
     | 
| 
       583 
623 
     | 
    
         
             
                  "name": "DescribeLoadBalancerPolicies",
         
     | 
| 
       584 
624 
     | 
    
         
             
                  "http_method": "POST",
         
     | 
| 
         @@ -1080,6 +1120,39 @@ 
     | 
|
| 
       1080 
1120 
     | 
    
         
             
                    }
         
     | 
| 
       1081 
1121 
     | 
    
         
             
                  }
         
     | 
| 
       1082 
1122 
     | 
    
         
             
                },
         
     | 
| 
      
 1123 
     | 
    
         
            +
                "modify_load_balancer_attributes": {
         
     | 
| 
      
 1124 
     | 
    
         
            +
                  "name": "ModifyLoadBalancerAttributes",
         
     | 
| 
      
 1125 
     | 
    
         
            +
                  "http_method": "POST",
         
     | 
| 
      
 1126 
     | 
    
         
            +
                  "http_path": "/",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                  "input": {
         
     | 
| 
      
 1128 
     | 
    
         
            +
                    "type": "input",
         
     | 
| 
      
 1129 
     | 
    
         
            +
                    "members": {
         
     | 
| 
      
 1130 
     | 
    
         
            +
                      "load_balancer_name": {
         
     | 
| 
      
 1131 
     | 
    
         
            +
                        "type": "string",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                        "required": true,
         
     | 
| 
      
 1133 
     | 
    
         
            +
                        "serialized_name": "LoadBalancerName"
         
     | 
| 
      
 1134 
     | 
    
         
            +
                      },
         
     | 
| 
      
 1135 
     | 
    
         
            +
                      "load_balancer_attributes": {
         
     | 
| 
      
 1136 
     | 
    
         
            +
                        "type": "structure",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                        "required": true,
         
     | 
| 
      
 1138 
     | 
    
         
            +
                        "serialized_name": "LoadBalancerAttributes",
         
     | 
| 
      
 1139 
     | 
    
         
            +
                        "members": {
         
     | 
| 
      
 1140 
     | 
    
         
            +
                          "cross_zone_load_balancing": {
         
     | 
| 
      
 1141 
     | 
    
         
            +
                            "type": "structure",
         
     | 
| 
      
 1142 
     | 
    
         
            +
                            "serialized_name": "CrossZoneLoadBalancing",
         
     | 
| 
      
 1143 
     | 
    
         
            +
                            "members": {
         
     | 
| 
      
 1144 
     | 
    
         
            +
                              "enabled": {
         
     | 
| 
      
 1145 
     | 
    
         
            +
                                "type": "boolean",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                                "required": true,
         
     | 
| 
      
 1147 
     | 
    
         
            +
                                "serialized_name": "Enabled"
         
     | 
| 
      
 1148 
     | 
    
         
            +
                              }
         
     | 
| 
      
 1149 
     | 
    
         
            +
                            }
         
     | 
| 
      
 1150 
     | 
    
         
            +
                          }
         
     | 
| 
      
 1151 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1152 
     | 
    
         
            +
                      }
         
     | 
| 
      
 1153 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1154 
     | 
    
         
            +
                  }
         
     | 
| 
      
 1155 
     | 
    
         
            +
                },
         
     | 
| 
       1083 
1156 
     | 
    
         
             
                "register_instances_with_load_balancer": {
         
     | 
| 
       1084 
1157 
     | 
    
         
             
                  "name": "RegisterInstancesWithLoadBalancer",
         
     | 
| 
       1085 
1158 
     | 
    
         
             
                  "http_method": "POST",
         
     | 
| 
         @@ -23,6 +23,7 @@ 
     | 
|
| 
       23 
23 
     | 
    
         
             
                "Aws::Plugins::RetryErrors",
         
     | 
| 
       24 
24 
     | 
    
         
             
                "Aws::Plugins::GlobalConfiguration",
         
     | 
| 
       25 
25 
     | 
    
         
             
                "Aws::Plugins::RegionalEndpoint",
         
     | 
| 
      
 26 
     | 
    
         
            +
                "Aws::Plugins::InstanceProfileCredentials",
         
     | 
| 
       26 
27 
     | 
    
         
             
                "Aws::Plugins::Credentials",
         
     | 
| 
       27 
28 
     | 
    
         
             
                "Aws::Plugins::JsonProtocol",
         
     | 
| 
       28 
29 
     | 
    
         
             
                "Aws::Plugins::SignatureV4"
         
     | 
| 
         @@ -167,6 +168,29 @@ 
     | 
|
| 
       167 
168 
     | 
    
         
             
                                }
         
     | 
| 
       168 
169 
     | 
    
         
             
                              }
         
     | 
| 
       169 
170 
     | 
    
         
             
                            }
         
     | 
| 
      
 171 
     | 
    
         
            +
                          },
         
     | 
| 
      
 172 
     | 
    
         
            +
                          "composition": {
         
     | 
| 
      
 173 
     | 
    
         
            +
                            "type": "list",
         
     | 
| 
      
 174 
     | 
    
         
            +
                            "serialized_name": "Composition",
         
     | 
| 
      
 175 
     | 
    
         
            +
                            "members": {
         
     | 
| 
      
 176 
     | 
    
         
            +
                              "type": "structure",
         
     | 
| 
      
 177 
     | 
    
         
            +
                              "members": {
         
     | 
| 
      
 178 
     | 
    
         
            +
                                "time_span": {
         
     | 
| 
      
 179 
     | 
    
         
            +
                                  "type": "structure",
         
     | 
| 
      
 180 
     | 
    
         
            +
                                  "serialized_name": "TimeSpan",
         
     | 
| 
      
 181 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 182 
     | 
    
         
            +
                                    "start_time": {
         
     | 
| 
      
 183 
     | 
    
         
            +
                                      "type": "string",
         
     | 
| 
      
 184 
     | 
    
         
            +
                                      "serialized_name": "StartTime"
         
     | 
| 
      
 185 
     | 
    
         
            +
                                    },
         
     | 
| 
      
 186 
     | 
    
         
            +
                                    "duration": {
         
     | 
| 
      
 187 
     | 
    
         
            +
                                      "type": "string",
         
     | 
| 
      
 188 
     | 
    
         
            +
                                      "serialized_name": "Duration"
         
     | 
| 
      
 189 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 190 
     | 
    
         
            +
                                  }
         
     | 
| 
      
 191 
     | 
    
         
            +
                                }
         
     | 
| 
      
 192 
     | 
    
         
            +
                              }
         
     | 
| 
      
 193 
     | 
    
         
            +
                            }
         
     | 
| 
       170 
194 
     | 
    
         
             
                          }
         
     | 
| 
       171 
195 
     | 
    
         
             
                        }
         
     | 
| 
       172 
196 
     | 
    
         
             
                      },
         
     | 
| 
         @@ -255,6 +279,29 @@ 
     | 
|
| 
       255 
279 
     | 
    
         
             
                                  }
         
     | 
| 
       256 
280 
     | 
    
         
             
                                }
         
     | 
| 
       257 
281 
     | 
    
         
             
                              }
         
     | 
| 
      
 282 
     | 
    
         
            +
                            },
         
     | 
| 
      
 283 
     | 
    
         
            +
                            "composition": {
         
     | 
| 
      
 284 
     | 
    
         
            +
                              "type": "list",
         
     | 
| 
      
 285 
     | 
    
         
            +
                              "serialized_name": "Composition",
         
     | 
| 
      
 286 
     | 
    
         
            +
                              "members": {
         
     | 
| 
      
 287 
     | 
    
         
            +
                                "type": "structure",
         
     | 
| 
      
 288 
     | 
    
         
            +
                                "members": {
         
     | 
| 
      
 289 
     | 
    
         
            +
                                  "time_span": {
         
     | 
| 
      
 290 
     | 
    
         
            +
                                    "type": "structure",
         
     | 
| 
      
 291 
     | 
    
         
            +
                                    "serialized_name": "TimeSpan",
         
     | 
| 
      
 292 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 293 
     | 
    
         
            +
                                      "start_time": {
         
     | 
| 
      
 294 
     | 
    
         
            +
                                        "type": "string",
         
     | 
| 
      
 295 
     | 
    
         
            +
                                        "serialized_name": "StartTime"
         
     | 
| 
      
 296 
     | 
    
         
            +
                                      },
         
     | 
| 
      
 297 
     | 
    
         
            +
                                      "duration": {
         
     | 
| 
      
 298 
     | 
    
         
            +
                                        "type": "string",
         
     | 
| 
      
 299 
     | 
    
         
            +
                                        "serialized_name": "Duration"
         
     | 
| 
      
 300 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 301 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 302 
     | 
    
         
            +
                                  }
         
     | 
| 
      
 303 
     | 
    
         
            +
                                }
         
     | 
| 
      
 304 
     | 
    
         
            +
                              }
         
     | 
| 
       258 
305 
     | 
    
         
             
                            }
         
     | 
| 
       259 
306 
     | 
    
         
             
                          }
         
     | 
| 
       260 
307 
     | 
    
         
             
                        }
         
     | 
| 
         @@ -441,6 +488,29 @@ 
     | 
|
| 
       441 
488 
     | 
    
         
             
                                    }
         
     | 
| 
       442 
489 
     | 
    
         
             
                                  }
         
     | 
| 
       443 
490 
     | 
    
         
             
                                }
         
     | 
| 
      
 491 
     | 
    
         
            +
                              },
         
     | 
| 
      
 492 
     | 
    
         
            +
                              "composition": {
         
     | 
| 
      
 493 
     | 
    
         
            +
                                "type": "list",
         
     | 
| 
      
 494 
     | 
    
         
            +
                                "serialized_name": "Composition",
         
     | 
| 
      
 495 
     | 
    
         
            +
                                "members": {
         
     | 
| 
      
 496 
     | 
    
         
            +
                                  "type": "structure",
         
     | 
| 
      
 497 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 498 
     | 
    
         
            +
                                    "time_span": {
         
     | 
| 
      
 499 
     | 
    
         
            +
                                      "type": "structure",
         
     | 
| 
      
 500 
     | 
    
         
            +
                                      "serialized_name": "TimeSpan",
         
     | 
| 
      
 501 
     | 
    
         
            +
                                      "members": {
         
     | 
| 
      
 502 
     | 
    
         
            +
                                        "start_time": {
         
     | 
| 
      
 503 
     | 
    
         
            +
                                          "type": "string",
         
     | 
| 
      
 504 
     | 
    
         
            +
                                          "serialized_name": "StartTime"
         
     | 
| 
      
 505 
     | 
    
         
            +
                                        },
         
     | 
| 
      
 506 
     | 
    
         
            +
                                        "duration": {
         
     | 
| 
      
 507 
     | 
    
         
            +
                                          "type": "string",
         
     | 
| 
      
 508 
     | 
    
         
            +
                                          "serialized_name": "Duration"
         
     | 
| 
      
 509 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 510 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 511 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 512 
     | 
    
         
            +
                                  }
         
     | 
| 
      
 513 
     | 
    
         
            +
                                }
         
     | 
| 
       444 
514 
     | 
    
         
             
                              }
         
     | 
| 
       445 
515 
     | 
    
         
             
                            }
         
     | 
| 
       446 
516 
     | 
    
         
             
                          },
         
     | 
| 
         @@ -553,6 +623,29 @@ 
     | 
|
| 
       553 
623 
     | 
    
         
             
                                      }
         
     | 
| 
       554 
624 
     | 
    
         
             
                                    }
         
     | 
| 
       555 
625 
     | 
    
         
             
                                  }
         
     | 
| 
      
 626 
     | 
    
         
            +
                                },
         
     | 
| 
      
 627 
     | 
    
         
            +
                                "composition": {
         
     | 
| 
      
 628 
     | 
    
         
            +
                                  "type": "list",
         
     | 
| 
      
 629 
     | 
    
         
            +
                                  "serialized_name": "Composition",
         
     | 
| 
      
 630 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 631 
     | 
    
         
            +
                                    "type": "structure",
         
     | 
| 
      
 632 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 633 
     | 
    
         
            +
                                      "time_span": {
         
     | 
| 
      
 634 
     | 
    
         
            +
                                        "type": "structure",
         
     | 
| 
      
 635 
     | 
    
         
            +
                                        "serialized_name": "TimeSpan",
         
     | 
| 
      
 636 
     | 
    
         
            +
                                        "members": {
         
     | 
| 
      
 637 
     | 
    
         
            +
                                          "start_time": {
         
     | 
| 
      
 638 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 639 
     | 
    
         
            +
                                            "serialized_name": "StartTime"
         
     | 
| 
      
 640 
     | 
    
         
            +
                                          },
         
     | 
| 
      
 641 
     | 
    
         
            +
                                          "duration": {
         
     | 
| 
      
 642 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 643 
     | 
    
         
            +
                                            "serialized_name": "Duration"
         
     | 
| 
      
 644 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 645 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 646 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 647 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 648 
     | 
    
         
            +
                                  }
         
     | 
| 
       556 
649 
     | 
    
         
             
                                }
         
     | 
| 
       557 
650 
     | 
    
         
             
                              }
         
     | 
| 
       558 
651 
     | 
    
         
             
                            }
         
     | 
| 
         @@ -1480,6 +1573,29 @@ 
     | 
|
| 
       1480 
1573 
     | 
    
         
             
                                      }
         
     | 
| 
       1481 
1574 
     | 
    
         
             
                                    }
         
     | 
| 
       1482 
1575 
     | 
    
         
             
                                  }
         
     | 
| 
      
 1576 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1577 
     | 
    
         
            +
                                "composition": {
         
     | 
| 
      
 1578 
     | 
    
         
            +
                                  "type": "list",
         
     | 
| 
      
 1579 
     | 
    
         
            +
                                  "serialized_name": "Composition",
         
     | 
| 
      
 1580 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 1581 
     | 
    
         
            +
                                    "type": "structure",
         
     | 
| 
      
 1582 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 1583 
     | 
    
         
            +
                                      "time_span": {
         
     | 
| 
      
 1584 
     | 
    
         
            +
                                        "type": "structure",
         
     | 
| 
      
 1585 
     | 
    
         
            +
                                        "serialized_name": "TimeSpan",
         
     | 
| 
      
 1586 
     | 
    
         
            +
                                        "members": {
         
     | 
| 
      
 1587 
     | 
    
         
            +
                                          "start_time": {
         
     | 
| 
      
 1588 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 1589 
     | 
    
         
            +
                                            "serialized_name": "StartTime"
         
     | 
| 
      
 1590 
     | 
    
         
            +
                                          },
         
     | 
| 
      
 1591 
     | 
    
         
            +
                                          "duration": {
         
     | 
| 
      
 1592 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 1593 
     | 
    
         
            +
                                            "serialized_name": "Duration"
         
     | 
| 
      
 1594 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 1595 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 1596 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 1597 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 1598 
     | 
    
         
            +
                                  }
         
     | 
| 
       1483 
1599 
     | 
    
         
             
                                }
         
     | 
| 
       1484 
1600 
     | 
    
         
             
                              }
         
     | 
| 
       1485 
1601 
     | 
    
         
             
                            },
         
     | 
| 
         @@ -1592,6 +1708,29 @@ 
     | 
|
| 
       1592 
1708 
     | 
    
         
             
                                        }
         
     | 
| 
       1593 
1709 
     | 
    
         
             
                                      }
         
     | 
| 
       1594 
1710 
     | 
    
         
             
                                    }
         
     | 
| 
      
 1711 
     | 
    
         
            +
                                  },
         
     | 
| 
      
 1712 
     | 
    
         
            +
                                  "composition": {
         
     | 
| 
      
 1713 
     | 
    
         
            +
                                    "type": "list",
         
     | 
| 
      
 1714 
     | 
    
         
            +
                                    "serialized_name": "Composition",
         
     | 
| 
      
 1715 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 1716 
     | 
    
         
            +
                                      "type": "structure",
         
     | 
| 
      
 1717 
     | 
    
         
            +
                                      "members": {
         
     | 
| 
      
 1718 
     | 
    
         
            +
                                        "time_span": {
         
     | 
| 
      
 1719 
     | 
    
         
            +
                                          "type": "structure",
         
     | 
| 
      
 1720 
     | 
    
         
            +
                                          "serialized_name": "TimeSpan",
         
     | 
| 
      
 1721 
     | 
    
         
            +
                                          "members": {
         
     | 
| 
      
 1722 
     | 
    
         
            +
                                            "start_time": {
         
     | 
| 
      
 1723 
     | 
    
         
            +
                                              "type": "string",
         
     | 
| 
      
 1724 
     | 
    
         
            +
                                              "serialized_name": "StartTime"
         
     | 
| 
      
 1725 
     | 
    
         
            +
                                            },
         
     | 
| 
      
 1726 
     | 
    
         
            +
                                            "duration": {
         
     | 
| 
      
 1727 
     | 
    
         
            +
                                              "type": "string",
         
     | 
| 
      
 1728 
     | 
    
         
            +
                                              "serialized_name": "Duration"
         
     | 
| 
      
 1729 
     | 
    
         
            +
                                            }
         
     | 
| 
      
 1730 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 1731 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 1732 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 1733 
     | 
    
         
            +
                                    }
         
     | 
| 
       1595 
1734 
     | 
    
         
             
                                  }
         
     | 
| 
       1596 
1735 
     | 
    
         
             
                                }
         
     | 
| 
       1597 
1736 
     | 
    
         
             
                              }
         
     | 
| 
         @@ -1822,6 +1961,29 @@ 
     | 
|
| 
       1822 
1961 
     | 
    
         
             
                                      }
         
     | 
| 
       1823 
1962 
     | 
    
         
             
                                    }
         
     | 
| 
       1824 
1963 
     | 
    
         
             
                                  }
         
     | 
| 
      
 1964 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1965 
     | 
    
         
            +
                                "composition": {
         
     | 
| 
      
 1966 
     | 
    
         
            +
                                  "type": "list",
         
     | 
| 
      
 1967 
     | 
    
         
            +
                                  "serialized_name": "Composition",
         
     | 
| 
      
 1968 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 1969 
     | 
    
         
            +
                                    "type": "structure",
         
     | 
| 
      
 1970 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 1971 
     | 
    
         
            +
                                      "time_span": {
         
     | 
| 
      
 1972 
     | 
    
         
            +
                                        "type": "structure",
         
     | 
| 
      
 1973 
     | 
    
         
            +
                                        "serialized_name": "TimeSpan",
         
     | 
| 
      
 1974 
     | 
    
         
            +
                                        "members": {
         
     | 
| 
      
 1975 
     | 
    
         
            +
                                          "start_time": {
         
     | 
| 
      
 1976 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 1977 
     | 
    
         
            +
                                            "serialized_name": "StartTime"
         
     | 
| 
      
 1978 
     | 
    
         
            +
                                          },
         
     | 
| 
      
 1979 
     | 
    
         
            +
                                          "duration": {
         
     | 
| 
      
 1980 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 1981 
     | 
    
         
            +
                                            "serialized_name": "Duration"
         
     | 
| 
      
 1982 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 1983 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 1984 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 1985 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 1986 
     | 
    
         
            +
                                  }
         
     | 
| 
       1825 
1987 
     | 
    
         
             
                                }
         
     | 
| 
       1826 
1988 
     | 
    
         
             
                              }
         
     | 
| 
       1827 
1989 
     | 
    
         
             
                            },
         
     | 
| 
         @@ -1934,6 +2096,29 @@ 
     | 
|
| 
       1934 
2096 
     | 
    
         
             
                                        }
         
     | 
| 
       1935 
2097 
     | 
    
         
             
                                      }
         
     | 
| 
       1936 
2098 
     | 
    
         
             
                                    }
         
     | 
| 
      
 2099 
     | 
    
         
            +
                                  },
         
     | 
| 
      
 2100 
     | 
    
         
            +
                                  "composition": {
         
     | 
| 
      
 2101 
     | 
    
         
            +
                                    "type": "list",
         
     | 
| 
      
 2102 
     | 
    
         
            +
                                    "serialized_name": "Composition",
         
     | 
| 
      
 2103 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 2104 
     | 
    
         
            +
                                      "type": "structure",
         
     | 
| 
      
 2105 
     | 
    
         
            +
                                      "members": {
         
     | 
| 
      
 2106 
     | 
    
         
            +
                                        "time_span": {
         
     | 
| 
      
 2107 
     | 
    
         
            +
                                          "type": "structure",
         
     | 
| 
      
 2108 
     | 
    
         
            +
                                          "serialized_name": "TimeSpan",
         
     | 
| 
      
 2109 
     | 
    
         
            +
                                          "members": {
         
     | 
| 
      
 2110 
     | 
    
         
            +
                                            "start_time": {
         
     | 
| 
      
 2111 
     | 
    
         
            +
                                              "type": "string",
         
     | 
| 
      
 2112 
     | 
    
         
            +
                                              "serialized_name": "StartTime"
         
     | 
| 
      
 2113 
     | 
    
         
            +
                                            },
         
     | 
| 
      
 2114 
     | 
    
         
            +
                                            "duration": {
         
     | 
| 
      
 2115 
     | 
    
         
            +
                                              "type": "string",
         
     | 
| 
      
 2116 
     | 
    
         
            +
                                              "serialized_name": "Duration"
         
     | 
| 
      
 2117 
     | 
    
         
            +
                                            }
         
     | 
| 
      
 2118 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 2119 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 2120 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 2121 
     | 
    
         
            +
                                    }
         
     | 
| 
       1937 
2122 
     | 
    
         
             
                                  }
         
     | 
| 
       1938 
2123 
     | 
    
         
             
                                }
         
     | 
| 
       1939 
2124 
     | 
    
         
             
                              }
         
     | 
| 
         @@ -2515,6 +2700,29 @@ 
     | 
|
| 
       2515 
2700 
     | 
    
         
             
                                    }
         
     | 
| 
       2516 
2701 
     | 
    
         
             
                                  }
         
     | 
| 
       2517 
2702 
     | 
    
         
             
                                }
         
     | 
| 
      
 2703 
     | 
    
         
            +
                              },
         
     | 
| 
      
 2704 
     | 
    
         
            +
                              "composition": {
         
     | 
| 
      
 2705 
     | 
    
         
            +
                                "type": "list",
         
     | 
| 
      
 2706 
     | 
    
         
            +
                                "serialized_name": "Composition",
         
     | 
| 
      
 2707 
     | 
    
         
            +
                                "members": {
         
     | 
| 
      
 2708 
     | 
    
         
            +
                                  "type": "structure",
         
     | 
| 
      
 2709 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 2710 
     | 
    
         
            +
                                    "time_span": {
         
     | 
| 
      
 2711 
     | 
    
         
            +
                                      "type": "structure",
         
     | 
| 
      
 2712 
     | 
    
         
            +
                                      "serialized_name": "TimeSpan",
         
     | 
| 
      
 2713 
     | 
    
         
            +
                                      "members": {
         
     | 
| 
      
 2714 
     | 
    
         
            +
                                        "start_time": {
         
     | 
| 
      
 2715 
     | 
    
         
            +
                                          "type": "string",
         
     | 
| 
      
 2716 
     | 
    
         
            +
                                          "serialized_name": "StartTime"
         
     | 
| 
      
 2717 
     | 
    
         
            +
                                        },
         
     | 
| 
      
 2718 
     | 
    
         
            +
                                        "duration": {
         
     | 
| 
      
 2719 
     | 
    
         
            +
                                          "type": "string",
         
     | 
| 
      
 2720 
     | 
    
         
            +
                                          "serialized_name": "Duration"
         
     | 
| 
      
 2721 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 2722 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 2723 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 2724 
     | 
    
         
            +
                                  }
         
     | 
| 
      
 2725 
     | 
    
         
            +
                                }
         
     | 
| 
       2518 
2726 
     | 
    
         
             
                              }
         
     | 
| 
       2519 
2727 
     | 
    
         
             
                            }
         
     | 
| 
       2520 
2728 
     | 
    
         
             
                          },
         
     | 
| 
         @@ -2627,6 +2835,29 @@ 
     | 
|
| 
       2627 
2835 
     | 
    
         
             
                                      }
         
     | 
| 
       2628 
2836 
     | 
    
         
             
                                    }
         
     | 
| 
       2629 
2837 
     | 
    
         
             
                                  }
         
     | 
| 
      
 2838 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2839 
     | 
    
         
            +
                                "composition": {
         
     | 
| 
      
 2840 
     | 
    
         
            +
                                  "type": "list",
         
     | 
| 
      
 2841 
     | 
    
         
            +
                                  "serialized_name": "Composition",
         
     | 
| 
      
 2842 
     | 
    
         
            +
                                  "members": {
         
     | 
| 
      
 2843 
     | 
    
         
            +
                                    "type": "structure",
         
     | 
| 
      
 2844 
     | 
    
         
            +
                                    "members": {
         
     | 
| 
      
 2845 
     | 
    
         
            +
                                      "time_span": {
         
     | 
| 
      
 2846 
     | 
    
         
            +
                                        "type": "structure",
         
     | 
| 
      
 2847 
     | 
    
         
            +
                                        "serialized_name": "TimeSpan",
         
     | 
| 
      
 2848 
     | 
    
         
            +
                                        "members": {
         
     | 
| 
      
 2849 
     | 
    
         
            +
                                          "start_time": {
         
     | 
| 
      
 2850 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 2851 
     | 
    
         
            +
                                            "serialized_name": "StartTime"
         
     | 
| 
      
 2852 
     | 
    
         
            +
                                          },
         
     | 
| 
      
 2853 
     | 
    
         
            +
                                          "duration": {
         
     | 
| 
      
 2854 
     | 
    
         
            +
                                            "type": "string",
         
     | 
| 
      
 2855 
     | 
    
         
            +
                                            "serialized_name": "Duration"
         
     | 
| 
      
 2856 
     | 
    
         
            +
                                          }
         
     | 
| 
      
 2857 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 2858 
     | 
    
         
            +
                                      }
         
     | 
| 
      
 2859 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 2860 
     | 
    
         
            +
                                  }
         
     | 
| 
       2630 
2861 
     | 
    
         
             
                                }
         
     | 
| 
       2631 
2862 
     | 
    
         
             
                              }
         
     | 
| 
       2632 
2863 
     | 
    
         
             
                            }
         
     |