gcloud 0.0.7 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/{packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/ext/__init__.py → .gemtest} +0 -0
- data/.rubocop.yml +17 -0
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +93 -0
- data/LICENSE +201 -674
- data/Manifest.txt +66 -0
- data/README.md +110 -12
- data/Rakefile +34 -3
- data/gcloud.gemspec +48 -17
- data/lib/gcloud.rb +8 -0
- data/lib/gcloud/backoff.rb +115 -0
- data/lib/gcloud/credentials.rb +124 -0
- data/lib/gcloud/datastore.rb +66 -0
- data/lib/gcloud/datastore/connection.rb +177 -0
- data/lib/gcloud/datastore/credentials.rb +41 -0
- data/lib/gcloud/datastore/dataset.rb +259 -0
- data/lib/gcloud/datastore/dataset/lookup_results.rb +60 -0
- data/lib/gcloud/datastore/dataset/query_results.rb +87 -0
- data/lib/gcloud/datastore/entity.rb +257 -0
- data/lib/gcloud/datastore/errors.rb +65 -0
- data/lib/gcloud/datastore/key.rb +151 -0
- data/lib/gcloud/datastore/properties.rb +102 -0
- data/lib/gcloud/datastore/proto.rb +253 -0
- data/lib/gcloud/datastore/query.rb +189 -0
- data/lib/gcloud/datastore/transaction.rb +116 -0
- data/lib/gcloud/proto/datastore_v1.pb.rb +377 -0
- data/lib/gcloud/storage.rb +78 -0
- data/lib/gcloud/storage/bucket.rb +254 -0
- data/lib/gcloud/storage/bucket/acl.rb +311 -0
- data/lib/gcloud/storage/bucket/list.rb +45 -0
- data/lib/gcloud/storage/connection.rb +358 -0
- data/{packages/gsutil/gslib/commands/__init__.py → lib/gcloud/storage/credentials.rb} +13 -2
- data/lib/gcloud/storage/errors.rb +78 -0
- data/lib/gcloud/storage/file.rb +287 -0
- data/lib/gcloud/storage/file/acl.rb +172 -0
- data/lib/gcloud/storage/file/list.rb +52 -0
- data/lib/gcloud/storage/file/verifier.rb +65 -0
- data/lib/gcloud/storage/project.rb +119 -0
- data/lib/gcloud/version.rb +5 -0
- data/{packages/gsutil/gslib/tests/testcase/__init__.py → rakelib/console.rake} +14 -4
- data/{packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.py → rakelib/manifest.rake} +11 -4
- data/{packages/gsutil/gslib/addlhelp/__init__.py → rakelib/proto.rake} +4 -2
- data/{packages/gsutil/gslib/tests/__init__.py → rakelib/rubocop.rake} +4 -2
- data/rakelib/test.rake +144 -0
- data/test/gcloud/datastore/proto/test_cursor.rb +36 -0
- data/test/gcloud/datastore/proto/test_direction.rb +60 -0
- data/test/gcloud/datastore/proto/test_operator.rb +76 -0
- data/test/gcloud/datastore/proto/test_value.rb +231 -0
- data/test/gcloud/datastore/test_connection.rb +93 -0
- data/test/gcloud/datastore/test_credentials.rb +38 -0
- data/test/gcloud/datastore/test_dataset.rb +413 -0
- data/test/gcloud/datastore/test_entity.rb +161 -0
- data/test/gcloud/datastore/test_entity_exclude.rb +225 -0
- data/test/gcloud/datastore/test_key.rb +189 -0
- data/test/gcloud/datastore/test_query.rb +271 -0
- data/test/gcloud/datastore/test_transaction.rb +121 -0
- data/test/gcloud/storage/test_backoff.rb +127 -0
- data/test/gcloud/storage/test_bucket.rb +270 -0
- data/test/gcloud/storage/test_bucket_acl.rb +253 -0
- data/test/gcloud/storage/test_default_acl.rb +256 -0
- data/test/gcloud/storage/test_file.rb +221 -0
- data/test/gcloud/storage/test_file_acl.rb +367 -0
- data/test/gcloud/storage/test_project.rb +180 -0
- data/{packages/gsutil/gslib/no_op_auth_plugin.py → test/gcloud/storage/test_storage.rb} +14 -15
- data/test/gcloud/storage/test_verifier.rb +62 -0
- data/test/gcloud/test_version.rb +8 -0
- data/test/helper.rb +91 -0
- metadata +259 -1020
- data.tar.gz.sig +0 -2
- data/CHANGELOG +0 -14
- data/Makefile +0 -13
- data/Manifest +0 -937
- data/TODO +0 -2
- data/bin/gcloud +0 -7
- data/bin/gcutil-symlink +0 -53
- data/bin/gsutil-symlink +0 -377
- data/init.rb +0 -3
- data/packages/README +0 -6
- data/packages/gcutil-1.7.1.tar.gz +0 -0
- data/packages/gcutil-1.7.1/CHANGELOG +0 -197
- data/packages/gcutil-1.7.1/LICENSE +0 -202
- data/packages/gcutil-1.7.1/VERSION +0 -1
- data/packages/gcutil-1.7.1/gcutil +0 -53
- data/packages/gcutil-1.7.1/lib/google_api_python_client/LICENSE +0 -23
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.py +0 -1
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.py +0 -743
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.py +0 -123
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.py +0 -1443
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.py +0 -172
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.py +0 -385
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.py +0 -303
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.py +0 -1
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.py +0 -32
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/appengine.py +0 -528
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.py +0 -1139
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.py +0 -105
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.py +0 -244
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/django_orm.py +0 -124
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/file.py +0 -107
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.py +0 -343
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.py +0 -379
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.py +0 -174
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.py +0 -147
- data/packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/LICENSE +0 -202
- data/packages/gcutil-1.7.1/lib/google_apputils/google/__init__.py +0 -3
- data/packages/gcutil-1.7.1/lib/google_apputils/google/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.py +0 -3
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.py +0 -356
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.py +0 -783
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/basetest.py +0 -1260
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/datelib.py +0 -421
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/debug.py +0 -60
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/file_util.py +0 -181
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/resources.py +0 -67
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/run_script_module.py +0 -217
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/setup_command.py +0 -159
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/shellutil.py +0 -49
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/stopwatch.py +0 -204
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.py +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.py +0 -140
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper_test.py +0 -149
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.py +0 -130
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth_test.py +0 -75
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.py +0 -128
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds_test.py +0 -111
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.py +0 -1808
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base_test.py +0 -1651
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta13.json +0 -2851
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta14.json +0 -3361
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.py +0 -342
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds_test.py +0 -474
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.py +0 -344
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds_test.py +0 -231
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.py +0 -274
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil +0 -89
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.py +0 -69
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.py +0 -262
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds_test.py +0 -172
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.py +0 -1506
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds_test.py +0 -1904
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.py +0 -91
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds_test.py +0 -56
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.py +0 -106
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds_test.py +0 -59
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.py +0 -96
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.py +0 -357
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_test.py +0 -84
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_api.py +0 -420
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_metadata.py +0 -58
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.py +0 -824
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds_test.py +0 -307
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.py +0 -178
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds_test.py +0 -133
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.py +0 -181
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds_test.py +0 -196
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.py +0 -38
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.py +0 -173
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds_test.py +0 -111
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.py +0 -61
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes_test.py +0 -50
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.py +0 -276
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds_test.py +0 -260
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.py +0 -266
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys_test.py +0 -128
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.py +0 -563
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.py +0 -188
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool_test.py +0 -88
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.py +0 -208
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils_test.py +0 -193
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.py +0 -246
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker_test.py +0 -271
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.py +0 -151
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds_test.py +0 -60
- data/packages/gcutil-1.7.1/lib/httplib2/LICENSE +0 -21
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.py +0 -1630
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/cacerts.txt +0 -714
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.py +0 -110
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.py +0 -438
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/iso8601/LICENSE +0 -20
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.py +0 -1
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.py +0 -102
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/test_iso8601.py +0 -111
- data/packages/gcutil-1.7.1/lib/python_gflags/AUTHORS +0 -2
- data/packages/gcutil-1.7.1/lib/python_gflags/LICENSE +0 -28
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags.py +0 -2862
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags.pyc +0 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags2man.py +0 -544
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.py +0 -187
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.pyc +0 -0
- data/packages/gsutil.tar.gz +0 -0
- data/packages/gsutil/CHECKSUM +0 -1
- data/packages/gsutil/COPYING +0 -202
- data/packages/gsutil/LICENSE.third_party +0 -295
- data/packages/gsutil/MANIFEST.in +0 -5
- data/packages/gsutil/README +0 -38
- data/packages/gsutil/README.pkg +0 -49
- data/packages/gsutil/ReleaseNotes.txt +0 -780
- data/packages/gsutil/VERSION +0 -1
- data/packages/gsutil/boto/Changelog.rst +0 -35
- data/packages/gsutil/boto/LICENSE +0 -18
- data/packages/gsutil/boto/MANIFEST.in +0 -12
- data/packages/gsutil/boto/README.rst +0 -163
- data/packages/gsutil/boto/bin/asadmin +0 -290
- data/packages/gsutil/boto/bin/bundle_image +0 -27
- data/packages/gsutil/boto/bin/cfadmin +0 -108
- data/packages/gsutil/boto/bin/cq +0 -89
- data/packages/gsutil/boto/bin/cwutil +0 -140
- data/packages/gsutil/boto/bin/elbadmin +0 -284
- data/packages/gsutil/boto/bin/fetch_file +0 -43
- data/packages/gsutil/boto/bin/glacier +0 -154
- data/packages/gsutil/boto/bin/instance_events +0 -145
- data/packages/gsutil/boto/bin/kill_instance +0 -35
- data/packages/gsutil/boto/bin/launch_instance +0 -252
- data/packages/gsutil/boto/bin/list_instances +0 -90
- data/packages/gsutil/boto/bin/lss3 +0 -77
- data/packages/gsutil/boto/bin/mturk +0 -465
- data/packages/gsutil/boto/bin/pyami_sendmail +0 -52
- data/packages/gsutil/boto/bin/route53 +0 -205
- data/packages/gsutil/boto/bin/s3put +0 -374
- data/packages/gsutil/boto/bin/sdbadmin +0 -194
- data/packages/gsutil/boto/bin/taskadmin +0 -116
- data/packages/gsutil/boto/boto/__init__.py +0 -793
- data/packages/gsutil/boto/boto/__init__.pyc +0 -0
- data/packages/gsutil/boto/boto/auth.py +0 -682
- data/packages/gsutil/boto/boto/auth.pyc +0 -0
- data/packages/gsutil/boto/boto/auth_handler.py +0 -58
- data/packages/gsutil/boto/boto/auth_handler.pyc +0 -0
- data/packages/gsutil/boto/boto/beanstalk/__init__.py +0 -65
- data/packages/gsutil/boto/boto/beanstalk/exception.py +0 -64
- data/packages/gsutil/boto/boto/beanstalk/layer1.py +0 -1153
- data/packages/gsutil/boto/boto/beanstalk/response.py +0 -703
- data/packages/gsutil/boto/boto/beanstalk/wrapper.py +0 -29
- data/packages/gsutil/boto/boto/cacerts/__init__.py +0 -22
- data/packages/gsutil/boto/boto/cacerts/__init__.pyc +0 -0
- data/packages/gsutil/boto/boto/cacerts/cacerts.txt +0 -633
- data/packages/gsutil/boto/boto/cloudformation/__init__.py +0 -68
- data/packages/gsutil/boto/boto/cloudformation/connection.py +0 -364
- data/packages/gsutil/boto/boto/cloudformation/stack.py +0 -360
- data/packages/gsutil/boto/boto/cloudformation/template.py +0 -43
- data/packages/gsutil/boto/boto/cloudfront/__init__.py +0 -324
- data/packages/gsutil/boto/boto/cloudfront/distribution.py +0 -745
- data/packages/gsutil/boto/boto/cloudfront/exception.py +0 -26
- data/packages/gsutil/boto/boto/cloudfront/identity.py +0 -122
- data/packages/gsutil/boto/boto/cloudfront/invalidation.py +0 -216
- data/packages/gsutil/boto/boto/cloudfront/logging.py +0 -38
- data/packages/gsutil/boto/boto/cloudfront/object.py +0 -48
- data/packages/gsutil/boto/boto/cloudfront/origin.py +0 -150
- data/packages/gsutil/boto/boto/cloudfront/signers.py +0 -60
- data/packages/gsutil/boto/boto/cloudsearch/__init__.py +0 -45
- data/packages/gsutil/boto/boto/cloudsearch/document.py +0 -265
- data/packages/gsutil/boto/boto/cloudsearch/domain.py +0 -394
- data/packages/gsutil/boto/boto/cloudsearch/layer1.py +0 -738
- data/packages/gsutil/boto/boto/cloudsearch/layer2.py +0 -67
- data/packages/gsutil/boto/boto/cloudsearch/optionstatus.py +0 -248
- data/packages/gsutil/boto/boto/cloudsearch/search.py +0 -365
- data/packages/gsutil/boto/boto/cloudsearch/sourceattribute.py +0 -75
- data/packages/gsutil/boto/boto/compat.py +0 -28
- data/packages/gsutil/boto/boto/compat.pyc +0 -0
- data/packages/gsutil/boto/boto/connection.py +0 -1081
- data/packages/gsutil/boto/boto/connection.pyc +0 -0
- data/packages/gsutil/boto/boto/contrib/__init__.py +0 -22
- data/packages/gsutil/boto/boto/contrib/ymlmessage.py +0 -52
- data/packages/gsutil/boto/boto/core/README +0 -58
- data/packages/gsutil/boto/boto/core/__init__.py +0 -23
- data/packages/gsutil/boto/boto/core/auth.py +0 -78
- data/packages/gsutil/boto/boto/core/credentials.py +0 -154
- data/packages/gsutil/boto/boto/core/dictresponse.py +0 -178
- data/packages/gsutil/boto/boto/core/service.py +0 -67
- data/packages/gsutil/boto/boto/datapipeline/__init__.py +0 -0
- data/packages/gsutil/boto/boto/datapipeline/exceptions.py +0 -42
- data/packages/gsutil/boto/boto/datapipeline/layer1.py +0 -546
- data/packages/gsutil/boto/boto/dynamodb/__init__.py +0 -66
- data/packages/gsutil/boto/boto/dynamodb/batch.py +0 -262
- data/packages/gsutil/boto/boto/dynamodb/condition.py +0 -170
- data/packages/gsutil/boto/boto/dynamodb/exceptions.py +0 -64
- data/packages/gsutil/boto/boto/dynamodb/item.py +0 -196
- data/packages/gsutil/boto/boto/dynamodb/layer1.py +0 -575
- data/packages/gsutil/boto/boto/dynamodb/layer2.py +0 -798
- data/packages/gsutil/boto/boto/dynamodb/schema.py +0 -112
- data/packages/gsutil/boto/boto/dynamodb/table.py +0 -540
- data/packages/gsutil/boto/boto/dynamodb/types.py +0 -326
- data/packages/gsutil/boto/boto/ec2/__init__.py +0 -96
- data/packages/gsutil/boto/boto/ec2/address.py +0 -103
- data/packages/gsutil/boto/boto/ec2/autoscale/__init__.py +0 -781
- data/packages/gsutil/boto/boto/ec2/autoscale/activity.py +0 -74
- data/packages/gsutil/boto/boto/ec2/autoscale/group.py +0 -337
- data/packages/gsutil/boto/boto/ec2/autoscale/instance.py +0 -60
- data/packages/gsutil/boto/boto/ec2/autoscale/launchconfig.py +0 -209
- data/packages/gsutil/boto/boto/ec2/autoscale/policy.py +0 -166
- data/packages/gsutil/boto/boto/ec2/autoscale/request.py +0 -38
- data/packages/gsutil/boto/boto/ec2/autoscale/scheduled.py +0 -60
- data/packages/gsutil/boto/boto/ec2/autoscale/tag.py +0 -84
- data/packages/gsutil/boto/boto/ec2/blockdevicemapping.py +0 -141
- data/packages/gsutil/boto/boto/ec2/bundleinstance.py +0 -78
- data/packages/gsutil/boto/boto/ec2/buyreservation.py +0 -84
- data/packages/gsutil/boto/boto/ec2/cloudwatch/__init__.py +0 -603
- data/packages/gsutil/boto/boto/ec2/cloudwatch/alarm.py +0 -316
- data/packages/gsutil/boto/boto/ec2/cloudwatch/datapoint.py +0 -40
- data/packages/gsutil/boto/boto/ec2/cloudwatch/dimension.py +0 -38
- data/packages/gsutil/boto/boto/ec2/cloudwatch/listelement.py +0 -31
- data/packages/gsutil/boto/boto/ec2/cloudwatch/metric.py +0 -175
- data/packages/gsutil/boto/boto/ec2/connection.py +0 -3409
- data/packages/gsutil/boto/boto/ec2/ec2object.py +0 -107
- data/packages/gsutil/boto/boto/ec2/elb/__init__.py +0 -553
- data/packages/gsutil/boto/boto/ec2/elb/healthcheck.py +0 -89
- data/packages/gsutil/boto/boto/ec2/elb/instancestate.py +0 -62
- data/packages/gsutil/boto/boto/ec2/elb/listelement.py +0 -36
- data/packages/gsutil/boto/boto/ec2/elb/listener.py +0 -75
- data/packages/gsutil/boto/boto/ec2/elb/loadbalancer.py +0 -324
- data/packages/gsutil/boto/boto/ec2/elb/policies.py +0 -89
- data/packages/gsutil/boto/boto/ec2/elb/securitygroup.py +0 -38
- data/packages/gsutil/boto/boto/ec2/group.py +0 -39
- data/packages/gsutil/boto/boto/ec2/image.py +0 -350
- data/packages/gsutil/boto/boto/ec2/instance.py +0 -661
- data/packages/gsutil/boto/boto/ec2/instanceinfo.py +0 -51
- data/packages/gsutil/boto/boto/ec2/instancestatus.py +0 -207
- data/packages/gsutil/boto/boto/ec2/keypair.py +0 -113
- data/packages/gsutil/boto/boto/ec2/launchspecification.py +0 -105
- data/packages/gsutil/boto/boto/ec2/networkinterface.py +0 -247
- data/packages/gsutil/boto/boto/ec2/placementgroup.py +0 -51
- data/packages/gsutil/boto/boto/ec2/regioninfo.py +0 -34
- data/packages/gsutil/boto/boto/ec2/reservedinstance.py +0 -227
- data/packages/gsutil/boto/boto/ec2/securitygroup.py +0 -357
- data/packages/gsutil/boto/boto/ec2/snapshot.py +0 -170
- data/packages/gsutil/boto/boto/ec2/spotdatafeedsubscription.py +0 -63
- data/packages/gsutil/boto/boto/ec2/spotinstancerequest.py +0 -188
- data/packages/gsutil/boto/boto/ec2/spotpricehistory.py +0 -55
- data/packages/gsutil/boto/boto/ec2/tag.py +0 -87
- data/packages/gsutil/boto/boto/ec2/vmtype.py +0 -58
- data/packages/gsutil/boto/boto/ec2/volume.py +0 -293
- data/packages/gsutil/boto/boto/ec2/volumestatus.py +0 -200
- data/packages/gsutil/boto/boto/ec2/zone.py +0 -80
- data/packages/gsutil/boto/boto/ecs/__init__.py +0 -90
- data/packages/gsutil/boto/boto/ecs/item.py +0 -153
- data/packages/gsutil/boto/boto/elasticache/__init__.py +0 -62
- data/packages/gsutil/boto/boto/elasticache/layer1.py +0 -1252
- data/packages/gsutil/boto/boto/elastictranscoder/__init__.py +0 -62
- data/packages/gsutil/boto/boto/elastictranscoder/exceptions.py +0 -46
- data/packages/gsutil/boto/boto/elastictranscoder/layer1.py +0 -509
- data/packages/gsutil/boto/boto/emr/__init__.py +0 -73
- data/packages/gsutil/boto/boto/emr/bootstrap_action.py +0 -44
- data/packages/gsutil/boto/boto/emr/connection.py +0 -531
- data/packages/gsutil/boto/boto/emr/emrobject.py +0 -176
- data/packages/gsutil/boto/boto/emr/instance_group.py +0 -43
- data/packages/gsutil/boto/boto/emr/step.py +0 -281
- data/packages/gsutil/boto/boto/exception.py +0 -476
- data/packages/gsutil/boto/boto/exception.pyc +0 -0
- data/packages/gsutil/boto/boto/file/README +0 -49
- data/packages/gsutil/boto/boto/file/__init__.py +0 -28
- data/packages/gsutil/boto/boto/file/bucket.py +0 -112
- data/packages/gsutil/boto/boto/file/connection.py +0 -33
- data/packages/gsutil/boto/boto/file/key.py +0 -199
- data/packages/gsutil/boto/boto/file/simpleresultset.py +0 -30
- data/packages/gsutil/boto/boto/fps/__init__.py +0 -21
- data/packages/gsutil/boto/boto/fps/connection.py +0 -369
- data/packages/gsutil/boto/boto/fps/exception.py +0 -344
- data/packages/gsutil/boto/boto/fps/response.py +0 -175
- data/packages/gsutil/boto/boto/glacier/__init__.py +0 -57
- data/packages/gsutil/boto/boto/glacier/concurrent.py +0 -409
- data/packages/gsutil/boto/boto/glacier/exceptions.py +0 -58
- data/packages/gsutil/boto/boto/glacier/job.py +0 -152
- data/packages/gsutil/boto/boto/glacier/layer1.py +0 -637
- data/packages/gsutil/boto/boto/glacier/layer2.py +0 -93
- data/packages/gsutil/boto/boto/glacier/response.py +0 -48
- data/packages/gsutil/boto/boto/glacier/utils.py +0 -163
- data/packages/gsutil/boto/boto/glacier/vault.py +0 -387
- data/packages/gsutil/boto/boto/glacier/writer.py +0 -242
- data/packages/gsutil/boto/boto/gs/__init__.py +0 -22
- data/packages/gsutil/boto/boto/gs/__init__.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/acl.py +0 -304
- data/packages/gsutil/boto/boto/gs/acl.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/bucket.py +0 -870
- data/packages/gsutil/boto/boto/gs/bucket.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/bucketlistresultset.py +0 -64
- data/packages/gsutil/boto/boto/gs/bucketlistresultset.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/connection.py +0 -103
- data/packages/gsutil/boto/boto/gs/connection.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/cors.py +0 -169
- data/packages/gsutil/boto/boto/gs/cors.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/key.py +0 -704
- data/packages/gsutil/boto/boto/gs/key.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/resumable_upload_handler.py +0 -659
- data/packages/gsutil/boto/boto/gs/resumable_upload_handler.pyc +0 -0
- data/packages/gsutil/boto/boto/gs/user.py +0 -54
- data/packages/gsutil/boto/boto/gs/user.pyc +0 -0
- data/packages/gsutil/boto/boto/handler.py +0 -44
- data/packages/gsutil/boto/boto/handler.pyc +0 -0
- data/packages/gsutil/boto/boto/https_connection.py +0 -124
- data/packages/gsutil/boto/boto/https_connection.pyc +0 -0
- data/packages/gsutil/boto/boto/iam/__init__.py +0 -74
- data/packages/gsutil/boto/boto/iam/connection.py +0 -1317
- data/packages/gsutil/boto/boto/iam/summarymap.py +0 -42
- data/packages/gsutil/boto/boto/jsonresponse.py +0 -163
- data/packages/gsutil/boto/boto/jsonresponse.pyc +0 -0
- data/packages/gsutil/boto/boto/manage/__init__.py +0 -23
- data/packages/gsutil/boto/boto/manage/cmdshell.py +0 -241
- data/packages/gsutil/boto/boto/manage/propget.py +0 -64
- data/packages/gsutil/boto/boto/manage/server.py +0 -556
- data/packages/gsutil/boto/boto/manage/task.py +0 -175
- data/packages/gsutil/boto/boto/manage/test_manage.py +0 -34
- data/packages/gsutil/boto/boto/manage/volume.py +0 -420
- data/packages/gsutil/boto/boto/mashups/__init__.py +0 -23
- data/packages/gsutil/boto/boto/mashups/interactive.py +0 -97
- data/packages/gsutil/boto/boto/mashups/iobject.py +0 -115
- data/packages/gsutil/boto/boto/mashups/order.py +0 -211
- data/packages/gsutil/boto/boto/mashups/server.py +0 -395
- data/packages/gsutil/boto/boto/mturk/__init__.py +0 -23
- data/packages/gsutil/boto/boto/mturk/connection.py +0 -1027
- data/packages/gsutil/boto/boto/mturk/layoutparam.py +0 -55
- data/packages/gsutil/boto/boto/mturk/notification.py +0 -103
- data/packages/gsutil/boto/boto/mturk/price.py +0 -48
- data/packages/gsutil/boto/boto/mturk/qualification.py +0 -137
- data/packages/gsutil/boto/boto/mturk/question.py +0 -455
- data/packages/gsutil/boto/boto/mws/__init__.py +0 -21
- data/packages/gsutil/boto/boto/mws/connection.py +0 -813
- data/packages/gsutil/boto/boto/mws/exception.py +0 -75
- data/packages/gsutil/boto/boto/mws/response.py +0 -655
- data/packages/gsutil/boto/boto/plugin.py +0 -90
- data/packages/gsutil/boto/boto/plugin.pyc +0 -0
- data/packages/gsutil/boto/boto/provider.py +0 -337
- data/packages/gsutil/boto/boto/provider.pyc +0 -0
- data/packages/gsutil/boto/boto/pyami/__init__.py +0 -22
- data/packages/gsutil/boto/boto/pyami/__init__.pyc +0 -0
- data/packages/gsutil/boto/boto/pyami/bootstrap.py +0 -134
- data/packages/gsutil/boto/boto/pyami/config.py +0 -229
- data/packages/gsutil/boto/boto/pyami/config.pyc +0 -0
- data/packages/gsutil/boto/boto/pyami/copybot.cfg +0 -60
- data/packages/gsutil/boto/boto/pyami/copybot.py +0 -97
- data/packages/gsutil/boto/boto/pyami/helloworld.py +0 -28
- data/packages/gsutil/boto/boto/pyami/installers/__init__.py +0 -64
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/__init__.py +0 -22
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/apache.py +0 -43
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/ebs.py +0 -238
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/installer.py +0 -96
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/mysql.py +0 -109
- data/packages/gsutil/boto/boto/pyami/installers/ubuntu/trac.py +0 -139
- data/packages/gsutil/boto/boto/pyami/launch_ami.py +0 -178
- data/packages/gsutil/boto/boto/pyami/scriptbase.py +0 -44
- data/packages/gsutil/boto/boto/pyami/startup.py +0 -60
- data/packages/gsutil/boto/boto/rds/__init__.py +0 -1194
- data/packages/gsutil/boto/boto/rds/dbinstance.py +0 -357
- data/packages/gsutil/boto/boto/rds/dbsecuritygroup.py +0 -177
- data/packages/gsutil/boto/boto/rds/dbsnapshot.py +0 -108
- data/packages/gsutil/boto/boto/rds/event.py +0 -49
- data/packages/gsutil/boto/boto/rds/parametergroup.py +0 -201
- data/packages/gsutil/boto/boto/rds/regioninfo.py +0 -32
- data/packages/gsutil/boto/boto/regioninfo.py +0 -63
- data/packages/gsutil/boto/boto/regioninfo.pyc +0 -0
- data/packages/gsutil/boto/boto/resultset.py +0 -169
- data/packages/gsutil/boto/boto/resultset.pyc +0 -0
- data/packages/gsutil/boto/boto/roboto/__init__.py +0 -1
- data/packages/gsutil/boto/boto/roboto/awsqueryrequest.py +0 -504
- data/packages/gsutil/boto/boto/roboto/awsqueryservice.py +0 -121
- data/packages/gsutil/boto/boto/roboto/param.py +0 -147
- data/packages/gsutil/boto/boto/route53/__init__.py +0 -75
- data/packages/gsutil/boto/boto/route53/connection.py +0 -403
- data/packages/gsutil/boto/boto/route53/exception.py +0 -27
- data/packages/gsutil/boto/boto/route53/hostedzone.py +0 -56
- data/packages/gsutil/boto/boto/route53/record.py +0 -306
- data/packages/gsutil/boto/boto/route53/status.py +0 -42
- data/packages/gsutil/boto/boto/route53/zone.py +0 -412
- data/packages/gsutil/boto/boto/s3/__init__.py +0 -84
- data/packages/gsutil/boto/boto/s3/__init__.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/acl.py +0 -164
- data/packages/gsutil/boto/boto/s3/acl.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/bucket.py +0 -1634
- data/packages/gsutil/boto/boto/s3/bucket.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/bucketlistresultset.py +0 -139
- data/packages/gsutil/boto/boto/s3/bucketlistresultset.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/bucketlogging.py +0 -83
- data/packages/gsutil/boto/boto/s3/bucketlogging.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/connection.py +0 -540
- data/packages/gsutil/boto/boto/s3/connection.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/cors.py +0 -210
- data/packages/gsutil/boto/boto/s3/cors.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/deletemarker.py +0 -55
- data/packages/gsutil/boto/boto/s3/deletemarker.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/key.py +0 -1712
- data/packages/gsutil/boto/boto/s3/key.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/keyfile.py +0 -134
- data/packages/gsutil/boto/boto/s3/keyfile.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/lifecycle.py +0 -231
- data/packages/gsutil/boto/boto/s3/lifecycle.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/multidelete.py +0 -138
- data/packages/gsutil/boto/boto/s3/multidelete.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/multipart.py +0 -315
- data/packages/gsutil/boto/boto/s3/multipart.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/prefix.py +0 -42
- data/packages/gsutil/boto/boto/s3/prefix.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/resumable_download_handler.py +0 -339
- data/packages/gsutil/boto/boto/s3/resumable_download_handler.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/tagging.py +0 -71
- data/packages/gsutil/boto/boto/s3/tagging.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/user.py +0 -49
- data/packages/gsutil/boto/boto/s3/user.pyc +0 -0
- data/packages/gsutil/boto/boto/s3/website.py +0 -237
- data/packages/gsutil/boto/boto/s3/website.pyc +0 -0
- data/packages/gsutil/boto/boto/sdb/__init__.py +0 -67
- data/packages/gsutil/boto/boto/sdb/connection.py +0 -617
- data/packages/gsutil/boto/boto/sdb/db/__init__.py +0 -20
- data/packages/gsutil/boto/boto/sdb/db/blob.py +0 -75
- data/packages/gsutil/boto/boto/sdb/db/key.py +0 -59
- data/packages/gsutil/boto/boto/sdb/db/manager/__init__.py +0 -85
- data/packages/gsutil/boto/boto/sdb/db/manager/sdbmanager.py +0 -732
- data/packages/gsutil/boto/boto/sdb/db/manager/xmlmanager.py +0 -517
- data/packages/gsutil/boto/boto/sdb/db/model.py +0 -294
- data/packages/gsutil/boto/boto/sdb/db/property.py +0 -703
- data/packages/gsutil/boto/boto/sdb/db/query.py +0 -85
- data/packages/gsutil/boto/boto/sdb/db/sequence.py +0 -226
- data/packages/gsutil/boto/boto/sdb/db/test_db.py +0 -231
- data/packages/gsutil/boto/boto/sdb/domain.py +0 -377
- data/packages/gsutil/boto/boto/sdb/item.py +0 -181
- data/packages/gsutil/boto/boto/sdb/queryresultset.py +0 -92
- data/packages/gsutil/boto/boto/sdb/regioninfo.py +0 -32
- data/packages/gsutil/boto/boto/services/__init__.py +0 -23
- data/packages/gsutil/boto/boto/services/bs.py +0 -179
- data/packages/gsutil/boto/boto/services/message.py +0 -58
- data/packages/gsutil/boto/boto/services/result.py +0 -136
- data/packages/gsutil/boto/boto/services/service.py +0 -161
- data/packages/gsutil/boto/boto/services/servicedef.py +0 -91
- data/packages/gsutil/boto/boto/services/sonofmmm.cfg +0 -43
- data/packages/gsutil/boto/boto/services/sonofmmm.py +0 -81
- data/packages/gsutil/boto/boto/services/submit.py +0 -88
- data/packages/gsutil/boto/boto/ses/__init__.py +0 -54
- data/packages/gsutil/boto/boto/ses/connection.py +0 -521
- data/packages/gsutil/boto/boto/ses/exceptions.py +0 -77
- data/packages/gsutil/boto/boto/sns/__init__.py +0 -78
- data/packages/gsutil/boto/boto/sns/connection.py +0 -431
- data/packages/gsutil/boto/boto/sqs/__init__.py +0 -56
- data/packages/gsutil/boto/boto/sqs/attributes.py +0 -46
- data/packages/gsutil/boto/boto/sqs/batchresults.py +0 -95
- data/packages/gsutil/boto/boto/sqs/connection.py +0 -417
- data/packages/gsutil/boto/boto/sqs/jsonmessage.py +0 -43
- data/packages/gsutil/boto/boto/sqs/message.py +0 -253
- data/packages/gsutil/boto/boto/sqs/queue.py +0 -478
- data/packages/gsutil/boto/boto/sqs/regioninfo.py +0 -32
- data/packages/gsutil/boto/boto/storage_uri.py +0 -835
- data/packages/gsutil/boto/boto/storage_uri.pyc +0 -0
- data/packages/gsutil/boto/boto/sts/__init__.py +0 -55
- data/packages/gsutil/boto/boto/sts/connection.py +0 -207
- data/packages/gsutil/boto/boto/sts/credentials.py +0 -215
- data/packages/gsutil/boto/boto/swf/__init__.py +0 -60
- data/packages/gsutil/boto/boto/swf/exceptions.py +0 -44
- data/packages/gsutil/boto/boto/swf/layer1.py +0 -1512
- data/packages/gsutil/boto/boto/swf/layer1_decisions.py +0 -287
- data/packages/gsutil/boto/boto/swf/layer2.py +0 -342
- data/packages/gsutil/boto/boto/utils.py +0 -927
- data/packages/gsutil/boto/boto/utils.pyc +0 -0
- data/packages/gsutil/boto/boto/vpc/__init__.py +0 -910
- data/packages/gsutil/boto/boto/vpc/customergateway.py +0 -54
- data/packages/gsutil/boto/boto/vpc/dhcpoptions.py +0 -72
- data/packages/gsutil/boto/boto/vpc/internetgateway.py +0 -72
- data/packages/gsutil/boto/boto/vpc/routetable.py +0 -109
- data/packages/gsutil/boto/boto/vpc/subnet.py +0 -57
- data/packages/gsutil/boto/boto/vpc/vpc.py +0 -54
- data/packages/gsutil/boto/boto/vpc/vpnconnection.py +0 -60
- data/packages/gsutil/boto/boto/vpc/vpngateway.py +0 -83
- data/packages/gsutil/boto/docs/BotoCheatSheet.pdf +0 -0
- data/packages/gsutil/boto/docs/Makefile +0 -89
- data/packages/gsutil/boto/docs/make.bat +0 -113
- data/packages/gsutil/boto/docs/source/_templates/layout.html +0 -3
- data/packages/gsutil/boto/docs/source/autoscale_tut.rst +0 -220
- data/packages/gsutil/boto/docs/source/boto_config_tut.rst +0 -125
- data/packages/gsutil/boto/docs/source/boto_theme/static/boto.css_t +0 -239
- data/packages/gsutil/boto/docs/source/boto_theme/static/pygments.css +0 -61
- data/packages/gsutil/boto/docs/source/boto_theme/theme.conf +0 -3
- data/packages/gsutil/boto/docs/source/cloudfront_tut.rst +0 -196
- data/packages/gsutil/boto/docs/source/cloudsearch_tut.rst +0 -411
- data/packages/gsutil/boto/docs/source/cloudwatch_tut.rst +0 -116
- data/packages/gsutil/boto/docs/source/conf.py +0 -32
- data/packages/gsutil/boto/docs/source/contributing.rst +0 -204
- data/packages/gsutil/boto/docs/source/documentation.rst +0 -59
- data/packages/gsutil/boto/docs/source/dynamodb_tut.rst +0 -339
- data/packages/gsutil/boto/docs/source/ec2_tut.rst +0 -86
- data/packages/gsutil/boto/docs/source/elb_tut.rst +0 -257
- data/packages/gsutil/boto/docs/source/emr_tut.rst +0 -108
- data/packages/gsutil/boto/docs/source/index.rst +0 -146
- data/packages/gsutil/boto/docs/source/rds_tut.rst +0 -108
- data/packages/gsutil/boto/docs/source/ref/autoscale.rst +0 -62
- data/packages/gsutil/boto/docs/source/ref/beanstalk.rst +0 -26
- data/packages/gsutil/boto/docs/source/ref/boto.rst +0 -47
- data/packages/gsutil/boto/docs/source/ref/cloudformation.rst +0 -34
- data/packages/gsutil/boto/docs/source/ref/cloudfront.rst +0 -68
- data/packages/gsutil/boto/docs/source/ref/cloudsearch.rst +0 -59
- data/packages/gsutil/boto/docs/source/ref/cloudwatch.rst +0 -27
- data/packages/gsutil/boto/docs/source/ref/contrib.rst +0 -32
- data/packages/gsutil/boto/docs/source/ref/datapipeline.rst +0 -26
- data/packages/gsutil/boto/docs/source/ref/dynamodb.rst +0 -61
- data/packages/gsutil/boto/docs/source/ref/ec2.rst +0 -140
- data/packages/gsutil/boto/docs/source/ref/ecs.rst +0 -19
- data/packages/gsutil/boto/docs/source/ref/elasticache.rst +0 -19
- data/packages/gsutil/boto/docs/source/ref/elastictranscoder.rst +0 -26
- data/packages/gsutil/boto/docs/source/ref/elb.rst +0 -47
- data/packages/gsutil/boto/docs/source/ref/emr.rst +0 -34
- data/packages/gsutil/boto/docs/source/ref/file.rst +0 -34
- data/packages/gsutil/boto/docs/source/ref/fps.rst +0 -19
- data/packages/gsutil/boto/docs/source/ref/glacier.rst +0 -63
- data/packages/gsutil/boto/docs/source/ref/gs.rst +0 -72
- data/packages/gsutil/boto/docs/source/ref/iam.rst +0 -27
- data/packages/gsutil/boto/docs/source/ref/index.rst +0 -40
- data/packages/gsutil/boto/docs/source/ref/manage.rst +0 -47
- data/packages/gsutil/boto/docs/source/ref/mturk.rst +0 -54
- data/packages/gsutil/boto/docs/source/ref/mws.rst +0 -33
- data/packages/gsutil/boto/docs/source/ref/pyami.rst +0 -103
- data/packages/gsutil/boto/docs/source/ref/rds.rst +0 -47
- data/packages/gsutil/boto/docs/source/ref/route53.rst +0 -34
- data/packages/gsutil/boto/docs/source/ref/s3.rst +0 -111
- data/packages/gsutil/boto/docs/source/ref/sdb.rst +0 -45
- data/packages/gsutil/boto/docs/source/ref/sdb_db.rst +0 -83
- data/packages/gsutil/boto/docs/source/ref/services.rst +0 -61
- data/packages/gsutil/boto/docs/source/ref/ses.rst +0 -21
- data/packages/gsutil/boto/docs/source/ref/sns.rst +0 -17
- data/packages/gsutil/boto/docs/source/ref/sqs.rst +0 -61
- data/packages/gsutil/boto/docs/source/ref/sts.rst +0 -25
- data/packages/gsutil/boto/docs/source/ref/swf.rst +0 -22
- data/packages/gsutil/boto/docs/source/ref/vpc.rst +0 -54
- data/packages/gsutil/boto/docs/source/s3_tut.rst +0 -450
- data/packages/gsutil/boto/docs/source/security_groups.rst +0 -82
- data/packages/gsutil/boto/docs/source/ses_tut.rst +0 -171
- data/packages/gsutil/boto/docs/source/simpledb_tut.rst +0 -188
- data/packages/gsutil/boto/docs/source/sqs_tut.rst +0 -246
- data/packages/gsutil/boto/docs/source/vpc_tut.rst +0 -100
- data/packages/gsutil/boto/pylintrc +0 -305
- data/packages/gsutil/boto/requirements.txt +0 -10
- data/packages/gsutil/boto/setup.py +0 -89
- data/packages/gsutil/boto/tests/__init__.py +0 -20
- data/packages/gsutil/boto/tests/db/test_lists.py +0 -96
- data/packages/gsutil/boto/tests/db/test_password.py +0 -128
- data/packages/gsutil/boto/tests/db/test_query.py +0 -152
- data/packages/gsutil/boto/tests/db/test_sequence.py +0 -109
- data/packages/gsutil/boto/tests/devpay/__init__.py +0 -0
- data/packages/gsutil/boto/tests/devpay/test_s3.py +0 -181
- data/packages/gsutil/boto/tests/fps/__init__.py +0 -0
- data/packages/gsutil/boto/tests/fps/test.py +0 -100
- data/packages/gsutil/boto/tests/fps/test_verify_signature.py +0 -12
- data/packages/gsutil/boto/tests/integration/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/beanstalk/test_wrapper.py +0 -209
- data/packages/gsutil/boto/tests/integration/cloudformation/__init__.py +0 -21
- data/packages/gsutil/boto/tests/integration/cloudformation/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/cloudformation/test_connection.py +0 -110
- data/packages/gsutil/boto/tests/integration/cloudsearch/__init__.py +0 -21
- data/packages/gsutil/boto/tests/integration/cloudsearch/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/datapipeline/test_layer1.py +0 -122
- data/packages/gsutil/boto/tests/integration/dynamodb/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/dynamodb/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/dynamodb/test_layer1.py +0 -266
- data/packages/gsutil/boto/tests/integration/dynamodb/test_layer2.py +0 -484
- data/packages/gsutil/boto/tests/integration/dynamodb/test_table.py +0 -84
- data/packages/gsutil/boto/tests/integration/ec2/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/ec2/autoscale/__init__.py +0 -21
- data/packages/gsutil/boto/tests/integration/ec2/autoscale/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/ec2/autoscale/test_connection.py +0 -167
- data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/ec2/cloudwatch/test_connection.py +0 -277
- data/packages/gsutil/boto/tests/integration/ec2/elb/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/ec2/elb/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/ec2/elb/test_connection.py +0 -130
- data/packages/gsutil/boto/tests/integration/ec2/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/ec2/test_connection.py +0 -192
- data/packages/gsutil/boto/tests/integration/ec2/vpc/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/ec2/vpc/test_connection.py +0 -95
- data/packages/gsutil/boto/tests/integration/elasticache/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/elasticache/test_layer1.py +0 -67
- data/packages/gsutil/boto/tests/integration/elastictranscoder/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/elastictranscoder/test_cert_verification.py +0 -35
- data/packages/gsutil/boto/tests/integration/elastictranscoder/test_layer1.py +0 -115
- data/packages/gsutil/boto/tests/integration/emr/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/emr/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/glacier/__init__.py +0 -22
- data/packages/gsutil/boto/tests/integration/glacier/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/glacier/test_layer1.py +0 -44
- data/packages/gsutil/boto/tests/integration/glacier/test_layer2.py +0 -45
- data/packages/gsutil/boto/tests/integration/gs/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/gs/cb_test_harness.py +0 -71
- data/packages/gsutil/boto/tests/integration/gs/test_basic.py +0 -379
- data/packages/gsutil/boto/tests/integration/gs/test_generation_conditionals.py +0 -399
- data/packages/gsutil/boto/tests/integration/gs/test_resumable_downloads.py +0 -358
- data/packages/gsutil/boto/tests/integration/gs/test_resumable_uploads.py +0 -525
- data/packages/gsutil/boto/tests/integration/gs/test_storage_uri.py +0 -125
- data/packages/gsutil/boto/tests/integration/gs/test_versioning.py +0 -268
- data/packages/gsutil/boto/tests/integration/gs/testcase.py +0 -116
- data/packages/gsutil/boto/tests/integration/gs/util.py +0 -63
- data/packages/gsutil/boto/tests/integration/iam/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/iam/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/mws/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/mws/test.py +0 -100
- data/packages/gsutil/boto/tests/integration/rds/__init__.py +0 -21
- data/packages/gsutil/boto/tests/integration/rds/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/route53/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/route53/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/route53/test_zone.py +0 -132
- data/packages/gsutil/boto/tests/integration/s3/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/s3/mock_storage_service.py +0 -589
- data/packages/gsutil/boto/tests/integration/s3/other_cacerts.txt +0 -70
- data/packages/gsutil/boto/tests/integration/s3/test_bucket.py +0 -263
- data/packages/gsutil/boto/tests/integration/s3/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/s3/test_connection.py +0 -245
- data/packages/gsutil/boto/tests/integration/s3/test_cors.py +0 -78
- data/packages/gsutil/boto/tests/integration/s3/test_encryption.py +0 -115
- data/packages/gsutil/boto/tests/integration/s3/test_https_cert_validation.py +0 -141
- data/packages/gsutil/boto/tests/integration/s3/test_key.py +0 -375
- data/packages/gsutil/boto/tests/integration/s3/test_mfa.py +0 -95
- data/packages/gsutil/boto/tests/integration/s3/test_multidelete.py +0 -181
- data/packages/gsutil/boto/tests/integration/s3/test_multipart.py +0 -139
- data/packages/gsutil/boto/tests/integration/s3/test_pool.py +0 -246
- data/packages/gsutil/boto/tests/integration/s3/test_versioning.py +0 -158
- data/packages/gsutil/boto/tests/integration/sdb/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/sdb/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/sdb/test_connection.py +0 -119
- data/packages/gsutil/boto/tests/integration/ses/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/ses/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/ses/test_connection.py +0 -38
- data/packages/gsutil/boto/tests/integration/sns/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/sns/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/sqs/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/sqs/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/sqs/test_connection.py +0 -217
- data/packages/gsutil/boto/tests/integration/sts/__init__.py +0 -20
- data/packages/gsutil/boto/tests/integration/sts/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/sts/test_session_token.py +0 -65
- data/packages/gsutil/boto/tests/integration/swf/__init__.py +0 -0
- data/packages/gsutil/boto/tests/integration/swf/test_cert_verification.py +0 -40
- data/packages/gsutil/boto/tests/integration/swf/test_layer1.py +0 -246
- data/packages/gsutil/boto/tests/integration/swf/test_layer1_workflow_execution.py +0 -173
- data/packages/gsutil/boto/tests/mturk/__init__.py +0 -0
- data/packages/gsutil/boto/tests/mturk/_init_environment.py +0 -28
- data/packages/gsutil/boto/tests/mturk/all_tests.py +0 -24
- data/packages/gsutil/boto/tests/mturk/cleanup_tests.py +0 -47
- data/packages/gsutil/boto/tests/mturk/common.py +0 -45
- data/packages/gsutil/boto/tests/mturk/create_free_text_question_regex.doctest +0 -100
- data/packages/gsutil/boto/tests/mturk/create_hit.doctest +0 -92
- data/packages/gsutil/boto/tests/mturk/create_hit_binary.doctest +0 -94
- data/packages/gsutil/boto/tests/mturk/create_hit_external.py +0 -21
- data/packages/gsutil/boto/tests/mturk/create_hit_from_hit_type.doctest +0 -103
- data/packages/gsutil/boto/tests/mturk/create_hit_test.py +0 -21
- data/packages/gsutil/boto/tests/mturk/create_hit_with_qualifications.py +0 -16
- data/packages/gsutil/boto/tests/mturk/hit_persistence.py +0 -27
- data/packages/gsutil/boto/tests/mturk/mocks.py +0 -11
- data/packages/gsutil/boto/tests/mturk/reviewable_hits.doctest +0 -129
- data/packages/gsutil/boto/tests/mturk/run-doctest.py +0 -13
- data/packages/gsutil/boto/tests/mturk/search_hits.doctest +0 -16
- data/packages/gsutil/boto/tests/mturk/selenium_support.py +0 -61
- data/packages/gsutil/boto/tests/mturk/support.py +0 -7
- data/packages/gsutil/boto/tests/mturk/test_disable_hit.py +0 -11
- data/packages/gsutil/boto/tests/test.py +0 -59
- data/packages/gsutil/boto/tests/unit/__init__.py +0 -79
- data/packages/gsutil/boto/tests/unit/auth/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/auth/test_sigv4.py +0 -73
- data/packages/gsutil/boto/tests/unit/beanstalk/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/beanstalk/test_layer1.py +0 -128
- data/packages/gsutil/boto/tests/unit/cloudformation/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/cloudformation/test_connection.py +0 -605
- data/packages/gsutil/boto/tests/unit/cloudformation/test_stack.py +0 -63
- data/packages/gsutil/boto/tests/unit/cloudfront/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/cloudfront/test_invalidation_list.py +0 -113
- data/packages/gsutil/boto/tests/unit/cloudfront/test_signed_urls.py +0 -354
- data/packages/gsutil/boto/tests/unit/cloudsearch/__init__.py +0 -1
- data/packages/gsutil/boto/tests/unit/cloudsearch/test_connection.py +0 -241
- data/packages/gsutil/boto/tests/unit/cloudsearch/test_document.py +0 -324
- data/packages/gsutil/boto/tests/unit/cloudsearch/test_search.py +0 -325
- data/packages/gsutil/boto/tests/unit/dynamodb/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/dynamodb/test_batch.py +0 -103
- data/packages/gsutil/boto/tests/unit/dynamodb/test_layer2.py +0 -119
- data/packages/gsutil/boto/tests/unit/dynamodb/test_types.py +0 -82
- data/packages/gsutil/boto/tests/unit/ec2/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/ec2/autoscale/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/ec2/autoscale/test_group.py +0 -162
- data/packages/gsutil/boto/tests/unit/ec2/test_address.py +0 -39
- data/packages/gsutil/boto/tests/unit/ec2/test_blockdevicemapping.py +0 -79
- data/packages/gsutil/boto/tests/unit/ec2/test_connection.py +0 -480
- data/packages/gsutil/boto/tests/unit/ec2/test_instance.py +0 -243
- data/packages/gsutil/boto/tests/unit/ec2/test_networkinterface.py +0 -140
- data/packages/gsutil/boto/tests/unit/ec2/test_volume.py +0 -248
- data/packages/gsutil/boto/tests/unit/emr/test_emr_responses.py +0 -373
- data/packages/gsutil/boto/tests/unit/glacier/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/glacier/test_concurrent.py +0 -120
- data/packages/gsutil/boto/tests/unit/glacier/test_job.py +0 -60
- data/packages/gsutil/boto/tests/unit/glacier/test_layer1.py +0 -98
- data/packages/gsutil/boto/tests/unit/glacier/test_layer2.py +0 -266
- data/packages/gsutil/boto/tests/unit/glacier/test_utils.py +0 -116
- data/packages/gsutil/boto/tests/unit/glacier/test_vault.py +0 -100
- data/packages/gsutil/boto/tests/unit/glacier/test_writer.py +0 -185
- data/packages/gsutil/boto/tests/unit/provider/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/provider/test_provider.py +0 -176
- data/packages/gsutil/boto/tests/unit/rds/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/rds/test_connection.py +0 -131
- data/packages/gsutil/boto/tests/unit/s3/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/s3/test_cors_configuration.py +0 -77
- data/packages/gsutil/boto/tests/unit/s3/test_key.py +0 -75
- data/packages/gsutil/boto/tests/unit/s3/test_keyfile.py +0 -101
- data/packages/gsutil/boto/tests/unit/s3/test_lifecycle.py +0 -97
- data/packages/gsutil/boto/tests/unit/s3/test_tagging.py +0 -47
- data/packages/gsutil/boto/tests/unit/s3/test_uri.py +0 -257
- data/packages/gsutil/boto/tests/unit/s3/test_website.py +0 -188
- data/packages/gsutil/boto/tests/unit/sns/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/sns/test_connection.py +0 -99
- data/packages/gsutil/boto/tests/unit/sqs/__init__.py +0 -0
- data/packages/gsutil/boto/tests/unit/sqs/test_connection.py +0 -98
- data/packages/gsutil/boto/tests/unit/sqs/test_queue.py +0 -40
- data/packages/gsutil/boto/tests/unit/sts/test_connection.py +0 -74
- data/packages/gsutil/boto/tests/unit/test_connection.py +0 -60
- data/packages/gsutil/boto/tests/unit/utils/test_utils.py +0 -109
- data/packages/gsutil/boto/tox.ini +0 -8
- data/packages/gsutil/gslib/README +0 -5
- data/packages/gsutil/gslib/__init__.py +0 -22
- data/packages/gsutil/gslib/__init__.pyc +0 -0
- data/packages/gsutil/gslib/addlhelp/acls.py +0 -234
- data/packages/gsutil/gslib/addlhelp/anon.py +0 -57
- data/packages/gsutil/gslib/addlhelp/command_opts.py +0 -116
- data/packages/gsutil/gslib/addlhelp/dev.py +0 -139
- data/packages/gsutil/gslib/addlhelp/metadata.py +0 -186
- data/packages/gsutil/gslib/addlhelp/naming.py +0 -173
- data/packages/gsutil/gslib/addlhelp/prod.py +0 -160
- data/packages/gsutil/gslib/addlhelp/projects.py +0 -130
- data/packages/gsutil/gslib/addlhelp/subdirs.py +0 -110
- data/packages/gsutil/gslib/addlhelp/support.py +0 -86
- data/packages/gsutil/gslib/addlhelp/versioning.py +0 -242
- data/packages/gsutil/gslib/addlhelp/wildcards.py +0 -170
- data/packages/gsutil/gslib/bucket_listing_ref.py +0 -175
- data/packages/gsutil/gslib/bucket_listing_ref.pyc +0 -0
- data/packages/gsutil/gslib/command.py +0 -722
- data/packages/gsutil/gslib/command.pyc +0 -0
- data/packages/gsutil/gslib/command_runner.py +0 -101
- data/packages/gsutil/gslib/command_runner.pyc +0 -0
- data/packages/gsutil/gslib/commands/__init__.pyc +0 -0
- data/packages/gsutil/gslib/commands/cat.py +0 -131
- data/packages/gsutil/gslib/commands/cat.pyc +0 -0
- data/packages/gsutil/gslib/commands/chacl.py +0 -532
- data/packages/gsutil/gslib/commands/chacl.pyc +0 -0
- data/packages/gsutil/gslib/commands/config.py +0 -694
- data/packages/gsutil/gslib/commands/config.pyc +0 -0
- data/packages/gsutil/gslib/commands/cp.py +0 -1818
- data/packages/gsutil/gslib/commands/cp.pyc +0 -0
- data/packages/gsutil/gslib/commands/disablelogging.py +0 -101
- data/packages/gsutil/gslib/commands/disablelogging.pyc +0 -0
- data/packages/gsutil/gslib/commands/enablelogging.py +0 -149
- data/packages/gsutil/gslib/commands/enablelogging.pyc +0 -0
- data/packages/gsutil/gslib/commands/getacl.py +0 -82
- data/packages/gsutil/gslib/commands/getacl.pyc +0 -0
- data/packages/gsutil/gslib/commands/getcors.py +0 -121
- data/packages/gsutil/gslib/commands/getcors.pyc +0 -0
- data/packages/gsutil/gslib/commands/getdefacl.py +0 -86
- data/packages/gsutil/gslib/commands/getdefacl.pyc +0 -0
- data/packages/gsutil/gslib/commands/getlogging.py +0 -137
- data/packages/gsutil/gslib/commands/getlogging.pyc +0 -0
- data/packages/gsutil/gslib/commands/getversioning.py +0 -116
- data/packages/gsutil/gslib/commands/getversioning.pyc +0 -0
- data/packages/gsutil/gslib/commands/getwebcfg.py +0 -122
- data/packages/gsutil/gslib/commands/getwebcfg.pyc +0 -0
- data/packages/gsutil/gslib/commands/help.py +0 -218
- data/packages/gsutil/gslib/commands/help.pyc +0 -0
- data/packages/gsutil/gslib/commands/ls.py +0 -578
- data/packages/gsutil/gslib/commands/ls.pyc +0 -0
- data/packages/gsutil/gslib/commands/mb.py +0 -172
- data/packages/gsutil/gslib/commands/mb.pyc +0 -0
- data/packages/gsutil/gslib/commands/mv.py +0 -159
- data/packages/gsutil/gslib/commands/mv.pyc +0 -0
- data/packages/gsutil/gslib/commands/perfdiag.py +0 -903
- data/packages/gsutil/gslib/commands/perfdiag.pyc +0 -0
- data/packages/gsutil/gslib/commands/rb.py +0 -113
- data/packages/gsutil/gslib/commands/rb.pyc +0 -0
- data/packages/gsutil/gslib/commands/rm.py +0 -239
- data/packages/gsutil/gslib/commands/rm.pyc +0 -0
- data/packages/gsutil/gslib/commands/setacl.py +0 -138
- data/packages/gsutil/gslib/commands/setacl.pyc +0 -0
- data/packages/gsutil/gslib/commands/setcors.py +0 -145
- data/packages/gsutil/gslib/commands/setcors.pyc +0 -0
- data/packages/gsutil/gslib/commands/setdefacl.py +0 -105
- data/packages/gsutil/gslib/commands/setdefacl.pyc +0 -0
- data/packages/gsutil/gslib/commands/setmeta.py +0 -428
- data/packages/gsutil/gslib/commands/setmeta.pyc +0 -0
- data/packages/gsutil/gslib/commands/setversioning.py +0 -114
- data/packages/gsutil/gslib/commands/setversioning.pyc +0 -0
- data/packages/gsutil/gslib/commands/setwebcfg.py +0 -190
- data/packages/gsutil/gslib/commands/setwebcfg.pyc +0 -0
- data/packages/gsutil/gslib/commands/test.py +0 -228
- data/packages/gsutil/gslib/commands/test.pyc +0 -0
- data/packages/gsutil/gslib/commands/update.py +0 -305
- data/packages/gsutil/gslib/commands/update.pyc +0 -0
- data/packages/gsutil/gslib/commands/version.py +0 -150
- data/packages/gsutil/gslib/commands/version.pyc +0 -0
- data/packages/gsutil/gslib/exception.py +0 -76
- data/packages/gsutil/gslib/exception.pyc +0 -0
- data/packages/gsutil/gslib/help_provider.py +0 -81
- data/packages/gsutil/gslib/help_provider.pyc +0 -0
- data/packages/gsutil/gslib/name_expansion.py +0 -550
- data/packages/gsutil/gslib/name_expansion.pyc +0 -0
- data/packages/gsutil/gslib/plurality_checkable_iterator.py +0 -56
- data/packages/gsutil/gslib/plurality_checkable_iterator.pyc +0 -0
- data/packages/gsutil/gslib/project_id.py +0 -67
- data/packages/gsutil/gslib/project_id.pyc +0 -0
- data/packages/gsutil/gslib/storage_uri_builder.py +0 -56
- data/packages/gsutil/gslib/storage_uri_builder.pyc +0 -0
- data/packages/gsutil/gslib/tests/__init__.pyc +0 -0
- data/packages/gsutil/gslib/tests/test_chacl.py +0 -236
- data/packages/gsutil/gslib/tests/test_cp.py +0 -267
- data/packages/gsutil/gslib/tests/test_data/test.gif +0 -0
- data/packages/gsutil/gslib/tests/test_data/test.mp3 +0 -0
- data/packages/gsutil/gslib/tests/test_ls.py +0 -66
- data/packages/gsutil/gslib/tests/test_mv.py +0 -69
- data/packages/gsutil/gslib/tests/test_naming.py +0 -989
- data/packages/gsutil/gslib/tests/test_perfdiag.py +0 -41
- data/packages/gsutil/gslib/tests/test_plurality_checkable_iterator.py +0 -67
- data/packages/gsutil/gslib/tests/test_rm.py +0 -143
- data/packages/gsutil/gslib/tests/test_setacl.py +0 -152
- data/packages/gsutil/gslib/tests/test_setcors.py +0 -168
- data/packages/gsutil/gslib/tests/test_setmeta.py +0 -91
- data/packages/gsutil/gslib/tests/test_setversioning.py +0 -44
- data/packages/gsutil/gslib/tests/test_setwebcfg.py +0 -63
- data/packages/gsutil/gslib/tests/test_thread_pool.py +0 -92
- data/packages/gsutil/gslib/tests/test_wildcard_iterator.py +0 -364
- data/packages/gsutil/gslib/tests/testcase/base.py +0 -89
- data/packages/gsutil/gslib/tests/testcase/integration_testcase.py +0 -197
- data/packages/gsutil/gslib/tests/testcase/unit_testcase.py +0 -230
- data/packages/gsutil/gslib/tests/util.py +0 -125
- data/packages/gsutil/gslib/tests/util.pyc +0 -0
- data/packages/gsutil/gslib/thread_pool.py +0 -79
- data/packages/gsutil/gslib/thread_pool.pyc +0 -0
- data/packages/gsutil/gslib/util.py +0 -151
- data/packages/gsutil/gslib/util.pyc +0 -0
- data/packages/gsutil/gslib/wildcard_iterator.py +0 -492
- data/packages/gsutil/gslib/wildcard_iterator.pyc +0 -0
- data/packages/gsutil/gsutil +0 -377
- data/packages/gsutil/gsutil.spec.in +0 -75
- data/packages/gsutil/oauth2_plugin/__init__.py +0 -22
- data/packages/gsutil/oauth2_plugin/__init__.pyc +0 -0
- data/packages/gsutil/oauth2_plugin/oauth2_client.py +0 -642
- data/packages/gsutil/oauth2_plugin/oauth2_client.pyc +0 -0
- data/packages/gsutil/oauth2_plugin/oauth2_client_test.py +0 -374
- data/packages/gsutil/oauth2_plugin/oauth2_helper.py +0 -110
- data/packages/gsutil/oauth2_plugin/oauth2_helper.pyc +0 -0
- data/packages/gsutil/oauth2_plugin/oauth2_plugin.py +0 -24
- data/packages/gsutil/oauth2_plugin/oauth2_plugin.pyc +0 -0
- data/packages/gsutil/pkg_gen.sh +0 -54
- data/packages/gsutil/pkg_util.py +0 -60
- data/packages/gsutil/setup.py +0 -141
- data/packages/gsutil/third_party/__init__.py +0 -0
- data/packages/gsutil/third_party/__init__.pyc +0 -0
- data/packages/gsutil/third_party/fancy_urllib/README +0 -21
- data/packages/gsutil/third_party/fancy_urllib/__init__.py +0 -398
- data/packages/gsutil/third_party/fancy_urllib/__init__.pyc +0 -0
- data/tasks/rubygem.rake +0 -31
- metadata.gz.sig +0 -0
@@ -1,60 +0,0 @@
|
|
1
|
-
# Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/
|
2
|
-
#
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a
|
4
|
-
# copy of this software and associated documentation files (the
|
5
|
-
# "Software"), to deal in the Software without restriction, including
|
6
|
-
# without limitation the rights to use, copy, modify, merge, publish, dis-
|
7
|
-
# tribute, sublicense, and/or sell copies of the Software, and to permit
|
8
|
-
# persons to whom the Software is furnished to do so, subject to the fol-
|
9
|
-
# lowing conditions:
|
10
|
-
#
|
11
|
-
# The above copyright notice and this permission notice shall be included
|
12
|
-
# in all copies or substantial portions of the Software.
|
13
|
-
#
|
14
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
15
|
-
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
|
16
|
-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
17
|
-
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
18
|
-
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
20
|
-
# IN THE SOFTWARE.
|
21
|
-
#
|
22
|
-
import sys
|
23
|
-
import boto
|
24
|
-
from boto.utils import find_class
|
25
|
-
from boto import config
|
26
|
-
from boto.pyami.scriptbase import ScriptBase
|
27
|
-
|
28
|
-
|
29
|
-
class Startup(ScriptBase):
|
30
|
-
|
31
|
-
def run_scripts(self):
|
32
|
-
scripts = config.get('Pyami', 'scripts')
|
33
|
-
if scripts:
|
34
|
-
for script in scripts.split(','):
|
35
|
-
script = script.strip(" ")
|
36
|
-
try:
|
37
|
-
pos = script.rfind('.')
|
38
|
-
if pos > 0:
|
39
|
-
mod_name = script[0:pos]
|
40
|
-
cls_name = script[pos+1:]
|
41
|
-
cls = find_class(mod_name, cls_name)
|
42
|
-
boto.log.info('Running Script: %s' % script)
|
43
|
-
s = cls()
|
44
|
-
s.main()
|
45
|
-
else:
|
46
|
-
boto.log.warning('Trouble parsing script: %s' % script)
|
47
|
-
except Exception, e:
|
48
|
-
boto.log.exception('Problem Running Script: %s. Startup process halting.' % script)
|
49
|
-
raise e
|
50
|
-
|
51
|
-
def main(self):
|
52
|
-
self.run_scripts()
|
53
|
-
self.notify('Startup Completed for %s' % config.get('Instance', 'instance-id'))
|
54
|
-
|
55
|
-
if __name__ == "__main__":
|
56
|
-
if not config.has_section('loggers'):
|
57
|
-
boto.set_file_logger('startup', '/var/log/boto.log')
|
58
|
-
sys.path.append(config.get('Pyami', 'working_dir'))
|
59
|
-
su = Startup()
|
60
|
-
su.main()
|
@@ -1,1194 +0,0 @@
|
|
1
|
-
# Copyright (c) 2009-2012 Mitch Garnaat http://garnaat.org/
|
2
|
-
#
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a
|
4
|
-
# copy of this software and associated documentation files (the
|
5
|
-
# "Software"), to deal in the Software without restriction, including
|
6
|
-
# without limitation the rights to use, copy, modify, merge, publish, dis-
|
7
|
-
# tribute, sublicense, and/or sell copies of the Software, and to permit
|
8
|
-
# persons to whom the Software is furnished to do so, subject to the fol-
|
9
|
-
# lowing conditions:
|
10
|
-
#
|
11
|
-
# The above copyright notice and this permission notice shall be included
|
12
|
-
# in all copies or substantial portions of the Software.
|
13
|
-
#
|
14
|
-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
15
|
-
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
|
16
|
-
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
17
|
-
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
18
|
-
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
20
|
-
# IN THE SOFTWARE.
|
21
|
-
#
|
22
|
-
|
23
|
-
import urllib
|
24
|
-
from boto.connection import AWSQueryConnection
|
25
|
-
from boto.rds.dbinstance import DBInstance
|
26
|
-
from boto.rds.dbsecuritygroup import DBSecurityGroup
|
27
|
-
from boto.rds.parametergroup import ParameterGroup
|
28
|
-
from boto.rds.dbsnapshot import DBSnapshot
|
29
|
-
from boto.rds.event import Event
|
30
|
-
from boto.rds.regioninfo import RDSRegionInfo
|
31
|
-
|
32
|
-
|
33
|
-
def regions():
|
34
|
-
"""
|
35
|
-
Get all available regions for the RDS service.
|
36
|
-
|
37
|
-
:rtype: list
|
38
|
-
:return: A list of :class:`boto.rds.regioninfo.RDSRegionInfo`
|
39
|
-
"""
|
40
|
-
return [RDSRegionInfo(name='us-east-1',
|
41
|
-
endpoint='rds.amazonaws.com'),
|
42
|
-
RDSRegionInfo(name='eu-west-1',
|
43
|
-
endpoint='rds.eu-west-1.amazonaws.com'),
|
44
|
-
RDSRegionInfo(name='us-west-1',
|
45
|
-
endpoint='rds.us-west-1.amazonaws.com'),
|
46
|
-
RDSRegionInfo(name='us-west-2',
|
47
|
-
endpoint='rds.us-west-2.amazonaws.com'),
|
48
|
-
RDSRegionInfo(name='sa-east-1',
|
49
|
-
endpoint='rds.sa-east-1.amazonaws.com'),
|
50
|
-
RDSRegionInfo(name='ap-northeast-1',
|
51
|
-
endpoint='rds.ap-northeast-1.amazonaws.com'),
|
52
|
-
RDSRegionInfo(name='ap-southeast-1',
|
53
|
-
endpoint='rds.ap-southeast-1.amazonaws.com'),
|
54
|
-
RDSRegionInfo(name='ap-southeast-2',
|
55
|
-
endpoint='rds.ap-southeast-2.amazonaws.com'),
|
56
|
-
]
|
57
|
-
|
58
|
-
|
59
|
-
def connect_to_region(region_name, **kw_params):
|
60
|
-
"""
|
61
|
-
Given a valid region name, return a
|
62
|
-
:class:`boto.rds.RDSConnection`.
|
63
|
-
Any additional parameters after the region_name are passed on to
|
64
|
-
the connect method of the region object.
|
65
|
-
|
66
|
-
:type: str
|
67
|
-
:param region_name: The name of the region to connect to.
|
68
|
-
|
69
|
-
:rtype: :class:`boto.rds.RDSConnection` or ``None``
|
70
|
-
:return: A connection to the given region, or None if an invalid region
|
71
|
-
name is given
|
72
|
-
"""
|
73
|
-
for region in regions():
|
74
|
-
if region.name == region_name:
|
75
|
-
return region.connect(**kw_params)
|
76
|
-
return None
|
77
|
-
|
78
|
-
#boto.set_stream_logger('rds')
|
79
|
-
|
80
|
-
|
81
|
-
class RDSConnection(AWSQueryConnection):
|
82
|
-
|
83
|
-
DefaultRegionName = 'us-east-1'
|
84
|
-
DefaultRegionEndpoint = 'rds.amazonaws.com'
|
85
|
-
APIVersion = '2012-09-17'
|
86
|
-
|
87
|
-
def __init__(self, aws_access_key_id=None, aws_secret_access_key=None,
|
88
|
-
is_secure=True, port=None, proxy=None, proxy_port=None,
|
89
|
-
proxy_user=None, proxy_pass=None, debug=0,
|
90
|
-
https_connection_factory=None, region=None, path='/',
|
91
|
-
security_token=None, validate_certs=True):
|
92
|
-
if not region:
|
93
|
-
region = RDSRegionInfo(self, self.DefaultRegionName,
|
94
|
-
self.DefaultRegionEndpoint)
|
95
|
-
self.region = region
|
96
|
-
AWSQueryConnection.__init__(self, aws_access_key_id,
|
97
|
-
aws_secret_access_key,
|
98
|
-
is_secure, port, proxy, proxy_port,
|
99
|
-
proxy_user, proxy_pass,
|
100
|
-
self.region.endpoint, debug,
|
101
|
-
https_connection_factory, path,
|
102
|
-
security_token,
|
103
|
-
validate_certs=validate_certs)
|
104
|
-
|
105
|
-
def _required_auth_capability(self):
|
106
|
-
return ['rds']
|
107
|
-
|
108
|
-
# DB Instance methods
|
109
|
-
|
110
|
-
def get_all_dbinstances(self, instance_id=None, max_records=None,
|
111
|
-
marker=None):
|
112
|
-
"""
|
113
|
-
Retrieve all the DBInstances in your account.
|
114
|
-
|
115
|
-
:type instance_id: str
|
116
|
-
:param instance_id: DB Instance identifier. If supplied, only
|
117
|
-
information this instance will be returned.
|
118
|
-
Otherwise, info about all DB Instances will
|
119
|
-
be returned.
|
120
|
-
|
121
|
-
:type max_records: int
|
122
|
-
:param max_records: The maximum number of records to be returned.
|
123
|
-
If more results are available, a MoreToken will
|
124
|
-
be returned in the response that can be used to
|
125
|
-
retrieve additional records. Default is 100.
|
126
|
-
|
127
|
-
:type marker: str
|
128
|
-
:param marker: The marker provided by a previous request.
|
129
|
-
|
130
|
-
:rtype: list
|
131
|
-
:return: A list of :class:`boto.rds.dbinstance.DBInstance`
|
132
|
-
"""
|
133
|
-
params = {}
|
134
|
-
if instance_id:
|
135
|
-
params['DBInstanceIdentifier'] = instance_id
|
136
|
-
if max_records:
|
137
|
-
params['MaxRecords'] = max_records
|
138
|
-
if marker:
|
139
|
-
params['Marker'] = marker
|
140
|
-
return self.get_list('DescribeDBInstances', params,
|
141
|
-
[('DBInstance', DBInstance)])
|
142
|
-
|
143
|
-
def create_dbinstance(self,
|
144
|
-
id,
|
145
|
-
allocated_storage,
|
146
|
-
instance_class,
|
147
|
-
master_username,
|
148
|
-
master_password,
|
149
|
-
port=3306,
|
150
|
-
engine='MySQL5.1',
|
151
|
-
db_name=None,
|
152
|
-
param_group=None,
|
153
|
-
security_groups=None,
|
154
|
-
availability_zone=None,
|
155
|
-
preferred_maintenance_window=None,
|
156
|
-
backup_retention_period=None,
|
157
|
-
preferred_backup_window=None,
|
158
|
-
multi_az=False,
|
159
|
-
engine_version=None,
|
160
|
-
auto_minor_version_upgrade=True,
|
161
|
-
character_set_name = None,
|
162
|
-
db_subnet_group_name = None,
|
163
|
-
license_model = None,
|
164
|
-
option_group_name = None,
|
165
|
-
iops=None,
|
166
|
-
):
|
167
|
-
# API version: 2012-09-17
|
168
|
-
# Parameter notes:
|
169
|
-
# =================
|
170
|
-
# id should be db_instance_identifier according to API docs but has been left
|
171
|
-
# id for backwards compatibility
|
172
|
-
#
|
173
|
-
# security_groups should be db_security_groups according to API docs but has been left
|
174
|
-
# security_groups for backwards compatibility
|
175
|
-
#
|
176
|
-
# master_password should be master_user_password according to API docs but has been left
|
177
|
-
# master_password for backwards compatibility
|
178
|
-
#
|
179
|
-
# instance_class should be db_instance_class according to API docs but has been left
|
180
|
-
# instance_class for backwards compatibility
|
181
|
-
"""
|
182
|
-
Create a new DBInstance.
|
183
|
-
|
184
|
-
:type id: str
|
185
|
-
:param id: Unique identifier for the new instance.
|
186
|
-
Must contain 1-63 alphanumeric characters.
|
187
|
-
First character must be a letter.
|
188
|
-
May not end with a hyphen or contain two consecutive hyphens
|
189
|
-
|
190
|
-
:type allocated_storage: int
|
191
|
-
:param allocated_storage: Initially allocated storage size, in GBs.
|
192
|
-
Valid values are depending on the engine value.
|
193
|
-
|
194
|
-
* MySQL = 5--1024
|
195
|
-
* oracle-se1 = 10--1024
|
196
|
-
* oracle-se = 10--1024
|
197
|
-
* oracle-ee = 10--1024
|
198
|
-
* sqlserver-ee = 200--1024
|
199
|
-
* sqlserver-se = 200--1024
|
200
|
-
* sqlserver-ex = 30--1024
|
201
|
-
* sqlserver-web = 30--1024
|
202
|
-
|
203
|
-
:type instance_class: str
|
204
|
-
:param instance_class: The compute and memory capacity of
|
205
|
-
the DBInstance. Valid values are:
|
206
|
-
|
207
|
-
* db.m1.small
|
208
|
-
* db.m1.large
|
209
|
-
* db.m1.xlarge
|
210
|
-
* db.m2.xlarge
|
211
|
-
* db.m2.2xlarge
|
212
|
-
* db.m2.4xlarge
|
213
|
-
|
214
|
-
:type engine: str
|
215
|
-
:param engine: Name of database engine. Defaults to MySQL but can be;
|
216
|
-
|
217
|
-
* MySQL
|
218
|
-
* oracle-se1
|
219
|
-
* oracle-se
|
220
|
-
* oracle-ee
|
221
|
-
* sqlserver-ee
|
222
|
-
* sqlserver-se
|
223
|
-
* sqlserver-ex
|
224
|
-
* sqlserver-web
|
225
|
-
|
226
|
-
:type master_username: str
|
227
|
-
:param master_username: Name of master user for the DBInstance.
|
228
|
-
|
229
|
-
* MySQL must be;
|
230
|
-
- 1--16 alphanumeric characters
|
231
|
-
- first character must be a letter
|
232
|
-
- cannot be a reserved MySQL word
|
233
|
-
|
234
|
-
* Oracle must be:
|
235
|
-
- 1--30 alphanumeric characters
|
236
|
-
- first character must be a letter
|
237
|
-
- cannot be a reserved Oracle word
|
238
|
-
|
239
|
-
* SQL Server must be:
|
240
|
-
- 1--128 alphanumeric characters
|
241
|
-
- first character must be a letter
|
242
|
-
- cannot be a reserver SQL Server word
|
243
|
-
|
244
|
-
:type master_password: str
|
245
|
-
:param master_password: Password of master user for the DBInstance.
|
246
|
-
|
247
|
-
* MySQL must be 8--41 alphanumeric characters
|
248
|
-
|
249
|
-
* Oracle must be 8--30 alphanumeric characters
|
250
|
-
|
251
|
-
* SQL Server must be 8--128 alphanumeric characters.
|
252
|
-
|
253
|
-
:type port: int
|
254
|
-
:param port: Port number on which database accepts connections.
|
255
|
-
Valid values [1115-65535].
|
256
|
-
|
257
|
-
* MySQL defaults to 3306
|
258
|
-
|
259
|
-
* Oracle defaults to 1521
|
260
|
-
|
261
|
-
* SQL Server defaults to 1433 and _cannot_ be 1434 or 3389
|
262
|
-
|
263
|
-
:type db_name: str
|
264
|
-
:param db_name: * MySQL:
|
265
|
-
Name of a database to create when the DBInstance
|
266
|
-
is created. Default is to create no databases.
|
267
|
-
|
268
|
-
Must contain 1--64 alphanumeric characters and cannot
|
269
|
-
be a reserved MySQL word.
|
270
|
-
|
271
|
-
* Oracle:
|
272
|
-
The Oracle System ID (SID) of the created DB instances.
|
273
|
-
Default is ORCL. Cannot be longer than 8 characters.
|
274
|
-
|
275
|
-
* SQL Server:
|
276
|
-
Not applicable and must be None.
|
277
|
-
|
278
|
-
:type param_group: str
|
279
|
-
:param param_group: Name of DBParameterGroup to associate with
|
280
|
-
this DBInstance. If no groups are specified
|
281
|
-
no parameter groups will be used.
|
282
|
-
|
283
|
-
:type security_groups: list of str or list of DBSecurityGroup objects
|
284
|
-
:param security_groups: List of names of DBSecurityGroup to
|
285
|
-
authorize on this DBInstance.
|
286
|
-
|
287
|
-
:type availability_zone: str
|
288
|
-
:param availability_zone: Name of the availability zone to place
|
289
|
-
DBInstance into.
|
290
|
-
|
291
|
-
:type preferred_maintenance_window: str
|
292
|
-
:param preferred_maintenance_window: The weekly time range (in UTC)
|
293
|
-
during which maintenance can occur.
|
294
|
-
Default is Sun:05:00-Sun:09:00
|
295
|
-
|
296
|
-
:type backup_retention_period: int
|
297
|
-
:param backup_retention_period: The number of days for which automated
|
298
|
-
backups are retained. Setting this to
|
299
|
-
zero disables automated backups.
|
300
|
-
|
301
|
-
:type preferred_backup_window: str
|
302
|
-
:param preferred_backup_window: The daily time range during which
|
303
|
-
automated backups are created (if
|
304
|
-
enabled). Must be in h24:mi-hh24:mi
|
305
|
-
format (UTC).
|
306
|
-
|
307
|
-
:type multi_az: bool
|
308
|
-
:param multi_az: If True, specifies the DB Instance will be
|
309
|
-
deployed in multiple availability zones.
|
310
|
-
|
311
|
-
For Microsoft SQL Server, must be set to false. You cannot set
|
312
|
-
the AvailabilityZone parameter if the MultiAZ parameter is
|
313
|
-
set to true.
|
314
|
-
|
315
|
-
:type engine_version: str
|
316
|
-
:param engine_version: The version number of the database engine to use.
|
317
|
-
|
318
|
-
* MySQL format example: 5.1.42
|
319
|
-
|
320
|
-
* Oracle format example: 11.2.0.2.v2
|
321
|
-
|
322
|
-
* SQL Server format example: 10.50.2789.0.v1
|
323
|
-
|
324
|
-
:type auto_minor_version_upgrade: bool
|
325
|
-
:param auto_minor_version_upgrade: Indicates that minor engine
|
326
|
-
upgrades will be applied
|
327
|
-
automatically to the Read Replica
|
328
|
-
during the maintenance window.
|
329
|
-
Default is True.
|
330
|
-
:type character_set_name: str
|
331
|
-
:param character_set_name: For supported engines, indicates that the DB Instance
|
332
|
-
should be associated with the specified CharacterSet.
|
333
|
-
|
334
|
-
:type db_subnet_group_name: str
|
335
|
-
:param db_subnet_group_name: A DB Subnet Group to associate with this DB Instance.
|
336
|
-
If there is no DB Subnet Group, then it is a non-VPC DB
|
337
|
-
instance.
|
338
|
-
|
339
|
-
:type license_model: str
|
340
|
-
:param license_model: License model information for this DB Instance.
|
341
|
-
|
342
|
-
Valid values are;
|
343
|
-
- license-included
|
344
|
-
- bring-your-own-license
|
345
|
-
- general-public-license
|
346
|
-
|
347
|
-
All license types are not supported on all engines.
|
348
|
-
|
349
|
-
:type option_group_name: str
|
350
|
-
:param option_group_name: Indicates that the DB Instance should be associated
|
351
|
-
with the specified option group.
|
352
|
-
|
353
|
-
:type iops: int
|
354
|
-
:param iops: The amount of IOPS (input/output operations per second) to Provisioned
|
355
|
-
for the DB Instance. Can be modified at a later date.
|
356
|
-
|
357
|
-
Must scale linearly. For every 1000 IOPS provision, you must allocated
|
358
|
-
100 GB of storage space. This scales up to 1 TB / 10 000 IOPS for MySQL
|
359
|
-
and Oracle. MSSQL is limited to 700 GB / 7 000 IOPS.
|
360
|
-
|
361
|
-
If you specify a value, it must be at least 1000 IOPS and you must
|
362
|
-
allocate 100 GB of storage.
|
363
|
-
|
364
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
365
|
-
:return: The new db instance.
|
366
|
-
"""
|
367
|
-
# boto argument alignment with AWS API parameter names:
|
368
|
-
# =====================================================
|
369
|
-
# arg => AWS parameter
|
370
|
-
# allocated_storage => AllocatedStorage
|
371
|
-
# auto_minor_version_update => AutoMinorVersionUpgrade
|
372
|
-
# availability_zone => AvailabilityZone
|
373
|
-
# backup_retention_period => BackupRetentionPeriod
|
374
|
-
# character_set_name => CharacterSetName
|
375
|
-
# db_instance_class => DBInstanceClass
|
376
|
-
# db_instance_identifier => DBInstanceIdentifier
|
377
|
-
# db_name => DBName
|
378
|
-
# db_parameter_group_name => DBParameterGroupName
|
379
|
-
# db_security_groups => DBSecurityGroups.member.N
|
380
|
-
# db_subnet_group_name => DBSubnetGroupName
|
381
|
-
# engine => Engine
|
382
|
-
# engine_version => EngineVersion
|
383
|
-
# license_model => LicenseModel
|
384
|
-
# master_username => MasterUsername
|
385
|
-
# master_user_password => MasterUserPassword
|
386
|
-
# multi_az => MultiAZ
|
387
|
-
# option_group_name => OptionGroupName
|
388
|
-
# port => Port
|
389
|
-
# preferred_backup_window => PreferredBackupWindow
|
390
|
-
# preferred_maintenance_window => PreferredMaintenanceWindow
|
391
|
-
params = {
|
392
|
-
'AllocatedStorage': allocated_storage,
|
393
|
-
'AutoMinorVersionUpgrade': str(auto_minor_version_upgrade).lower() if auto_minor_version_upgrade else None,
|
394
|
-
'AvailabilityZone': availability_zone,
|
395
|
-
'BackupRetentionPeriod': backup_retention_period,
|
396
|
-
'CharacterSetName': character_set_name,
|
397
|
-
'DBInstanceClass': instance_class,
|
398
|
-
'DBInstanceIdentifier': id,
|
399
|
-
'DBName': db_name,
|
400
|
-
'DBParameterGroupName': param_group,
|
401
|
-
'DBSubnetGroupName': db_subnet_group_name,
|
402
|
-
'Engine': engine,
|
403
|
-
'EngineVersion': engine_version,
|
404
|
-
'Iops': iops,
|
405
|
-
'LicenseModel': license_model,
|
406
|
-
'MasterUsername': master_username,
|
407
|
-
'MasterUserPassword': master_password,
|
408
|
-
'MultiAZ': str(multi_az).lower() if multi_az else None,
|
409
|
-
'OptionGroupName': option_group_name,
|
410
|
-
'Port': port,
|
411
|
-
'PreferredBackupWindow': preferred_backup_window,
|
412
|
-
'PreferredMaintenanceWindow': preferred_maintenance_window,
|
413
|
-
}
|
414
|
-
if security_groups:
|
415
|
-
l = []
|
416
|
-
for group in security_groups:
|
417
|
-
if isinstance(group, DBSecurityGroup):
|
418
|
-
l.append(group.name)
|
419
|
-
else:
|
420
|
-
l.append(group)
|
421
|
-
self.build_list_params(params, l, 'DBSecurityGroups.member')
|
422
|
-
|
423
|
-
# Remove any params set to None
|
424
|
-
for k, v in params.items():
|
425
|
-
if not v: del(params[k])
|
426
|
-
|
427
|
-
return self.get_object('CreateDBInstance', params, DBInstance)
|
428
|
-
|
429
|
-
def create_dbinstance_read_replica(self, id, source_id,
|
430
|
-
instance_class=None,
|
431
|
-
port=3306,
|
432
|
-
availability_zone=None,
|
433
|
-
auto_minor_version_upgrade=None):
|
434
|
-
"""
|
435
|
-
Create a new DBInstance Read Replica.
|
436
|
-
|
437
|
-
:type id: str
|
438
|
-
:param id: Unique identifier for the new instance.
|
439
|
-
Must contain 1-63 alphanumeric characters.
|
440
|
-
First character must be a letter.
|
441
|
-
May not end with a hyphen or contain two consecutive hyphens
|
442
|
-
|
443
|
-
:type source_id: str
|
444
|
-
:param source_id: Unique identifier for the DB Instance for which this
|
445
|
-
DB Instance will act as a Read Replica.
|
446
|
-
|
447
|
-
:type instance_class: str
|
448
|
-
:param instance_class: The compute and memory capacity of the
|
449
|
-
DBInstance. Default is to inherit from
|
450
|
-
the source DB Instance.
|
451
|
-
|
452
|
-
Valid values are:
|
453
|
-
|
454
|
-
* db.m1.small
|
455
|
-
* db.m1.large
|
456
|
-
* db.m1.xlarge
|
457
|
-
* db.m2.xlarge
|
458
|
-
* db.m2.2xlarge
|
459
|
-
* db.m2.4xlarge
|
460
|
-
|
461
|
-
:type port: int
|
462
|
-
:param port: Port number on which database accepts connections.
|
463
|
-
Default is to inherit from source DB Instance.
|
464
|
-
Valid values [1115-65535]. Defaults to 3306.
|
465
|
-
|
466
|
-
:type availability_zone: str
|
467
|
-
:param availability_zone: Name of the availability zone to place
|
468
|
-
DBInstance into.
|
469
|
-
|
470
|
-
:type auto_minor_version_upgrade: bool
|
471
|
-
:param auto_minor_version_upgrade: Indicates that minor engine
|
472
|
-
upgrades will be applied
|
473
|
-
automatically to the Read Replica
|
474
|
-
during the maintenance window.
|
475
|
-
Default is to inherit this value
|
476
|
-
from the source DB Instance.
|
477
|
-
|
478
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
479
|
-
:return: The new db instance.
|
480
|
-
"""
|
481
|
-
params = {'DBInstanceIdentifier': id,
|
482
|
-
'SourceDBInstanceIdentifier': source_id}
|
483
|
-
if instance_class:
|
484
|
-
params['DBInstanceClass'] = instance_class
|
485
|
-
if port:
|
486
|
-
params['Port'] = port
|
487
|
-
if availability_zone:
|
488
|
-
params['AvailabilityZone'] = availability_zone
|
489
|
-
if auto_minor_version_upgrade is not None:
|
490
|
-
if auto_minor_version_upgrade is True:
|
491
|
-
params['AutoMinorVersionUpgrade'] = 'true'
|
492
|
-
else:
|
493
|
-
params['AutoMinorVersionUpgrade'] = 'false'
|
494
|
-
|
495
|
-
return self.get_object('CreateDBInstanceReadReplica',
|
496
|
-
params, DBInstance)
|
497
|
-
|
498
|
-
def modify_dbinstance(self, id, param_group=None, security_groups=None,
|
499
|
-
preferred_maintenance_window=None,
|
500
|
-
master_password=None, allocated_storage=None,
|
501
|
-
instance_class=None,
|
502
|
-
backup_retention_period=None,
|
503
|
-
preferred_backup_window=None,
|
504
|
-
multi_az=False,
|
505
|
-
apply_immediately=False,
|
506
|
-
iops=None):
|
507
|
-
"""
|
508
|
-
Modify an existing DBInstance.
|
509
|
-
|
510
|
-
:type id: str
|
511
|
-
:param id: Unique identifier for the new instance.
|
512
|
-
|
513
|
-
:type security_groups: list of str or list of DBSecurityGroup objects
|
514
|
-
:param security_groups: List of names of DBSecurityGroup to authorize on
|
515
|
-
this DBInstance.
|
516
|
-
|
517
|
-
:type preferred_maintenance_window: str
|
518
|
-
:param preferred_maintenance_window: The weekly time range (in UTC)
|
519
|
-
during which maintenance can
|
520
|
-
occur.
|
521
|
-
Default is Sun:05:00-Sun:09:00
|
522
|
-
|
523
|
-
:type master_password: str
|
524
|
-
:param master_password: Password of master user for the DBInstance.
|
525
|
-
Must be 4-15 alphanumeric characters.
|
526
|
-
|
527
|
-
:type allocated_storage: int
|
528
|
-
:param allocated_storage: The new allocated storage size, in GBs.
|
529
|
-
Valid values are [5-1024]
|
530
|
-
|
531
|
-
:type instance_class: str
|
532
|
-
:param instance_class: The compute and memory capacity of the
|
533
|
-
DBInstance. Changes will be applied at
|
534
|
-
next maintenance window unless
|
535
|
-
apply_immediately is True.
|
536
|
-
|
537
|
-
Valid values are:
|
538
|
-
|
539
|
-
* db.m1.small
|
540
|
-
* db.m1.large
|
541
|
-
* db.m1.xlarge
|
542
|
-
* db.m2.xlarge
|
543
|
-
* db.m2.2xlarge
|
544
|
-
* db.m2.4xlarge
|
545
|
-
|
546
|
-
:type apply_immediately: bool
|
547
|
-
:param apply_immediately: If true, the modifications will be applied
|
548
|
-
as soon as possible rather than waiting for
|
549
|
-
the next preferred maintenance window.
|
550
|
-
|
551
|
-
:type backup_retention_period: int
|
552
|
-
:param backup_retention_period: The number of days for which automated
|
553
|
-
backups are retained. Setting this to
|
554
|
-
zero disables automated backups.
|
555
|
-
|
556
|
-
:type preferred_backup_window: str
|
557
|
-
:param preferred_backup_window: The daily time range during which
|
558
|
-
automated backups are created (if
|
559
|
-
enabled). Must be in h24:mi-hh24:mi
|
560
|
-
format (UTC).
|
561
|
-
|
562
|
-
:type multi_az: bool
|
563
|
-
:param multi_az: If True, specifies the DB Instance will be
|
564
|
-
deployed in multiple availability zones.
|
565
|
-
|
566
|
-
:type iops: int
|
567
|
-
:param iops: The amount of IOPS (input/output operations per second) to Provisioned
|
568
|
-
for the DB Instance. Can be modified at a later date.
|
569
|
-
|
570
|
-
Must scale linearly. For every 1000 IOPS provision, you must allocated
|
571
|
-
100 GB of storage space. This scales up to 1 TB / 10 000 IOPS for MySQL
|
572
|
-
and Oracle. MSSQL is limited to 700 GB / 7 000 IOPS.
|
573
|
-
|
574
|
-
If you specify a value, it must be at least 1000 IOPS and you must
|
575
|
-
allocate 100 GB of storage.
|
576
|
-
|
577
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
578
|
-
:return: The modified db instance.
|
579
|
-
"""
|
580
|
-
params = {'DBInstanceIdentifier': id}
|
581
|
-
if param_group:
|
582
|
-
params['DBParameterGroupName'] = param_group
|
583
|
-
if security_groups:
|
584
|
-
l = []
|
585
|
-
for group in security_groups:
|
586
|
-
if isinstance(group, DBSecurityGroup):
|
587
|
-
l.append(group.name)
|
588
|
-
else:
|
589
|
-
l.append(group)
|
590
|
-
self.build_list_params(params, l, 'DBSecurityGroups.member')
|
591
|
-
if preferred_maintenance_window:
|
592
|
-
params['PreferredMaintenanceWindow'] = preferred_maintenance_window
|
593
|
-
if master_password:
|
594
|
-
params['MasterUserPassword'] = master_password
|
595
|
-
if allocated_storage:
|
596
|
-
params['AllocatedStorage'] = allocated_storage
|
597
|
-
if instance_class:
|
598
|
-
params['DBInstanceClass'] = instance_class
|
599
|
-
if backup_retention_period is not None:
|
600
|
-
params['BackupRetentionPeriod'] = backup_retention_period
|
601
|
-
if preferred_backup_window:
|
602
|
-
params['PreferredBackupWindow'] = preferred_backup_window
|
603
|
-
if multi_az:
|
604
|
-
params['MultiAZ'] = 'true'
|
605
|
-
if apply_immediately:
|
606
|
-
params['ApplyImmediately'] = 'true'
|
607
|
-
if iops:
|
608
|
-
params['Iops'] = iops
|
609
|
-
|
610
|
-
return self.get_object('ModifyDBInstance', params, DBInstance)
|
611
|
-
|
612
|
-
def delete_dbinstance(self, id, skip_final_snapshot=False,
|
613
|
-
final_snapshot_id=''):
|
614
|
-
"""
|
615
|
-
Delete an existing DBInstance.
|
616
|
-
|
617
|
-
:type id: str
|
618
|
-
:param id: Unique identifier for the new instance.
|
619
|
-
|
620
|
-
:type skip_final_snapshot: bool
|
621
|
-
:param skip_final_snapshot: This parameter determines whether a final
|
622
|
-
db snapshot is created before the instance
|
623
|
-
is deleted. If True, no snapshot
|
624
|
-
is created. If False, a snapshot
|
625
|
-
is created before deleting the instance.
|
626
|
-
|
627
|
-
:type final_snapshot_id: str
|
628
|
-
:param final_snapshot_id: If a final snapshot is requested, this
|
629
|
-
is the identifier used for that snapshot.
|
630
|
-
|
631
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
632
|
-
:return: The deleted db instance.
|
633
|
-
"""
|
634
|
-
params = {'DBInstanceIdentifier': id}
|
635
|
-
if skip_final_snapshot:
|
636
|
-
params['SkipFinalSnapshot'] = 'true'
|
637
|
-
else:
|
638
|
-
params['SkipFinalSnapshot'] = 'false'
|
639
|
-
params['FinalDBSnapshotIdentifier'] = final_snapshot_id
|
640
|
-
return self.get_object('DeleteDBInstance', params, DBInstance)
|
641
|
-
|
642
|
-
def reboot_dbinstance(self, id):
|
643
|
-
"""
|
644
|
-
Reboot DBInstance.
|
645
|
-
|
646
|
-
:type id: str
|
647
|
-
:param id: Unique identifier of the instance.
|
648
|
-
|
649
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
650
|
-
:return: The rebooting db instance.
|
651
|
-
"""
|
652
|
-
params = {'DBInstanceIdentifier': id}
|
653
|
-
return self.get_object('RebootDBInstance', params, DBInstance)
|
654
|
-
|
655
|
-
# DBParameterGroup methods
|
656
|
-
|
657
|
-
def get_all_dbparameter_groups(self, groupname=None, max_records=None,
|
658
|
-
marker=None):
|
659
|
-
"""
|
660
|
-
Get all parameter groups associated with your account in a region.
|
661
|
-
|
662
|
-
:type groupname: str
|
663
|
-
:param groupname: The name of the DBParameter group to retrieve.
|
664
|
-
If not provided, all DBParameter groups will be returned.
|
665
|
-
|
666
|
-
:type max_records: int
|
667
|
-
:param max_records: The maximum number of records to be returned.
|
668
|
-
If more results are available, a MoreToken will
|
669
|
-
be returned in the response that can be used to
|
670
|
-
retrieve additional records. Default is 100.
|
671
|
-
|
672
|
-
:type marker: str
|
673
|
-
:param marker: The marker provided by a previous request.
|
674
|
-
|
675
|
-
:rtype: list
|
676
|
-
:return: A list of :class:`boto.ec2.parametergroup.ParameterGroup`
|
677
|
-
"""
|
678
|
-
params = {}
|
679
|
-
if groupname:
|
680
|
-
params['DBParameterGroupName'] = groupname
|
681
|
-
if max_records:
|
682
|
-
params['MaxRecords'] = max_records
|
683
|
-
if marker:
|
684
|
-
params['Marker'] = marker
|
685
|
-
return self.get_list('DescribeDBParameterGroups', params,
|
686
|
-
[('DBParameterGroup', ParameterGroup)])
|
687
|
-
|
688
|
-
def get_all_dbparameters(self, groupname, source=None,
|
689
|
-
max_records=None, marker=None):
|
690
|
-
"""
|
691
|
-
Get all parameters associated with a ParameterGroup
|
692
|
-
|
693
|
-
:type groupname: str
|
694
|
-
:param groupname: The name of the DBParameter group to retrieve.
|
695
|
-
|
696
|
-
:type source: str
|
697
|
-
:param source: Specifies which parameters to return.
|
698
|
-
If not specified, all parameters will be returned.
|
699
|
-
Valid values are: user|system|engine-default
|
700
|
-
|
701
|
-
:type max_records: int
|
702
|
-
:param max_records: The maximum number of records to be returned.
|
703
|
-
If more results are available, a MoreToken will
|
704
|
-
be returned in the response that can be used to
|
705
|
-
retrieve additional records. Default is 100.
|
706
|
-
|
707
|
-
:type marker: str
|
708
|
-
:param marker: The marker provided by a previous request.
|
709
|
-
|
710
|
-
:rtype: :class:`boto.ec2.parametergroup.ParameterGroup`
|
711
|
-
:return: The ParameterGroup
|
712
|
-
"""
|
713
|
-
params = {'DBParameterGroupName': groupname}
|
714
|
-
if source:
|
715
|
-
params['Source'] = source
|
716
|
-
if max_records:
|
717
|
-
params['MaxRecords'] = max_records
|
718
|
-
if marker:
|
719
|
-
params['Marker'] = marker
|
720
|
-
pg = self.get_object('DescribeDBParameters', params, ParameterGroup)
|
721
|
-
pg.name = groupname
|
722
|
-
return pg
|
723
|
-
|
724
|
-
def create_parameter_group(self, name, engine='MySQL5.1', description=''):
|
725
|
-
"""
|
726
|
-
Create a new dbparameter group for your account.
|
727
|
-
|
728
|
-
:type name: string
|
729
|
-
:param name: The name of the new dbparameter group
|
730
|
-
|
731
|
-
:type engine: str
|
732
|
-
:param engine: Name of database engine.
|
733
|
-
|
734
|
-
:type description: string
|
735
|
-
:param description: The description of the new security group
|
736
|
-
|
737
|
-
:rtype: :class:`boto.rds.dbsecuritygroup.DBSecurityGroup`
|
738
|
-
:return: The newly created DBSecurityGroup
|
739
|
-
"""
|
740
|
-
params = {'DBParameterGroupName': name,
|
741
|
-
'DBParameterGroupFamily': engine,
|
742
|
-
'Description': description}
|
743
|
-
return self.get_object('CreateDBParameterGroup', params, ParameterGroup)
|
744
|
-
|
745
|
-
def modify_parameter_group(self, name, parameters=None):
|
746
|
-
"""
|
747
|
-
Modify a parameter group for your account.
|
748
|
-
|
749
|
-
:type name: string
|
750
|
-
:param name: The name of the new parameter group
|
751
|
-
|
752
|
-
:type parameters: list of :class:`boto.rds.parametergroup.Parameter`
|
753
|
-
:param parameters: The new parameters
|
754
|
-
|
755
|
-
:rtype: :class:`boto.rds.parametergroup.ParameterGroup`
|
756
|
-
:return: The newly created ParameterGroup
|
757
|
-
"""
|
758
|
-
params = {'DBParameterGroupName': name}
|
759
|
-
for i in range(0, len(parameters)):
|
760
|
-
parameter = parameters[i]
|
761
|
-
parameter.merge(params, i+1)
|
762
|
-
return self.get_list('ModifyDBParameterGroup', params,
|
763
|
-
ParameterGroup, verb='POST')
|
764
|
-
|
765
|
-
def reset_parameter_group(self, name, reset_all_params=False,
|
766
|
-
parameters=None):
|
767
|
-
"""
|
768
|
-
Resets some or all of the parameters of a ParameterGroup to the
|
769
|
-
default value
|
770
|
-
|
771
|
-
:type key_name: string
|
772
|
-
:param key_name: The name of the ParameterGroup to reset
|
773
|
-
|
774
|
-
:type parameters: list of :class:`boto.rds.parametergroup.Parameter`
|
775
|
-
:param parameters: The parameters to reset. If not supplied,
|
776
|
-
all parameters will be reset.
|
777
|
-
"""
|
778
|
-
params = {'DBParameterGroupName': name}
|
779
|
-
if reset_all_params:
|
780
|
-
params['ResetAllParameters'] = 'true'
|
781
|
-
else:
|
782
|
-
params['ResetAllParameters'] = 'false'
|
783
|
-
for i in range(0, len(parameters)):
|
784
|
-
parameter = parameters[i]
|
785
|
-
parameter.merge(params, i+1)
|
786
|
-
return self.get_status('ResetDBParameterGroup', params)
|
787
|
-
|
788
|
-
def delete_parameter_group(self, name):
|
789
|
-
"""
|
790
|
-
Delete a DBSecurityGroup from your account.
|
791
|
-
|
792
|
-
:type key_name: string
|
793
|
-
:param key_name: The name of the DBSecurityGroup to delete
|
794
|
-
"""
|
795
|
-
params = {'DBParameterGroupName': name}
|
796
|
-
return self.get_status('DeleteDBParameterGroup', params)
|
797
|
-
|
798
|
-
# DBSecurityGroup methods
|
799
|
-
|
800
|
-
def get_all_dbsecurity_groups(self, groupname=None, max_records=None,
|
801
|
-
marker=None):
|
802
|
-
"""
|
803
|
-
Get all security groups associated with your account in a region.
|
804
|
-
|
805
|
-
:type groupnames: list
|
806
|
-
:param groupnames: A list of the names of security groups to retrieve.
|
807
|
-
If not provided, all security groups will
|
808
|
-
be returned.
|
809
|
-
|
810
|
-
:type max_records: int
|
811
|
-
:param max_records: The maximum number of records to be returned.
|
812
|
-
If more results are available, a MoreToken will
|
813
|
-
be returned in the response that can be used to
|
814
|
-
retrieve additional records. Default is 100.
|
815
|
-
|
816
|
-
:type marker: str
|
817
|
-
:param marker: The marker provided by a previous request.
|
818
|
-
|
819
|
-
:rtype: list
|
820
|
-
:return: A list of :class:`boto.rds.dbsecuritygroup.DBSecurityGroup`
|
821
|
-
"""
|
822
|
-
params = {}
|
823
|
-
if groupname:
|
824
|
-
params['DBSecurityGroupName'] = groupname
|
825
|
-
if max_records:
|
826
|
-
params['MaxRecords'] = max_records
|
827
|
-
if marker:
|
828
|
-
params['Marker'] = marker
|
829
|
-
return self.get_list('DescribeDBSecurityGroups', params,
|
830
|
-
[('DBSecurityGroup', DBSecurityGroup)])
|
831
|
-
|
832
|
-
def create_dbsecurity_group(self, name, description=None):
|
833
|
-
"""
|
834
|
-
Create a new security group for your account.
|
835
|
-
This will create the security group within the region you
|
836
|
-
are currently connected to.
|
837
|
-
|
838
|
-
:type name: string
|
839
|
-
:param name: The name of the new security group
|
840
|
-
|
841
|
-
:type description: string
|
842
|
-
:param description: The description of the new security group
|
843
|
-
|
844
|
-
:rtype: :class:`boto.rds.dbsecuritygroup.DBSecurityGroup`
|
845
|
-
:return: The newly created DBSecurityGroup
|
846
|
-
"""
|
847
|
-
params = {'DBSecurityGroupName': name}
|
848
|
-
if description:
|
849
|
-
params['DBSecurityGroupDescription'] = description
|
850
|
-
group = self.get_object('CreateDBSecurityGroup', params,
|
851
|
-
DBSecurityGroup)
|
852
|
-
group.name = name
|
853
|
-
group.description = description
|
854
|
-
return group
|
855
|
-
|
856
|
-
def delete_dbsecurity_group(self, name):
|
857
|
-
"""
|
858
|
-
Delete a DBSecurityGroup from your account.
|
859
|
-
|
860
|
-
:type key_name: string
|
861
|
-
:param key_name: The name of the DBSecurityGroup to delete
|
862
|
-
"""
|
863
|
-
params = {'DBSecurityGroupName': name}
|
864
|
-
return self.get_status('DeleteDBSecurityGroup', params)
|
865
|
-
|
866
|
-
def authorize_dbsecurity_group(self, group_name, cidr_ip=None,
|
867
|
-
ec2_security_group_name=None,
|
868
|
-
ec2_security_group_owner_id=None):
|
869
|
-
"""
|
870
|
-
Add a new rule to an existing security group.
|
871
|
-
You need to pass in either src_security_group_name and
|
872
|
-
src_security_group_owner_id OR a CIDR block but not both.
|
873
|
-
|
874
|
-
:type group_name: string
|
875
|
-
:param group_name: The name of the security group you are adding
|
876
|
-
the rule to.
|
877
|
-
|
878
|
-
:type ec2_security_group_name: string
|
879
|
-
:param ec2_security_group_name: The name of the EC2 security group
|
880
|
-
you are granting access to.
|
881
|
-
|
882
|
-
:type ec2_security_group_owner_id: string
|
883
|
-
:param ec2_security_group_owner_id: The ID of the owner of the EC2
|
884
|
-
security group you are granting
|
885
|
-
access to.
|
886
|
-
|
887
|
-
:type cidr_ip: string
|
888
|
-
:param cidr_ip: The CIDR block you are providing access to.
|
889
|
-
See http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
|
890
|
-
|
891
|
-
:rtype: bool
|
892
|
-
:return: True if successful.
|
893
|
-
"""
|
894
|
-
params = {'DBSecurityGroupName': group_name}
|
895
|
-
if ec2_security_group_name:
|
896
|
-
params['EC2SecurityGroupName'] = ec2_security_group_name
|
897
|
-
if ec2_security_group_owner_id:
|
898
|
-
params['EC2SecurityGroupOwnerId'] = ec2_security_group_owner_id
|
899
|
-
if cidr_ip:
|
900
|
-
params['CIDRIP'] = urllib.quote(cidr_ip)
|
901
|
-
return self.get_object('AuthorizeDBSecurityGroupIngress', params,
|
902
|
-
DBSecurityGroup)
|
903
|
-
|
904
|
-
def revoke_dbsecurity_group(self, group_name, ec2_security_group_name=None,
|
905
|
-
ec2_security_group_owner_id=None, cidr_ip=None):
|
906
|
-
"""
|
907
|
-
Remove an existing rule from an existing security group.
|
908
|
-
You need to pass in either ec2_security_group_name and
|
909
|
-
ec2_security_group_owner_id OR a CIDR block.
|
910
|
-
|
911
|
-
:type group_name: string
|
912
|
-
:param group_name: The name of the security group you are removing
|
913
|
-
the rule from.
|
914
|
-
|
915
|
-
:type ec2_security_group_name: string
|
916
|
-
:param ec2_security_group_name: The name of the EC2 security group
|
917
|
-
from which you are removing access.
|
918
|
-
|
919
|
-
:type ec2_security_group_owner_id: string
|
920
|
-
:param ec2_security_group_owner_id: The ID of the owner of the EC2
|
921
|
-
security from which you are
|
922
|
-
removing access.
|
923
|
-
|
924
|
-
:type cidr_ip: string
|
925
|
-
:param cidr_ip: The CIDR block from which you are removing access.
|
926
|
-
See http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
|
927
|
-
|
928
|
-
:rtype: bool
|
929
|
-
:return: True if successful.
|
930
|
-
"""
|
931
|
-
params = {'DBSecurityGroupName': group_name}
|
932
|
-
if ec2_security_group_name:
|
933
|
-
params['EC2SecurityGroupName'] = ec2_security_group_name
|
934
|
-
if ec2_security_group_owner_id:
|
935
|
-
params['EC2SecurityGroupOwnerId'] = ec2_security_group_owner_id
|
936
|
-
if cidr_ip:
|
937
|
-
params['CIDRIP'] = cidr_ip
|
938
|
-
return self.get_object('RevokeDBSecurityGroupIngress', params,
|
939
|
-
DBSecurityGroup)
|
940
|
-
|
941
|
-
# For backwards compatibility. This method was improperly named
|
942
|
-
# in previous versions. I have renamed it to match the others.
|
943
|
-
revoke_security_group = revoke_dbsecurity_group
|
944
|
-
|
945
|
-
# DBSnapshot methods
|
946
|
-
|
947
|
-
def get_all_dbsnapshots(self, snapshot_id=None, instance_id=None,
|
948
|
-
max_records=None, marker=None):
|
949
|
-
"""
|
950
|
-
Get information about DB Snapshots.
|
951
|
-
|
952
|
-
:type snapshot_id: str
|
953
|
-
:param snapshot_id: The unique identifier of an RDS snapshot.
|
954
|
-
If not provided, all RDS snapshots will be returned.
|
955
|
-
|
956
|
-
:type instance_id: str
|
957
|
-
:param instance_id: The identifier of a DBInstance. If provided,
|
958
|
-
only the DBSnapshots related to that instance will
|
959
|
-
be returned.
|
960
|
-
If not provided, all RDS snapshots will be returned.
|
961
|
-
|
962
|
-
:type max_records: int
|
963
|
-
:param max_records: The maximum number of records to be returned.
|
964
|
-
If more results are available, a MoreToken will
|
965
|
-
be returned in the response that can be used to
|
966
|
-
retrieve additional records. Default is 100.
|
967
|
-
|
968
|
-
:type marker: str
|
969
|
-
:param marker: The marker provided by a previous request.
|
970
|
-
|
971
|
-
:rtype: list
|
972
|
-
:return: A list of :class:`boto.rds.dbsnapshot.DBSnapshot`
|
973
|
-
"""
|
974
|
-
params = {}
|
975
|
-
if snapshot_id:
|
976
|
-
params['DBSnapshotIdentifier'] = snapshot_id
|
977
|
-
if instance_id:
|
978
|
-
params['DBInstanceIdentifier'] = instance_id
|
979
|
-
if max_records:
|
980
|
-
params['MaxRecords'] = max_records
|
981
|
-
if marker:
|
982
|
-
params['Marker'] = marker
|
983
|
-
return self.get_list('DescribeDBSnapshots', params,
|
984
|
-
[('DBSnapshot', DBSnapshot)])
|
985
|
-
|
986
|
-
def create_dbsnapshot(self, snapshot_id, dbinstance_id):
|
987
|
-
"""
|
988
|
-
Create a new DB snapshot.
|
989
|
-
|
990
|
-
:type snapshot_id: string
|
991
|
-
:param snapshot_id: The identifier for the DBSnapshot
|
992
|
-
|
993
|
-
:type dbinstance_id: string
|
994
|
-
:param dbinstance_id: The source identifier for the RDS instance from
|
995
|
-
which the snapshot is created.
|
996
|
-
|
997
|
-
:rtype: :class:`boto.rds.dbsnapshot.DBSnapshot`
|
998
|
-
:return: The newly created DBSnapshot
|
999
|
-
"""
|
1000
|
-
params = {'DBSnapshotIdentifier': snapshot_id,
|
1001
|
-
'DBInstanceIdentifier': dbinstance_id}
|
1002
|
-
return self.get_object('CreateDBSnapshot', params, DBSnapshot)
|
1003
|
-
|
1004
|
-
def delete_dbsnapshot(self, identifier):
|
1005
|
-
"""
|
1006
|
-
Delete a DBSnapshot
|
1007
|
-
|
1008
|
-
:type identifier: string
|
1009
|
-
:param identifier: The identifier of the DBSnapshot to delete
|
1010
|
-
"""
|
1011
|
-
params = {'DBSnapshotIdentifier': identifier}
|
1012
|
-
return self.get_object('DeleteDBSnapshot', params, DBSnapshot)
|
1013
|
-
|
1014
|
-
def restore_dbinstance_from_dbsnapshot(self, identifier, instance_id,
|
1015
|
-
instance_class, port=None,
|
1016
|
-
availability_zone=None,
|
1017
|
-
multi_az=None,
|
1018
|
-
auto_minor_version_upgrade=None,
|
1019
|
-
db_subnet_group_name=None):
|
1020
|
-
"""
|
1021
|
-
Create a new DBInstance from a DB snapshot.
|
1022
|
-
|
1023
|
-
:type identifier: string
|
1024
|
-
:param identifier: The identifier for the DBSnapshot
|
1025
|
-
|
1026
|
-
:type instance_id: string
|
1027
|
-
:param instance_id: The source identifier for the RDS instance from
|
1028
|
-
which the snapshot is created.
|
1029
|
-
|
1030
|
-
:type instance_class: str
|
1031
|
-
:param instance_class: The compute and memory capacity of the
|
1032
|
-
DBInstance. Valid values are:
|
1033
|
-
db.m1.small | db.m1.large | db.m1.xlarge |
|
1034
|
-
db.m2.2xlarge | db.m2.4xlarge
|
1035
|
-
|
1036
|
-
:type port: int
|
1037
|
-
:param port: Port number on which database accepts connections.
|
1038
|
-
Valid values [1115-65535]. Defaults to 3306.
|
1039
|
-
|
1040
|
-
:type availability_zone: str
|
1041
|
-
:param availability_zone: Name of the availability zone to place
|
1042
|
-
DBInstance into.
|
1043
|
-
|
1044
|
-
:type multi_az: bool
|
1045
|
-
:param multi_az: If True, specifies the DB Instance will be
|
1046
|
-
deployed in multiple availability zones.
|
1047
|
-
Default is the API default.
|
1048
|
-
|
1049
|
-
:type auto_minor_version_upgrade: bool
|
1050
|
-
:param auto_minor_version_upgrade: Indicates that minor engine
|
1051
|
-
upgrades will be applied
|
1052
|
-
automatically to the Read Replica
|
1053
|
-
during the maintenance window.
|
1054
|
-
Default is the API default.
|
1055
|
-
|
1056
|
-
:type db_subnet_group_name: str
|
1057
|
-
:param db_subnet_group_name: A DB Subnet Group to associate with this DB Instance.
|
1058
|
-
If there is no DB Subnet Group, then it is a non-VPC DB
|
1059
|
-
instance.
|
1060
|
-
|
1061
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
1062
|
-
:return: The newly created DBInstance
|
1063
|
-
"""
|
1064
|
-
params = {'DBSnapshotIdentifier': identifier,
|
1065
|
-
'DBInstanceIdentifier': instance_id,
|
1066
|
-
'DBInstanceClass': instance_class}
|
1067
|
-
if port:
|
1068
|
-
params['Port'] = port
|
1069
|
-
if availability_zone:
|
1070
|
-
params['AvailabilityZone'] = availability_zone
|
1071
|
-
if multi_az is not None:
|
1072
|
-
params['MultiAZ'] = str(multi_az).lower()
|
1073
|
-
if auto_minor_version_upgrade is not None:
|
1074
|
-
params['AutoMinorVersionUpgrade'] = str(auto_minor_version_upgrade).lower()
|
1075
|
-
if db_subnet_group_name is not None:
|
1076
|
-
params['DBSubnetGroupName'] = db_subnet_group_name
|
1077
|
-
return self.get_object('RestoreDBInstanceFromDBSnapshot',
|
1078
|
-
params, DBInstance)
|
1079
|
-
|
1080
|
-
def restore_dbinstance_from_point_in_time(self, source_instance_id,
|
1081
|
-
target_instance_id,
|
1082
|
-
use_latest=False,
|
1083
|
-
restore_time=None,
|
1084
|
-
dbinstance_class=None,
|
1085
|
-
port=None,
|
1086
|
-
availability_zone=None):
|
1087
|
-
|
1088
|
-
"""
|
1089
|
-
Create a new DBInstance from a point in time.
|
1090
|
-
|
1091
|
-
:type source_instance_id: string
|
1092
|
-
:param source_instance_id: The identifier for the source DBInstance.
|
1093
|
-
|
1094
|
-
:type target_instance_id: string
|
1095
|
-
:param target_instance_id: The identifier of the new DBInstance.
|
1096
|
-
|
1097
|
-
:type use_latest: bool
|
1098
|
-
:param use_latest: If True, the latest snapshot availabile will
|
1099
|
-
be used.
|
1100
|
-
|
1101
|
-
:type restore_time: datetime
|
1102
|
-
:param restore_time: The date and time to restore from. Only
|
1103
|
-
used if use_latest is False.
|
1104
|
-
|
1105
|
-
:type instance_class: str
|
1106
|
-
:param instance_class: The compute and memory capacity of the
|
1107
|
-
DBInstance. Valid values are:
|
1108
|
-
db.m1.small | db.m1.large | db.m1.xlarge |
|
1109
|
-
db.m2.2xlarge | db.m2.4xlarge
|
1110
|
-
|
1111
|
-
:type port: int
|
1112
|
-
:param port: Port number on which database accepts connections.
|
1113
|
-
Valid values [1115-65535]. Defaults to 3306.
|
1114
|
-
|
1115
|
-
:type availability_zone: str
|
1116
|
-
:param availability_zone: Name of the availability zone to place
|
1117
|
-
DBInstance into.
|
1118
|
-
|
1119
|
-
:rtype: :class:`boto.rds.dbinstance.DBInstance`
|
1120
|
-
:return: The newly created DBInstance
|
1121
|
-
"""
|
1122
|
-
params = {'SourceDBInstanceIdentifier': source_instance_id,
|
1123
|
-
'TargetDBInstanceIdentifier': target_instance_id}
|
1124
|
-
if use_latest:
|
1125
|
-
params['UseLatestRestorableTime'] = 'true'
|
1126
|
-
elif restore_time:
|
1127
|
-
params['RestoreTime'] = restore_time.isoformat()
|
1128
|
-
if dbinstance_class:
|
1129
|
-
params['DBInstanceClass'] = dbinstance_class
|
1130
|
-
if port:
|
1131
|
-
params['Port'] = port
|
1132
|
-
if availability_zone:
|
1133
|
-
params['AvailabilityZone'] = availability_zone
|
1134
|
-
return self.get_object('RestoreDBInstanceToPointInTime',
|
1135
|
-
params, DBInstance)
|
1136
|
-
|
1137
|
-
# Events
|
1138
|
-
|
1139
|
-
def get_all_events(self, source_identifier=None, source_type=None,
|
1140
|
-
start_time=None, end_time=None,
|
1141
|
-
max_records=None, marker=None):
|
1142
|
-
"""
|
1143
|
-
Get information about events related to your DBInstances,
|
1144
|
-
DBSecurityGroups and DBParameterGroups.
|
1145
|
-
|
1146
|
-
:type source_identifier: str
|
1147
|
-
:param source_identifier: If supplied, the events returned will be
|
1148
|
-
limited to those that apply to the identified
|
1149
|
-
source. The value of this parameter depends
|
1150
|
-
on the value of source_type. If neither
|
1151
|
-
parameter is specified, all events in the time
|
1152
|
-
span will be returned.
|
1153
|
-
|
1154
|
-
:type source_type: str
|
1155
|
-
:param source_type: Specifies how the source_identifier should
|
1156
|
-
be interpreted. Valid values are:
|
1157
|
-
b-instance | db-security-group |
|
1158
|
-
db-parameter-group | db-snapshot
|
1159
|
-
|
1160
|
-
:type start_time: datetime
|
1161
|
-
:param start_time: The beginning of the time interval for events.
|
1162
|
-
If not supplied, all available events will
|
1163
|
-
be returned.
|
1164
|
-
|
1165
|
-
:type end_time: datetime
|
1166
|
-
:param end_time: The ending of the time interval for events.
|
1167
|
-
If not supplied, all available events will
|
1168
|
-
be returned.
|
1169
|
-
|
1170
|
-
:type max_records: int
|
1171
|
-
:param max_records: The maximum number of records to be returned.
|
1172
|
-
If more results are available, a MoreToken will
|
1173
|
-
be returned in the response that can be used to
|
1174
|
-
retrieve additional records. Default is 100.
|
1175
|
-
|
1176
|
-
:type marker: str
|
1177
|
-
:param marker: The marker provided by a previous request.
|
1178
|
-
|
1179
|
-
:rtype: list
|
1180
|
-
:return: A list of class:`boto.rds.event.Event`
|
1181
|
-
"""
|
1182
|
-
params = {}
|
1183
|
-
if source_identifier and source_type:
|
1184
|
-
params['SourceIdentifier'] = source_identifier
|
1185
|
-
params['SourceType'] = source_type
|
1186
|
-
if start_time:
|
1187
|
-
params['StartTime'] = start_time.isoformat()
|
1188
|
-
if end_time:
|
1189
|
-
params['EndTime'] = end_time.isoformat()
|
1190
|
-
if max_records:
|
1191
|
-
params['MaxRecords'] = max_records
|
1192
|
-
if marker:
|
1193
|
-
params['Marker'] = marker
|
1194
|
-
return self.get_list('DescribeEvents', params, [('Event', Event)])
|