Class: Humidifier::EC2::KeyPair
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::EC2::KeyPair resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#key_name ⇒ Object
returns the KeyName property.
-
#key_name=(value) ⇒ Object
sets the KeyName property (String).
-
#key_type ⇒ Object
returns the KeyType property.
-
#key_type=(value) ⇒ Object
sets the KeyType property (String).
-
#public_key_material ⇒ Object
returns the PublicKeyMaterial property.
-
#public_key_material=(value) ⇒ Object
sets the PublicKeyMaterial property (String).
-
#tags ⇒ Object
returns the Tags property.
-
#tags=(value) ⇒ Object
sets the Tags property (List).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#key_name ⇒ Object
returns the KeyName property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def key_name properties['key_name'] end |
#key_name=(value) ⇒ Object
sets the KeyName property (String)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def key_name=(value) update_property('key_name', value) end |
#key_type ⇒ Object
returns the KeyType property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def key_type properties['key_type'] end |
#key_type=(value) ⇒ Object
sets the KeyType property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def key_type=(value) update_property('key_type', value) end |
#public_key_material ⇒ Object
returns the PublicKeyMaterial property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def public_key_material properties['public_key_material'] end |
#public_key_material=(value) ⇒ Object
sets the PublicKeyMaterial property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def public_key_material=(value) update_property('public_key_material', value) end |
#tags ⇒ Object
returns the Tags property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (List)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def (value) update_property('tags', value) end |