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,56 @@
|
|
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
|
+
class Blob < Base
|
18
|
+
|
19
|
+
include DeltacloudVM::Client::Methods::Blob
|
20
|
+
include DeltacloudVM::Client::Methods::Bucket
|
21
|
+
|
22
|
+
# Inherited attributes: :_id, :name, :description
|
23
|
+
|
24
|
+
# Custom attributes:
|
25
|
+
#
|
26
|
+
attr_reader :bucket_id
|
27
|
+
attr_reader :content_length
|
28
|
+
attr_reader :content_type
|
29
|
+
attr_reader :last_modified
|
30
|
+
attr_reader :user_metadata
|
31
|
+
|
32
|
+
# Blob model methods
|
33
|
+
#
|
34
|
+
|
35
|
+
def bucket
|
36
|
+
super(bucket_id)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Parse the Blob entity from XML body
|
40
|
+
#
|
41
|
+
# - xml_body -> DeltacloudVM API XML representation of the blob
|
42
|
+
#
|
43
|
+
def self.parse(xml_body)
|
44
|
+
{
|
45
|
+
:bucket_id => xml_body.text_at(:bucket_id) || xml_body.text_at(:bucket), # FIXME: DC bug
|
46
|
+
:content_length => xml_body.text_at(:content_length),
|
47
|
+
:content_type => xml_body.text_at(:content_type),
|
48
|
+
:last_modified => xml_body.text_at(:last_modified),
|
49
|
+
:user_metadata => xml_body.xpath('user_metadata/entry').inject({}) { |r,e|
|
50
|
+
r[e['key']] = e.text.strip
|
51
|
+
r
|
52
|
+
}
|
53
|
+
}
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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
|
+
class Bucket < Base
|
18
|
+
|
19
|
+
include DeltacloudVM::Client::Methods::Bucket
|
20
|
+
include DeltacloudVM::Client::Methods::Blob
|
21
|
+
|
22
|
+
# Inherited attributes: :_id, :name, :description
|
23
|
+
|
24
|
+
# Custom attributes:
|
25
|
+
#
|
26
|
+
attr_reader :size
|
27
|
+
attr_reader :blob_ids
|
28
|
+
|
29
|
+
# Bucket model methods
|
30
|
+
#
|
31
|
+
#
|
32
|
+
|
33
|
+
# All blobs associated with the current bucket
|
34
|
+
# The 'bucket_id' should not be set in this case.
|
35
|
+
#
|
36
|
+
def blobs(bucket_id=nil)
|
37
|
+
super(_id)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Add a new blob to the bucket.
|
41
|
+
# See: methods/blob.rb +create_blob+
|
42
|
+
#
|
43
|
+
def add_blob(blob_name, blob_data, blob_create_opts={})
|
44
|
+
create_blob(_id, blob_name, blob_data, create_opts)
|
45
|
+
end
|
46
|
+
|
47
|
+
# Remove a blob from the bucket
|
48
|
+
# See: methods/blob.rb +destroy_blob+
|
49
|
+
#
|
50
|
+
def remove_blob(blob_id)
|
51
|
+
destroy_blob(_id, blob_id)
|
52
|
+
end
|
53
|
+
|
54
|
+
# Parse the Bucket entity from XML body
|
55
|
+
#
|
56
|
+
# - xml_body -> DeltacloudVM API XML representation of the bucket
|
57
|
+
#
|
58
|
+
def self.parse(xml_body)
|
59
|
+
{
|
60
|
+
:size => xml_body.text_at(:size),
|
61
|
+
:blob_ids => xml_body.xpath('blob').map { |b| b['id'] }
|
62
|
+
}
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,87 @@
|
|
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
|
+
|
18
|
+
class Driver < Base
|
19
|
+
|
20
|
+
attr_reader :providers
|
21
|
+
|
22
|
+
# Syntax sugar for returning provider from Driver
|
23
|
+
# instance:
|
24
|
+
#
|
25
|
+
# client.driver(:ec2)['us-west-1'] # => List of endpoints
|
26
|
+
#
|
27
|
+
# - provider_id -> Provider ID, like 'us-west-1'
|
28
|
+
#
|
29
|
+
def [](provider_id)
|
30
|
+
@providers ||= []
|
31
|
+
prov = @providers.find { |p| p.name == provider_id }
|
32
|
+
prov.instance_variable_set('@client', @client)
|
33
|
+
prov
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.parse(xml_body)
|
37
|
+
{
|
38
|
+
:providers => xml_body.xpath('provider').map { |p| Provider.parse(p) }
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
class Provider
|
43
|
+
|
44
|
+
attr_reader :name
|
45
|
+
attr_reader :entrypoints
|
46
|
+
|
47
|
+
def initialize(name, entrypoints=[])
|
48
|
+
@name = name
|
49
|
+
@entrypoints = entrypoints
|
50
|
+
end
|
51
|
+
|
52
|
+
# Syntax sugar for retrieving list of endpoints available for the
|
53
|
+
# provider
|
54
|
+
#
|
55
|
+
# - entrypoint_id -> Entrypoint ID, like 's3'
|
56
|
+
#
|
57
|
+
def [](entrypoint_id)
|
58
|
+
@entrypoints ||= []
|
59
|
+
ent_point = @entrypoints.find { |name, _| name == entrypoint_id }
|
60
|
+
ent_point ? ent_point.last : nil
|
61
|
+
end
|
62
|
+
|
63
|
+
# Method to check if given credentials can be used to authorize
|
64
|
+
# connection to current provider:
|
65
|
+
#
|
66
|
+
# client.driver(:ec2)['us-west-1'].valid_credentials? 'user', 'password'
|
67
|
+
#
|
68
|
+
# - api_user -> API key
|
69
|
+
# - api_password -> API secret
|
70
|
+
#
|
71
|
+
def valid_credentials?(api_user, api_password)
|
72
|
+
unless @client
|
73
|
+
raise error.new('Please use driver("ec2")[API_PROVIDER].valid_credentials?')
|
74
|
+
end
|
75
|
+
@client.use(@client.current_driver, api_user, api_password, @name).valid_credentials?
|
76
|
+
end
|
77
|
+
|
78
|
+
def self.parse(p)
|
79
|
+
new(
|
80
|
+
p['id'],
|
81
|
+
p.xpath('entrypoint').inject({}) { |r, e| r[e['kind']] = e.text.strip; r }
|
82
|
+
)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,64 @@
|
|
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
|
+
class Firewall < Base
|
18
|
+
|
19
|
+
include DeltacloudVM::Client::Methods::Common
|
20
|
+
include DeltacloudVM::Client::Methods::Firewall
|
21
|
+
|
22
|
+
# Inherited attributes: :_id, :name, :description
|
23
|
+
|
24
|
+
# Custom attributes:
|
25
|
+
#
|
26
|
+
attr_reader :owner_id
|
27
|
+
attr_reader :rules
|
28
|
+
|
29
|
+
# Parse the Firewall entity from XML body
|
30
|
+
#
|
31
|
+
# - xml_body -> DeltacloudVM API XML representation of the firewall
|
32
|
+
#
|
33
|
+
def self.parse(xml_body)
|
34
|
+
{
|
35
|
+
:owner_id => xml_body.text_at(:owner_id),
|
36
|
+
:rules => xml_body.xpath('rules/rule').map { |rule|
|
37
|
+
Rule.convert(self, rule)
|
38
|
+
}
|
39
|
+
}
|
40
|
+
end
|
41
|
+
|
42
|
+
class Rule < DeltacloudVM::Client::Base
|
43
|
+
|
44
|
+
attr_reader :allow_protocol
|
45
|
+
attr_reader :port_from
|
46
|
+
attr_reader :port_to
|
47
|
+
attr_reader :direction
|
48
|
+
attr_reader :sources
|
49
|
+
|
50
|
+
def self.parse(xml_body)
|
51
|
+
{
|
52
|
+
:allow_protocol => xml_body.text_at(:allow_protocol),
|
53
|
+
:port_from => xml_body.text_at(:port_from),
|
54
|
+
:port_to => xml_body.text_at(:port_to),
|
55
|
+
:direction => xml_body.text_at(:direction),
|
56
|
+
:sources => xml_body.xpath('sources/source').map { |s|
|
57
|
+
{ :name => s['name'], :owner => s['owner'], :type => s['type'] }
|
58
|
+
}
|
59
|
+
}
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,68 @@
|
|
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
|
+
class HardwareProfile < Base
|
18
|
+
|
19
|
+
include DeltacloudVM::Client::Helpers
|
20
|
+
|
21
|
+
attr_reader :properties
|
22
|
+
|
23
|
+
def self.parse(hwp)
|
24
|
+
{
|
25
|
+
:properties => hwp.xpath('property').map { |p|
|
26
|
+
property_klass(p['kind']).parse(p)
|
27
|
+
}
|
28
|
+
}
|
29
|
+
end
|
30
|
+
|
31
|
+
def cpu
|
32
|
+
property :cpu
|
33
|
+
end
|
34
|
+
|
35
|
+
def memory
|
36
|
+
property :memory
|
37
|
+
end
|
38
|
+
|
39
|
+
def architecture
|
40
|
+
property :architecture
|
41
|
+
end
|
42
|
+
|
43
|
+
def storage
|
44
|
+
property :storage
|
45
|
+
end
|
46
|
+
|
47
|
+
def opaque?
|
48
|
+
@properties.empty? && @name == 'opaque'
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def property(name)
|
54
|
+
@properties.find { |p| p.name == name.to_s }
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.property_klass(kind)
|
58
|
+
case kind
|
59
|
+
when 'enum' then Property::Enum
|
60
|
+
when 'range' then Property::Range
|
61
|
+
when 'fixed' then Property::Fixed
|
62
|
+
when 'opaque' then Property::Property
|
63
|
+
else raise error.new("Unknown HWP property: #{kind}")
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,60 @@
|
|
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
|
+
class Image < Base
|
18
|
+
|
19
|
+
attr_reader :owner_id, :architecture, :state
|
20
|
+
attr_reader :creation_time, :root_type, :hardware_profile_ids
|
21
|
+
|
22
|
+
def hardware_profiles
|
23
|
+
@client.hardware_profiles.select { |hwp| @hardware_profile_ids.include?(hwp._id) }
|
24
|
+
end
|
25
|
+
|
26
|
+
def is_compatible?(hardware_profile_id)
|
27
|
+
hardware_profile_ids.include? hardware_profile_id
|
28
|
+
end
|
29
|
+
|
30
|
+
# Launch the image using +Instance+#+create_instance+ method.
|
31
|
+
# This method is more strict in checking +HardwareProfile+
|
32
|
+
# and in case you use incompatible HWP it raise an error.
|
33
|
+
#
|
34
|
+
# - create_instance_opts -> +create_instance+ options
|
35
|
+
#
|
36
|
+
def launch(create_instance_opts={})
|
37
|
+
|
38
|
+
if hwp_id = create_instance_opts[:hwp_id]
|
39
|
+
raise error(:incompatible_hardware_profile).new(
|
40
|
+
"Profile '#{hwp_id}' is not compatible with this image."
|
41
|
+
) unless is_compatible?(hwp_id)
|
42
|
+
end
|
43
|
+
|
44
|
+
@client.create_instance(self._id, create_instance_opts)
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.parse(xml_body)
|
48
|
+
{
|
49
|
+
:owner_id => xml_body.text_at(:owner_id),
|
50
|
+
:architecture => xml_body.text_at(:architecture),
|
51
|
+
:state => xml_body.text_at(:state),
|
52
|
+
:creation_time => xml_body.text_at('creation_time'),
|
53
|
+
:root_type => xml_body.text_at('root_type'),
|
54
|
+
:hardware_profile_ids => xml_body.xpath('hardware_profiles/hardware_profile').map { |h|
|
55
|
+
h['id']
|
56
|
+
}
|
57
|
+
}
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,142 @@
|
|
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
|
+
class Instance < Base
|
18
|
+
|
19
|
+
include DeltacloudVM::Client::Methods::Common
|
20
|
+
include DeltacloudVM::Client::Methods::Instance
|
21
|
+
include DeltacloudVM::Client::Methods::Realm
|
22
|
+
include DeltacloudVM::Client::Methods::HardwareProfile
|
23
|
+
include DeltacloudVM::Client::Methods::Image
|
24
|
+
include DeltacloudVM::Client::Methods::LoadBalancer
|
25
|
+
|
26
|
+
attr_reader :realm_id
|
27
|
+
attr_reader :owner_id
|
28
|
+
attr_reader :image_id
|
29
|
+
attr_reader :hardware_profile_id
|
30
|
+
attr_reader :actions
|
31
|
+
|
32
|
+
attr_accessor :state
|
33
|
+
attr_accessor :public_addresses
|
34
|
+
attr_accessor :private_addresses
|
35
|
+
|
36
|
+
# Destroy the current Instance
|
37
|
+
#
|
38
|
+
def destroy!
|
39
|
+
destroy_instance(_id)
|
40
|
+
end
|
41
|
+
|
42
|
+
# Execute +stop_instance+ method on current Instance
|
43
|
+
#
|
44
|
+
def stop!
|
45
|
+
stop_instance(_id) && reload!
|
46
|
+
end
|
47
|
+
|
48
|
+
# Execute +start_instance+ method on current Instance
|
49
|
+
#
|
50
|
+
def start!
|
51
|
+
start_instance(_id) && reload!
|
52
|
+
end
|
53
|
+
|
54
|
+
# Execute +reboot_instance+ method on current Instance
|
55
|
+
#
|
56
|
+
def reboot!
|
57
|
+
reboot_instance(_id) && reload!
|
58
|
+
end
|
59
|
+
|
60
|
+
# Retrieve the +Realm+ associated with Instance
|
61
|
+
#
|
62
|
+
def realm
|
63
|
+
super(realm_id)
|
64
|
+
end
|
65
|
+
|
66
|
+
def hardware_profile
|
67
|
+
super(hardware_profile_id)
|
68
|
+
end
|
69
|
+
|
70
|
+
def image
|
71
|
+
super(image_id)
|
72
|
+
end
|
73
|
+
|
74
|
+
def method_missing(name, *args)
|
75
|
+
return self.state.downcase == $1 if name.to_s =~ /^is_(\w+)\?$/
|
76
|
+
super
|
77
|
+
end
|
78
|
+
|
79
|
+
def can_create_image?
|
80
|
+
actions.include? :create_image
|
81
|
+
end
|
82
|
+
|
83
|
+
def create_image(create_opts={})
|
84
|
+
return false unless can_create_image?
|
85
|
+
super(_id, create_opts)
|
86
|
+
end
|
87
|
+
|
88
|
+
def register_instance(load_balancer_id)
|
89
|
+
super(load_balancer_id, _id)
|
90
|
+
end
|
91
|
+
|
92
|
+
def unregister_instance(load_balancer_id)
|
93
|
+
super(load_balancer_id, _id)
|
94
|
+
end
|
95
|
+
|
96
|
+
# Helper for is_STATE?
|
97
|
+
#
|
98
|
+
# is_running?
|
99
|
+
# is_stopped?
|
100
|
+
#
|
101
|
+
def method_missing(name, *args)
|
102
|
+
if name =~ /^is_(\w+)\?$/
|
103
|
+
return state == $1.upcase
|
104
|
+
end
|
105
|
+
super
|
106
|
+
end
|
107
|
+
|
108
|
+
class << self
|
109
|
+
|
110
|
+
def parse(xml_body)
|
111
|
+
{
|
112
|
+
:state => xml_body.text_at('state'),
|
113
|
+
:owner_id => xml_body.text_at('owner_id'),
|
114
|
+
:realm_id => xml_body.attr_at('realm', :id),
|
115
|
+
:image_id => xml_body.attr_at('image', :id),
|
116
|
+
:hardware_profile_id => xml_body.attr_at('hardware_profile', :id),
|
117
|
+
:public_addresses => InstanceAddress.convert(
|
118
|
+
xml_body.xpath('public_addresses/address')
|
119
|
+
),
|
120
|
+
:private_addresses => InstanceAddress.convert(
|
121
|
+
xml_body.xpath('private_addresses/address')
|
122
|
+
),
|
123
|
+
:actions => xml_body.xpath('actions/link').map { |a| a['rel'].to_sym }
|
124
|
+
}
|
125
|
+
end
|
126
|
+
|
127
|
+
end
|
128
|
+
|
129
|
+
# Attempt to reload :public_addresses, :private_addresses and :state
|
130
|
+
# of the instance, after the instance is modified by calling method
|
131
|
+
#
|
132
|
+
def reload!
|
133
|
+
new_instance = instance(_id)
|
134
|
+
update_instance_variables!(
|
135
|
+
:public_addresses => new_instance.public_addresses,
|
136
|
+
:private_addresses => new_instance.private_addresses,
|
137
|
+
:state => new_instance.state
|
138
|
+
)
|
139
|
+
end
|
140
|
+
|
141
|
+
end
|
142
|
+
end
|