hpcloud 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +127 -0
- data/LICENSE +1 -0
- data/README.rdoc +59 -0
- data/bin/hpcloud +11 -0
- data/completion/hpcloud +372 -0
- data/lib/hpcloud/accounts.rb +288 -0
- data/lib/hpcloud/acl.rb +112 -0
- data/lib/hpcloud/acl_cmd.rb +81 -0
- data/lib/hpcloud/address_helper.rb +63 -0
- data/lib/hpcloud/addresses.rb +42 -0
- data/lib/hpcloud/auth_cache.rb +128 -0
- data/lib/hpcloud/base_helper.rb +56 -0
- data/lib/hpcloud/checker.rb +104 -0
- data/lib/hpcloud/cli.rb +170 -0
- data/lib/hpcloud/cli_status.rb +80 -0
- data/lib/hpcloud/columns.rb +46 -0
- data/lib/hpcloud/commands/account/catalog.rb +57 -0
- data/lib/hpcloud/commands/account/copy.rb +44 -0
- data/lib/hpcloud/commands/account/edit.rb +204 -0
- data/lib/hpcloud/commands/account/remove.rb +53 -0
- data/lib/hpcloud/commands/account/setup.rb +40 -0
- data/lib/hpcloud/commands/account/tenants.rb +43 -0
- data/lib/hpcloud/commands/account/use.rb +46 -0
- data/lib/hpcloud/commands/account/verify.rb +55 -0
- data/lib/hpcloud/commands/account.rb +67 -0
- data/lib/hpcloud/commands/acl/grant.rb +59 -0
- data/lib/hpcloud/commands/acl/revoke.rb +52 -0
- data/lib/hpcloud/commands/acl.rb +63 -0
- data/lib/hpcloud/commands/addresses/add.rb +67 -0
- data/lib/hpcloud/commands/addresses/associate.rb +63 -0
- data/lib/hpcloud/commands/addresses/disassociate.rb +58 -0
- data/lib/hpcloud/commands/addresses/remove.rb +57 -0
- data/lib/hpcloud/commands/addresses.rb +63 -0
- data/lib/hpcloud/commands/cdn_containers/add.rb +56 -0
- data/lib/hpcloud/commands/cdn_containers/get.rb +70 -0
- data/lib/hpcloud/commands/cdn_containers/location.rb +61 -0
- data/lib/hpcloud/commands/cdn_containers/remove.rb +55 -0
- data/lib/hpcloud/commands/cdn_containers/set.rb +63 -0
- data/lib/hpcloud/commands/cdn_containers.rb +72 -0
- data/lib/hpcloud/commands/complete.rb +60 -0
- data/lib/hpcloud/commands/config/set.rb +63 -0
- data/lib/hpcloud/commands/config.rb +46 -0
- data/lib/hpcloud/commands/containers/add.rb +67 -0
- data/lib/hpcloud/commands/containers/remove.rb +63 -0
- data/lib/hpcloud/commands/containers/sync.rb +59 -0
- data/lib/hpcloud/commands/containers.rb +24 -0
- data/lib/hpcloud/commands/copy.rb +78 -0
- data/lib/hpcloud/commands/dns/add.rb +56 -0
- data/lib/hpcloud/commands/dns/records/add.rb +50 -0
- data/lib/hpcloud/commands/dns/records/remove.rb +53 -0
- data/lib/hpcloud/commands/dns/records/update.rb +50 -0
- data/lib/hpcloud/commands/dns/records.rb +57 -0
- data/lib/hpcloud/commands/dns/remove.rb +57 -0
- data/lib/hpcloud/commands/dns/servers.rb +57 -0
- data/lib/hpcloud/commands/dns/update.rb +58 -0
- data/lib/hpcloud/commands/dns.rb +65 -0
- data/lib/hpcloud/commands/flavors.rb +59 -0
- data/lib/hpcloud/commands/get.rb +58 -0
- data/lib/hpcloud/commands/images/add.rb +54 -0
- data/lib/hpcloud/commands/images/metadata/add.rb +54 -0
- data/lib/hpcloud/commands/images/metadata/remove.rb +56 -0
- data/lib/hpcloud/commands/images/metadata.rb +54 -0
- data/lib/hpcloud/commands/images/remove.rb +58 -0
- data/lib/hpcloud/commands/images.rb +67 -0
- data/lib/hpcloud/commands/info.rb +41 -0
- data/lib/hpcloud/commands/keypairs/add.rb +73 -0
- data/lib/hpcloud/commands/keypairs/import.rb +62 -0
- data/lib/hpcloud/commands/keypairs/private/add.rb +44 -0
- data/lib/hpcloud/commands/keypairs/private/location.rb +50 -0
- data/lib/hpcloud/commands/keypairs/private/remove.rb +52 -0
- data/lib/hpcloud/commands/keypairs/private.rb +47 -0
- data/lib/hpcloud/commands/keypairs/public_key.rb +51 -0
- data/lib/hpcloud/commands/keypairs/remove.rb +58 -0
- data/lib/hpcloud/commands/keypairs.rb +64 -0
- data/lib/hpcloud/commands/lb/add.rb +92 -0
- data/lib/hpcloud/commands/lb/algorithms.rb +55 -0
- data/lib/hpcloud/commands/lb/limits.rb +55 -0
- data/lib/hpcloud/commands/lb/nodes/add.rb +47 -0
- data/lib/hpcloud/commands/lb/nodes/remove.rb +54 -0
- data/lib/hpcloud/commands/lb/nodes/update.rb +47 -0
- data/lib/hpcloud/commands/lb/nodes.rb +55 -0
- data/lib/hpcloud/commands/lb/protocols.rb +55 -0
- data/lib/hpcloud/commands/lb/remove.rb +54 -0
- data/lib/hpcloud/commands/lb/update.rb +46 -0
- data/lib/hpcloud/commands/lb/versions.rb +55 -0
- data/lib/hpcloud/commands/lb/virtualips.rb +51 -0
- data/lib/hpcloud/commands/lb.rb +73 -0
- data/lib/hpcloud/commands/list.rb +114 -0
- data/lib/hpcloud/commands/location.rb +56 -0
- data/lib/hpcloud/commands/metadata/set.rb +61 -0
- data/lib/hpcloud/commands/metadata.rb +60 -0
- data/lib/hpcloud/commands/migrate.rb +61 -0
- data/lib/hpcloud/commands/move.rb +73 -0
- data/lib/hpcloud/commands/networks/add.rb +55 -0
- data/lib/hpcloud/commands/networks/remove.rb +57 -0
- data/lib/hpcloud/commands/networks/update.rb +54 -0
- data/lib/hpcloud/commands/networks.rb +63 -0
- data/lib/hpcloud/commands/ports/add.rb +81 -0
- data/lib/hpcloud/commands/ports/remove.rb +57 -0
- data/lib/hpcloud/commands/ports/update.rb +67 -0
- data/lib/hpcloud/commands/ports.rb +63 -0
- data/lib/hpcloud/commands/remove.rb +75 -0
- data/lib/hpcloud/commands/routers/add.rb +67 -0
- data/lib/hpcloud/commands/routers/interface/add.rb +59 -0
- data/lib/hpcloud/commands/routers/interface/remove.rb +66 -0
- data/lib/hpcloud/commands/routers/remove.rb +54 -0
- data/lib/hpcloud/commands/routers/update.rb +66 -0
- data/lib/hpcloud/commands/routers.rb +66 -0
- data/lib/hpcloud/commands/securitygroups/add.rb +52 -0
- data/lib/hpcloud/commands/securitygroups/remove.rb +57 -0
- data/lib/hpcloud/commands/securitygroups/rules/add.rb +126 -0
- data/lib/hpcloud/commands/securitygroups/rules/remove.rb +51 -0
- data/lib/hpcloud/commands/securitygroups/rules.rb +56 -0
- data/lib/hpcloud/commands/securitygroups.rb +62 -0
- data/lib/hpcloud/commands/servers/add.rb +100 -0
- data/lib/hpcloud/commands/servers/console.rb +81 -0
- data/lib/hpcloud/commands/servers/limits.rb +46 -0
- data/lib/hpcloud/commands/servers/metadata/add.rb +56 -0
- data/lib/hpcloud/commands/servers/metadata/remove.rb +57 -0
- data/lib/hpcloud/commands/servers/metadata.rb +56 -0
- data/lib/hpcloud/commands/servers/password.rb +47 -0
- data/lib/hpcloud/commands/servers/ratelimits.rb +46 -0
- data/lib/hpcloud/commands/servers/reboot.rb +61 -0
- data/lib/hpcloud/commands/servers/rebuild.rb +59 -0
- data/lib/hpcloud/commands/servers/remove.rb +58 -0
- data/lib/hpcloud/commands/servers/securitygroups/add.rb +47 -0
- data/lib/hpcloud/commands/servers/securitygroups/remove.rb +47 -0
- data/lib/hpcloud/commands/servers/ssh.rb +92 -0
- data/lib/hpcloud/commands/servers.rb +92 -0
- data/lib/hpcloud/commands/snapshots/add.rb +62 -0
- data/lib/hpcloud/commands/snapshots/remove.rb +58 -0
- data/lib/hpcloud/commands/snapshots.rb +62 -0
- data/lib/hpcloud/commands/subnets/add.rb +78 -0
- data/lib/hpcloud/commands/subnets/remove.rb +57 -0
- data/lib/hpcloud/commands/subnets/update.rb +70 -0
- data/lib/hpcloud/commands/subnets.rb +63 -0
- data/lib/hpcloud/commands/tempurl.rb +62 -0
- data/lib/hpcloud/commands/volumes/add.rb +88 -0
- data/lib/hpcloud/commands/volumes/attach.rb +59 -0
- data/lib/hpcloud/commands/volumes/detach.rb +57 -0
- data/lib/hpcloud/commands/volumes/metadata/add.rb +54 -0
- data/lib/hpcloud/commands/volumes/metadata.rb +55 -0
- data/lib/hpcloud/commands/volumes/remove.rb +57 -0
- data/lib/hpcloud/commands/volumes/server.rb +64 -0
- data/lib/hpcloud/commands/volumes.rb +65 -0
- data/lib/hpcloud/config.rb +205 -0
- data/lib/hpcloud/connection.rb +290 -0
- data/lib/hpcloud/container_resource.rb +175 -0
- data/lib/hpcloud/database_helper.rb +70 -0
- data/lib/hpcloud/databases.rb +38 -0
- data/lib/hpcloud/dns_helper.rb +125 -0
- data/lib/hpcloud/dnss.rb +38 -0
- data/lib/hpcloud/error_response.rb +89 -0
- data/lib/hpcloud/exceptions/base.rb +35 -0
- data/lib/hpcloud/exceptions/general.rb +34 -0
- data/lib/hpcloud/exceptions/not_found.rb +34 -0
- data/lib/hpcloud/flavors.rb +40 -0
- data/lib/hpcloud/floating_ip_helper.rb +114 -0
- data/lib/hpcloud/floating_ips.rb +42 -0
- data/lib/hpcloud/fog_collection.rb +124 -0
- data/lib/hpcloud/image_helper.rb +111 -0
- data/lib/hpcloud/images.rb +43 -0
- data/lib/hpcloud/keypair_helper.rb +109 -0
- data/lib/hpcloud/keypairs.rb +41 -0
- data/lib/hpcloud/lb_algorithms.rb +37 -0
- data/lib/hpcloud/lb_limits.rb +37 -0
- data/lib/hpcloud/lb_nodes.rb +42 -0
- data/lib/hpcloud/lb_protocols.rb +37 -0
- data/lib/hpcloud/lb_versions.rb +37 -0
- data/lib/hpcloud/lb_virtualips.rb +42 -0
- data/lib/hpcloud/lbs.rb +38 -0
- data/lib/hpcloud/local_resource.rb +183 -0
- data/lib/hpcloud/log.rb +55 -0
- data/lib/hpcloud/metadata.rb +118 -0
- data/lib/hpcloud/monkey.rb +22 -0
- data/lib/hpcloud/network_helper.rb +88 -0
- data/lib/hpcloud/networks.rb +47 -0
- data/lib/hpcloud/object_store.rb +66 -0
- data/lib/hpcloud/port_helper.rb +150 -0
- data/lib/hpcloud/ports.rb +38 -0
- data/lib/hpcloud/progress.rb +53 -0
- data/lib/hpcloud/remote_resource.rb +512 -0
- data/lib/hpcloud/resource.rb +264 -0
- data/lib/hpcloud/resource_factory.rb +110 -0
- data/lib/hpcloud/routers.rb +56 -0
- data/lib/hpcloud/rule_helper.rb +70 -0
- data/lib/hpcloud/rules.rb +41 -0
- data/lib/hpcloud/security_group_helper.rb +59 -0
- data/lib/hpcloud/security_groups.rb +37 -0
- data/lib/hpcloud/server_helper.rb +318 -0
- data/lib/hpcloud/servers.rb +47 -0
- data/lib/hpcloud/shared_resource.rb +172 -0
- data/lib/hpcloud/snapshot_helper.rb +78 -0
- data/lib/hpcloud/snapshots.rb +38 -0
- data/lib/hpcloud/subnet_helper.rb +170 -0
- data/lib/hpcloud/subnets.rb +38 -0
- data/lib/hpcloud/tableizer.rb +77 -0
- data/lib/hpcloud/thor_ext/thor.rb +54 -0
- data/lib/hpcloud/time_parser.rb +47 -0
- data/lib/hpcloud/version.rb +27 -0
- data/lib/hpcloud/volume_attachment.rb +58 -0
- data/lib/hpcloud/volume_attachments.rb +58 -0
- data/lib/hpcloud/volume_helper.rb +119 -0
- data/lib/hpcloud/volumes.rb +38 -0
- data/lib/hpcloud.rb +112 -0
- data/lib/monkey/hp/lb.rb +188 -0
- data/lib/monkey/hp/models/lb/algorithm.rb +32 -0
- data/lib/monkey/hp/models/lb/algorithms.rb +46 -0
- data/lib/monkey/hp/models/lb/limit.rb +38 -0
- data/lib/monkey/hp/models/lb/limits.rb +50 -0
- data/lib/monkey/hp/models/lb/load_balancer.rb +70 -0
- data/lib/monkey/hp/models/lb/load_balancers.rb +46 -0
- data/lib/monkey/hp/models/lb/node.rb +69 -0
- data/lib/monkey/hp/models/lb/nodes.rb +47 -0
- data/lib/monkey/hp/models/lb/protocol.rb +33 -0
- data/lib/monkey/hp/models/lb/protocols.rb +46 -0
- data/lib/monkey/hp/models/lb/version.rb +34 -0
- data/lib/monkey/hp/models/lb/versions.rb +47 -0
- data/lib/monkey/hp/models/lb/virtual_ip.rb +37 -0
- data/lib/monkey/hp/models/lb/virtual_ips.rb +47 -0
- data/lib/monkey/hp/requests/lb/create_load_balancer.rb +64 -0
- data/lib/monkey/hp/requests/lb/create_load_balancer_node.rb +58 -0
- data/lib/monkey/hp/requests/lb/delete_load_balancer.rb +54 -0
- data/lib/monkey/hp/requests/lb/delete_load_balancer_node.rb +60 -0
- data/lib/monkey/hp/requests/lb/get_load_balancer.rb +88 -0
- data/lib/monkey/hp/requests/lb/get_load_balancer_node.rb +60 -0
- data/lib/monkey/hp/requests/lb/get_version.rb +68 -0
- data/lib/monkey/hp/requests/lb/get_virtual_ips.rb +48 -0
- data/lib/monkey/hp/requests/lb/list_algorithms.rb +51 -0
- data/lib/monkey/hp/requests/lb/list_limits.rb +60 -0
- data/lib/monkey/hp/requests/lb/list_load_balancer_nodes.rb +79 -0
- data/lib/monkey/hp/requests/lb/list_load_balancer_virtual_ips.rb +76 -0
- data/lib/monkey/hp/requests/lb/list_load_balancers.rb +69 -0
- data/lib/monkey/hp/requests/lb/list_protocols.rb +51 -0
- data/lib/monkey/hp/requests/lb/list_versions.rb +51 -0
- data/lib/monkey/hp/requests/lb/update_load_balancer.rb +46 -0
- data/lib/monkey/hp/requests/lb/update_load_balancer_node.rb +50 -0
- metadata +368 -0
metadata
ADDED
@@ -0,0 +1,368 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hpcloud
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Matt Sanders
|
9
|
+
- Rupak Ganguly
|
10
|
+
- Terry Howe
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2012-06-08 00:00:00.000000000 Z
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: thor
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ~>
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.16.0
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
28
|
+
requirements:
|
29
|
+
- - ~>
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: 0.16.0
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: fog
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
36
|
+
requirements:
|
37
|
+
- - ~>
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.18'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.18'
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: ruby-progressbar
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.0.1
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ~>
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 1.0.1
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: rspec
|
66
|
+
requirement: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ~>
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 2.14.0
|
72
|
+
type: :development
|
73
|
+
prerelease: false
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ~>
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 2.14.0
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: json
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ~>
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: 1.7.5
|
88
|
+
type: :runtime
|
89
|
+
prerelease: false
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ~>
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 1.7.5
|
96
|
+
description: Useful command-line tools for managing your HP Cloud services
|
97
|
+
email:
|
98
|
+
- rupak.ganguly@hp.com
|
99
|
+
executables:
|
100
|
+
- hpcloud
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files:
|
103
|
+
- LICENSE
|
104
|
+
- README.rdoc
|
105
|
+
files:
|
106
|
+
- bin/hpcloud
|
107
|
+
- lib/hpcloud/cli.rb
|
108
|
+
- lib/hpcloud/lb_protocols.rb
|
109
|
+
- lib/hpcloud/auth_cache.rb
|
110
|
+
- lib/hpcloud/floating_ips.rb
|
111
|
+
- lib/hpcloud/volumes.rb
|
112
|
+
- lib/hpcloud/ports.rb
|
113
|
+
- lib/hpcloud/acl_cmd.rb
|
114
|
+
- lib/hpcloud/exceptions/not_found.rb
|
115
|
+
- lib/hpcloud/exceptions/general.rb
|
116
|
+
- lib/hpcloud/exceptions/base.rb
|
117
|
+
- lib/hpcloud/version.rb
|
118
|
+
- lib/hpcloud/addresses.rb
|
119
|
+
- lib/hpcloud/server_helper.rb
|
120
|
+
- lib/hpcloud/rules.rb
|
121
|
+
- lib/hpcloud/flavors.rb
|
122
|
+
- lib/hpcloud/log.rb
|
123
|
+
- lib/hpcloud/security_group_helper.rb
|
124
|
+
- lib/hpcloud/lb_virtualips.rb
|
125
|
+
- lib/hpcloud/resource_factory.rb
|
126
|
+
- lib/hpcloud/resource.rb
|
127
|
+
- lib/hpcloud/commands/account.rb
|
128
|
+
- lib/hpcloud/commands/tempurl.rb
|
129
|
+
- lib/hpcloud/commands/lb.rb
|
130
|
+
- lib/hpcloud/commands/addresses/add.rb
|
131
|
+
- lib/hpcloud/commands/addresses/disassociate.rb
|
132
|
+
- lib/hpcloud/commands/addresses/associate.rb
|
133
|
+
- lib/hpcloud/commands/addresses/remove.rb
|
134
|
+
- lib/hpcloud/commands/config/set.rb
|
135
|
+
- lib/hpcloud/commands/volumes.rb
|
136
|
+
- lib/hpcloud/commands/metadata/set.rb
|
137
|
+
- lib/hpcloud/commands/ports.rb
|
138
|
+
- lib/hpcloud/commands/ports/add.rb
|
139
|
+
- lib/hpcloud/commands/ports/update.rb
|
140
|
+
- lib/hpcloud/commands/ports/remove.rb
|
141
|
+
- lib/hpcloud/commands/lb/add.rb
|
142
|
+
- lib/hpcloud/commands/lb/nodes.rb
|
143
|
+
- lib/hpcloud/commands/lb/algorithms.rb
|
144
|
+
- lib/hpcloud/commands/lb/limits.rb
|
145
|
+
- lib/hpcloud/commands/lb/protocols.rb
|
146
|
+
- lib/hpcloud/commands/lb/virtualips.rb
|
147
|
+
- lib/hpcloud/commands/lb/update.rb
|
148
|
+
- lib/hpcloud/commands/lb/remove.rb
|
149
|
+
- lib/hpcloud/commands/lb/nodes/add.rb
|
150
|
+
- lib/hpcloud/commands/lb/nodes/update.rb
|
151
|
+
- lib/hpcloud/commands/lb/nodes/remove.rb
|
152
|
+
- lib/hpcloud/commands/lb/versions.rb
|
153
|
+
- lib/hpcloud/commands/subnets/add.rb
|
154
|
+
- lib/hpcloud/commands/subnets/update.rb
|
155
|
+
- lib/hpcloud/commands/subnets/remove.rb
|
156
|
+
- lib/hpcloud/commands/addresses.rb
|
157
|
+
- lib/hpcloud/commands/containers.rb
|
158
|
+
- lib/hpcloud/commands/networks/add.rb
|
159
|
+
- lib/hpcloud/commands/networks/update.rb
|
160
|
+
- lib/hpcloud/commands/networks/remove.rb
|
161
|
+
- lib/hpcloud/commands/dns.rb
|
162
|
+
- lib/hpcloud/commands/acl/grant.rb
|
163
|
+
- lib/hpcloud/commands/acl/revoke.rb
|
164
|
+
- lib/hpcloud/commands/flavors.rb
|
165
|
+
- lib/hpcloud/commands/copy.rb
|
166
|
+
- lib/hpcloud/commands/securitygroups/add.rb
|
167
|
+
- lib/hpcloud/commands/securitygroups/rules.rb
|
168
|
+
- lib/hpcloud/commands/securitygroups/rules/add.rb
|
169
|
+
- lib/hpcloud/commands/securitygroups/rules/remove.rb
|
170
|
+
- lib/hpcloud/commands/securitygroups/remove.rb
|
171
|
+
- lib/hpcloud/commands/snapshots/add.rb
|
172
|
+
- lib/hpcloud/commands/snapshots/remove.rb
|
173
|
+
- lib/hpcloud/commands/keypairs/private.rb
|
174
|
+
- lib/hpcloud/commands/keypairs/add.rb
|
175
|
+
- lib/hpcloud/commands/keypairs/public_key.rb
|
176
|
+
- lib/hpcloud/commands/keypairs/private/add.rb
|
177
|
+
- lib/hpcloud/commands/keypairs/private/remove.rb
|
178
|
+
- lib/hpcloud/commands/keypairs/private/location.rb
|
179
|
+
- lib/hpcloud/commands/keypairs/import.rb
|
180
|
+
- lib/hpcloud/commands/keypairs/remove.rb
|
181
|
+
- lib/hpcloud/commands/routers/add.rb
|
182
|
+
- lib/hpcloud/commands/routers/update.rb
|
183
|
+
- lib/hpcloud/commands/routers/remove.rb
|
184
|
+
- lib/hpcloud/commands/routers/interface/add.rb
|
185
|
+
- lib/hpcloud/commands/routers/interface/remove.rb
|
186
|
+
- lib/hpcloud/commands/images/add.rb
|
187
|
+
- lib/hpcloud/commands/images/metadata/add.rb
|
188
|
+
- lib/hpcloud/commands/images/metadata/remove.rb
|
189
|
+
- lib/hpcloud/commands/images/remove.rb
|
190
|
+
- lib/hpcloud/commands/images/metadata.rb
|
191
|
+
- lib/hpcloud/commands/migrate.rb
|
192
|
+
- lib/hpcloud/commands/move.rb
|
193
|
+
- lib/hpcloud/commands/securitygroups.rb
|
194
|
+
- lib/hpcloud/commands/get.rb
|
195
|
+
- lib/hpcloud/commands/account/edit.rb
|
196
|
+
- lib/hpcloud/commands/account/copy.rb
|
197
|
+
- lib/hpcloud/commands/account/catalog.rb
|
198
|
+
- lib/hpcloud/commands/account/tenants.rb
|
199
|
+
- lib/hpcloud/commands/account/verify.rb
|
200
|
+
- lib/hpcloud/commands/account/remove.rb
|
201
|
+
- lib/hpcloud/commands/account/use.rb
|
202
|
+
- lib/hpcloud/commands/account/setup.rb
|
203
|
+
- lib/hpcloud/commands/config.rb
|
204
|
+
- lib/hpcloud/commands/cdn_containers/add.rb
|
205
|
+
- lib/hpcloud/commands/cdn_containers/set.rb
|
206
|
+
- lib/hpcloud/commands/cdn_containers/get.rb
|
207
|
+
- lib/hpcloud/commands/cdn_containers/remove.rb
|
208
|
+
- lib/hpcloud/commands/cdn_containers/location.rb
|
209
|
+
- lib/hpcloud/commands/routers.rb
|
210
|
+
- lib/hpcloud/commands/cdn_containers.rb
|
211
|
+
- lib/hpcloud/commands/acl.rb
|
212
|
+
- lib/hpcloud/commands/dns/add.rb
|
213
|
+
- lib/hpcloud/commands/dns/update.rb
|
214
|
+
- lib/hpcloud/commands/dns/remove.rb
|
215
|
+
- lib/hpcloud/commands/dns/servers.rb
|
216
|
+
- lib/hpcloud/commands/dns/records.rb
|
217
|
+
- lib/hpcloud/commands/dns/records/add.rb
|
218
|
+
- lib/hpcloud/commands/dns/records/update.rb
|
219
|
+
- lib/hpcloud/commands/dns/records/remove.rb
|
220
|
+
- lib/hpcloud/commands/remove.rb
|
221
|
+
- lib/hpcloud/commands/subnets.rb
|
222
|
+
- lib/hpcloud/commands/networks.rb
|
223
|
+
- lib/hpcloud/commands/containers/add.rb
|
224
|
+
- lib/hpcloud/commands/containers/sync.rb
|
225
|
+
- lib/hpcloud/commands/containers/remove.rb
|
226
|
+
- lib/hpcloud/commands/servers.rb
|
227
|
+
- lib/hpcloud/commands/metadata.rb
|
228
|
+
- lib/hpcloud/commands/keypairs.rb
|
229
|
+
- lib/hpcloud/commands/list.rb
|
230
|
+
- lib/hpcloud/commands/snapshots.rb
|
231
|
+
- lib/hpcloud/commands/servers/add.rb
|
232
|
+
- lib/hpcloud/commands/servers/metadata/add.rb
|
233
|
+
- lib/hpcloud/commands/servers/metadata/remove.rb
|
234
|
+
- lib/hpcloud/commands/servers/ratelimits.rb
|
235
|
+
- lib/hpcloud/commands/servers/rebuild.rb
|
236
|
+
- lib/hpcloud/commands/servers/limits.rb
|
237
|
+
- lib/hpcloud/commands/servers/securitygroups/add.rb
|
238
|
+
- lib/hpcloud/commands/servers/securitygroups/remove.rb
|
239
|
+
- lib/hpcloud/commands/servers/password.rb
|
240
|
+
- lib/hpcloud/commands/servers/console.rb
|
241
|
+
- lib/hpcloud/commands/servers/reboot.rb
|
242
|
+
- lib/hpcloud/commands/servers/remove.rb
|
243
|
+
- lib/hpcloud/commands/servers/metadata.rb
|
244
|
+
- lib/hpcloud/commands/servers/ssh.rb
|
245
|
+
- lib/hpcloud/commands/info.rb
|
246
|
+
- lib/hpcloud/commands/images.rb
|
247
|
+
- lib/hpcloud/commands/location.rb
|
248
|
+
- lib/hpcloud/commands/complete.rb
|
249
|
+
- lib/hpcloud/commands/volumes/add.rb
|
250
|
+
- lib/hpcloud/commands/volumes/metadata/add.rb
|
251
|
+
- lib/hpcloud/commands/volumes/detach.rb
|
252
|
+
- lib/hpcloud/commands/volumes/server.rb
|
253
|
+
- lib/hpcloud/commands/volumes/remove.rb
|
254
|
+
- lib/hpcloud/commands/volumes/attach.rb
|
255
|
+
- lib/hpcloud/commands/volumes/metadata.rb
|
256
|
+
- lib/hpcloud/lb_nodes.rb
|
257
|
+
- lib/hpcloud/progress.rb
|
258
|
+
- lib/hpcloud/database_helper.rb
|
259
|
+
- lib/hpcloud/monkey.rb
|
260
|
+
- lib/hpcloud/rule_helper.rb
|
261
|
+
- lib/hpcloud/shared_resource.rb
|
262
|
+
- lib/hpcloud/floating_ip_helper.rb
|
263
|
+
- lib/hpcloud/base_helper.rb
|
264
|
+
- lib/hpcloud/volume_attachment.rb
|
265
|
+
- lib/hpcloud/security_groups.rb
|
266
|
+
- lib/hpcloud/image_helper.rb
|
267
|
+
- lib/hpcloud/accounts.rb
|
268
|
+
- lib/hpcloud/time_parser.rb
|
269
|
+
- lib/hpcloud/thor_ext/thor.rb
|
270
|
+
- lib/hpcloud/dnss.rb
|
271
|
+
- lib/hpcloud/object_store.rb
|
272
|
+
- lib/hpcloud/config.rb
|
273
|
+
- lib/hpcloud/fog_collection.rb
|
274
|
+
- lib/hpcloud/routers.rb
|
275
|
+
- lib/hpcloud/container_resource.rb
|
276
|
+
- lib/hpcloud/volume_attachments.rb
|
277
|
+
- lib/hpcloud/local_resource.rb
|
278
|
+
- lib/hpcloud/acl.rb
|
279
|
+
- lib/hpcloud/subnet_helper.rb
|
280
|
+
- lib/hpcloud/address_helper.rb
|
281
|
+
- lib/hpcloud/databases.rb
|
282
|
+
- lib/hpcloud/lb_algorithms.rb
|
283
|
+
- lib/hpcloud/subnets.rb
|
284
|
+
- lib/hpcloud/networks.rb
|
285
|
+
- lib/hpcloud/volume_helper.rb
|
286
|
+
- lib/hpcloud/lb_versions.rb
|
287
|
+
- lib/hpcloud/servers.rb
|
288
|
+
- lib/hpcloud/metadata.rb
|
289
|
+
- lib/hpcloud/remote_resource.rb
|
290
|
+
- lib/hpcloud/tableizer.rb
|
291
|
+
- lib/hpcloud/keypair_helper.rb
|
292
|
+
- lib/hpcloud/lb_limits.rb
|
293
|
+
- lib/hpcloud/cli_status.rb
|
294
|
+
- lib/hpcloud/keypairs.rb
|
295
|
+
- lib/hpcloud/checker.rb
|
296
|
+
- lib/hpcloud/snapshot_helper.rb
|
297
|
+
- lib/hpcloud/columns.rb
|
298
|
+
- lib/hpcloud/lbs.rb
|
299
|
+
- lib/hpcloud/error_response.rb
|
300
|
+
- lib/hpcloud/snapshots.rb
|
301
|
+
- lib/hpcloud/network_helper.rb
|
302
|
+
- lib/hpcloud/images.rb
|
303
|
+
- lib/hpcloud/port_helper.rb
|
304
|
+
- lib/hpcloud/dns_helper.rb
|
305
|
+
- lib/hpcloud/connection.rb
|
306
|
+
- lib/hpcloud.rb
|
307
|
+
- lib/monkey/hp/lb.rb
|
308
|
+
- lib/monkey/hp/models/lb/nodes.rb
|
309
|
+
- lib/monkey/hp/models/lb/version.rb
|
310
|
+
- lib/monkey/hp/models/lb/algorithms.rb
|
311
|
+
- lib/monkey/hp/models/lb/virtual_ip.rb
|
312
|
+
- lib/monkey/hp/models/lb/load_balancer.rb
|
313
|
+
- lib/monkey/hp/models/lb/limits.rb
|
314
|
+
- lib/monkey/hp/models/lb/protocols.rb
|
315
|
+
- lib/monkey/hp/models/lb/node.rb
|
316
|
+
- lib/monkey/hp/models/lb/virtual_ips.rb
|
317
|
+
- lib/monkey/hp/models/lb/protocol.rb
|
318
|
+
- lib/monkey/hp/models/lb/load_balancers.rb
|
319
|
+
- lib/monkey/hp/models/lb/limit.rb
|
320
|
+
- lib/monkey/hp/models/lb/versions.rb
|
321
|
+
- lib/monkey/hp/models/lb/algorithm.rb
|
322
|
+
- lib/monkey/hp/requests/lb/list_load_balancer_virtual_ips.rb
|
323
|
+
- lib/monkey/hp/requests/lb/list_protocols.rb
|
324
|
+
- lib/monkey/hp/requests/lb/list_load_balancers.rb
|
325
|
+
- lib/monkey/hp/requests/lb/create_load_balancer.rb
|
326
|
+
- lib/monkey/hp/requests/lb/delete_load_balancer.rb
|
327
|
+
- lib/monkey/hp/requests/lb/list_limits.rb
|
328
|
+
- lib/monkey/hp/requests/lb/update_load_balancer_node.rb
|
329
|
+
- lib/monkey/hp/requests/lb/get_version.rb
|
330
|
+
- lib/monkey/hp/requests/lb/list_algorithms.rb
|
331
|
+
- lib/monkey/hp/requests/lb/list_versions.rb
|
332
|
+
- lib/monkey/hp/requests/lb/get_load_balancer.rb
|
333
|
+
- lib/monkey/hp/requests/lb/get_load_balancer_node.rb
|
334
|
+
- lib/monkey/hp/requests/lb/delete_load_balancer_node.rb
|
335
|
+
- lib/monkey/hp/requests/lb/create_load_balancer_node.rb
|
336
|
+
- lib/monkey/hp/requests/lb/update_load_balancer.rb
|
337
|
+
- lib/monkey/hp/requests/lb/get_virtual_ips.rb
|
338
|
+
- lib/monkey/hp/requests/lb/list_load_balancer_nodes.rb
|
339
|
+
- completion/hpcloud
|
340
|
+
- LICENSE
|
341
|
+
- README.rdoc
|
342
|
+
- CHANGELOG
|
343
|
+
homepage: https://docs.hpcloud.com/cli/unix
|
344
|
+
licenses: []
|
345
|
+
post_install_message:
|
346
|
+
rdoc_options: []
|
347
|
+
require_paths:
|
348
|
+
- lib
|
349
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
350
|
+
none: false
|
351
|
+
requirements:
|
352
|
+
- - ! '>='
|
353
|
+
- !ruby/object:Gem::Version
|
354
|
+
version: 1.8.5
|
355
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
356
|
+
none: false
|
357
|
+
requirements:
|
358
|
+
- - ! '>='
|
359
|
+
- !ruby/object:Gem::Version
|
360
|
+
version: 1.2.0
|
361
|
+
requirements: []
|
362
|
+
rubyforge_project:
|
363
|
+
rubygems_version: 1.8.25
|
364
|
+
signing_key:
|
365
|
+
specification_version: 3
|
366
|
+
summary: HP Cloud CLI
|
367
|
+
test_files: []
|
368
|
+
has_rdoc:
|