Class: Chef::Resource::AwsEbsVolume
- Inherits:
-
Provisioning::AWSDriver::AWSResourceWithEntry
- Object
- LWRPBase
- Provisioning::AWSDriver::SuperLWRP
- Provisioning::AWSDriver::AWSResource
- Provisioning::AWSDriver::AWSResourceWithEntry
- Chef::Resource::AwsEbsVolume
- Includes:
- Provisioning::AWSDriver::AWSTaggable
- Defined in:
- lib/chef/resource/aws_ebs_volume.rb
Constant Summary
Constants inherited from Provisioning::AWSDriver::AWSResource
Provisioning::AWSDriver::AWSResource::NOT_PASSED
Instance Method Summary collapse
Methods included from Provisioning::AWSDriver::AWSTaggable
Methods inherited from Provisioning::AWSDriver::AWSResourceWithEntry
#delete_managed_entry, #get_id_from_managed_entry, #save_managed_entry, #to_s
Methods inherited from Provisioning::AWSDriver::AWSResource
#action, #action=, #aws_object_id, get_aws_object, get_aws_object_id, #initialize, lookup_options
Methods inherited from Provisioning::AWSDriver::SuperLWRP
Constructor Details
This class inherits a constructor from Chef::Provisioning::AWSDriver::AWSResource
Instance Method Details
#aws_object ⇒ Object
26 27 28 29 30 |
# File 'lib/chef/resource/aws_ebs_volume.rb', line 26 def aws_object driver, id = get_driver_and_id result = driver.ec2_resource.volume(id) if id result && exists?(result) && !i{deleted deleting}.include?(result.state) ? result : nil end |
#exists?(result) ⇒ Boolean
32 33 34 35 36 |
# File 'lib/chef/resource/aws_ebs_volume.rb', line 32 def exists?(result) return true if result.data rescue ::Aws::EC2::Errors::InvalidVolumeNotFound false end |