Class: Aws::EC2::Volume
- Inherits:
-
Object
- Object
- Aws::EC2::Volume
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#attachments ⇒ Array<Types::VolumeAttachment>
This parameter is not returned by CreateVolume. -
#availability_zone ⇒ String
The Availability Zone for the volume.
-
#availability_zone_id ⇒ String
The ID of the Availability Zone for the volume.
-
#create_time ⇒ Time
The time stamp when volume creation was initiated.
-
#encrypted ⇒ Boolean
Indicates whether the volume is encrypted.
-
#fast_restored ⇒ Boolean
This parameter is not returned by CreateVolume. -
#id ⇒ String
(also: #volume_id)
-
#iops ⇒ Integer
The number of I/O operations per second (IOPS).
-
#kms_key_id ⇒ String
The Amazon Resource Name (ARN) of the KMS key that was used to protect the volume encryption key for the volume.
-
#multi_attach_enabled ⇒ Boolean
Indicates whether Amazon EBS Multi-Attach is enabled.
-
#operator ⇒ Types::OperatorResponse
The service provider that manages the volume.
-
#outpost_arn ⇒ String
The Amazon Resource Name (ARN) of the Outpost.
-
#owner_id ⇒ String
The ID of the Amazon Web Services account that owns the volume.
-
#size ⇒ Integer
The size of the volume, in GiBs.
-
#snapshot_id ⇒ String
The snapshot from which the volume was created, if applicable.
-
#source_volume_id ⇒ String
The ID of the source volume from which the volume copy was created.
-
#sse_type ⇒ String
This parameter is not returned by CreateVolume. -
#state ⇒ String
The volume state.
-
#tags ⇒ Array<Types::Tag>
Any tags assigned to the volume.
-
#throughput ⇒ Integer
The throughput that the volume supports, in MiB/s.
-
#volume_arn ⇒ String
The Amazon Resource Name (ARN) of the volume.
-
#volume_initialization_rate ⇒ Integer
The Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate) specified for the volume during creation, in MiB/s.
-
#volume_type ⇒ String
The volume type.
Actions collapse
-
#attach_to_instance(options = {}) ⇒ Types::VolumeAttachment
-
#create_snapshot(options = {}) ⇒ Snapshot
-
#create_tags(options = {}) ⇒ Tag::Collection
-
#delete(options = {}) ⇒ EmptyStructure
-
#delete_tags(options = {}) ⇒ Tag::Collection
-
#describe_attribute(options = {}) ⇒ Types::DescribeVolumeAttributeResult
-
#describe_status(options = {}) ⇒ Types::DescribeVolumeStatusResult
-
#detach_from_instance(options = {}) ⇒ Types::VolumeAttachment
-
#enable_io(options = {}) ⇒ EmptyStructure
-
#modify_attribute(options = {}) ⇒ EmptyStructure
Associations collapse
Instance Method Summary collapse
-
#client ⇒ Client
-
#data ⇒ Types::Volume
Returns the data for this Volume.
-
#data_loaded? ⇒ Boolean
Returns
trueif this resource is loaded. -
#initialize(*args) ⇒ Volume
constructor
A new instance of Volume.
- #load ⇒ self (also: #reload)
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::EC2::Client] #wait_until instead
Constructor Details
#initialize(id, options = {}) ⇒ Volume #initialize(options = {}) ⇒ Volume
Returns a new instance of Volume.
22 23 24 25 26 27 28 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 22 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @id = extract_id(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#attach_to_instance(options = {}) ⇒ Types::VolumeAttachment
351 352 353 354 355 356 357 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 351 def attach_to_instance( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.attach_volume() end resp.data end |
#attachments ⇒ Array<Types::VolumeAttachment>
Information about the volume attachments.
174 175 176 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 174 def data[:attachments] end |
#availability_zone ⇒ String
The Availability Zone for the volume.
152 153 154 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 152 def availability_zone data[:availability_zone] end |
#availability_zone_id ⇒ String
The ID of the Availability Zone for the volume.
40 41 42 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 40 def availability_zone_id data[:availability_zone_id] end |
#client ⇒ Client
194 195 196 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 194 def client @client end |
#create_snapshot(options = {}) ⇒ Snapshot
421 422 423 424 425 426 427 428 429 430 431 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 421 def create_snapshot( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.create_snapshot() end Snapshot.new( id: resp.data.snapshot_id, data: resp.data, client: @client ) end |
#create_tags(options = {}) ⇒ Tag::Collection
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 455 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.() end [:tags].each do |t| batch << Tag.new( resource_id: @id, key: t[:key], value: t[:value], client: @client ) end Tag::Collection.new([batch], size: batch.size) end |
#create_time ⇒ Time
The time stamp when volume creation was initiated.
164 165 166 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 164 def create_time data[:create_time] end |
#data ⇒ Types::Volume
Returns the data for this Aws::EC2::Volume. Calls
Client#describe_volumes if #data_loaded? is false.
216 217 218 219 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 216 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
224 225 226 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 224 def data_loaded? !!@data end |
#delete(options = {}) ⇒ EmptyStructure
531 532 533 534 535 536 537 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 531 def delete( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.delete_volume() end resp.data end |
#delete_tags(options = {}) ⇒ Tag::Collection
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 502 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.() end [:tags].each do |t| batch << Tag.new( resource_id: @id, key: t[:key], value: t[:value], client: @client ) end Tag::Collection.new([batch], size: batch.size) end |
#describe_attribute(options = {}) ⇒ Types::DescribeVolumeAttributeResult
554 555 556 557 558 559 560 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 554 def describe_attribute( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.describe_volume_attribute() end resp.data end |
#describe_status(options = {}) ⇒ Types::DescribeVolumeStatusResult
633 634 635 636 637 638 639 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 633 def describe_status( = {}) = Aws::Util.deep_merge(, volume_ids: [@id]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.describe_volume_status() end resp.data end |
#detach_from_instance(options = {}) ⇒ Types::VolumeAttachment
670 671 672 673 674 675 676 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 670 def detach_from_instance( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.detach_volume() end resp.data end |
#enable_io(options = {}) ⇒ EmptyStructure
690 691 692 693 694 695 696 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 690 def enable_io( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.enable_volume_io() end resp.data end |
#encrypted ⇒ Boolean
Indicates whether the volume is encrypted.
180 181 182 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 180 def encrypted data[:encrypted] end |
#fast_restored ⇒ Boolean
Indicates whether the volume was created using fast snapshot restore.
85 86 87 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 85 def fast_restored data[:fast_restored] end |
#id ⇒ String Also known as: volume_id
33 34 35 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 33 def id @id end |
#iops ⇒ Integer
The number of I/O operations per second (IOPS). For gp3, io1, and
io2 volumes, this represents the number of IOPS that are provisioned
for the volume. For gp2 volumes, this represents the baseline
performance of the volume and the rate at which the volume accumulates
I/O credits for bursting.
63 64 65 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 63 def iops data[:iops] end |
#kms_key_id ⇒ String
The Amazon Resource Name (ARN) of the KMS key that was used to protect the volume encryption key for the volume.
187 188 189 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 187 def kms_key_id data[:kms_key_id] end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::EC2::Volume.
Returns self making it possible to chain methods.
volume.reload.data
204 205 206 207 208 209 210 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 204 def load resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.describe_volumes(volume_ids: [@id]) end @data = resp.volumes[0] self end |
#modify_attribute(options = {}) ⇒ EmptyStructure
716 717 718 719 720 721 722 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 716 def modify_attribute( = {}) = .merge(volume_id: @id) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.modify_volume_attribute() end resp.data end |
#multi_attach_enabled ⇒ Boolean
Indicates whether Amazon EBS Multi-Attach is enabled.
91 92 93 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 91 def multi_attach_enabled data[:multi_attach_enabled] end |
#operator ⇒ Types::OperatorResponse
The service provider that manages the volume.
113 114 115 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 113 def operator data[:operator] end |
#outpost_arn ⇒ String
The Amazon Resource Name (ARN) of the Outpost.
46 47 48 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 46 def outpost_arn data[:outpost_arn] end |
#owner_id ⇒ String
The ID of the Amazon Web Services account that owns the volume.
134 135 136 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 134 def owner_id data[:owner_id] end |
#size ⇒ Integer
The size of the volume, in GiBs.
140 141 142 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 140 def size data[:size] end |
#snapshot_id ⇒ String
The snapshot from which the volume was created, if applicable.
146 147 148 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 146 def snapshot_id data[:snapshot_id] end |
#snapshots(options = {}) ⇒ Snapshot::Collection
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 804 def snapshots( = {}) batches = Enumerator.new do |y| = Aws::Util.deep_merge(, filters: [{ name: "volume-id", values: [@id] }]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.describe_snapshots() end resp.each_page do |page| batch = [] page.data.snapshots.each do |s| batch << Snapshot.new( id: s.snapshot_id, data: s, client: @client ) end y.yield(batch) end end Snapshot::Collection.new(batches) end |
#source_volume_id ⇒ String
The ID of the source volume from which the volume copy was created. Only for volume copies.
53 54 55 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 53 def source_volume_id data[:source_volume_id] end |
#sse_type ⇒ String
Reserved for future use.
107 108 109 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 107 def sse_type data[:sse_type] end |
#state ⇒ String
The volume state.
158 159 160 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 158 def state data[:state] end |
#tags ⇒ Array<Types::Tag>
Any tags assigned to the volume.
69 70 71 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 69 def data[:tags] end |
#throughput ⇒ Integer
The throughput that the volume supports, in MiB/s.
97 98 99 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 97 def throughput data[:throughput] end |
#volume_arn ⇒ String
The Amazon Resource Name (ARN) of the volume.
128 129 130 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 128 def volume_arn data[:volume_arn] end |
#volume_initialization_rate ⇒ Integer
The Amazon EBS Provisioned Rate for Volume Initialization (volume
initialization rate) specified for the volume during creation, in
MiB/s. If no volume initialization rate was specified, the value is
null.
122 123 124 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 122 def volume_initialization_rate data[:volume_initialization_rate] end |
#volume_type ⇒ String
The volume type.
75 76 77 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 75 def volume_type data[:volume_type] end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::EC2::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
Callbacks
You can be notified before each polling attempt and before each
delay. If you throw :success or :failure from these callbacks,
it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb', line 308 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do Aws::Waiters::Waiter.new().wait({}) end end |