aws-sdk 2.0.1 → 2.0.5
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.
- package/.eslintrc +20 -0
- package/.gitignore +10 -0
- package/.travis.yml +20 -0
- package/.yardopts +20 -0
- package/.yardopts_guide +21 -0
- package/Gemfile +16 -0
- package/Gemfile.lock +34 -0
- package/README.md +5 -6
- package/Rakefile +14 -0
- package/UPGRADING.md +9 -4
- package/configuration.sample +5 -0
- package/dist/BUNDLE_LICENSE.txt +96 -0
- package/dist/aws-sdk.js +9594 -0
- package/dist/aws-sdk.min.js +21 -0
- package/dist-tools/.eslintrc +10 -0
- package/dist-tools/browser-builder.js +142 -0
- package/dist-tools/strategies/cache.js +68 -0
- package/dist-tools/strategies/default.js +165 -0
- package/dist-tools/test/browser-builder.mocha.spec.coffee +182 -0
- package/dist-tools/test/helpers.coffee +16 -0
- package/doc-src/guide/browser-building.md +93 -0
- package/doc-src/guide/browser-configuring-wif.md +287 -0
- package/doc-src/guide/browser-configuring.md +218 -0
- package/doc-src/guide/browser-examples.md +220 -0
- package/doc-src/guide/browser-intro.md +46 -0
- package/doc-src/guide/browser-making-requests.md +279 -0
- package/doc-src/guide/browser-services.md +75 -0
- package/doc-src/guide/index.md +41 -0
- package/doc-src/guide/node-configuring.md +272 -0
- package/doc-src/guide/node-examples.md +341 -0
- package/doc-src/guide/node-intro.md +32 -0
- package/doc-src/guide/node-making-requests.md +309 -0
- package/doc-src/guide/node-services.md +159 -0
- package/doc-src/templates/api-versions/model_documentor.rb +366 -0
- package/doc-src/templates/api-versions/plugin.rb +230 -0
- package/doc-src/templates/api-versions/templates/default/class/html/setup.rb +9 -0
- package/doc-src/templates/api-versions/templates/default/class/html/waiter_details_list.erb +7 -0
- package/doc-src/templates/api-versions/templates/default/class/html/waiter_summary.erb +7 -0
- package/doc-src/templates/api-versions/templates/default/docstring/html/experimental.erb +4 -0
- package/doc-src/templates/api-versions/templates/default/docstring/setup.rb +9 -0
- package/doc-src/templates/api-versions/templates/default/fulldoc/html/css/common.css +6 -0
- package/doc-src/templates/api-versions/templates/default/fulldoc/html/setup.rb +62 -0
- package/doc-src/templates/api-versions/templates/default/layout/html/services.erb +10 -0
- package/doc-src/templates/api-versions/templates/default/layout/html/setup.rb +28 -0
- package/doc-src/templates/api-versions/templates/default/module/html/box_info.erb +45 -0
- package/doc-src/templates/api-versions/templates/default/module/html/children.erb +8 -0
- package/doc-src/templates/api-versions/templates/default/tags/setup.rb +3 -0
- package/doc-src/templates/api-versions/templates/default/waiter_details/html/method_signature.erb +3 -0
- package/doc-src/templates/api-versions/templates/default/waiter_details/html/setup.rb +5 -0
- package/doc-src/templates/default/layout/html/footer.erb +31 -0
- package/doc-src/templates/default/layout/html/layout.erb +23 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/highlight.github.css +127 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/css/style.css +1192 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/img/logo.png +0 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/app.js +33 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/highlight.pack.js +27 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/AUTHORS +55 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/LICENSE +25 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/doctools.js +247 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/file.png +0 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/sphinx/searchtools.js +568 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/js/underscore.js +23 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/search.erb +29 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/search_index.erb +1 -0
- package/doc-src/templates/flasky_sphinx_guide/fulldoc/html/setup.rb +75 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/layout.erb +93 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/setup.rb +9 -0
- package/doc-src/templates/flasky_sphinx_guide/layout/html/sidebar.erb +45 -0
- package/doc-src/templates/flasky_sphinx_guide/onefile/html/layout.erb +51 -0
- package/doc-src/templates/flasky_sphinx_guide/onefile/html/setup.rb +1 -0
- package/eslint-rules/no-require-in-service.js +10 -0
- package/features/autoscaling/autoscaling.feature +21 -0
- package/features/autoscaling/step_definitions/autoscaling.js +49 -0
- package/features/cloudformation/cloudformation.feature +22 -0
- package/features/cloudformation/step_definitions/cloudformation.js +26 -0
- package/features/cloudfront/cloudfront.feature +28 -0
- package/features/cloudfront/step_definitions/cloudfront-latest.js +54 -0
- package/features/cloudfront/step_definitions/cloudfront.js +21 -0
- package/features/cloudsearch/cloudsearch.feature +34 -0
- package/features/cloudsearch/step_definitions/cloudsearch.js +42 -0
- package/features/cloudtrail/cloudtrail.feature +17 -0
- package/features/cloudtrail/step_definitions/cloudtrail.js +14 -0
- package/features/cloudwatch/cloudwatch.feature +15 -0
- package/features/cloudwatch/step_definitions/cloudwatch.js +48 -0
- package/features/datapipeline/datapipeline.feature +23 -0
- package/features/datapipeline/step_definitions/datapipeline.js +79 -0
- package/features/directconnect/directconnect.feature +20 -0
- package/features/directconnect/step_definitions/directconnect.js +44 -0
- package/features/dynamodb/crc32.feature +18 -0
- package/features/dynamodb/step_definitions/dynamodb.js +154 -0
- package/features/dynamodb/tables.feature +50 -0
- package/features/ec2/ec2.feature +28 -0
- package/features/ec2/step_definitions/ec2.js +65 -0
- package/features/elasticache/elasticache.feature +20 -0
- package/features/elasticache/step_definitions/elasticache.js +34 -0
- package/features/elasticbeanstalk/elasticbeanstalk.feature +22 -0
- package/features/elasticbeanstalk/step_definitions/elasticbeanstalk.js +38 -0
- package/features/elastictranscoder/elastictranscoder.feature +24 -0
- package/features/elastictranscoder/step_definitions/elastictranscoder.js +56 -0
- package/features/elb/elb.feature +19 -0
- package/features/elb/step_definitions/elb.js +37 -0
- package/features/emr/emr.feature +16 -0
- package/features/emr/step_definitions/emr.js +45 -0
- package/features/extra/assertions.js +29 -0
- package/features/extra/dummy.feature +0 -0
- package/features/extra/fixtures/testfile.txt +1 -0
- package/features/extra/helpers.js +113 -0
- package/features/extra/hooks.js +107 -0
- package/features/extra/world.js +12 -0
- package/features/glacier/glacier.feature +47 -0
- package/features/glacier/step_definitions/glacier.js +112 -0
- package/features/iam/iam.feature +24 -0
- package/features/iam/step_definitions/iam.js +66 -0
- package/features/importexport/importexport.feature +53 -0
- package/features/importexport/step_definitions/importexport.js +42 -0
- package/features/kinesis/kinesis.feature +9 -0
- package/features/kinesis/step_definitions/kinesis.js +10 -0
- package/features/opsworks/opsworks.feature +26 -0
- package/features/opsworks/step_definitions/opsworks.js +42 -0
- package/features/rds/rds.feature +32 -0
- package/features/rds/step_definitions/rds.js +72 -0
- package/features/redshift/redshift.feature +20 -0
- package/features/redshift/step_definitions/redshift.js +33 -0
- package/features/route53/route53.feature +41 -0
- package/features/route53/step_definitions/route53.js +97 -0
- package/features/s3/buckets.feature +40 -0
- package/features/s3/objects.feature +122 -0
- package/features/s3/step_definitions/buckets.js +136 -0
- package/features/s3/step_definitions/hooks.js +39 -0
- package/features/s3/step_definitions/objects.js +204 -0
- package/features/s3/step_definitions/proxy.js +44 -0
- package/features/ses/ses.feature +20 -0
- package/features/ses/step_definitions/ses.js +22 -0
- package/features/simpledb/simpledb.feature +29 -0
- package/features/simpledb/step_definitions/simpledb.js +46 -0
- package/features/sns/sns.feature +15 -0
- package/features/sns/step_definitions/sns.js +33 -0
- package/features/sqs/messages.feature +21 -0
- package/features/sqs/queues.feature +18 -0
- package/features/sqs/step_definitions/messages.js +46 -0
- package/features/sqs/step_definitions/queues.js +33 -0
- package/features/sqs/step_definitions/sqs.js +7 -0
- package/features/storagegateway/step_definitions/storagegateway.js +16 -0
- package/features/storagegateway/storagegateway.feature +13 -0
- package/features/sts/step_definitions/sts.js +35 -0
- package/features/sts/sts.feature +29 -0
- package/features/support/step_definitions/support.js +35 -0
- package/features/support/support.feature +18 -0
- package/features/swf/step_definitions/swf.js +38 -0
- package/features/swf/swf.feature +15 -0
- package/index.js +2 -0
- package/lib/core.js +2 -2
- package/lib/credentials/shared_ini_file_credentials.js +0 -1
- package/lib/event_listeners.js +13 -1
- package/lib/http/node.js +19 -30
- package/lib/model/resource_waiter.js +0 -4
- package/lib/model/shape.js +2 -1
- package/lib/protocol/rest_xml.js +1 -1
- package/lib/region_config.js +31 -0
- package/lib/region_config.json +56 -0
- package/lib/request.js +37 -45
- package/lib/sequential_executor.js +17 -34
- package/lib/service.js +17 -44
- package/lib/services/cloudsearchdomain.js +69 -0
- package/lib/services/route53.js +0 -12
- package/lib/services/s3.js +3 -19
- package/lib/signers/v4.js +2 -1
- package/lib/util.js +28 -3
- package/package.json +3 -3
- package/scripts/console +11 -3
- package/scripts/coverage +126 -0
- package/tasks/apis.rake +122 -0
- package/tasks/browser.rake +89 -0
- package/tasks/docs.rake +36 -0
- package/tasks/lib/cucumber_generator.rb +40 -0
- package/tasks/util.rake +33 -0
- package/test/browser/js/jasmine-1.3.1.js +2600 -0
- package/test/browser/js/jasmine-html.js +681 -0
- package/test/browser/runner.html +109 -0
- package/test/browser/runner.js +92 -0
- package/test/browser/sample/appinfo.sample.js +15 -0
- package/test/browser/sample/console.html +429 -0
- package/test/browser/sample/css/smoothness/images/animated-overlay.gif +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- package/test/browser/sample/css/smoothness/jquery-ui-1.10.1.custom.css +1175 -0
- package/test/browser/sample/css/smoothness/jquery-ui-1.10.1.custom.min.css +5 -0
- package/test/browser/sample/img/loading.gif +0 -0
- package/test/browser/sample/js/jquery-1.9.1.js +9597 -0
- package/test/browser/sample/js/jquery-ui-1.10.1.custom.js +14903 -0
- package/test/browser/sample/js/jquery-ui-1.10.1.custom.min.js +6 -0
- package/test/browser/sample/s3upload.html +111 -0
- package/test/browser.spec.coffee +207 -0
- package/test/config.spec.coffee +202 -0
- package/test/credential_provider_chain.spec.coffee +90 -0
- package/test/credentials.spec.coffee +452 -0
- package/test/endpoint.spec.coffee +80 -0
- package/test/event_listeners.spec.coffee +493 -0
- package/test/helpers.coffee +150 -0
- package/test/http_request.spec.coffee +55 -0
- package/test/json/builder.spec.coffee +129 -0
- package/test/json/parser.spec.coffee +108 -0
- package/test/metadata_service.spec.coffee +54 -0
- package/test/model/api.spec.coffee +67 -0
- package/test/model/shape.spec.coffee +23 -0
- package/test/node_http_client.spec.coffee +40 -0
- package/test/param_validator.spec.coffee +456 -0
- package/test/protocol/json.spec.coffee +167 -0
- package/test/protocol/query.spec.coffee +191 -0
- package/test/protocol/rest.spec.coffee +237 -0
- package/test/protocol/rest_json.spec.coffee +255 -0
- package/test/protocol/rest_xml.spec.coffee +329 -0
- package/test/query/query_param_serializer.spec.coffee +327 -0
- package/test/region_config.spec.coffee +50 -0
- package/test/request.spec.coffee +316 -0
- package/test/resource_waiter.spec.coffee +89 -0
- package/test/response.spec.coffee +81 -0
- package/test/sequential_executor.spec.coffee +118 -0
- package/test/service.spec.coffee +230 -0
- package/test/services/cloudfront.spec.coffee +44 -0
- package/test/services/cloudsearchdomain.spec.coffee +23 -0
- package/test/services/dynamodb.spec.coffee +32 -0
- package/test/services/ec2.spec.coffee +78 -0
- package/test/services/elastictranscoder.spec.coffee +43 -0
- package/test/services/glacier.spec.coffee +61 -0
- package/test/services/rds.spec.coffee +38 -0
- package/test/services/route53.spec.coffee +77 -0
- package/test/services/s3.spec.coffee +538 -0
- package/test/services/simpledb.spec.coffee +12 -0
- package/test/services/sqs.spec.coffee +130 -0
- package/test/services/sts.spec.coffee +72 -0
- package/test/services/swf.spec.coffee +6 -0
- package/test/signers/presign.spec.coffee +36 -0
- package/test/signers/s3.spec.coffee +297 -0
- package/test/signers/v2.spec.coffee +68 -0
- package/test/signers/v4.spec.coffee +135 -0
- package/test/util.spec.coffee +510 -0
- package/test/xml/builder.spec.coffee +529 -0
- package/test/xml/parser.spec.coffee +587 -0
- package/lib/services/simpledb.js +0 -15
package/.eslintrc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"browser": true,
|
|
4
|
+
"node": true
|
|
5
|
+
},
|
|
6
|
+
"globals": {
|
|
7
|
+
"Buffer": true,
|
|
8
|
+
"escape": true
|
|
9
|
+
},
|
|
10
|
+
"rules": {
|
|
11
|
+
"quotes": [2, "single"],
|
|
12
|
+
"strict": 0,
|
|
13
|
+
"curly": 0,
|
|
14
|
+
"no-underscore-dangle": 0,
|
|
15
|
+
"new-cap": 0,
|
|
16
|
+
"dot-notation": 0,
|
|
17
|
+
"no-use-before-define": 0,
|
|
18
|
+
"no-require-in-service": 2
|
|
19
|
+
}
|
|
20
|
+
}
|
package/.gitignore
ADDED
package/.travis.yml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
language: node_js
|
|
2
|
+
node_js:
|
|
3
|
+
- "0.10"
|
|
4
|
+
|
|
5
|
+
branches:
|
|
6
|
+
only:
|
|
7
|
+
- master
|
|
8
|
+
- normalized
|
|
9
|
+
|
|
10
|
+
before_script:
|
|
11
|
+
- "npm install git://github.com/aws/aws-sdk-js-apis#$TRAVIS_BRANCH"
|
|
12
|
+
|
|
13
|
+
script: "if [ $INTEGRATION ]; then cucumber.js -f pretty; else npm test; fi"
|
|
14
|
+
|
|
15
|
+
# env:
|
|
16
|
+
# global:
|
|
17
|
+
# - secure: "..."
|
|
18
|
+
# matrix:
|
|
19
|
+
# - UNIT=1
|
|
20
|
+
# - AWS_REGION=us-east-1 INTEGRATION=1
|
package/.yardopts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
-m markdown
|
|
2
|
+
--markup-provider rdiscount
|
|
3
|
+
--exclude lib/aws.js
|
|
4
|
+
--no-api private
|
|
5
|
+
--api experimental
|
|
6
|
+
--no-highlight
|
|
7
|
+
--title "AWS SDK for JavaScript"
|
|
8
|
+
--template-path doc-src/templates
|
|
9
|
+
--plugin sitemap
|
|
10
|
+
-o doc/latest
|
|
11
|
+
-e doc-src/templates/api-versions/plugin.rb
|
|
12
|
+
--plugin js
|
|
13
|
+
--define-class-expr (AWS\.util\.)?inherit
|
|
14
|
+
--update-class-expr (AWS\.util\.)?update
|
|
15
|
+
--mixin-module-expr (AWS\.util\.)?mixin
|
|
16
|
+
lib/core.js
|
|
17
|
+
lib/**/*.js
|
|
18
|
+
-
|
|
19
|
+
README.md
|
|
20
|
+
UPGRADING.md
|
package/.yardopts_guide
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
--plugin sitemap
|
|
2
|
+
-t flasky_sphinx_guide
|
|
3
|
+
-p doc-src/templates
|
|
4
|
+
--title "AWS SDK for JavaScript"
|
|
5
|
+
--no-highlight
|
|
6
|
+
-o doc/guide
|
|
7
|
+
--readme doc-src/guide/index.md
|
|
8
|
+
-
|
|
9
|
+
doc-src/guide/browser-intro.md
|
|
10
|
+
doc-src/guide/browser-configuring.md
|
|
11
|
+
doc-src/guide/browser-services.md
|
|
12
|
+
doc-src/guide/browser-making-requests.md
|
|
13
|
+
doc-src/guide/browser-examples.md
|
|
14
|
+
doc-src/guide/browser-building.md
|
|
15
|
+
doc-src/guide/browser-configuring-wif.md
|
|
16
|
+
doc-src/guide/node-intro.md
|
|
17
|
+
doc-src/guide/node-configuring.md
|
|
18
|
+
doc-src/guide/node-services.md
|
|
19
|
+
doc-src/guide/node-making-requests.md
|
|
20
|
+
doc-src/guide/node-examples.md
|
|
21
|
+
UPGRADING.md
|
package/Gemfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
gem 'rake'
|
|
4
|
+
|
|
5
|
+
group :documentation do
|
|
6
|
+
gem 'rdiscount'
|
|
7
|
+
gem 'nokogiri'
|
|
8
|
+
gem 'yard', '~> 0.0'
|
|
9
|
+
gem 'yard-sitemap', '~> 1.0'
|
|
10
|
+
gem 'yard-js', '~> 0.0'
|
|
11
|
+
gem 'parsejs', github: 'lsegal/parsejs'
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
group :release do
|
|
15
|
+
gem 'samus'
|
|
16
|
+
end
|
package/Gemfile.lock
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
GIT
|
|
2
|
+
remote: git://github.com/lsegal/parsejs.git
|
|
3
|
+
revision: 7ba09b48fefc2db2970406938c34fb3d97ad4148
|
|
4
|
+
specs:
|
|
5
|
+
parsejs (0.0.1)
|
|
6
|
+
kpeg
|
|
7
|
+
yard
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
kpeg (1.0.0)
|
|
13
|
+
mini_portile (0.5.2)
|
|
14
|
+
nokogiri (1.6.1)
|
|
15
|
+
mini_portile (~> 0.5.0)
|
|
16
|
+
rake (10.1.1)
|
|
17
|
+
rdiscount (2.1.7)
|
|
18
|
+
samus (1.2.6)
|
|
19
|
+
yard (0.8.7.3)
|
|
20
|
+
yard-js (0.1.3)
|
|
21
|
+
yard-sitemap (1.0.1)
|
|
22
|
+
|
|
23
|
+
PLATFORMS
|
|
24
|
+
ruby
|
|
25
|
+
|
|
26
|
+
DEPENDENCIES
|
|
27
|
+
nokogiri
|
|
28
|
+
parsejs!
|
|
29
|
+
rake
|
|
30
|
+
rdiscount
|
|
31
|
+
samus
|
|
32
|
+
yard (~> 0.0)
|
|
33
|
+
yard-js (~> 0.0)
|
|
34
|
+
yard-sitemap (~> 1.0)
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ to work with the new major version.
|
|
|
18
18
|
To use the SDK in the browser, simply add the following script tag to your
|
|
19
19
|
HTML pages:
|
|
20
20
|
|
|
21
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.0.
|
|
21
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.0.5.min.js"></script>
|
|
22
22
|
|
|
23
23
|
### In Node.js
|
|
24
24
|
|
|
@@ -56,10 +56,10 @@ The SDK currently supports the following services:
|
|
|
56
56
|
<th>API Version</th>
|
|
57
57
|
</thead>
|
|
58
58
|
<tbody>
|
|
59
|
-
<tr><td
|
|
60
|
-
<tr><td>2013-11-11</td></tr>
|
|
59
|
+
<tr><td>Amazon CloudFront</td><td>AWS.CloudFront</td><td>2014-05-31</td></tr>
|
|
61
60
|
<tr><td rowspan="2">Amazon CloudSearch</td><td rowspan="2">AWS.CloudSearch</td><td>2011-02-01</td></tr>
|
|
62
61
|
<tr><td>2013-01-01</td></tr>
|
|
62
|
+
<tr><td>Amazon CloudSearch Domain</td><td>AWS.CloudSearchDomain</td><td>2013-01-01</td></tr>
|
|
63
63
|
<tr><td>Amazon CloudWatch</td><td>AWS.CloudWatch</td><td>2010-08-01</td></tr>
|
|
64
64
|
<tr><td rowspan="2">Amazon DynamoDB</td><td rowspan="2">AWS.DynamoDB</td><td>2011-12-05</td></tr>
|
|
65
65
|
<tr><td>2012-08-10</td></tr>
|
|
@@ -78,7 +78,7 @@ The SDK currently supports the following services:
|
|
|
78
78
|
<tr><td>Amazon Simple Notification Service</td><td>AWS.SNS</td><td>2010-03-31</td></tr>
|
|
79
79
|
<tr><td>Amazon Simple Queue Service</td><td>AWS.SQS</td><td>2012-11-05</td></tr>
|
|
80
80
|
<tr><td>Amazon Simple Storage Service</td><td>AWS.S3</td><td>2006-03-01</td></tr>
|
|
81
|
-
<tr><td>Amazon Simple Workflow Service</td><td>AWS.
|
|
81
|
+
<tr><td>Amazon Simple Workflow Service</td><td>AWS.SWF</td><td>2012-01-25</td></tr>
|
|
82
82
|
<tr><td>Amazon SimpleDB</td><td>AWS.SimpleDB</td><td>2009-04-15</td></tr>
|
|
83
83
|
<tr><td>Auto Scaling</td><td>AWS.AutoScaling</td><td>2011-01-01</td></tr>
|
|
84
84
|
<tr><td>AWS CloudFormation</td><td>AWS.CloudFormation</td><td>2010-05-15</td></tr>
|
|
@@ -90,8 +90,7 @@ The SDK currently supports the following services:
|
|
|
90
90
|
<tr><td>AWS Import/Export</td><td>AWS.ImportExport</td><td>2010-06-01</td></tr>
|
|
91
91
|
<tr><td>AWS OpsWorks</td><td>AWS.OpsWorks</td><td>2013-02-18</td></tr>
|
|
92
92
|
<tr><td>AWS Security Token Service</td><td>AWS.STS</td><td>2011-06-15</td></tr>
|
|
93
|
-
<tr><td
|
|
94
|
-
<tr><td>2013-06-30</td></tr>
|
|
93
|
+
<tr><td>AWS Storage Gateway</td><td>AWS.StorageGateway</td><td>2013-06-30</td></tr>
|
|
95
94
|
<tr><td>AWS Support</td><td>AWS.Support</td><td>2013-04-15</td></tr>
|
|
96
95
|
<tr><td>Elastic Load Balancing</td><td>AWS.ELB</td><td>2012-06-01</td></tr>
|
|
97
96
|
</tbody>
|
package/Rakefile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
LOGLEVEL = ($DEBUG || ENV['DEBUG']) ? '' : '-s'
|
|
2
|
+
|
|
3
|
+
task :default => 'test:all'
|
|
4
|
+
|
|
5
|
+
# Vendor tasks
|
|
6
|
+
root = File.dirname(__FILE__)
|
|
7
|
+
Dir[File.join(root, 'vendor', '*', 'Rakefile')].each do |vendor_rakefile|
|
|
8
|
+
load vendor_rakefile
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# Local tasks
|
|
12
|
+
Dir[File.join(root, 'tasks', '**', '*.rake')].each do |task_file|
|
|
13
|
+
load task_file
|
|
14
|
+
end
|
package/UPGRADING.md
CHANGED
|
@@ -131,11 +131,11 @@ modifySnapshotCopyRetentionPeriod, purchaseReservedNodeOffering, rebootCluster,
|
|
|
131
131
|
restoreFromClusterSnapshot, revokeClusterSecurityGroupIngress,
|
|
132
132
|
revokeSnapshotAccess, rotateEncryptionKey
|
|
133
133
|
|
|
134
|
-
## 4. Dropped `.Client`
|
|
134
|
+
## 4. Dropped `.Client` and `.client` Properties
|
|
135
135
|
|
|
136
|
-
The `.Client`
|
|
137
|
-
If you are using the `.Client` property on a Service class
|
|
138
|
-
|
|
136
|
+
The `.Client` and `.client` properties have been removed from Service objects.
|
|
137
|
+
If you are using the `.Client` property on a Service class or a `.client`
|
|
138
|
+
property on an instance of the service, remove these properties from your code.
|
|
139
139
|
|
|
140
140
|
Upgrading example:
|
|
141
141
|
|
|
@@ -143,10 +143,15 @@ The following 1.x code:
|
|
|
143
143
|
|
|
144
144
|
```
|
|
145
145
|
var sts = new AWS.STS.Client();
|
|
146
|
+
// or
|
|
147
|
+
var sts = new AWS.STS();
|
|
148
|
+
|
|
149
|
+
sts.client.operation(...);
|
|
146
150
|
```
|
|
147
151
|
|
|
148
152
|
Should be changed to the following:
|
|
149
153
|
|
|
150
154
|
```
|
|
151
155
|
var sts = new AWS.STS();
|
|
156
|
+
sts.operation(...)
|
|
152
157
|
```
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
The bundled package of the AWS SDK for JavaScript is available under the
|
|
2
|
+
Apache License, Version 2.0:
|
|
3
|
+
|
|
4
|
+
Copyright 2012-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
5
|
+
|
|
6
|
+
Licensed under the Apache License, Version 2.0 (the "License"). You
|
|
7
|
+
may not use this file except in compliance with the License. A copy of
|
|
8
|
+
the License is located at
|
|
9
|
+
|
|
10
|
+
http://aws.amazon.com/apache2.0/
|
|
11
|
+
|
|
12
|
+
or in the "license" file accompanying this file. This file is
|
|
13
|
+
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
14
|
+
ANY KIND, either express or implied. See the License for the specific
|
|
15
|
+
language governing permissions and limitations under the License.
|
|
16
|
+
|
|
17
|
+
This product bundles browserify, which is available under a
|
|
18
|
+
"3-clause BSD" license:
|
|
19
|
+
|
|
20
|
+
Copyright Joyent, Inc. and other Node contributors.
|
|
21
|
+
|
|
22
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
|
23
|
+
copy of this software and associated documentation files (the
|
|
24
|
+
"Software"), to deal in the Software without restriction, including
|
|
25
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
26
|
+
distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
27
|
+
persons to whom the Software is furnished to do so, subject to the
|
|
28
|
+
following conditions:
|
|
29
|
+
|
|
30
|
+
The above copyright notice and this permission notice shall be included
|
|
31
|
+
in all copies or substantial portions of the Software.
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
34
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
35
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
36
|
+
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
37
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
38
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
39
|
+
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
40
|
+
|
|
41
|
+
This product bundles crypto-browserify, which is available under
|
|
42
|
+
the MIT license:
|
|
43
|
+
|
|
44
|
+
Copyright (c) 2013 Dominic Tarr
|
|
45
|
+
|
|
46
|
+
Permission is hereby granted, free of charge,
|
|
47
|
+
to any person obtaining a copy of this software and
|
|
48
|
+
associated documentation files (the "Software"), to
|
|
49
|
+
deal in the Software without restriction, including
|
|
50
|
+
without limitation the rights to use, copy, modify,
|
|
51
|
+
merge, publish, distribute, sublicense, and/or sell
|
|
52
|
+
copies of the Software, and to permit persons to whom
|
|
53
|
+
the Software is furnished to do so,
|
|
54
|
+
subject to the following conditions:
|
|
55
|
+
|
|
56
|
+
The above copyright notice and this permission notice
|
|
57
|
+
shall be included in all copies or substantial portions of the Software.
|
|
58
|
+
|
|
59
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
60
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
61
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
62
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
63
|
+
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
64
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
65
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
66
|
+
|
|
67
|
+
This product bundles MD5, SHA-1, and SHA-256 hashing algorithm components,
|
|
68
|
+
which are available under a BSD license:
|
|
69
|
+
|
|
70
|
+
Copyright (c) 1998 - 2009, Paul Johnston & Contributors
|
|
71
|
+
All rights reserved.
|
|
72
|
+
|
|
73
|
+
Redistribution and use in source and binary forms, with or without
|
|
74
|
+
modification, are permitted provided that the following conditions are met:
|
|
75
|
+
|
|
76
|
+
Redistributions of source code must retain the above copyrightnotice,
|
|
77
|
+
this list of conditions and the following disclaimer. Redistributions
|
|
78
|
+
in binary form must reproduce the above copyright notice, this list of
|
|
79
|
+
conditions and the following disclaimer in the documentation and/or
|
|
80
|
+
other materials provided with the distribution.
|
|
81
|
+
|
|
82
|
+
Neither the name of the author nor the names of its contributors may
|
|
83
|
+
be used to endorse or promote products derived from this software
|
|
84
|
+
without specific prior written permission.
|
|
85
|
+
|
|
86
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
87
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
88
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
89
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
90
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
91
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
92
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
93
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
94
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
95
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
96
|
+
THE POSSIBILITY OF SUCH DAMAGE.
|