hpcloud 2.0.8 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fa2af0333822abafe687521a1dd7f837fd13cf5f
4
+ data.tar.gz: 54f1f0770e1f9c7c7ebda3f0aad4d062b8997c60
5
+ SHA512:
6
+ metadata.gz: e62178d7dd8027617fb07d15033afc08941db60b241e85e279755f12a98d96871c7d9a4830960dec1600addbefd7e4f398fae3b04a0880eaaa870f00f3f227c6
7
+ data.tar.gz: 646946fee68cc9566460d6f6e0b9da145ef8a7be91fedc14e811c3bb5faa0052993fd4cbe9e6e86c50073381f795d02865ab1e39eed30781ffa235c82535284f
data/README.rdoc CHANGED
@@ -40,6 +40,31 @@ If you want to check which version of the tool you have installed:
40
40
 
41
41
  hpcloud info
42
42
 
43
+ = Configuring with Helion/OpenStack/DevStack
44
+
45
+ Your configuration for Helion etc should look similar to this:
46
+
47
+ ---
48
+ :credentials:
49
+ :auth_uri: http://xx.xx.xx.xx:5000/v2.0/
50
+ :userpass: true
51
+ :account_id: UserName
52
+ :secret_key: SuperSecret!
53
+ :tenant_id: 3xxxxxxxxxxxxa0b9e073b99bec868fd
54
+ :regions: {}
55
+ :catalog:
56
+ :compute: nova
57
+ :object_storage: swift
58
+ :block_storage: cinder
59
+ :networking: neutron
60
+ :options: {}
61
+ :provider: hp
62
+
63
+ There are command line ways to configure your account, but it may be easier to
64
+ manually edit the file in ~/.hpcloud/account . Use v2.0 authentication as
65
+ right now Fog does not support v3.
66
+
67
+
43
68
  = Documentation and Usage
44
69
 
45
70
  Detailed documentation and usage examples can be found at HP Cloud Unix CLI[http://docs.hpcloud.com/cli/unix] page.
@@ -22,6 +22,18 @@
22
22
  require 'fog/hp'
23
23
  require 'hpcloud/auth_cache'
24
24
 
25
+ module Fog
26
+ module Compute
27
+ class HPV2 < Fog::Service
28
+ class Real
29
+ def set_path(value)
30
+ @path = value
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+
25
37
  module HP
26
38
  module Cloud
27
39
  class Connection
@@ -129,6 +141,11 @@ module HP
129
141
  @authcache.remove(opts)
130
142
  raise Fog::HP::Errors::ServiceError, "Please check your HP Cloud Services account to make sure the 'Compute' service is activated for the appropriate availability zone.\n Exception: #{e}\n Print the service catalog: hpcloud account:catalog #{account}"
131
143
  end
144
+ begin
145
+ @compute_connection[account].set_path('/v2/' + opts[:hp_tenant_id])
146
+ rescue Exception => e
147
+ warn "Unable to enfoce v2 compute"
148
+ end
132
149
  return @compute_connection[account]
133
150
  end
134
151
 
@@ -21,7 +21,7 @@
21
21
 
22
22
  module HP
23
23
  module Cloud
24
- VERSION = '2.0.8'
25
- SHA1 = '7ccf63b42f0eed051d345f36c123b2c8902e0f9e'
24
+ VERSION = '2.0.9'
25
+ SHA1 = '1e549911c1f6750859d1e0a44c8f3cbfe394c70c'
26
26
  end
27
27
  end
@@ -0,0 +1,27 @@
1
+ # encoding: utf-8
2
+ #
3
+ # © Copyright 2013 Hewlett-Packard Development Company, L.P.
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in all
12
+ # copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+
22
+ module HP
23
+ module Cloud
24
+ VERSION = '2.0.9'
25
+ SHA1 = '822a9667ab3d347565a688052aad5d0d122e2ece'
26
+ end
27
+ end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hpcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.8
5
- prerelease:
4
+ version: 2.0.9
6
5
  platform: ruby
7
6
  authors:
8
7
  - Matt Sanders
@@ -16,7 +15,6 @@ dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: thor
18
17
  requirement: !ruby/object:Gem::Requirement
19
- none: false
20
18
  requirements:
21
19
  - - ~>
22
20
  - !ruby/object:Gem::Version
@@ -24,7 +22,6 @@ dependencies:
24
22
  type: :runtime
25
23
  prerelease: false
26
24
  version_requirements: !ruby/object:Gem::Requirement
27
- none: false
28
25
  requirements:
29
26
  - - ~>
30
27
  - !ruby/object:Gem::Version
@@ -32,7 +29,6 @@ dependencies:
32
29
  - !ruby/object:Gem::Dependency
33
30
  name: fog
34
31
  requirement: !ruby/object:Gem::Requirement
35
- none: false
36
32
  requirements:
37
33
  - - ~>
38
34
  - !ruby/object:Gem::Version
@@ -40,7 +36,6 @@ dependencies:
40
36
  type: :runtime
41
37
  prerelease: false
42
38
  version_requirements: !ruby/object:Gem::Requirement
43
- none: false
44
39
  requirements:
45
40
  - - ~>
46
41
  - !ruby/object:Gem::Version
@@ -48,7 +43,6 @@ dependencies:
48
43
  - !ruby/object:Gem::Dependency
49
44
  name: ruby-progressbar
50
45
  requirement: !ruby/object:Gem::Requirement
51
- none: false
52
46
  requirements:
53
47
  - - ~>
54
48
  - !ruby/object:Gem::Version
@@ -56,7 +50,6 @@ dependencies:
56
50
  type: :runtime
57
51
  prerelease: false
58
52
  version_requirements: !ruby/object:Gem::Requirement
59
- none: false
60
53
  requirements:
61
54
  - - ~>
62
55
  - !ruby/object:Gem::Version
@@ -64,7 +57,6 @@ dependencies:
64
57
  - !ruby/object:Gem::Dependency
65
58
  name: rspec
66
59
  requirement: !ruby/object:Gem::Requirement
67
- none: false
68
60
  requirements:
69
61
  - - ~>
70
62
  - !ruby/object:Gem::Version
@@ -72,7 +64,6 @@ dependencies:
72
64
  type: :development
73
65
  prerelease: false
74
66
  version_requirements: !ruby/object:Gem::Requirement
75
- none: false
76
67
  requirements:
77
68
  - - ~>
78
69
  - !ruby/object:Gem::Version
@@ -80,7 +71,6 @@ dependencies:
80
71
  - !ruby/object:Gem::Dependency
81
72
  name: json
82
73
  requirement: !ruby/object:Gem::Requirement
83
- none: false
84
74
  requirements:
85
75
  - - ~>
86
76
  - !ruby/object:Gem::Version
@@ -88,7 +78,6 @@ dependencies:
88
78
  type: :runtime
89
79
  prerelease: false
90
80
  version_requirements: !ruby/object:Gem::Requirement
91
- none: false
92
81
  requirements:
93
82
  - - ~>
94
83
  - !ruby/object:Gem::Version
@@ -103,265 +92,266 @@ extra_rdoc_files:
103
92
  - LICENSE
104
93
  - README.rdoc
105
94
  files:
95
+ - CHANGELOG
96
+ - LICENSE
97
+ - README.rdoc
106
98
  - 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
99
+ - completion/hpcloud
100
+ - lib/hpcloud.rb
101
+ - lib/hpcloud/accounts.rb
102
+ - lib/hpcloud/acl.rb
113
103
  - 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
104
+ - lib/hpcloud/address_helper.rb
118
105
  - 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
106
+ - lib/hpcloud/auth_cache.rb
107
+ - lib/hpcloud/base_helper.rb
108
+ - lib/hpcloud/checker.rb
109
+ - lib/hpcloud/cli.rb
110
+ - lib/hpcloud/cli_status.rb
111
+ - lib/hpcloud/columns.rb
127
112
  - lib/hpcloud/commands/account.rb
128
- - lib/hpcloud/commands/tempurl.rb
129
- - lib/hpcloud/commands/lb.rb
113
+ - lib/hpcloud/commands/account/catalog.rb
114
+ - lib/hpcloud/commands/account/copy.rb
115
+ - lib/hpcloud/commands/account/edit.rb
116
+ - lib/hpcloud/commands/account/remove.rb
117
+ - lib/hpcloud/commands/account/setup.rb
118
+ - lib/hpcloud/commands/account/tenants.rb
119
+ - lib/hpcloud/commands/account/use.rb
120
+ - lib/hpcloud/commands/account/verify.rb
121
+ - lib/hpcloud/commands/acl.rb
122
+ - lib/hpcloud/commands/acl/grant.rb
123
+ - lib/hpcloud/commands/acl/revoke.rb
124
+ - lib/hpcloud/commands/addresses.rb
130
125
  - lib/hpcloud/commands/addresses/add.rb
131
- - lib/hpcloud/commands/addresses/disassociate.rb
132
126
  - lib/hpcloud/commands/addresses/associate.rb
127
+ - lib/hpcloud/commands/addresses/disassociate.rb
133
128
  - lib/hpcloud/commands/addresses/remove.rb
129
+ - lib/hpcloud/commands/cdn_containers.rb
130
+ - lib/hpcloud/commands/cdn_containers/add.rb
131
+ - lib/hpcloud/commands/cdn_containers/get.rb
132
+ - lib/hpcloud/commands/cdn_containers/location.rb
133
+ - lib/hpcloud/commands/cdn_containers/remove.rb
134
+ - lib/hpcloud/commands/cdn_containers/set.rb
135
+ - lib/hpcloud/commands/complete.rb
136
+ - lib/hpcloud/commands/config.rb
134
137
  - 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
138
+ - lib/hpcloud/commands/containers.rb
139
+ - lib/hpcloud/commands/containers/add.rb
140
+ - lib/hpcloud/commands/containers/remove.rb
141
+ - lib/hpcloud/commands/containers/sync.rb
142
+ - lib/hpcloud/commands/copy.rb
143
+ - lib/hpcloud/commands/dns.rb
144
+ - lib/hpcloud/commands/dns/add.rb
145
+ - lib/hpcloud/commands/dns/records.rb
146
+ - lib/hpcloud/commands/dns/records/add.rb
147
+ - lib/hpcloud/commands/dns/records/remove.rb
148
+ - lib/hpcloud/commands/dns/records/update.rb
149
+ - lib/hpcloud/commands/dns/remove.rb
150
+ - lib/hpcloud/commands/dns/servers.rb
151
+ - lib/hpcloud/commands/dns/update.rb
152
+ - lib/hpcloud/commands/flavors.rb
153
+ - lib/hpcloud/commands/get.rb
154
+ - lib/hpcloud/commands/images.rb
155
+ - lib/hpcloud/commands/images/add.rb
156
+ - lib/hpcloud/commands/images/metadata.rb
157
+ - lib/hpcloud/commands/images/metadata/add.rb
158
+ - lib/hpcloud/commands/images/metadata/remove.rb
159
+ - lib/hpcloud/commands/images/remove.rb
160
+ - lib/hpcloud/commands/info.rb
161
+ - lib/hpcloud/commands/keypairs.rb
162
+ - lib/hpcloud/commands/keypairs/add.rb
163
+ - lib/hpcloud/commands/keypairs/import.rb
164
+ - lib/hpcloud/commands/keypairs/private.rb
165
+ - lib/hpcloud/commands/keypairs/private/add.rb
166
+ - lib/hpcloud/commands/keypairs/private/location.rb
167
+ - lib/hpcloud/commands/keypairs/private/remove.rb
168
+ - lib/hpcloud/commands/keypairs/public_key.rb
169
+ - lib/hpcloud/commands/keypairs/remove.rb
170
+ - lib/hpcloud/commands/lb.rb
141
171
  - lib/hpcloud/commands/lb/add.rb
142
- - lib/hpcloud/commands/lb/nodes.rb
143
172
  - lib/hpcloud/commands/lb/algorithms.rb
144
173
  - 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
174
+ - lib/hpcloud/commands/lb/nodes.rb
149
175
  - lib/hpcloud/commands/lb/nodes/add.rb
150
- - lib/hpcloud/commands/lb/nodes/update.rb
151
176
  - lib/hpcloud/commands/lb/nodes/remove.rb
177
+ - lib/hpcloud/commands/lb/nodes/update.rb
178
+ - lib/hpcloud/commands/lb/protocols.rb
179
+ - lib/hpcloud/commands/lb/remove.rb
180
+ - lib/hpcloud/commands/lb/update.rb
152
181
  - 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
182
+ - lib/hpcloud/commands/lb/virtualips.rb
183
+ - lib/hpcloud/commands/list.rb
184
+ - lib/hpcloud/commands/location.rb
185
+ - lib/hpcloud/commands/metadata.rb
186
+ - lib/hpcloud/commands/metadata/set.rb
187
+ - lib/hpcloud/commands/migrate.rb
188
+ - lib/hpcloud/commands/move.rb
189
+ - lib/hpcloud/commands/networks.rb
158
190
  - lib/hpcloud/commands/networks/add.rb
159
- - lib/hpcloud/commands/networks/update.rb
160
191
  - 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
192
+ - lib/hpcloud/commands/networks/update.rb
193
+ - lib/hpcloud/commands/ports.rb
194
+ - lib/hpcloud/commands/ports/add.rb
195
+ - lib/hpcloud/commands/ports/remove.rb
196
+ - lib/hpcloud/commands/ports/update.rb
197
+ - lib/hpcloud/commands/remove.rb
198
+ - lib/hpcloud/commands/routers.rb
181
199
  - lib/hpcloud/commands/routers/add.rb
182
- - lib/hpcloud/commands/routers/update.rb
183
- - lib/hpcloud/commands/routers/remove.rb
184
200
  - lib/hpcloud/commands/routers/interface/add.rb
185
201
  - 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
202
+ - lib/hpcloud/commands/routers/remove.rb
203
+ - lib/hpcloud/commands/routers/update.rb
193
204
  - 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
205
+ - lib/hpcloud/commands/securitygroups/add.rb
206
+ - lib/hpcloud/commands/securitygroups/remove.rb
207
+ - lib/hpcloud/commands/securitygroups/rules.rb
208
+ - lib/hpcloud/commands/securitygroups/rules/add.rb
209
+ - lib/hpcloud/commands/securitygroups/rules/remove.rb
226
210
  - 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
211
  - lib/hpcloud/commands/servers/add.rb
212
+ - lib/hpcloud/commands/servers/console.rb
213
+ - lib/hpcloud/commands/servers/limits.rb
214
+ - lib/hpcloud/commands/servers/metadata.rb
232
215
  - lib/hpcloud/commands/servers/metadata/add.rb
233
216
  - lib/hpcloud/commands/servers/metadata/remove.rb
217
+ - lib/hpcloud/commands/servers/password.rb
234
218
  - lib/hpcloud/commands/servers/ratelimits.rb
219
+ - lib/hpcloud/commands/servers/reboot.rb
235
220
  - lib/hpcloud/commands/servers/rebuild.rb
236
- - lib/hpcloud/commands/servers/limits.rb
221
+ - lib/hpcloud/commands/servers/remove.rb
237
222
  - lib/hpcloud/commands/servers/securitygroups/add.rb
238
223
  - 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
224
  - 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
225
+ - lib/hpcloud/commands/snapshots.rb
226
+ - lib/hpcloud/commands/snapshots/add.rb
227
+ - lib/hpcloud/commands/snapshots/remove.rb
228
+ - lib/hpcloud/commands/subnets.rb
229
+ - lib/hpcloud/commands/subnets/add.rb
230
+ - lib/hpcloud/commands/subnets/remove.rb
231
+ - lib/hpcloud/commands/subnets/update.rb
232
+ - lib/hpcloud/commands/tempurl.rb
233
+ - lib/hpcloud/commands/volumes.rb
249
234
  - 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
235
  - lib/hpcloud/commands/volumes/attach.rb
236
+ - lib/hpcloud/commands/volumes/detach.rb
255
237
  - 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
238
+ - lib/hpcloud/commands/volumes/metadata/add.rb
239
+ - lib/hpcloud/commands/volumes/remove.rb
240
+ - lib/hpcloud/commands/volumes/server.rb
272
241
  - lib/hpcloud/config.rb
273
- - lib/hpcloud/fog_collection.rb
274
- - lib/hpcloud/routers.rb
242
+ - lib/hpcloud/connection.rb
275
243
  - 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
244
+ - lib/hpcloud/database_helper.rb
281
245
  - lib/hpcloud/databases.rb
246
+ - lib/hpcloud/dns_helper.rb
247
+ - lib/hpcloud/dnss.rb
248
+ - lib/hpcloud/error_response.rb
249
+ - lib/hpcloud/exceptions/base.rb
250
+ - lib/hpcloud/exceptions/general.rb
251
+ - lib/hpcloud/exceptions/not_found.rb
252
+ - lib/hpcloud/flavors.rb
253
+ - lib/hpcloud/floating_ip_helper.rb
254
+ - lib/hpcloud/floating_ips.rb
255
+ - lib/hpcloud/fog_collection.rb
256
+ - lib/hpcloud/image_helper.rb
257
+ - lib/hpcloud/images.rb
258
+ - lib/hpcloud/keypair_helper.rb
259
+ - lib/hpcloud/keypairs.rb
282
260
  - lib/hpcloud/lb_algorithms.rb
283
- - lib/hpcloud/subnets.rb
284
- - lib/hpcloud/networks.rb
285
- - lib/hpcloud/volume_helper.rb
261
+ - lib/hpcloud/lb_limits.rb
262
+ - lib/hpcloud/lb_nodes.rb
263
+ - lib/hpcloud/lb_protocols.rb
286
264
  - lib/hpcloud/lb_versions.rb
287
- - lib/hpcloud/servers.rb
265
+ - lib/hpcloud/lb_virtualips.rb
266
+ - lib/hpcloud/lbs.rb
267
+ - lib/hpcloud/local_resource.rb
268
+ - lib/hpcloud/log.rb
288
269
  - lib/hpcloud/metadata.rb
270
+ - lib/hpcloud/monkey.rb
271
+ - lib/hpcloud/network_helper.rb
272
+ - lib/hpcloud/networks.rb
273
+ - lib/hpcloud/object_store.rb
274
+ - lib/hpcloud/port_helper.rb
275
+ - lib/hpcloud/ports.rb
276
+ - lib/hpcloud/progress.rb
289
277
  - 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
278
+ - lib/hpcloud/resource.rb
279
+ - lib/hpcloud/resource_factory.rb
280
+ - lib/hpcloud/routers.rb
281
+ - lib/hpcloud/rule_helper.rb
282
+ - lib/hpcloud/rules.rb
283
+ - lib/hpcloud/security_group_helper.rb
284
+ - lib/hpcloud/security_groups.rb
285
+ - lib/hpcloud/server_helper.rb
286
+ - lib/hpcloud/servers.rb
287
+ - lib/hpcloud/shared_resource.rb
296
288
  - lib/hpcloud/snapshot_helper.rb
297
- - lib/hpcloud/columns.rb
298
- - lib/hpcloud/lbs.rb
299
- - lib/hpcloud/error_response.rb
300
289
  - 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
290
+ - lib/hpcloud/subnet_helper.rb
291
+ - lib/hpcloud/subnets.rb
292
+ - lib/hpcloud/tableizer.rb
293
+ - lib/hpcloud/thor_ext/thor.rb
294
+ - lib/hpcloud/time_parser.rb
295
+ - lib/hpcloud/version.rb
296
+ - lib/hpcloud/version.rb-e
297
+ - lib/hpcloud/volume_attachment.rb
298
+ - lib/hpcloud/volume_attachments.rb
299
+ - lib/hpcloud/volume_helper.rb
300
+ - lib/hpcloud/volumes.rb
307
301
  - lib/monkey/hp/lb.rb
308
- - lib/monkey/hp/models/lb/nodes.rb
309
- - lib/monkey/hp/models/lb/version.rb
302
+ - lib/monkey/hp/models/lb/algorithm.rb
310
303
  - 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
304
+ - lib/monkey/hp/models/lb/limit.rb
313
305
  - lib/monkey/hp/models/lb/limits.rb
314
- - lib/monkey/hp/models/lb/protocols.rb
306
+ - lib/monkey/hp/models/lb/load_balancer.rb
307
+ - lib/monkey/hp/models/lb/load_balancers.rb
315
308
  - lib/monkey/hp/models/lb/node.rb
316
- - lib/monkey/hp/models/lb/virtual_ips.rb
309
+ - lib/monkey/hp/models/lb/nodes.rb
317
310
  - lib/monkey/hp/models/lb/protocol.rb
318
- - lib/monkey/hp/models/lb/load_balancers.rb
319
- - lib/monkey/hp/models/lb/limit.rb
311
+ - lib/monkey/hp/models/lb/protocols.rb
312
+ - lib/monkey/hp/models/lb/version.rb
320
313
  - 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
314
+ - lib/monkey/hp/models/lb/virtual_ip.rb
315
+ - lib/monkey/hp/models/lb/virtual_ips.rb
325
316
  - lib/monkey/hp/requests/lb/create_load_balancer.rb
317
+ - lib/monkey/hp/requests/lb/create_load_balancer_node.rb
326
318
  - 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
319
+ - lib/monkey/hp/requests/lb/delete_load_balancer_node.rb
332
320
  - lib/monkey/hp/requests/lb/get_load_balancer.rb
333
321
  - 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
322
+ - lib/monkey/hp/requests/lb/get_version.rb
337
323
  - lib/monkey/hp/requests/lb/get_virtual_ips.rb
324
+ - lib/monkey/hp/requests/lb/list_algorithms.rb
325
+ - lib/monkey/hp/requests/lb/list_limits.rb
338
326
  - lib/monkey/hp/requests/lb/list_load_balancer_nodes.rb
339
- - completion/hpcloud
340
- - LICENSE
341
- - README.rdoc
342
- - CHANGELOG
327
+ - lib/monkey/hp/requests/lb/list_load_balancer_virtual_ips.rb
328
+ - lib/monkey/hp/requests/lb/list_load_balancers.rb
329
+ - lib/monkey/hp/requests/lb/list_protocols.rb
330
+ - lib/monkey/hp/requests/lb/list_versions.rb
331
+ - lib/monkey/hp/requests/lb/update_load_balancer.rb
332
+ - lib/monkey/hp/requests/lb/update_load_balancer_node.rb
343
333
  homepage: https://docs.hpcloud.com/cli/unix
344
334
  licenses: []
335
+ metadata: {}
345
336
  post_install_message:
346
337
  rdoc_options: []
347
338
  require_paths:
348
339
  - lib
349
340
  required_ruby_version: !ruby/object:Gem::Requirement
350
- none: false
351
341
  requirements:
352
- - - ! '>='
342
+ - - '>='
353
343
  - !ruby/object:Gem::Version
354
344
  version: 1.8.5
355
345
  required_rubygems_version: !ruby/object:Gem::Requirement
356
- none: false
357
346
  requirements:
358
- - - ! '>='
347
+ - - '>='
359
348
  - !ruby/object:Gem::Version
360
349
  version: 1.2.0
361
350
  requirements: []
362
351
  rubyforge_project:
363
- rubygems_version: 1.8.25
352
+ rubygems_version: 2.2.2
364
353
  signing_key:
365
- specification_version: 3
354
+ specification_version: 4
366
355
  summary: HP Cloud CLI
367
356
  test_files: []
357
+ has_rdoc: