1and1 1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/1and1-1.0.gem +0 -0
- data/1and1.gemspec +20 -0
- data/Gemfile +4 -0
- data/LICENSE +201 -0
- data/README.md +499 -0
- data/docs/reference.md +2447 -0
- data/examples/dvd_examples.rb +15 -0
- data/examples/example_app.rb +100 -0
- data/examples/firewall_examples.rb +137 -0
- data/examples/image_examples.rb +48 -0
- data/examples/load_balancer_examples.rb +145 -0
- data/examples/log_examples.rb +15 -0
- data/examples/monitoring_center_examples.rb +15 -0
- data/examples/monitoring_policy_examples.rb +343 -0
- data/examples/private_network_examples.rb +86 -0
- data/examples/public_ip_examples.rb +42 -0
- data/examples/role_examples.rb +113 -0
- data/examples/server_appliance_examples.rb +15 -0
- data/examples/server_examples.rb +438 -0
- data/examples/shared_storage_examples.rb +108 -0
- data/examples/usage_examples.rb +6 -0
- data/examples/user_examples.rb +113 -0
- data/examples/vpn_examples.rb +56 -0
- data/lib/1and1/datacenter.rb +73 -0
- data/lib/1and1/dvd.rb +73 -0
- data/lib/1and1/firewall.rb +427 -0
- data/lib/1and1/image.rb +231 -0
- data/lib/1and1/load_balancer.rb +448 -0
- data/lib/1and1/log.rb +77 -0
- data/lib/1and1/monitoring_center.rb +84 -0
- data/lib/1and1/monitoring_policy.rb +598 -0
- data/lib/1and1/oneandone.rb +57 -0
- data/lib/1and1/ping.rb +41 -0
- data/lib/1and1/ping_auth.rb +41 -0
- data/lib/1and1/pricing.rb +41 -0
- data/lib/1and1/private_network.rb +333 -0
- data/lib/1and1/public_ip.rb +192 -0
- data/lib/1and1/role.rb +381 -0
- data/lib/1and1/server.rb +1208 -0
- data/lib/1and1/server_appliance.rb +73 -0
- data/lib/1and1/shared_storage.rb +379 -0
- data/lib/1and1/usage.rb +58 -0
- data/lib/1and1/user.rb +374 -0
- data/lib/1and1/vpn.rb +249 -0
- data/lib/oneandone.rb +27 -0
- data/sphinx/Makefile +192 -0
- data/sphinx/_build/doctrees/dvds.doctree +0 -0
- data/sphinx/_build/doctrees/environment.pickle +0 -0
- data/sphinx/_build/doctrees/firewalls.doctree +0 -0
- data/sphinx/_build/doctrees/images.doctree +0 -0
- data/sphinx/_build/doctrees/index.doctree +0 -0
- data/sphinx/_build/doctrees/load_balancers.doctree +0 -0
- data/sphinx/_build/doctrees/logs.doctree +0 -0
- data/sphinx/_build/doctrees/monitoring_center.doctree +0 -0
- data/sphinx/_build/doctrees/monitoring_policies.doctree +0 -0
- data/sphinx/_build/doctrees/private_networks.doctree +0 -0
- data/sphinx/_build/doctrees/public_ips.doctree +0 -0
- data/sphinx/_build/doctrees/server_appliances.doctree +0 -0
- data/sphinx/_build/doctrees/servers.doctree +0 -0
- data/sphinx/_build/doctrees/shared_storages.doctree +0 -0
- data/sphinx/_build/doctrees/usages.doctree +0 -0
- data/sphinx/_build/doctrees/users.doctree +0 -0
- data/sphinx/_build/html/.buildinfo +4 -0
- data/sphinx/_build/html/_sources/dvds.txt +42 -0
- data/sphinx/_build/html/_sources/firewalls.txt +189 -0
- data/sphinx/_build/html/_sources/images.txt +101 -0
- data/sphinx/_build/html/_sources/index.txt +499 -0
- data/sphinx/_build/html/_sources/load_balancers.txt +231 -0
- data/sphinx/_build/html/_sources/logs.txt +55 -0
- data/sphinx/_build/html/_sources/monitoring_center.txt +55 -0
- data/sphinx/_build/html/_sources/monitoring_policies.txt +288 -0
- data/sphinx/_build/html/_sources/private_networks.txt +146 -0
- data/sphinx/_build/html/_sources/public_ips.txt +78 -0
- data/sphinx/_build/html/_sources/server_appliances.txt +42 -0
- data/sphinx/_build/html/_sources/servers.txt +630 -0
- data/sphinx/_build/html/_sources/shared_storages.txt +160 -0
- data/sphinx/_build/html/_sources/usages.txt +45 -0
- data/sphinx/_build/html/_sources/users.txt +172 -0
- data/sphinx/_build/html/_static/ajax-loader.gif +0 -0
- data/sphinx/_build/html/_static/alabaster.css +585 -0
- data/sphinx/_build/html/_static/basic.css +599 -0
- data/sphinx/_build/html/_static/comment-bright.png +0 -0
- data/sphinx/_build/html/_static/comment-close.png +0 -0
- data/sphinx/_build/html/_static/comment.png +0 -0
- data/sphinx/_build/html/_static/doctools.js +263 -0
- data/sphinx/_build/html/_static/down-pressed.png +0 -0
- data/sphinx/_build/html/_static/down.png +0 -0
- data/sphinx/_build/html/_static/file.png +0 -0
- data/sphinx/_build/html/_static/jquery-1.11.1.js +10308 -0
- data/sphinx/_build/html/_static/jquery.js +4 -0
- data/sphinx/_build/html/_static/minus.png +0 -0
- data/sphinx/_build/html/_static/plus.png +0 -0
- data/sphinx/_build/html/_static/pygments.css +63 -0
- data/sphinx/_build/html/_static/searchtools.js +651 -0
- data/sphinx/_build/html/_static/underscore-1.3.1.js +999 -0
- data/sphinx/_build/html/_static/underscore.js +31 -0
- data/sphinx/_build/html/_static/up-pressed.png +0 -0
- data/sphinx/_build/html/_static/up.png +0 -0
- data/sphinx/_build/html/_static/websupport.js +808 -0
- data/sphinx/_build/html/dvds.html +151 -0
- data/sphinx/_build/html/firewalls.html +397 -0
- data/sphinx/_build/html/genindex.html +114 -0
- data/sphinx/_build/html/images.html +236 -0
- data/sphinx/_build/html/index.html +571 -0
- data/sphinx/_build/html/load_balancers.html +409 -0
- data/sphinx/_build/html/logs.html +160 -0
- data/sphinx/_build/html/monitoring_center.html +160 -0
- data/sphinx/_build/html/monitoring_policies.html +530 -0
- data/sphinx/_build/html/objects.inv +0 -0
- data/sphinx/_build/html/private_networks.html +316 -0
- data/sphinx/_build/html/public_ips.html +215 -0
- data/sphinx/_build/html/rb-modindex.html +106 -0
- data/sphinx/_build/html/search.html +99 -0
- data/sphinx/_build/html/searchindex.js +1 -0
- data/sphinx/_build/html/server_appliances.html +153 -0
- data/sphinx/_build/html/servers.html +994 -0
- data/sphinx/_build/html/shared_storages.html +349 -0
- data/sphinx/_build/html/usages.html +140 -0
- data/sphinx/_build/html/users.html +363 -0
- data/sphinx/conf.py +287 -0
- data/sphinx/dvds.rst +42 -0
- data/sphinx/firewalls.rst +189 -0
- data/sphinx/images.rst +101 -0
- data/sphinx/index.rst +499 -0
- data/sphinx/load_balancers.rst +231 -0
- data/sphinx/logs.rst +55 -0
- data/sphinx/make.bat +263 -0
- data/sphinx/monitoring_center.rst +55 -0
- data/sphinx/monitoring_policies.rst +288 -0
- data/sphinx/private_networks.rst +146 -0
- data/sphinx/public_ips.rst +78 -0
- data/sphinx/server_appliances.rst +42 -0
- data/sphinx/servers.rst +630 -0
- data/sphinx/shared_storages.rst +160 -0
- data/sphinx/usages.rst +45 -0
- data/sphinx/users.rst +172 -0
- data/test/mock-api/add-firewall.json +66 -0
- data/test/mock-api/add-hdd.json +49 -0
- data/test/mock-api/add-lb.json +71 -0
- data/test/mock-api/add-new-ip.json +18 -0
- data/test/mock-api/add-pn.json +66 -0
- data/test/mock-api/add-port-mp.json +81 -0
- data/test/mock-api/add-process-mp.json +20 -0
- data/test/mock-api/add-rule-fp.json +33 -0
- data/test/mock-api/add-rule-lb.json +40 -0
- data/test/mock-api/add-server-ip.json +66 -0
- data/test/mock-api/add-server-mp.json +66 -0
- data/test/mock-api/assign-ip-fp.json +32 -0
- data/test/mock-api/assign-server-lb.json +39 -0
- data/test/mock-api/attach-server-pn.json +14 -0
- data/test/mock-api/attach-server-storage.json +24 -0
- data/test/mock-api/change-api-key.json +15 -0
- data/test/mock-api/change-password.json +5 -0
- data/test/mock-api/change-server-status.json +70 -0
- data/test/mock-api/clone-server.json +29 -0
- data/test/mock-api/create-fp.json +26 -0
- data/test/mock-api/create-image.json +30 -0
- data/test/mock-api/create-lb.json +33 -0
- data/test/mock-api/create-mp.json +81 -0
- data/test/mock-api/create-pn.json +11 -0
- data/test/mock-api/create-public-ip.json +10 -0
- data/test/mock-api/create-server.json +34 -0
- data/test/mock-api/create-snapshot.json +74 -0
- data/test/mock-api/create-storage.json +13 -0
- data/test/mock-api/create-user.json +14 -0
- data/test/mock-api/delete-fp.json +26 -0
- data/test/mock-api/delete-image.json +26 -0
- data/test/mock-api/delete-ip.json +15 -0
- data/test/mock-api/delete-lb.json +33 -0
- data/test/mock-api/delete-mp.json +71 -0
- data/test/mock-api/delete-pn.json +11 -0
- data/test/mock-api/delete-public-ip.json +10 -0
- data/test/mock-api/delete-rule-fp.json +26 -0
- data/test/mock-api/delete-server.json +50 -0
- data/test/mock-api/delete-snapshot.json +74 -0
- data/test/mock-api/delete-storage.json +24 -0
- data/test/mock-api/delete-user.json +15 -0
- data/test/mock-api/detach-server-lb.json +33 -0
- data/test/mock-api/detach-server-mp.json +65 -0
- data/test/mock-api/detach-server-storage.json +19 -0
- data/test/mock-api/edit-image.json +26 -0
- data/test/mock-api/eject-dvd.json +66 -0
- data/test/mock-api/fixed-server-flavors.json +70 -0
- data/test/mock-api/get-appliance.json +16 -0
- data/test/mock-api/get-dvd.json +9 -0
- data/test/mock-api/get-firewall.json +26 -0
- data/test/mock-api/get-fixed-server.json +17 -0
- data/test/mock-api/get-fp-rule.json +7 -0
- data/test/mock-api/get-hardware.json +13 -0
- data/test/mock-api/get-hdd.json +5 -0
- data/test/mock-api/get-image.json +26 -0
- data/test/mock-api/get-lb-rule.json +7 -0
- data/test/mock-api/get-lb-server.json +5 -0
- data/test/mock-api/get-load-balancer.json +33 -0
- data/test/mock-api/get-log.json +23 -0
- data/test/mock-api/get-monitoring-center.json +161 -0
- data/test/mock-api/get-mp-port.json +7 -0
- data/test/mock-api/get-mp-process.json +6 -0
- data/test/mock-api/get-mp-server.json +4 -0
- data/test/mock-api/get-mp.json +65 -0
- data/test/mock-api/get-pn-server.json +4 -0
- data/test/mock-api/get-private-network.json +20 -0
- data/test/mock-api/get-public-ip.json +10 -0
- data/test/mock-api/get-server-dvd.json +4 -0
- data/test/mock-api/get-server-image.json +4 -0
- data/test/mock-api/get-server-ip-fp.json +4 -0
- data/test/mock-api/get-server-ip.json +8 -0
- data/test/mock-api/get-server-pn.json +16 -0
- data/test/mock-api/get-server-status.json +4 -0
- data/test/mock-api/get-server-storage.json +5 -0
- data/test/mock-api/get-server.json +44 -0
- data/test/mock-api/get-storage.json +19 -0
- data/test/mock-api/get-usage.json +161 -0
- data/test/mock-api/get-user-api-key.json +3 -0
- data/test/mock-api/get-user-api.json +7 -0
- data/test/mock-api/get-user.json +15 -0
- data/test/mock-api/list-appliances.json +66 -0
- data/test/mock-api/list-credentials.json +5 -0
- data/test/mock-api/list-dvds.json +128 -0
- data/test/mock-api/list-firewalls.json +54 -0
- data/test/mock-api/list-fp-rules.json +16 -0
- data/test/mock-api/list-hdds.json +7 -0
- data/test/mock-api/list-images.json +54 -0
- data/test/mock-api/list-lb-rules.json +16 -0
- data/test/mock-api/list-lb-servers.json +12 -0
- data/test/mock-api/list-load-balancers.json +68 -0
- data/test/mock-api/list-logs.json +49 -0
- data/test/mock-api/list-monitoring-center-usages.json +90 -0
- data/test/mock-api/list-mp-ports.json +16 -0
- data/test/mock-api/list-mp-processes.json +14 -0
- data/test/mock-api/list-mp-servers.json +10 -0
- data/test/mock-api/list-mps.json +152 -0
- data/test/mock-api/list-pn-servers.json +10 -0
- data/test/mock-api/list-private-networks.json +24 -0
- data/test/mock-api/list-public-ips.json +44 -0
- data/test/mock-api/list-server-fps.json +4 -0
- data/test/mock-api/list-server-ips-fp.json +7 -0
- data/test/mock-api/list-server-ips.json +10 -0
- data/test/mock-api/list-server-lbs.json +6 -0
- data/test/mock-api/list-server-pns.json +6 -0
- data/test/mock-api/list-servers.json +66 -0
- data/test/mock-api/list-snapshots.json +7 -0
- data/test/mock-api/list-storages.json +47 -0
- data/test/mock-api/list-usages.json +144 -0
- data/test/mock-api/list-user-ips.json +5 -0
- data/test/mock-api/list-users.json +31 -0
- data/test/mock-api/load-dvd.json +63 -0
- data/test/mock-api/modify-fp.json +26 -0
- data/test/mock-api/modify-lb.json +33 -0
- data/test/mock-api/modify-mp.json +81 -0
- data/test/mock-api/modify-pn.json +20 -0
- data/test/mock-api/modify-port-mp.json +81 -0
- data/test/mock-api/modify-process-mp.json +73 -0
- data/test/mock-api/modify-public-ip.json +10 -0
- data/test/mock-api/modify-server-hardware.json +44 -0
- data/test/mock-api/modify-server-hdd.json +54 -0
- data/test/mock-api/modify-server.json +44 -0
- data/test/mock-api/modify-storage.json +19 -0
- data/test/mock-api/modify-user-api.json +15 -0
- data/test/mock-api/modify-user.json +15 -0
- data/test/mock-api/reinstall-image.json +52 -0
- data/test/mock-api/remove-firewall-policy.json +26 -0
- data/test/mock-api/remove-hdd.json +54 -0
- data/test/mock-api/remove-ip-fp.json +26 -0
- data/test/mock-api/remove-lb.json +66 -0
- data/test/mock-api/remove-pn.json +71 -0
- data/test/mock-api/remove-port-mp.json +73 -0
- data/test/mock-api/remove-process-mp.json +66 -0
- data/test/mock-api/remove-rule-lb.json +33 -0
- data/test/mock-api/remove-server-ip.json +58 -0
- data/test/mock-api/remove-server-pn.json +16 -0
- data/test/mock-api/restore-snapshot.json +55 -0
- data/test/mock-api/storage-servers.json +12 -0
- data/test/test_mock_dvd.rb +55 -0
- data/test/test_mock_firewall.rb +309 -0
- data/test/test_mock_image.rb +123 -0
- data/test/test_mock_load_balancer.rb +312 -0
- data/test/test_mock_log.rb +55 -0
- data/test/test_mock_monitoring_center.rb +55 -0
- data/test/test_mock_monitoring_policy.rb +587 -0
- data/test/test_mock_private_network.rb +206 -0
- data/test/test_mock_public_ip.rb +118 -0
- data/test/test_mock_server.rb +929 -0
- data/test/test_mock_server_appliance.rb +55 -0
- data/test/test_mock_shared_storage.rb +256 -0
- data/test/test_mock_usage.rb +34 -0
- data/test/test_mock_user.rb +270 -0
- metadata +360 -0
metadata
ADDED
@@ -0,0 +1,360 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: 1and1
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '1.1'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tyler Burkhardt (stackpointcloud.com)
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: excon
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.44'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.44'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: json
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.8'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.8'
|
41
|
+
description: The 1&1 SDK for Ruby provides integration with the 1&1 cloud environment
|
42
|
+
over the available REST API.
|
43
|
+
email: tyler@stackpointcloud.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- 1and1-1.0.gem
|
50
|
+
- 1and1.gemspec
|
51
|
+
- Gemfile
|
52
|
+
- LICENSE
|
53
|
+
- README.md
|
54
|
+
- docs/reference.md
|
55
|
+
- examples/dvd_examples.rb
|
56
|
+
- examples/example_app.rb
|
57
|
+
- examples/firewall_examples.rb
|
58
|
+
- examples/image_examples.rb
|
59
|
+
- examples/load_balancer_examples.rb
|
60
|
+
- examples/log_examples.rb
|
61
|
+
- examples/monitoring_center_examples.rb
|
62
|
+
- examples/monitoring_policy_examples.rb
|
63
|
+
- examples/private_network_examples.rb
|
64
|
+
- examples/public_ip_examples.rb
|
65
|
+
- examples/role_examples.rb
|
66
|
+
- examples/server_appliance_examples.rb
|
67
|
+
- examples/server_examples.rb
|
68
|
+
- examples/shared_storage_examples.rb
|
69
|
+
- examples/usage_examples.rb
|
70
|
+
- examples/user_examples.rb
|
71
|
+
- examples/vpn_examples.rb
|
72
|
+
- lib/1and1/datacenter.rb
|
73
|
+
- lib/1and1/dvd.rb
|
74
|
+
- lib/1and1/firewall.rb
|
75
|
+
- lib/1and1/image.rb
|
76
|
+
- lib/1and1/load_balancer.rb
|
77
|
+
- lib/1and1/log.rb
|
78
|
+
- lib/1and1/monitoring_center.rb
|
79
|
+
- lib/1and1/monitoring_policy.rb
|
80
|
+
- lib/1and1/oneandone.rb
|
81
|
+
- lib/1and1/ping.rb
|
82
|
+
- lib/1and1/ping_auth.rb
|
83
|
+
- lib/1and1/pricing.rb
|
84
|
+
- lib/1and1/private_network.rb
|
85
|
+
- lib/1and1/public_ip.rb
|
86
|
+
- lib/1and1/role.rb
|
87
|
+
- lib/1and1/server.rb
|
88
|
+
- lib/1and1/server_appliance.rb
|
89
|
+
- lib/1and1/shared_storage.rb
|
90
|
+
- lib/1and1/usage.rb
|
91
|
+
- lib/1and1/user.rb
|
92
|
+
- lib/1and1/vpn.rb
|
93
|
+
- lib/oneandone.rb
|
94
|
+
- sphinx/Makefile
|
95
|
+
- sphinx/_build/doctrees/dvds.doctree
|
96
|
+
- sphinx/_build/doctrees/environment.pickle
|
97
|
+
- sphinx/_build/doctrees/firewalls.doctree
|
98
|
+
- sphinx/_build/doctrees/images.doctree
|
99
|
+
- sphinx/_build/doctrees/index.doctree
|
100
|
+
- sphinx/_build/doctrees/load_balancers.doctree
|
101
|
+
- sphinx/_build/doctrees/logs.doctree
|
102
|
+
- sphinx/_build/doctrees/monitoring_center.doctree
|
103
|
+
- sphinx/_build/doctrees/monitoring_policies.doctree
|
104
|
+
- sphinx/_build/doctrees/private_networks.doctree
|
105
|
+
- sphinx/_build/doctrees/public_ips.doctree
|
106
|
+
- sphinx/_build/doctrees/server_appliances.doctree
|
107
|
+
- sphinx/_build/doctrees/servers.doctree
|
108
|
+
- sphinx/_build/doctrees/shared_storages.doctree
|
109
|
+
- sphinx/_build/doctrees/usages.doctree
|
110
|
+
- sphinx/_build/doctrees/users.doctree
|
111
|
+
- sphinx/_build/html/.buildinfo
|
112
|
+
- sphinx/_build/html/_sources/dvds.txt
|
113
|
+
- sphinx/_build/html/_sources/firewalls.txt
|
114
|
+
- sphinx/_build/html/_sources/images.txt
|
115
|
+
- sphinx/_build/html/_sources/index.txt
|
116
|
+
- sphinx/_build/html/_sources/load_balancers.txt
|
117
|
+
- sphinx/_build/html/_sources/logs.txt
|
118
|
+
- sphinx/_build/html/_sources/monitoring_center.txt
|
119
|
+
- sphinx/_build/html/_sources/monitoring_policies.txt
|
120
|
+
- sphinx/_build/html/_sources/private_networks.txt
|
121
|
+
- sphinx/_build/html/_sources/public_ips.txt
|
122
|
+
- sphinx/_build/html/_sources/server_appliances.txt
|
123
|
+
- sphinx/_build/html/_sources/servers.txt
|
124
|
+
- sphinx/_build/html/_sources/shared_storages.txt
|
125
|
+
- sphinx/_build/html/_sources/usages.txt
|
126
|
+
- sphinx/_build/html/_sources/users.txt
|
127
|
+
- sphinx/_build/html/_static/ajax-loader.gif
|
128
|
+
- sphinx/_build/html/_static/alabaster.css
|
129
|
+
- sphinx/_build/html/_static/basic.css
|
130
|
+
- sphinx/_build/html/_static/comment-bright.png
|
131
|
+
- sphinx/_build/html/_static/comment-close.png
|
132
|
+
- sphinx/_build/html/_static/comment.png
|
133
|
+
- sphinx/_build/html/_static/doctools.js
|
134
|
+
- sphinx/_build/html/_static/down-pressed.png
|
135
|
+
- sphinx/_build/html/_static/down.png
|
136
|
+
- sphinx/_build/html/_static/file.png
|
137
|
+
- sphinx/_build/html/_static/jquery-1.11.1.js
|
138
|
+
- sphinx/_build/html/_static/jquery.js
|
139
|
+
- sphinx/_build/html/_static/minus.png
|
140
|
+
- sphinx/_build/html/_static/plus.png
|
141
|
+
- sphinx/_build/html/_static/pygments.css
|
142
|
+
- sphinx/_build/html/_static/searchtools.js
|
143
|
+
- sphinx/_build/html/_static/underscore-1.3.1.js
|
144
|
+
- sphinx/_build/html/_static/underscore.js
|
145
|
+
- sphinx/_build/html/_static/up-pressed.png
|
146
|
+
- sphinx/_build/html/_static/up.png
|
147
|
+
- sphinx/_build/html/_static/websupport.js
|
148
|
+
- sphinx/_build/html/dvds.html
|
149
|
+
- sphinx/_build/html/firewalls.html
|
150
|
+
- sphinx/_build/html/genindex.html
|
151
|
+
- sphinx/_build/html/images.html
|
152
|
+
- sphinx/_build/html/index.html
|
153
|
+
- sphinx/_build/html/load_balancers.html
|
154
|
+
- sphinx/_build/html/logs.html
|
155
|
+
- sphinx/_build/html/monitoring_center.html
|
156
|
+
- sphinx/_build/html/monitoring_policies.html
|
157
|
+
- sphinx/_build/html/objects.inv
|
158
|
+
- sphinx/_build/html/private_networks.html
|
159
|
+
- sphinx/_build/html/public_ips.html
|
160
|
+
- sphinx/_build/html/rb-modindex.html
|
161
|
+
- sphinx/_build/html/search.html
|
162
|
+
- sphinx/_build/html/searchindex.js
|
163
|
+
- sphinx/_build/html/server_appliances.html
|
164
|
+
- sphinx/_build/html/servers.html
|
165
|
+
- sphinx/_build/html/shared_storages.html
|
166
|
+
- sphinx/_build/html/usages.html
|
167
|
+
- sphinx/_build/html/users.html
|
168
|
+
- sphinx/conf.py
|
169
|
+
- sphinx/dvds.rst
|
170
|
+
- sphinx/firewalls.rst
|
171
|
+
- sphinx/images.rst
|
172
|
+
- sphinx/index.rst
|
173
|
+
- sphinx/load_balancers.rst
|
174
|
+
- sphinx/logs.rst
|
175
|
+
- sphinx/make.bat
|
176
|
+
- sphinx/monitoring_center.rst
|
177
|
+
- sphinx/monitoring_policies.rst
|
178
|
+
- sphinx/private_networks.rst
|
179
|
+
- sphinx/public_ips.rst
|
180
|
+
- sphinx/server_appliances.rst
|
181
|
+
- sphinx/servers.rst
|
182
|
+
- sphinx/shared_storages.rst
|
183
|
+
- sphinx/usages.rst
|
184
|
+
- sphinx/users.rst
|
185
|
+
- test/mock-api/add-firewall.json
|
186
|
+
- test/mock-api/add-hdd.json
|
187
|
+
- test/mock-api/add-lb.json
|
188
|
+
- test/mock-api/add-new-ip.json
|
189
|
+
- test/mock-api/add-pn.json
|
190
|
+
- test/mock-api/add-port-mp.json
|
191
|
+
- test/mock-api/add-process-mp.json
|
192
|
+
- test/mock-api/add-rule-fp.json
|
193
|
+
- test/mock-api/add-rule-lb.json
|
194
|
+
- test/mock-api/add-server-ip.json
|
195
|
+
- test/mock-api/add-server-mp.json
|
196
|
+
- test/mock-api/assign-ip-fp.json
|
197
|
+
- test/mock-api/assign-server-lb.json
|
198
|
+
- test/mock-api/attach-server-pn.json
|
199
|
+
- test/mock-api/attach-server-storage.json
|
200
|
+
- test/mock-api/change-api-key.json
|
201
|
+
- test/mock-api/change-password.json
|
202
|
+
- test/mock-api/change-server-status.json
|
203
|
+
- test/mock-api/clone-server.json
|
204
|
+
- test/mock-api/create-fp.json
|
205
|
+
- test/mock-api/create-image.json
|
206
|
+
- test/mock-api/create-lb.json
|
207
|
+
- test/mock-api/create-mp.json
|
208
|
+
- test/mock-api/create-pn.json
|
209
|
+
- test/mock-api/create-public-ip.json
|
210
|
+
- test/mock-api/create-server.json
|
211
|
+
- test/mock-api/create-snapshot.json
|
212
|
+
- test/mock-api/create-storage.json
|
213
|
+
- test/mock-api/create-user.json
|
214
|
+
- test/mock-api/delete-fp.json
|
215
|
+
- test/mock-api/delete-image.json
|
216
|
+
- test/mock-api/delete-ip.json
|
217
|
+
- test/mock-api/delete-lb.json
|
218
|
+
- test/mock-api/delete-mp.json
|
219
|
+
- test/mock-api/delete-pn.json
|
220
|
+
- test/mock-api/delete-public-ip.json
|
221
|
+
- test/mock-api/delete-rule-fp.json
|
222
|
+
- test/mock-api/delete-server.json
|
223
|
+
- test/mock-api/delete-snapshot.json
|
224
|
+
- test/mock-api/delete-storage.json
|
225
|
+
- test/mock-api/delete-user.json
|
226
|
+
- test/mock-api/detach-server-lb.json
|
227
|
+
- test/mock-api/detach-server-mp.json
|
228
|
+
- test/mock-api/detach-server-storage.json
|
229
|
+
- test/mock-api/edit-image.json
|
230
|
+
- test/mock-api/eject-dvd.json
|
231
|
+
- test/mock-api/fixed-server-flavors.json
|
232
|
+
- test/mock-api/get-appliance.json
|
233
|
+
- test/mock-api/get-dvd.json
|
234
|
+
- test/mock-api/get-firewall.json
|
235
|
+
- test/mock-api/get-fixed-server.json
|
236
|
+
- test/mock-api/get-fp-rule.json
|
237
|
+
- test/mock-api/get-hardware.json
|
238
|
+
- test/mock-api/get-hdd.json
|
239
|
+
- test/mock-api/get-image.json
|
240
|
+
- test/mock-api/get-lb-rule.json
|
241
|
+
- test/mock-api/get-lb-server.json
|
242
|
+
- test/mock-api/get-load-balancer.json
|
243
|
+
- test/mock-api/get-log.json
|
244
|
+
- test/mock-api/get-monitoring-center.json
|
245
|
+
- test/mock-api/get-mp-port.json
|
246
|
+
- test/mock-api/get-mp-process.json
|
247
|
+
- test/mock-api/get-mp-server.json
|
248
|
+
- test/mock-api/get-mp.json
|
249
|
+
- test/mock-api/get-pn-server.json
|
250
|
+
- test/mock-api/get-private-network.json
|
251
|
+
- test/mock-api/get-public-ip.json
|
252
|
+
- test/mock-api/get-server-dvd.json
|
253
|
+
- test/mock-api/get-server-image.json
|
254
|
+
- test/mock-api/get-server-ip-fp.json
|
255
|
+
- test/mock-api/get-server-ip.json
|
256
|
+
- test/mock-api/get-server-pn.json
|
257
|
+
- test/mock-api/get-server-status.json
|
258
|
+
- test/mock-api/get-server-storage.json
|
259
|
+
- test/mock-api/get-server.json
|
260
|
+
- test/mock-api/get-storage.json
|
261
|
+
- test/mock-api/get-usage.json
|
262
|
+
- test/mock-api/get-user-api-key.json
|
263
|
+
- test/mock-api/get-user-api.json
|
264
|
+
- test/mock-api/get-user.json
|
265
|
+
- test/mock-api/list-appliances.json
|
266
|
+
- test/mock-api/list-credentials.json
|
267
|
+
- test/mock-api/list-dvds.json
|
268
|
+
- test/mock-api/list-firewalls.json
|
269
|
+
- test/mock-api/list-fp-rules.json
|
270
|
+
- test/mock-api/list-hdds.json
|
271
|
+
- test/mock-api/list-images.json
|
272
|
+
- test/mock-api/list-lb-rules.json
|
273
|
+
- test/mock-api/list-lb-servers.json
|
274
|
+
- test/mock-api/list-load-balancers.json
|
275
|
+
- test/mock-api/list-logs.json
|
276
|
+
- test/mock-api/list-monitoring-center-usages.json
|
277
|
+
- test/mock-api/list-mp-ports.json
|
278
|
+
- test/mock-api/list-mp-processes.json
|
279
|
+
- test/mock-api/list-mp-servers.json
|
280
|
+
- test/mock-api/list-mps.json
|
281
|
+
- test/mock-api/list-pn-servers.json
|
282
|
+
- test/mock-api/list-private-networks.json
|
283
|
+
- test/mock-api/list-public-ips.json
|
284
|
+
- test/mock-api/list-server-fps.json
|
285
|
+
- test/mock-api/list-server-ips-fp.json
|
286
|
+
- test/mock-api/list-server-ips.json
|
287
|
+
- test/mock-api/list-server-lbs.json
|
288
|
+
- test/mock-api/list-server-pns.json
|
289
|
+
- test/mock-api/list-servers.json
|
290
|
+
- test/mock-api/list-snapshots.json
|
291
|
+
- test/mock-api/list-storages.json
|
292
|
+
- test/mock-api/list-usages.json
|
293
|
+
- test/mock-api/list-user-ips.json
|
294
|
+
- test/mock-api/list-users.json
|
295
|
+
- test/mock-api/load-dvd.json
|
296
|
+
- test/mock-api/modify-fp.json
|
297
|
+
- test/mock-api/modify-lb.json
|
298
|
+
- test/mock-api/modify-mp.json
|
299
|
+
- test/mock-api/modify-pn.json
|
300
|
+
- test/mock-api/modify-port-mp.json
|
301
|
+
- test/mock-api/modify-process-mp.json
|
302
|
+
- test/mock-api/modify-public-ip.json
|
303
|
+
- test/mock-api/modify-server-hardware.json
|
304
|
+
- test/mock-api/modify-server-hdd.json
|
305
|
+
- test/mock-api/modify-server.json
|
306
|
+
- test/mock-api/modify-storage.json
|
307
|
+
- test/mock-api/modify-user-api.json
|
308
|
+
- test/mock-api/modify-user.json
|
309
|
+
- test/mock-api/reinstall-image.json
|
310
|
+
- test/mock-api/remove-firewall-policy.json
|
311
|
+
- test/mock-api/remove-hdd.json
|
312
|
+
- test/mock-api/remove-ip-fp.json
|
313
|
+
- test/mock-api/remove-lb.json
|
314
|
+
- test/mock-api/remove-pn.json
|
315
|
+
- test/mock-api/remove-port-mp.json
|
316
|
+
- test/mock-api/remove-process-mp.json
|
317
|
+
- test/mock-api/remove-rule-lb.json
|
318
|
+
- test/mock-api/remove-server-ip.json
|
319
|
+
- test/mock-api/remove-server-pn.json
|
320
|
+
- test/mock-api/restore-snapshot.json
|
321
|
+
- test/mock-api/storage-servers.json
|
322
|
+
- test/test_mock_dvd.rb
|
323
|
+
- test/test_mock_firewall.rb
|
324
|
+
- test/test_mock_image.rb
|
325
|
+
- test/test_mock_load_balancer.rb
|
326
|
+
- test/test_mock_log.rb
|
327
|
+
- test/test_mock_monitoring_center.rb
|
328
|
+
- test/test_mock_monitoring_policy.rb
|
329
|
+
- test/test_mock_private_network.rb
|
330
|
+
- test/test_mock_public_ip.rb
|
331
|
+
- test/test_mock_server.rb
|
332
|
+
- test/test_mock_server_appliance.rb
|
333
|
+
- test/test_mock_shared_storage.rb
|
334
|
+
- test/test_mock_usage.rb
|
335
|
+
- test/test_mock_user.rb
|
336
|
+
homepage: https://github.com/StackPointCloud/oneandone-cloudserver-sdk-ruby
|
337
|
+
licenses:
|
338
|
+
- Apache 2.0
|
339
|
+
metadata: {}
|
340
|
+
post_install_message:
|
341
|
+
rdoc_options: []
|
342
|
+
require_paths:
|
343
|
+
- lib
|
344
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
345
|
+
requirements:
|
346
|
+
- - '>='
|
347
|
+
- !ruby/object:Gem::Version
|
348
|
+
version: '0'
|
349
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
350
|
+
requirements:
|
351
|
+
- - '>='
|
352
|
+
- !ruby/object:Gem::Version
|
353
|
+
version: '0'
|
354
|
+
requirements: []
|
355
|
+
rubyforge_project:
|
356
|
+
rubygems_version: 2.0.14
|
357
|
+
signing_key:
|
358
|
+
specification_version: 4
|
359
|
+
summary: Official 1&1 SDK for Ruby
|
360
|
+
test_files: []
|