[Python-modules-commits] [python-softlayer] branch upstream updated (4a0845c -> b8e5bd3)

Scott Kitterman kitterman at moszumanska.debian.org
Wed Jan 10 04:52:59 UTC 2018


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

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

      from  4a0845c   Imported Upstream version 5.2.14
       new  b8e5bd3   Imported Upstream version 5.3.2

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                                        |   4 -
 CHANGELOG.md                                       |  35 +-
 SoftLayer/API.py                                   |   4 +-
 SoftLayer/CLI/__init__.py                          |   2 +-
 SoftLayer/CLI/block/detail.py                      |  22 +-
 SoftLayer/CLI/block/duplicate.py                   |   4 +-
 SoftLayer/CLI/block/modify.py                      |  57 ++
 SoftLayer/CLI/block/replication/order.py           |   4 +-
 SoftLayer/CLI/block/snapshot/disable.py            |   7 +-
 SoftLayer/CLI/block/snapshot/enable.py             |  11 +-
 SoftLayer/CLI/block/snapshot/schedule_list.py      |  70 +++
 SoftLayer/CLI/config/setup.py                      |  13 +-
 SoftLayer/CLI/{dns => dedicatedhost}/__init__.py   |   2 +-
 SoftLayer/CLI/dedicatedhost/create.py              | 114 ++++
 SoftLayer/CLI/dedicatedhost/create_options.py      |  61 ++
 SoftLayer/CLI/dedicatedhost/detail.py              |  65 +++
 SoftLayer/CLI/dedicatedhost/list.py                |  70 +++
 SoftLayer/CLI/exceptions.py                        |   1 +
 SoftLayer/CLI/file/detail.py                       |  22 +-
 SoftLayer/CLI/file/modify.py                       |  57 ++
 SoftLayer/CLI/file/replication/order.py            |   4 +-
 SoftLayer/CLI/file/snapshot/disable.py             |   7 +-
 SoftLayer/CLI/file/snapshot/enable.py              |  11 +-
 SoftLayer/CLI/file/snapshot/schedule_list.py       |  70 +++
 SoftLayer/CLI/firewall/edit.py                     |   2 -
 SoftLayer/CLI/formatting.py                        |   2 +-
 SoftLayer/CLI/hardware/create.py                   |   2 +-
 SoftLayer/CLI/hardware/credentials.py              |   4 +-
 SoftLayer/CLI/hardware/detail.py                   |  89 +--
 SoftLayer/CLI/hardware/power.py                    |  17 +
 SoftLayer/CLI/hardware/rescue.py                   |  28 -
 SoftLayer/CLI/routes.py                            |  14 +
 SoftLayer/CLI/storage_utils.py                     |  10 +
 SoftLayer/CLI/virt/__init__.py                     |   8 +-
 SoftLayer/CLI/virt/detail.py                       |  22 +
 SoftLayer/__init__.py                              |   2 +-
 SoftLayer/config.py                                |  20 +-
 SoftLayer/consts.py                                |   2 +-
 SoftLayer/decoration.py                            |  48 ++
 SoftLayer/fixtures/SoftLayer_Account.py            |  14 +-
 SoftLayer/fixtures/SoftLayer_Hardware_Server.py    |   6 +-
 .../fixtures/SoftLayer_Network_SecurityGroup.py    |  12 +-
 SoftLayer/fixtures/SoftLayer_Network_Storage.py    |  42 +-
 SoftLayer/fixtures/SoftLayer_Product_Package.py    | 239 +++++++-
 SoftLayer/fixtures/SoftLayer_Resource_Metadata.py  |  16 +-
 .../fixtures/SoftLayer_Virtual_DedicatedHost.py    |  78 +++
 SoftLayer/fixtures/SoftLayer_Virtual_Guest.py      |   1 +
 SoftLayer/managers/__init__.py                     |   2 +
 SoftLayer/managers/block.py                        |  50 +-
 SoftLayer/managers/dedicated_host.py               | 384 +++++++++++++
 SoftLayer/managers/file.py                         |  52 +-
 SoftLayer/managers/hardware.py                     |  12 +-
 SoftLayer/managers/metadata.py                     |  36 +-
 SoftLayer/managers/network.py                      |   8 +-
 SoftLayer/managers/storage_utils.py                | 173 +++---
 SoftLayer/managers/vs.py                           |  76 +--
 SoftLayer/shell/completer.py                       |   7 +-
 SoftLayer/transports.py                            |  34 +-
 docs/conf.py                                       |   4 +-
 setup.py                                           |   2 +-
 tests/CLI/modules/block_tests.py                   |  83 ++-
 tests/CLI/modules/dedicatedhost_tests.py           | 327 +++++++++++
 tests/CLI/modules/file_tests.py                    |  83 ++-
 tests/CLI/modules/securitygroup_tests.py           |  19 +-
 tests/CLI/modules/server_tests.py                  |  21 +-
 tests/CLI/modules/vs_tests.py                      |  21 +
 tests/decoration_tests.py                          |  95 ++++
 tests/managers/block_tests.py                      |  96 +++-
 tests/managers/dedicated_host_tests.py             | 616 +++++++++++++++++++++
 tests/managers/file_tests.py                       |  94 ++--
 tests/managers/metadata_tests.py                   |  16 +-
 tests/managers/network_tests.py                    |  17 +-
 tests/managers/storage_utils_tests.py              | 522 +++++++----------
 tests/managers/vs_tests.py                         |  13 +-
 tox.ini                                            |   6 +-
 75 files changed, 3439 insertions(+), 825 deletions(-)
 create mode 100644 SoftLayer/CLI/block/modify.py
 create mode 100644 SoftLayer/CLI/block/snapshot/schedule_list.py
 copy SoftLayer/CLI/{dns => dedicatedhost}/__init__.py (64%)
 create mode 100644 SoftLayer/CLI/dedicatedhost/create.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/create_options.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/detail.py
 create mode 100644 SoftLayer/CLI/dedicatedhost/list.py
 create mode 100644 SoftLayer/CLI/file/modify.py
 create mode 100644 SoftLayer/CLI/file/snapshot/schedule_list.py
 delete mode 100644 SoftLayer/CLI/hardware/rescue.py
 create mode 100644 SoftLayer/decoration.py
 create mode 100644 SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.py
 create mode 100644 SoftLayer/managers/dedicated_host.py
 create mode 100644 tests/CLI/modules/dedicatedhost_tests.py
 create mode 100644 tests/decoration_tests.py
 create mode 100644 tests/managers/dedicated_host_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