deltacloud-client-vm 1.1.4.2 → 1.1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +176 -0
- data/NOTICE +8 -0
- data/README.md +73 -0
- data/Rakefile +122 -0
- data/deltacloud-client-vm.gemspec +24 -0
- data/lib/deltacloud_vm/client.rb +79 -0
- data/lib/deltacloud_vm/client/base_error.rb +80 -0
- data/lib/deltacloud_vm/client/connection.rb +139 -0
- data/lib/deltacloud_vm/client/helpers/model_helper.rb +69 -0
- data/lib/deltacloud_vm/client/helpers/property_helper.rb +103 -0
- data/lib/deltacloud_vm/client/helpers/xml_helper.rb +33 -0
- data/lib/deltacloud_vm/client/methods.rb +33 -0
- data/lib/deltacloud_vm/client/methods/address.rb +67 -0
- data/lib/deltacloud_vm/client/methods/api.rb +96 -0
- data/lib/deltacloud_vm/client/methods/backward_compatiblity.rb +72 -0
- data/lib/deltacloud_vm/client/methods/blob.rb +91 -0
- data/lib/deltacloud_vm/client/methods/bucket.rb +55 -0
- data/lib/deltacloud_vm/client/methods/common.rb +46 -0
- data/lib/deltacloud_vm/client/methods/driver.rb +53 -0
- data/lib/deltacloud_vm/client/methods/firewall.rb +67 -0
- data/lib/deltacloud_vm/client/methods/hardware_profile.rb +41 -0
- data/lib/deltacloud_vm/client/methods/image.rb +61 -0
- data/lib/deltacloud_vm/client/methods/instance.rb +141 -0
- data/lib/deltacloud_vm/client/methods/instance_state.rb +41 -0
- data/lib/deltacloud_vm/client/methods/key.rb +58 -0
- data/lib/deltacloud_vm/client/methods/load_balancer.rb +96 -0
- data/lib/deltacloud_vm/client/methods/metric.rb +54 -0
- data/lib/deltacloud_vm/client/methods/realm.rb +42 -0
- data/lib/deltacloud_vm/client/methods/storage_snapshot.rb +61 -0
- data/lib/deltacloud_vm/client/methods/storage_volume.rb +94 -0
- data/lib/deltacloud_vm/client/models.rb +32 -0
- data/lib/deltacloud_vm/client/models/address.rb +57 -0
- data/lib/deltacloud_vm/client/models/base.rb +153 -0
- data/lib/deltacloud_vm/client/models/blob.rb +56 -0
- data/lib/deltacloud_vm/client/models/bucket.rb +65 -0
- data/lib/deltacloud_vm/client/models/driver.rb +87 -0
- data/lib/deltacloud_vm/client/models/firewall.rb +64 -0
- data/lib/deltacloud_vm/client/models/hardware_profile.rb +68 -0
- data/lib/deltacloud_vm/client/models/image.rb +60 -0
- data/lib/deltacloud_vm/client/models/instance.rb +142 -0
- data/lib/deltacloud_vm/client/models/instance_address.rb +40 -0
- data/lib/deltacloud_vm/client/models/instance_state.rb +52 -0
- data/lib/deltacloud_vm/client/models/key.rb +52 -0
- data/lib/deltacloud_vm/client/models/load_balancer.rb +55 -0
- data/lib/deltacloud_vm/client/models/metric.rb +72 -0
- data/lib/deltacloud_vm/client/models/realm.rb +29 -0
- data/lib/deltacloud_vm/client/models/storage_snapshot.rb +54 -0
- data/lib/deltacloud_vm/client/models/storage_volume.rb +96 -0
- data/lib/deltacloud_vm/core_ext.rb +19 -0
- data/lib/deltacloud_vm/core_ext/element.rb +32 -0
- data/lib/deltacloud_vm/core_ext/fixnum.rb +30 -0
- data/lib/deltacloud_vm/core_ext/nil.rb +22 -0
- data/lib/deltacloud_vm/core_ext/string.rb +49 -0
- data/lib/deltacloud_vm/error_response.rb +93 -0
- data/tests/client/client_test.rb +51 -0
- data/tests/client/connection_test.rb +77 -0
- data/tests/core_ext/element_test.rb +40 -0
- data/tests/core_ext/fixnum_test.rb +35 -0
- data/tests/core_ext/nil.rb +27 -0
- data/tests/core_ext/string_test.rb +47 -0
- data/tests/fixtures/instances_cleanup.yml +681 -0
- data/tests/fixtures/test_0001_connects_to_Deltacloud_API.yml +60 -0
- data/tests/fixtures/test_0001_support_cpu.yml +444 -0
- data/tests/fixtures/test_0001_support_original_body.yml +116 -0
- data/tests/fixtures/test_0001_supports_addresses.yml +178 -0
- data/tests/fixtures/test_0001_supports_api_host.yml +60 -0
- data/tests/fixtures/test_0001_supports_attached_.yml +282 -0
- data/tests/fixtures/test_0001_supports_blobs.yml +475 -0
- data/tests/fixtures/test_0001_supports_bucket.yml +200 -0
- data/tests/fixtures/test_0001_supports_buckets.yml +160 -0
- data/tests/fixtures/test_0001_supports_drivers.yml +202 -0
- data/tests/fixtures/test_0001_supports_firewalls.yml +399 -0
- data/tests/fixtures/test_0001_supports_hardware_profiles.yml +262 -0
- data/tests/fixtures/test_0001_supports_images.yml +224 -0
- data/tests/fixtures/test_0001_supports_instance_states.yml +156 -0
- data/tests/fixtures/test_0001_supports_instances.yml +486 -0
- data/tests/fixtures/test_0001_supports_keys.yml +198 -0
- data/tests/fixtures/test_0001_supports_path.yml +60 -0
- data/tests/fixtures/test_0001_supports_realms.yml +152 -0
- data/tests/fixtures/test_0001_supports_storage_snapshots.yml +164 -0
- data/tests/fixtures/test_0001_supports_storage_volumes.yml +176 -0
- data/tests/fixtures/test_0001_supports_to_get_providers.yml +410 -0
- data/tests/fixtures/test_0002_support_blob.yml +148 -0
- data/tests/fixtures/test_0002_support_instance_state.yml +204 -0
- data/tests/fixtures/test_0002_support_memory.yml +444 -0
- data/tests/fixtures/test_0002_support_on_Provider.yml +130 -0
- data/tests/fixtures/test_0002_supports_api_port.yml +60 -0
- data/tests/fixtures/test_0002_supports_api_uri.yml +60 -0
- data/tests/fixtures/test_0002_supports_driver.yml +219 -0
- data/tests/fixtures/test_0002_supports_extract_xml_body_using_faraday_connection.yml +117 -0
- data/tests/fixtures/test_0002_supports_filtering_addresses_by_id_param.yml +156 -0
- data/tests/fixtures/test_0002_supports_filtering_buckets_by_id_param.yml +156 -0
- data/tests/fixtures/test_0002_supports_filtering_firewalls_by_id_param.yml +207 -0
- data/tests/fixtures/test_0002_supports_filtering_hardware_profiles_by_id_param.yml +158 -0
- data/tests/fixtures/test_0002_supports_filtering_images_by_id_param.yml +165 -0
- data/tests/fixtures/test_0002_supports_filtering_instances_by_id_param.yml +164 -0
- data/tests/fixtures/test_0002_supports_filtering_keys_by_id_param.yml +178 -0
- data/tests/fixtures/test_0002_supports_filtering_realms_by_id.yml +104 -0
- data/tests/fixtures/test_0002_supports_filtering_storage_snapshots_by_id_param.yml +155 -0
- data/tests/fixtures/test_0002_supports_filtering_storage_volumes_by_id_param.yml +157 -0
- data/tests/fixtures/test_0002_supports_hardware_profiles.yml +262 -0
- data/tests/fixtures/test_0002_supports_is_compatible_.yml +116 -0
- data/tests/fixtures/test_0002_supports_snapshot_.yml +202 -0
- data/tests/fixtures/test_0002_supports_version.yml +60 -0
- data/tests/fixtures/test_0003_caches_the_API_entrypoint.yml +60 -0
- data/tests/fixtures/test_0003_support_address.yml +197 -0
- data/tests/fixtures/test_0003_support_bucket.yml +198 -0
- data/tests/fixtures/test_0003_support_create_blob.yml +105 -0
- data/tests/fixtures/test_0003_support_create_blob_and_destroy_blob.yml +138 -0
- data/tests/fixtures/test_0003_support_firewall.yml +768 -0
- data/tests/fixtures/test_0003_support_hardware_profile.yml +199 -0
- data/tests/fixtures/test_0003_support_image.yml +207 -0
- data/tests/fixtures/test_0003_support_instance.yml +206 -0
- data/tests/fixtures/test_0003_support_key.yml +220 -0
- data/tests/fixtures/test_0003_support_realm.yml +195 -0
- data/tests/fixtures/test_0003_support_storage.yml +444 -0
- data/tests/fixtures/test_0003_support_storage_snapshot.yml +196 -0
- data/tests/fixtures/test_0003_support_storage_volume.yml +197 -0
- data/tests/fixtures/test_0003_support_to_change_driver_with_Client.yml +72 -0
- data/tests/fixtures/test_0003_supports_connect.yml +60 -0
- data/tests/fixtures/test_0003_supports_extract_xml_body_using_nokogiri_document.yml +117 -0
- data/tests/fixtures/test_0003_supports_instance.yml +396 -0
- data/tests/fixtures/test_0003_supports_is_compatible_.yml +116 -0
- data/tests/fixtures/test_0003_supports_lunch_image.yml +367 -0
- data/tests/fixtures/test_0003_supports_providers.yml +102 -0
- data/tests/fixtures/test_0003_supports_version.yml +60 -0
- data/tests/fixtures/test_0004_support_architecture.yml +444 -0
- data/tests/fixtures/test_0004_support_create_address.yml +197 -0
- data/tests/fixtures/test_0004_support_create_blob_and_destroy_blob_with_meta_params.yml +139 -0
- data/tests/fixtures/test_0004_support_create_bucket.yml +180 -0
- data/tests/fixtures/test_0004_support_create_bucket_and_destroy_bucket.yml +180 -0
- data/tests/fixtures/test_0004_support_create_firewall_and_destroy_firewall.yml +496 -0
- data/tests/fixtures/test_0004_support_create_image_and_destroy_image.yml +1527 -0
- data/tests/fixtures/test_0004_support_create_instance.yml +115 -0
- data/tests/fixtures/test_0004_support_create_key_and_destroy_key.yml +206 -0
- data/tests/fixtures/test_0004_support_create_volume.yml +105 -0
- data/tests/fixtures/test_0004_support_create_volume_and_destroy_volume.yml +181 -0
- data/tests/fixtures/test_0004_support_to_test_of_valid_DC_connection.yml +60 -0
- data/tests/fixtures/test_0004_supports_current_driver.yml +60 -0
- data/tests/fixtures/test_0004_supports_extract_xml_body_using_nokogiri_element.yml +117 -0
- data/tests/fixtures/test_0004_supports_lunch_image.yml +312 -0
- data/tests/fixtures/test_0004_supports_valid_credentials_.yml +215 -0
- data/tests/fixtures/test_0004_supports_with_config.yml +129 -0
- data/tests/fixtures/test_0005_support_attach_storage_volume.yml +102 -0
- data/tests/fixtures/test_0005_support_attach_storage_volume_and_detach_storage_volume.yml +142 -0
- data/tests/fixtures/test_0005_support_create_instance_with_hwp_id.yml +115 -0
- data/tests/fixtures/test_0005_support_opaque_.yml +152 -0
- data/tests/fixtures/test_0005_supports_current_provider.yml +134 -0
- data/tests/fixtures/test_0005_supports_id.yml +116 -0
- data/tests/fixtures/test_0005_supports_switching_drivers_per_instance.yml +129 -0
- data/tests/fixtures/test_0005_supports_use_driver.yml +60 -0
- data/tests/fixtures/test_0006_support_create_instance_with_realm_id.yml +115 -0
- data/tests/fixtures/test_0006_supports_discovered_.yml +60 -0
- data/tests/fixtures/test_0006_supports_supported_collections.yml +60 -0
- data/tests/fixtures/test_0006_supports_switching_providers_per_instance.yml +208 -0
- data/tests/fixtures/test_0007_support_create_instance_with_name.yml +115 -0
- data/tests/fixtures/test_0007_support_switching_provider_without_credentials.yml +208 -0
- data/tests/fixtures/test_0007_supports_support_.yml +60 -0
- data/tests/fixtures/test_0007_supports_valid_credentials_on_class.yml +370 -0
- data/tests/fixtures/test_0008_support_stop_instance.yml +166 -0
- data/tests/fixtures/test_0008_supports_must_support_.yml +60 -0
- data/tests/fixtures/test_0009_support_start_instance.yml +217 -0
- data/tests/fixtures/test_0009_supports_features.yml +60 -0
- data/tests/fixtures/test_0010_support_reboot_instance.yml +166 -0
- data/tests/fixtures/test_0010_supports_feature_.yml +60 -0
- data/tests/helpers/model_test.rb +33 -0
- data/tests/helpers/xml_test.rb +56 -0
- data/tests/methods/address_test.rb +64 -0
- data/tests/methods/api_test.rb +97 -0
- data/tests/methods/backward_compatibility_test.rb +87 -0
- data/tests/methods/blob_test.rb +64 -0
- data/tests/methods/bucket_test.rb +62 -0
- data/tests/methods/driver_test.rb +48 -0
- data/tests/methods/firewall_test.rb +84 -0
- data/tests/methods/hardware_profile_test.rb +53 -0
- data/tests/methods/image_test.rb +64 -0
- data/tests/methods/instance_state_test.rb +43 -0
- data/tests/methods/instance_test.rb +126 -0
- data/tests/methods/key_test.rb +63 -0
- data/tests/methods/realm_test.rb +50 -0
- data/tests/methods/storage_snapshot_test.rb +53 -0
- data/tests/methods/storage_volume_test.rb +81 -0
- data/tests/models/blob_test.rb +40 -0
- data/tests/models/bucket_test.rb +37 -0
- data/tests/models/driver_test.rb +42 -0
- data/tests/models/hardware_profile_test.rb +80 -0
- data/tests/models/image_test.rb +65 -0
- data/tests/models/storage_volume_test.rb +52 -0
- data/tests/test_helper.rb +64 -0
- metadata +191 -2
@@ -0,0 +1,67 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Address
|
19
|
+
|
20
|
+
# Retrieve list of all address entities
|
21
|
+
#
|
22
|
+
# filter_opts:
|
23
|
+
# - :id -> Filter entities using 'id' attribute
|
24
|
+
#
|
25
|
+
def addresses(filter_opts={})
|
26
|
+
from_collection :addresses,
|
27
|
+
connection.get(api_uri('addresses'), filter_opts)
|
28
|
+
end
|
29
|
+
|
30
|
+
# Retrieve the single address entity
|
31
|
+
#
|
32
|
+
# - address_id -> Address entity to retrieve
|
33
|
+
#
|
34
|
+
def address(address_id)
|
35
|
+
from_resource :address,
|
36
|
+
connection.get(api_uri("addresses/#{address_id}"))
|
37
|
+
end
|
38
|
+
|
39
|
+
# Create a new address
|
40
|
+
#
|
41
|
+
def create_address
|
42
|
+
create_resource :address, {}
|
43
|
+
end
|
44
|
+
|
45
|
+
def destroy_address(address_id)
|
46
|
+
destroy_resource :address, address_id
|
47
|
+
end
|
48
|
+
|
49
|
+
def associate_address(address_id, instance_id)
|
50
|
+
result = connection.post(
|
51
|
+
api_uri("/addresses/#{address_id}/associate")
|
52
|
+
) do |request|
|
53
|
+
request.params = { :instance_id => instance_id }
|
54
|
+
end
|
55
|
+
result.status == 202
|
56
|
+
end
|
57
|
+
|
58
|
+
def disassociate_address(address_id)
|
59
|
+
result = connection.post(
|
60
|
+
api_uri("/addresses/#{address_id}/disassociate")
|
61
|
+
)
|
62
|
+
result.status == 202
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Api
|
19
|
+
|
20
|
+
def path
|
21
|
+
connection.url_prefix.path
|
22
|
+
end
|
23
|
+
|
24
|
+
def api_uri(uri)
|
25
|
+
URI.parse([path, uri.gsub(/^(\/+)/,'')].join('/'))
|
26
|
+
end
|
27
|
+
|
28
|
+
# The current version of DeltacloudVM API
|
29
|
+
#
|
30
|
+
def version
|
31
|
+
entrypoint.to_xml.root['version']
|
32
|
+
end
|
33
|
+
|
34
|
+
alias_method :api_version, :version
|
35
|
+
|
36
|
+
# The current driver the @connection is using
|
37
|
+
#
|
38
|
+
def current_driver
|
39
|
+
entrypoint.to_xml.root['driver']
|
40
|
+
end
|
41
|
+
|
42
|
+
alias_method :api_driver, :current_driver
|
43
|
+
alias_method :driver_name, :current_driver
|
44
|
+
|
45
|
+
# The current provider the @connection is using
|
46
|
+
#
|
47
|
+
def current_provider
|
48
|
+
entrypoint.to_xml.root['provider']
|
49
|
+
end
|
50
|
+
|
51
|
+
# List of the currently supported collections by @connection
|
52
|
+
#
|
53
|
+
def supported_collections
|
54
|
+
entrypoint.to_xml.root.xpath('link').map { |l| l['rel'] }
|
55
|
+
end
|
56
|
+
|
57
|
+
alias_method :entrypoints, :supported_collections
|
58
|
+
|
59
|
+
# Syntax sugar for +supported_collections+
|
60
|
+
# Return 'true' if the collection is supported by current API entrypoint
|
61
|
+
#
|
62
|
+
def support?(collection)
|
63
|
+
supported_collections.include? collection.to_s
|
64
|
+
end
|
65
|
+
|
66
|
+
# Syntax sugar for Method modules, where you can 'require' the support
|
67
|
+
# for the given collection before you execute API call
|
68
|
+
#
|
69
|
+
# Raise +NotSupported+ exception if the given +collection+ is not
|
70
|
+
# supported
|
71
|
+
#
|
72
|
+
def must_support!(collection)
|
73
|
+
unless support?(collection)
|
74
|
+
raise error(:not_supported).new("Collection '#{collection}' not supported by current API endpoint.")
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# +Hash+ of all features supported by current connection
|
79
|
+
#
|
80
|
+
def features
|
81
|
+
entrypoint.to_xml.root.xpath('link/feature').inject(Hash.new(Array.new)) do |result, feature|
|
82
|
+
result[feature.parent['rel']] += [feature['name']]
|
83
|
+
result
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# Check if the current collection support given feature for given
|
88
|
+
# collection
|
89
|
+
#
|
90
|
+
def feature?(collection_name, feature_name)
|
91
|
+
features[collection_name.to_s].include?(feature_name.to_s)
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module BackwardCompatibility
|
19
|
+
|
20
|
+
# Backward compatibility methods provides fallback for the
|
21
|
+
# old deltacloud-client gem.
|
22
|
+
#
|
23
|
+
#
|
24
|
+
def api_host
|
25
|
+
connection.url_prefix.host
|
26
|
+
end
|
27
|
+
|
28
|
+
def api_port
|
29
|
+
connection.url_prefix.port
|
30
|
+
end
|
31
|
+
|
32
|
+
def connect(&block)
|
33
|
+
yield self.clone
|
34
|
+
end
|
35
|
+
|
36
|
+
def with_config(opts, &block)
|
37
|
+
yield inst = use(
|
38
|
+
opts[:driver],
|
39
|
+
opts[:username],
|
40
|
+
opts[:password],
|
41
|
+
opts[:provider]
|
42
|
+
) if block_given?
|
43
|
+
inst
|
44
|
+
end
|
45
|
+
|
46
|
+
def use_driver(new_driver, opts={})
|
47
|
+
with_config(opts.merge(:driver => new_driver))
|
48
|
+
end
|
49
|
+
|
50
|
+
alias_method :"use_config!", :use_driver
|
51
|
+
|
52
|
+
def discovered?
|
53
|
+
true unless entrypoint.nil?
|
54
|
+
end
|
55
|
+
|
56
|
+
module ClassMethods
|
57
|
+
|
58
|
+
def valid_credentials?(api_user, api_password, api_url, opts={})
|
59
|
+
args = {
|
60
|
+
:api_user => api_user,
|
61
|
+
:api_password => api_password,
|
62
|
+
:url => api_url
|
63
|
+
}
|
64
|
+
args.merge!(:providers => opts[:provider]) if opts[:provider]
|
65
|
+
DeltacloudVM::Client::Connection.new(args).valid_credentials?
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Blob
|
19
|
+
|
20
|
+
# Retrieve a list of all blob entities from given bucket
|
21
|
+
#
|
22
|
+
def blobs(bucket_id=nil)
|
23
|
+
raise error.new("The :bucket_id cannot be nil.") if bucket_id.nil?
|
24
|
+
bucket(bucket_id).blob_ids.map { |blob_id| blob(bucket_id, blob_id) }
|
25
|
+
end
|
26
|
+
|
27
|
+
# Retrieve the single blob entity
|
28
|
+
#
|
29
|
+
# - blob_id -> Blob entity to retrieve
|
30
|
+
#
|
31
|
+
def blob(bucket_id, blob_id)
|
32
|
+
model(:blob).convert(
|
33
|
+
self,
|
34
|
+
connection.get(api_uri("buckets/#{bucket_id}/#{blob_id}"))
|
35
|
+
)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Create a new blob
|
39
|
+
#
|
40
|
+
# - bucket_id -> A bucket ID that new blob should belong to
|
41
|
+
# - blob_name -> A name for new blob
|
42
|
+
# - blob_data -> Data stored in this blob
|
43
|
+
# - create_opts
|
44
|
+
# - :user_metadata -> A Ruby +Hash+ with key => value metadata
|
45
|
+
#
|
46
|
+
def create_blob(bucket_id, blob_name, blob_data, create_opts={})
|
47
|
+
must_support! :buckets
|
48
|
+
create_opts.merge!(convert_meta_params(create_opts.delete(:user_metadata)))
|
49
|
+
response = connection.post(api_uri("buckets/#{bucket_id}")) do |request|
|
50
|
+
request.params = create_opts.merge(
|
51
|
+
:blob_id => blob_name,
|
52
|
+
:blob_data => blob_data
|
53
|
+
)
|
54
|
+
end
|
55
|
+
model(:blob).convert(self, response.body)
|
56
|
+
end
|
57
|
+
|
58
|
+
# Destroy given bucket blob
|
59
|
+
#
|
60
|
+
def destroy_blob(bucket_id, blob_id)
|
61
|
+
must_support! :buckets
|
62
|
+
r = connection.delete(api_uri("buckets/#{bucket_id}/#{blob_id}"))
|
63
|
+
r.status == 204
|
64
|
+
end
|
65
|
+
|
66
|
+
private
|
67
|
+
|
68
|
+
# Convert the user_metadata into POST params compatible with
|
69
|
+
# blob creation
|
70
|
+
#
|
71
|
+
# - params -> Simple Ruby +Hash+
|
72
|
+
#
|
73
|
+
# @return { :meta_params => COUNTER, :meta_name1 => '', :meta_value1 => ''}
|
74
|
+
#
|
75
|
+
def convert_meta_params(params)
|
76
|
+
meta_params = {}
|
77
|
+
counter = 0
|
78
|
+
(params || {}).each do |key, value|
|
79
|
+
counter += 1
|
80
|
+
meta_params["meta_name#{counter}"] = key
|
81
|
+
meta_params["meta_value#{counter}"] = value
|
82
|
+
end
|
83
|
+
if counter >= 1
|
84
|
+
meta_params.merge!(:meta_params => counter.to_s)
|
85
|
+
end
|
86
|
+
meta_params
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Bucket
|
19
|
+
|
20
|
+
# Retrieve list of all bucket entities
|
21
|
+
#
|
22
|
+
# - filter_opts:
|
23
|
+
# - :id -> Filter entities using 'id' attribute
|
24
|
+
#
|
25
|
+
def buckets(filter_opts={})
|
26
|
+
from_collection :buckets,
|
27
|
+
connection.get(api_uri('buckets'), filter_opts)
|
28
|
+
end
|
29
|
+
|
30
|
+
# Retrieve the single bucket entity
|
31
|
+
#
|
32
|
+
# - bucket_id -> Bucket entity to retrieve
|
33
|
+
#
|
34
|
+
def bucket(bucket_id)
|
35
|
+
from_resource :bucket,
|
36
|
+
connection.get(api_uri("buckets/#{bucket_id}"))
|
37
|
+
end
|
38
|
+
|
39
|
+
# Create a new bucket
|
40
|
+
#
|
41
|
+
# - name: Bucket name
|
42
|
+
#
|
43
|
+
def create_bucket(name)
|
44
|
+
create_resource :bucket, :name => name
|
45
|
+
end
|
46
|
+
|
47
|
+
# Destroy given bucket
|
48
|
+
#
|
49
|
+
def destroy_bucket(bucket_id)
|
50
|
+
destroy_resource :bucket, bucket_id
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Common
|
19
|
+
|
20
|
+
# A generic method for creating a new resources
|
21
|
+
#
|
22
|
+
# - resource_name -> A resource name to create (eg. :image)
|
23
|
+
# - create_opts -> HTTP options to pass into the create operation
|
24
|
+
#
|
25
|
+
def create_resource(resource_name, create_opts={})
|
26
|
+
no_convert_model = create_opts.delete(:no_convert_model)
|
27
|
+
must_support! resource_name.to_s.pluralize
|
28
|
+
response = connection.post(api_uri(resource_name.to_s.pluralize)) do |request|
|
29
|
+
request.params = create_opts
|
30
|
+
end
|
31
|
+
no_convert_model ? response : model(resource_name).convert(self, response.body)
|
32
|
+
end
|
33
|
+
|
34
|
+
# A generic method for destroying resources
|
35
|
+
#
|
36
|
+
def destroy_resource(resource_name, resource_id)
|
37
|
+
must_support! resource_name.to_s.pluralize
|
38
|
+
result = connection.delete(
|
39
|
+
api_uri([resource_name.to_s.pluralize, resource_id].join('/'))
|
40
|
+
)
|
41
|
+
result.status.is_no_content?
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership. The
|
4
|
+
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the
|
6
|
+
# License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations
|
14
|
+
# under the License.
|
15
|
+
|
16
|
+
module DeltacloudVM::Client
|
17
|
+
module Methods
|
18
|
+
module Driver
|
19
|
+
|
20
|
+
# Retrieve list of all drivers
|
21
|
+
#
|
22
|
+
# - filter_opt:
|
23
|
+
# - :id -> Filter drivers using their 'id'
|
24
|
+
# - :state -> Filter drivers by their 'state'
|
25
|
+
#
|
26
|
+
def drivers(filter_opts={})
|
27
|
+
from_collection(
|
28
|
+
:drivers,
|
29
|
+
connection.get(api_uri('drivers'), filter_opts)
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Retrieve the given driver
|
34
|
+
#
|
35
|
+
# - driver_id -> Driver to retrieve
|
36
|
+
#
|
37
|
+
def driver(driver_id)
|
38
|
+
from_resource(
|
39
|
+
:driver,
|
40
|
+
connection.get(api_uri("drivers/#{driver_id}"))
|
41
|
+
)
|
42
|
+
end
|
43
|
+
|
44
|
+
# List of the current driver providers
|
45
|
+
#
|
46
|
+
def providers
|
47
|
+
driver(current_driver).providers
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
end
|