[Python-modules-commits] [python-softlayer] branch upstream updated (93fa843 -> d767b0b)

Scott Kitterman kitterman at moszumanska.debian.org
Mon Jun 26 13:33:02 UTC 2017


This is an automated email from the git hooks/post-receive script.

kitterman pushed a change to branch upstream
in repository python-softlayer.

      from  93fa843   Import python-softlayer_5.2.1.orig.tar.gz
       new  d767b0b   Imported Upstream version 5.2.7

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |    2 +
 CHANGELOG.md                                       |   60 +-
 README.rst                                         |    4 +-
 RELEASE.md                                         |   12 +
 SoftLayer/CLI/block/detail.py                      |   11 +-
 SoftLayer/CLI/block/duplicate.py                   |   83 +
 SoftLayer/CLI/block/order.py                       |   15 +-
 SoftLayer/CLI/block/replication/locations.py       |   49 +
 SoftLayer/CLI/block/replication/order.py           |    2 +-
 SoftLayer/CLI/block/replication/partners.py        |   57 +
 SoftLayer/CLI/core.py                              |    2 +-
 SoftLayer/CLI/custom_types.py                      |   32 +
 SoftLayer/CLI/dns/record_list.py                   |   14 +-
 SoftLayer/CLI/file/detail.py                       |   14 +-
 SoftLayer/CLI/file/duplicate.py                    |   79 +
 SoftLayer/CLI/file/order.py                        |   23 +-
 SoftLayer/CLI/file/replication/locations.py        |   49 +
 SoftLayer/CLI/file/replication/order.py            |    2 +-
 SoftLayer/CLI/file/replication/partners.py         |   60 +
 SoftLayer/CLI/formatting.py                        |    4 +-
 SoftLayer/CLI/iscsi/__init__.py                    |    1 -
 SoftLayer/CLI/iscsi/cancel.py                      |   30 -
 SoftLayer/CLI/iscsi/create.py                      |   23 -
 SoftLayer/CLI/iscsi/detail.py                      |   54 -
 SoftLayer/CLI/iscsi/list.py                        |   43 -
 SoftLayer/CLI/loadbal/detail.py                    |   97 +-
 SoftLayer/CLI/routes.py                            |   31 +-
 SoftLayer/CLI/snapshot/__init__.py                 |    1 -
 SoftLayer/CLI/snapshot/cancel.py                   |   21 -
 SoftLayer/CLI/snapshot/create.py                   |   20 -
 SoftLayer/CLI/snapshot/create_space.py             |   22 -
 SoftLayer/CLI/snapshot/list.py                     |   37 -
 SoftLayer/CLI/snapshot/restore_volume.py           |   22 -
 SoftLayer/CLI/template.py                          |    2 +
 SoftLayer/CLI/vpn/__init__.py                      |    1 +
 SoftLayer/CLI/vpn/ipsec/__init__.py                |    1 +
 SoftLayer/CLI/vpn/ipsec/configure.py               |   31 +
 SoftLayer/CLI/vpn/ipsec/detail.py                  |  196 +++
 SoftLayer/CLI/vpn/ipsec/list.py                    |   31 +
 SoftLayer/CLI/vpn/ipsec/subnet/__init__.py         |    1 +
 SoftLayer/CLI/vpn/ipsec/subnet/add.py              |   81 +
 SoftLayer/CLI/vpn/ipsec/subnet/remove.py           |   51 +
 SoftLayer/CLI/vpn/ipsec/translation/__init__.py    |    1 +
 SoftLayer/CLI/vpn/ipsec/translation/add.py         |   44 +
 SoftLayer/CLI/vpn/ipsec/translation/remove.py      |   33 +
 SoftLayer/CLI/vpn/ipsec/translation/update.py      |   48 +
 SoftLayer/CLI/vpn/ipsec/update.py                  |  102 ++
 SoftLayer/consts.py                                |    2 +-
 .../fixtures/SoftLayer_Metric_Tracking_Object.py   |    1 -
 SoftLayer/fixtures/SoftLayer_Network_Storage.py    |   78 +-
 .../fixtures/SoftLayer_Network_Storage_Iscsi.py    |   68 -
 SoftLayer/fixtures/SoftLayer_Product_Package.py    |  133 ++
 SoftLayer/fixtures/SoftLayer_User_Customer.py      |    1 -
 SoftLayer/managers/__init__.py                     |    4 +-
 SoftLayer/managers/block.py                        |   66 +-
 SoftLayer/managers/file.py                         |   91 +-
 SoftLayer/managers/hardware.py                     |   10 +-
 SoftLayer/managers/ipsec.py                        |  290 ++++
 SoftLayer/managers/iscsi.py                        |  174 --
 SoftLayer/managers/object_storage.py               |   21 +-
 SoftLayer/managers/ordering.py                     |   22 +
 SoftLayer/managers/storage_utils.py                |  445 ++++-
 SoftLayer/managers/vs.py                           |   11 +-
 SoftLayer/testing/xmlrpc.py                        |    2 +-
 docs/api/managers/ipsec.rst                        |    5 +
 docs/api/managers/iscsi.rst                        |    5 -
 docs/cli.rst                                       |   99 +-
 docs/cli/ipsec.rst                                 |  220 +++
 docs/conf.py                                       |    6 +-
 setup.py                                           |    3 +-
 tests/CLI/custom_types_tests.py                    |   31 +
 tests/CLI/modules/block_tests.py                   |  125 +-
 tests/CLI/modules/file_tests.py                    |  146 +-
 tests/CLI/modules/ipsec_tests.py                   |  513 ++++++
 tests/managers/block_tests.py                      |  395 ++++-
 tests/managers/file_tests.py                       |  339 +++-
 tests/managers/ipsec_tests.py                      |  302 ++++
 tests/managers/iscsi_tests.py                      |  122 --
 tests/managers/object_storage_tests.py             |    9 +
 tests/managers/ordering_tests.py                   |   14 +
 tests/managers/storage_utils_tests.py              | 1715 ++++++++++++++++++++
 tox.ini                                            |    9 +-
 82 files changed, 6198 insertions(+), 878 deletions(-)
 create mode 100644 RELEASE.md
 create mode 100644 SoftLayer/CLI/block/duplicate.py
 create mode 100644 SoftLayer/CLI/block/replication/locations.py
 create mode 100644 SoftLayer/CLI/block/replication/partners.py
 create mode 100644 SoftLayer/CLI/custom_types.py
 create mode 100644 SoftLayer/CLI/file/duplicate.py
 create mode 100644 SoftLayer/CLI/file/replication/locations.py
 create mode 100644 SoftLayer/CLI/file/replication/partners.py
 delete mode 100644 SoftLayer/CLI/iscsi/__init__.py
 delete mode 100644 SoftLayer/CLI/iscsi/cancel.py
 delete mode 100644 SoftLayer/CLI/iscsi/create.py
 delete mode 100644 SoftLayer/CLI/iscsi/detail.py
 delete mode 100644 SoftLayer/CLI/iscsi/list.py
 delete mode 100644 SoftLayer/CLI/snapshot/__init__.py
 delete mode 100644 SoftLayer/CLI/snapshot/cancel.py
 delete mode 100644 SoftLayer/CLI/snapshot/create.py
 delete mode 100644 SoftLayer/CLI/snapshot/create_space.py
 delete mode 100644 SoftLayer/CLI/snapshot/list.py
 delete mode 100644 SoftLayer/CLI/snapshot/restore_volume.py
 create mode 100644 SoftLayer/CLI/vpn/__init__.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/__init__.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/configure.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/detail.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/list.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/subnet/__init__.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/subnet/add.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/subnet/remove.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/translation/__init__.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/translation/add.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/translation/remove.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/translation/update.py
 create mode 100644 SoftLayer/CLI/vpn/ipsec/update.py
 delete mode 100644 SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.py
 delete mode 100644 SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.py
 delete mode 100644 SoftLayer/fixtures/SoftLayer_User_Customer.py
 create mode 100644 SoftLayer/managers/ipsec.py
 delete mode 100644 SoftLayer/managers/iscsi.py
 create mode 100644 docs/api/managers/ipsec.rst
 delete mode 100644 docs/api/managers/iscsi.rst
 create mode 100644 docs/cli/ipsec.rst
 create mode 100644 tests/CLI/custom_types_tests.py
 create mode 100644 tests/CLI/modules/ipsec_tests.py
 create mode 100644 tests/managers/ipsec_tests.py
 delete mode 100644 tests/managers/iscsi_tests.py
 create mode 100644 tests/managers/storage_utils_tests.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-softlayer.git



More information about the Python-modules-commits mailing list