Class: Aws::AutoScaling::Tag
- Inherits:
-
Object
- Object
- Aws::AutoScaling::Tag
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#key ⇒ String
-
#propagate_at_launch ⇒ Boolean
Determines whether the tag is added to new instances as they are launched in the group.
-
#resource_id ⇒ String
-
#resource_type ⇒ String
-
#value ⇒ String
The tag value.
Actions collapse
Instance Method Summary collapse
-
#client ⇒ Client
-
#data ⇒ Types::TagDescription
Returns the data for this Tag.
-
#data_loaded? ⇒ Boolean
Returns
true
if this resource is loaded. -
#initialize(*args) ⇒ Tag
constructor
A new instance of Tag.
- #load ⇒ self (also: #reload)
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::AutoScaling::Client] #wait_until instead
Constructor Details
#initialize(key, resource_id, resource_type, options = {}) ⇒ Tag #initialize(options = {}) ⇒ Tag
Returns a new instance of Tag.
26 27 28 29 30 31 32 33 34 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 26 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @key = extract_key(args, ) @resource_id = extract_resource_id(args, ) @resource_type = extract_resource_type(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#client ⇒ Client
69 70 71 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 69 def client @client end |
#create(options = {}) ⇒ EmptyStructure
230 231 232 233 234 235 236 237 238 239 240 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 230 def create( = {}) = Aws::Util.deep_merge(, tags: [{ resource_type: @resource_type, resource_id: @resource_id, key: @key }]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.() end resp.data end |
#data ⇒ Types::TagDescription
Returns the data for this Aws::AutoScaling::Tag. Calls
Client#describe_tags if #data_loaded? is false
.
100 101 102 103 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 100 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
108 109 110 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 108 def data_loaded? !!@data end |
#delete(options = {}) ⇒ EmptyStructure
259 260 261 262 263 264 265 266 267 268 269 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 259 def delete( = {}) = Aws::Util.deep_merge(, tags: [{ resource_type: @resource_type, resource_id: @resource_id, key: @key }]) resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.() end resp.data end |
#key ⇒ String
39 40 41 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 39 def key @key end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::AutoScaling::Tag.
Returns self
making it possible to chain methods.
tag.reload.data
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 79 def load resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do @client.(filters: [ { name: "key", values: [@key] }, { name: @resource_type, values: [@resource_id] } ]) end @data = resp.[0] self end |
#propagate_at_launch ⇒ Boolean
Determines whether the tag is added to new instances as they are launched in the group.
62 63 64 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 62 def propagate_at_launch data[:propagate_at_launch] end |
#resource_id ⇒ String
44 45 46 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 44 def resource_id @resource_id end |
#resource_type ⇒ String
49 50 51 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 49 def resource_type @resource_type end |
#value ⇒ String
The tag value.
55 56 57 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 55 def value data[:value] end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::AutoScaling::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
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/tag.rb', line 192 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 |