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
@@ -0,0 +1,231 @@
|
|
1
|
+
Load Balancers
|
2
|
+
*****************
|
3
|
+
|
4
|
+
.. rb:class:: OneAndOne::LoadBalancer()
|
5
|
+
|
6
|
+
The :rb:class:`LoadBalancer` class allows a user to perform actions against the 1and1 API.
|
7
|
+
|
8
|
+
|
9
|
+
.. rb:method:: list(page: nil, per_page: nil, sort: nil, q: nil, fields: nil)
|
10
|
+
|
11
|
+
Return a list of all load balancers.
|
12
|
+
|
13
|
+
:param page: Allows the use of pagination. Indicate which page to start on.
|
14
|
+
:type page: ``int``
|
15
|
+
|
16
|
+
:param per_page: Number of items per page.
|
17
|
+
:type per_page: ``int``
|
18
|
+
|
19
|
+
:param sort: ``sort: 'name'`` retrieves a list of elements sorted
|
20
|
+
alphabetically. ``sort: 'creation_date'`` retrieves a list of elements
|
21
|
+
sorted by their creation date in descending order.
|
22
|
+
:type sort: ``str``
|
23
|
+
|
24
|
+
:param q: ``q`` is for query. Use this parameter to return only the items
|
25
|
+
that match your search query.
|
26
|
+
:type q: ``str``
|
27
|
+
|
28
|
+
:param fields: Returns only the parameters requested.
|
29
|
+
(i.e. fields: 'id, name, description, hardware.ram')
|
30
|
+
:type fields: ``str``
|
31
|
+
|
32
|
+
:rtype: JSON
|
33
|
+
|
34
|
+
|
35
|
+
.. rb:method:: create(name: nil, description: nil, health_check_test: nil, health_check_interval: nil, persistence: nil, persistence_time: nil, method: nil, rules: nil, health_check_path: nil, health_check_parse: nil)
|
36
|
+
|
37
|
+
Create a load balancer.
|
38
|
+
|
39
|
+
:param name: load balancer name.
|
40
|
+
:type name: ``str``
|
41
|
+
|
42
|
+
:param description: load balancer description.
|
43
|
+
:type description: ``str``
|
44
|
+
|
45
|
+
:param health_check_test: possible values are ``"NONE"`` or ``"TCP"``.
|
46
|
+
:type health_check_test: ``str``
|
47
|
+
|
48
|
+
:param health_check_interval: Health check period in seconds. Can range between ``5`` and ``300`` seconds.
|
49
|
+
:type health_check_interval: ``int``
|
50
|
+
|
51
|
+
:param persistence: enable or disable persistence.
|
52
|
+
:type persistence: ``bool``
|
53
|
+
|
54
|
+
:param persistence_time: Persistence time in seconds. Required if persistence is enabled. Can range from ``30`` to ``1200`` seconds
|
55
|
+
:type persistence_time: ``int``
|
56
|
+
|
57
|
+
:param method: balancing procedure. Possible values are ``"ROUND_ROBIN"`` or ``"LEAST_CONNECTIONS"``.
|
58
|
+
:type method: ``str``
|
59
|
+
|
60
|
+
:param rules: takes an array of "rule" objects to be added to the load balancer.
|
61
|
+
:type rules: ``array``
|
62
|
+
|
63
|
+
:param health_check_path: Url to call for checking. Required for HTTP health check.
|
64
|
+
:type health_check_path: ``str``
|
65
|
+
|
66
|
+
:param health_check_parse: Regular expression to check. Required for HTTP health check.
|
67
|
+
:type health_check_parse: ``str``
|
68
|
+
|
69
|
+
|
70
|
+
.. rb:method:: get(load_balancer_id: @id)
|
71
|
+
|
72
|
+
Returns the current specs of a load balancer.
|
73
|
+
|
74
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
75
|
+
:type load_balancer_id: ``str``
|
76
|
+
|
77
|
+
:rtype: JSON
|
78
|
+
|
79
|
+
|
80
|
+
.. rb:method:: modify(load_balancer_id: @id, name: nil, description: nil, health_check_test: nil, health_check_interval: nil, persistence: nil, persistence_time: nil, method: nil, health_check_path: nil, health_check_parse: nil)
|
81
|
+
|
82
|
+
Modify a load balancer.
|
83
|
+
|
84
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
85
|
+
:type load_balancer_id: ``str``
|
86
|
+
|
87
|
+
:param name: load balancer name.
|
88
|
+
:type name: ``str``
|
89
|
+
|
90
|
+
:param description: load balancer description.
|
91
|
+
:type description: ``str``
|
92
|
+
|
93
|
+
:param health_check_test: possible values are ``"NONE"``,``"TCP"``, or ``"HTTP"``.
|
94
|
+
:type health_check_test: ``str``
|
95
|
+
|
96
|
+
:param health_check_interval: Health check period in seconds.
|
97
|
+
:type health_check_interval: ``int``
|
98
|
+
|
99
|
+
:param persistence: enable or disable persistnece.
|
100
|
+
:type persistence: ``bool``
|
101
|
+
|
102
|
+
:param persistence_time: Persistence time in seconds. Required if persistence is enabled.
|
103
|
+
:type persistence_time: ``int``
|
104
|
+
|
105
|
+
:param method: balancing procedure. possible values are ``"ROUND_ROBIN"`` or ``"LEAST_CONNECTIONS"``.
|
106
|
+
:type method: ``str``
|
107
|
+
|
108
|
+
:param health_check_path: Url to call for checking. Required for HTTP health check.
|
109
|
+
:type health_check_path: ``str``
|
110
|
+
|
111
|
+
:param health_check_parse: Regular expression to check. Required for HTTP health check.
|
112
|
+
:type health_check_parse: ``str``
|
113
|
+
|
114
|
+
:rtype: JSON
|
115
|
+
|
116
|
+
|
117
|
+
.. rb:method:: delete(load_balancer_id: @id)
|
118
|
+
|
119
|
+
Delete a load balancer.
|
120
|
+
|
121
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
122
|
+
:type load_balancer_id: ``str``
|
123
|
+
|
124
|
+
:rtype: JSON
|
125
|
+
|
126
|
+
|
127
|
+
.. rb:method:: ips(load_balancer_id: @id)
|
128
|
+
|
129
|
+
Returns a list of the IP's assigned to a load balancer.
|
130
|
+
|
131
|
+
Delete a load balancer.
|
132
|
+
|
133
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
134
|
+
:type load_balancer_id: ``str``
|
135
|
+
|
136
|
+
:rtype: JSON
|
137
|
+
|
138
|
+
|
139
|
+
.. rb:method:: ip(load_balancer_id: @id, ip_id: nil)
|
140
|
+
|
141
|
+
Returns information about an IP assigned to a load balancer.
|
142
|
+
|
143
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
144
|
+
:type load_balancer_id: ``str``
|
145
|
+
|
146
|
+
:param ip_id: the unique identifier for the IP.
|
147
|
+
:type ip_id: ``str``
|
148
|
+
|
149
|
+
:rtype: JSON
|
150
|
+
|
151
|
+
|
152
|
+
.. rb:method:: remove_ip(load_balancer_id: @id, ip_id: nil)
|
153
|
+
|
154
|
+
Remove an IP from a load balancer.
|
155
|
+
|
156
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
157
|
+
:type load_balancer_id: ``str``
|
158
|
+
|
159
|
+
:param ip_id: the unique identifier for the IP.
|
160
|
+
:type ip_id: ``str``
|
161
|
+
|
162
|
+
:rtype: JSON
|
163
|
+
|
164
|
+
|
165
|
+
.. rb:method:: add_ips(load_balancer_id: @id, ips: nil)
|
166
|
+
|
167
|
+
Assign IP's to a load balancer.
|
168
|
+
|
169
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
170
|
+
:type load_balancer_id: ``str``
|
171
|
+
|
172
|
+
:param ips: takes an array of IP strings to be added to the load balancer.
|
173
|
+
:type ips: ``array``
|
174
|
+
|
175
|
+
:rtype: JSON
|
176
|
+
|
177
|
+
|
178
|
+
.. rb:method:: rules(load_balancer_id: @id)
|
179
|
+
|
180
|
+
Returns a list of the load balancer's rules.
|
181
|
+
|
182
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
183
|
+
:type load_balancer_id: ``str``
|
184
|
+
|
185
|
+
:rtype: JSON
|
186
|
+
|
187
|
+
|
188
|
+
.. rb:method:: rule(load_balancer_id: @id, rule_id: nil)
|
189
|
+
|
190
|
+
Returns information about a load balancer's rule.
|
191
|
+
|
192
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
193
|
+
:type load_balancer_id: ``str``
|
194
|
+
|
195
|
+
:param rule_id: the unique identifier for the rule.
|
196
|
+
:type rule_id: ``str``
|
197
|
+
|
198
|
+
:rtype: JSON
|
199
|
+
|
200
|
+
|
201
|
+
.. rb:method:: add_rules(load_balancer_id: @id, rules: nil)
|
202
|
+
|
203
|
+
Add rules to a load balancer.
|
204
|
+
|
205
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
206
|
+
:type load_balancer_id: ``str``
|
207
|
+
|
208
|
+
:param rules: takes an array of "rule" objects to be added to the load balancer.
|
209
|
+
:type rules: ``array``
|
210
|
+
|
211
|
+
:rtype: JSON
|
212
|
+
|
213
|
+
|
214
|
+
.. rb:method:: remove_rule(load_balancer_id: @id, rule_id: nil)
|
215
|
+
|
216
|
+
Remove a load balancer's rule.
|
217
|
+
|
218
|
+
:param load_balancer_id: the unique identifier for the load balancer.
|
219
|
+
:type load_balancer_id: ``str``
|
220
|
+
|
221
|
+
:param rule_id: the unique identifier for the rule.
|
222
|
+
:type rule_id: ``str``
|
223
|
+
|
224
|
+
:rtype: JSON
|
225
|
+
|
226
|
+
|
227
|
+
.. rb:method:: wait_for()
|
228
|
+
|
229
|
+
Polls the load balancer until an "ACTIVE" state is returned. Use this when chaining actions.
|
230
|
+
|
231
|
+
:rtype: ``nil``
|
data/sphinx/logs.rst
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
Logs
|
2
|
+
*****************
|
3
|
+
|
4
|
+
.. rb:class:: OneAndOne::Log()
|
5
|
+
|
6
|
+
The :rb:class:`Log` class allows a user to perform actions against the 1and1 API.
|
7
|
+
|
8
|
+
|
9
|
+
.. rb:method:: list(page: nil, per_page: nil, sort: nil, q: nil, fields: nil, period: 'LAST_24H', start_date: nil, end_date: nil)
|
10
|
+
|
11
|
+
List all logs by time period.
|
12
|
+
|
13
|
+
:param page: Allows the use of pagination. Indicate which page to start on.
|
14
|
+
:type page: ``int``
|
15
|
+
|
16
|
+
:param per_page: Number of items per page.
|
17
|
+
:type per_page: ``int``
|
18
|
+
|
19
|
+
:param sort: ``sort: 'name'`` retrieves a list of elements sorted
|
20
|
+
alphabetically. ``sort: 'creation_date'`` retrieves a list of elements
|
21
|
+
sorted by their creation date in descending order.
|
22
|
+
:type sort: ``str``
|
23
|
+
|
24
|
+
:param q: ``q`` is for query. Use this parameter to return only the items
|
25
|
+
that match your search query.
|
26
|
+
:type q: ``str``
|
27
|
+
|
28
|
+
:param fields: Returns only the parameters requested.
|
29
|
+
(i.e. fields: 'id, name, description, hardware.ram')
|
30
|
+
:type fields: ``str``
|
31
|
+
|
32
|
+
:param period: the time range of logs to be shown. Possible values are
|
33
|
+
``'LAST_HOUR'``, ``'LAST_24H'``, ``'LAST_7D'``, ``'LAST_30D'``,
|
34
|
+
``'LAST_365D'``, or ``'CUSTOM'``
|
35
|
+
:type period: ``str``
|
36
|
+
|
37
|
+
:param start_date: start point. Only required if using ``'CUSTOM'`` for the
|
38
|
+
``period`` parameter. *Format:* ``2015-19-05T00:05:00Z``
|
39
|
+
:type start_date: ``str``
|
40
|
+
|
41
|
+
:param end_date: end point. Only required if using ``'CUSTOM'`` for the
|
42
|
+
``period`` parameter. *Format:* ``2015-19-05T00:10:00Z``
|
43
|
+
:type end_date: ``str``
|
44
|
+
|
45
|
+
:rtype: JSON
|
46
|
+
|
47
|
+
|
48
|
+
.. rb:method:: get(log_id: nil)
|
49
|
+
|
50
|
+
Returns information about a log
|
51
|
+
|
52
|
+
:param log_id: the unique identifier for the log.
|
53
|
+
:type log_id: ``str``
|
54
|
+
|
55
|
+
:rtype: JSON
|
data/sphinx/make.bat
ADDED
@@ -0,0 +1,263 @@
|
|
1
|
+
@ECHO OFF
|
2
|
+
|
3
|
+
REM Command file for Sphinx documentation
|
4
|
+
|
5
|
+
if "%SPHINXBUILD%" == "" (
|
6
|
+
set SPHINXBUILD=sphinx-build
|
7
|
+
)
|
8
|
+
set BUILDDIR=_build
|
9
|
+
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
|
10
|
+
set I18NSPHINXOPTS=%SPHINXOPTS% .
|
11
|
+
if NOT "%PAPER%" == "" (
|
12
|
+
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
|
13
|
+
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
|
14
|
+
)
|
15
|
+
|
16
|
+
if "%1" == "" goto help
|
17
|
+
|
18
|
+
if "%1" == "help" (
|
19
|
+
:help
|
20
|
+
echo.Please use `make ^<target^>` where ^<target^> is one of
|
21
|
+
echo. html to make standalone HTML files
|
22
|
+
echo. dirhtml to make HTML files named index.html in directories
|
23
|
+
echo. singlehtml to make a single large HTML file
|
24
|
+
echo. pickle to make pickle files
|
25
|
+
echo. json to make JSON files
|
26
|
+
echo. htmlhelp to make HTML files and a HTML help project
|
27
|
+
echo. qthelp to make HTML files and a qthelp project
|
28
|
+
echo. devhelp to make HTML files and a Devhelp project
|
29
|
+
echo. epub to make an epub
|
30
|
+
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
|
31
|
+
echo. text to make text files
|
32
|
+
echo. man to make manual pages
|
33
|
+
echo. texinfo to make Texinfo files
|
34
|
+
echo. gettext to make PO message catalogs
|
35
|
+
echo. changes to make an overview over all changed/added/deprecated items
|
36
|
+
echo. xml to make Docutils-native XML files
|
37
|
+
echo. pseudoxml to make pseudoxml-XML files for display purposes
|
38
|
+
echo. linkcheck to check all external links for integrity
|
39
|
+
echo. doctest to run all doctests embedded in the documentation if enabled
|
40
|
+
echo. coverage to run coverage check of the documentation if enabled
|
41
|
+
goto end
|
42
|
+
)
|
43
|
+
|
44
|
+
if "%1" == "clean" (
|
45
|
+
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
|
46
|
+
del /q /s %BUILDDIR%\*
|
47
|
+
goto end
|
48
|
+
)
|
49
|
+
|
50
|
+
|
51
|
+
REM Check if sphinx-build is available and fallback to Python version if any
|
52
|
+
%SPHINXBUILD% 1>NUL 2>NUL
|
53
|
+
if errorlevel 9009 goto sphinx_python
|
54
|
+
goto sphinx_ok
|
55
|
+
|
56
|
+
:sphinx_python
|
57
|
+
|
58
|
+
set SPHINXBUILD=python -m sphinx.__init__
|
59
|
+
%SPHINXBUILD% 2> nul
|
60
|
+
if errorlevel 9009 (
|
61
|
+
echo.
|
62
|
+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
63
|
+
echo.installed, then set the SPHINXBUILD environment variable to point
|
64
|
+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
65
|
+
echo.may add the Sphinx directory to PATH.
|
66
|
+
echo.
|
67
|
+
echo.If you don't have Sphinx installed, grab it from
|
68
|
+
echo.http://sphinx-doc.org/
|
69
|
+
exit /b 1
|
70
|
+
)
|
71
|
+
|
72
|
+
:sphinx_ok
|
73
|
+
|
74
|
+
|
75
|
+
if "%1" == "html" (
|
76
|
+
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
|
77
|
+
if errorlevel 1 exit /b 1
|
78
|
+
echo.
|
79
|
+
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
|
80
|
+
goto end
|
81
|
+
)
|
82
|
+
|
83
|
+
if "%1" == "dirhtml" (
|
84
|
+
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
|
85
|
+
if errorlevel 1 exit /b 1
|
86
|
+
echo.
|
87
|
+
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
|
88
|
+
goto end
|
89
|
+
)
|
90
|
+
|
91
|
+
if "%1" == "singlehtml" (
|
92
|
+
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
|
93
|
+
if errorlevel 1 exit /b 1
|
94
|
+
echo.
|
95
|
+
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
|
96
|
+
goto end
|
97
|
+
)
|
98
|
+
|
99
|
+
if "%1" == "pickle" (
|
100
|
+
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
|
101
|
+
if errorlevel 1 exit /b 1
|
102
|
+
echo.
|
103
|
+
echo.Build finished; now you can process the pickle files.
|
104
|
+
goto end
|
105
|
+
)
|
106
|
+
|
107
|
+
if "%1" == "json" (
|
108
|
+
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
|
109
|
+
if errorlevel 1 exit /b 1
|
110
|
+
echo.
|
111
|
+
echo.Build finished; now you can process the JSON files.
|
112
|
+
goto end
|
113
|
+
)
|
114
|
+
|
115
|
+
if "%1" == "htmlhelp" (
|
116
|
+
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
|
117
|
+
if errorlevel 1 exit /b 1
|
118
|
+
echo.
|
119
|
+
echo.Build finished; now you can run HTML Help Workshop with the ^
|
120
|
+
.hhp project file in %BUILDDIR%/htmlhelp.
|
121
|
+
goto end
|
122
|
+
)
|
123
|
+
|
124
|
+
if "%1" == "qthelp" (
|
125
|
+
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
|
126
|
+
if errorlevel 1 exit /b 1
|
127
|
+
echo.
|
128
|
+
echo.Build finished; now you can run "qcollectiongenerator" with the ^
|
129
|
+
.qhcp project file in %BUILDDIR%/qthelp, like this:
|
130
|
+
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\1and1RubySDK.qhcp
|
131
|
+
echo.To view the help file:
|
132
|
+
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\1and1RubySDK.ghc
|
133
|
+
goto end
|
134
|
+
)
|
135
|
+
|
136
|
+
if "%1" == "devhelp" (
|
137
|
+
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
|
138
|
+
if errorlevel 1 exit /b 1
|
139
|
+
echo.
|
140
|
+
echo.Build finished.
|
141
|
+
goto end
|
142
|
+
)
|
143
|
+
|
144
|
+
if "%1" == "epub" (
|
145
|
+
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
|
146
|
+
if errorlevel 1 exit /b 1
|
147
|
+
echo.
|
148
|
+
echo.Build finished. The epub file is in %BUILDDIR%/epub.
|
149
|
+
goto end
|
150
|
+
)
|
151
|
+
|
152
|
+
if "%1" == "latex" (
|
153
|
+
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
|
154
|
+
if errorlevel 1 exit /b 1
|
155
|
+
echo.
|
156
|
+
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
|
157
|
+
goto end
|
158
|
+
)
|
159
|
+
|
160
|
+
if "%1" == "latexpdf" (
|
161
|
+
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
|
162
|
+
cd %BUILDDIR%/latex
|
163
|
+
make all-pdf
|
164
|
+
cd %~dp0
|
165
|
+
echo.
|
166
|
+
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
|
167
|
+
goto end
|
168
|
+
)
|
169
|
+
|
170
|
+
if "%1" == "latexpdfja" (
|
171
|
+
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
|
172
|
+
cd %BUILDDIR%/latex
|
173
|
+
make all-pdf-ja
|
174
|
+
cd %~dp0
|
175
|
+
echo.
|
176
|
+
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
|
177
|
+
goto end
|
178
|
+
)
|
179
|
+
|
180
|
+
if "%1" == "text" (
|
181
|
+
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
|
182
|
+
if errorlevel 1 exit /b 1
|
183
|
+
echo.
|
184
|
+
echo.Build finished. The text files are in %BUILDDIR%/text.
|
185
|
+
goto end
|
186
|
+
)
|
187
|
+
|
188
|
+
if "%1" == "man" (
|
189
|
+
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
|
190
|
+
if errorlevel 1 exit /b 1
|
191
|
+
echo.
|
192
|
+
echo.Build finished. The manual pages are in %BUILDDIR%/man.
|
193
|
+
goto end
|
194
|
+
)
|
195
|
+
|
196
|
+
if "%1" == "texinfo" (
|
197
|
+
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
|
198
|
+
if errorlevel 1 exit /b 1
|
199
|
+
echo.
|
200
|
+
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
|
201
|
+
goto end
|
202
|
+
)
|
203
|
+
|
204
|
+
if "%1" == "gettext" (
|
205
|
+
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
|
206
|
+
if errorlevel 1 exit /b 1
|
207
|
+
echo.
|
208
|
+
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
|
209
|
+
goto end
|
210
|
+
)
|
211
|
+
|
212
|
+
if "%1" == "changes" (
|
213
|
+
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
|
214
|
+
if errorlevel 1 exit /b 1
|
215
|
+
echo.
|
216
|
+
echo.The overview file is in %BUILDDIR%/changes.
|
217
|
+
goto end
|
218
|
+
)
|
219
|
+
|
220
|
+
if "%1" == "linkcheck" (
|
221
|
+
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
|
222
|
+
if errorlevel 1 exit /b 1
|
223
|
+
echo.
|
224
|
+
echo.Link check complete; look for any errors in the above output ^
|
225
|
+
or in %BUILDDIR%/linkcheck/output.txt.
|
226
|
+
goto end
|
227
|
+
)
|
228
|
+
|
229
|
+
if "%1" == "doctest" (
|
230
|
+
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
|
231
|
+
if errorlevel 1 exit /b 1
|
232
|
+
echo.
|
233
|
+
echo.Testing of doctests in the sources finished, look at the ^
|
234
|
+
results in %BUILDDIR%/doctest/output.txt.
|
235
|
+
goto end
|
236
|
+
)
|
237
|
+
|
238
|
+
if "%1" == "coverage" (
|
239
|
+
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
|
240
|
+
if errorlevel 1 exit /b 1
|
241
|
+
echo.
|
242
|
+
echo.Testing of coverage in the sources finished, look at the ^
|
243
|
+
results in %BUILDDIR%/coverage/python.txt.
|
244
|
+
goto end
|
245
|
+
)
|
246
|
+
|
247
|
+
if "%1" == "xml" (
|
248
|
+
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
|
249
|
+
if errorlevel 1 exit /b 1
|
250
|
+
echo.
|
251
|
+
echo.Build finished. The XML files are in %BUILDDIR%/xml.
|
252
|
+
goto end
|
253
|
+
)
|
254
|
+
|
255
|
+
if "%1" == "pseudoxml" (
|
256
|
+
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
|
257
|
+
if errorlevel 1 exit /b 1
|
258
|
+
echo.
|
259
|
+
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
|
260
|
+
goto end
|
261
|
+
)
|
262
|
+
|
263
|
+
:end
|