Class: Humidifier::Cloud9::EnvironmentEC2
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::Cloud9::EnvironmentEC2 resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#automatic_stop_time_minutes ⇒ Object
returns the AutomaticStopTimeMinutes property.
-
#automatic_stop_time_minutes=(value) ⇒ Object
sets the AutomaticStopTimeMinutes property (Integer).
-
#connection_type ⇒ Object
returns the ConnectionType property.
-
#connection_type=(value) ⇒ Object
sets the ConnectionType property (String).
-
#description ⇒ Object
returns the Description property.
-
#description=(value) ⇒ Object
sets the Description property (String).
-
#image_id ⇒ Object
returns the ImageId property.
-
#image_id=(value) ⇒ Object
sets the ImageId property (String).
-
#instance_type ⇒ Object
returns the InstanceType property.
-
#instance_type=(value) ⇒ Object
sets the InstanceType property (String).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#owner_arn ⇒ Object
returns the OwnerArn property.
-
#owner_arn=(value) ⇒ Object
sets the OwnerArn property (String).
-
#repositories ⇒ Object
returns the Repositories property.
-
#repositories=(value) ⇒ Object
sets the Repositories property (List).
-
#subnet_id ⇒ Object
returns the SubnetId property.
-
#subnet_id=(value) ⇒ Object
sets the SubnetId 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
#automatic_stop_time_minutes ⇒ Object
returns the AutomaticStopTimeMinutes property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def automatic_stop_time_minutes properties['automatic_stop_time_minutes'] end |
#automatic_stop_time_minutes=(value) ⇒ Object
sets the AutomaticStopTimeMinutes property (Integer)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def automatic_stop_time_minutes=(value) update_property('automatic_stop_time_minutes', value) end |
#connection_type ⇒ Object
returns the ConnectionType property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def connection_type properties['connection_type'] end |
#connection_type=(value) ⇒ Object
sets the ConnectionType property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def connection_type=(value) update_property('connection_type', value) end |
#description ⇒ Object
returns the Description property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def description properties['description'] end |
#description=(value) ⇒ Object
sets the Description property (String)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def description=(value) update_property('description', value) end |
#image_id ⇒ Object
returns the ImageId property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def image_id properties['image_id'] end |
#image_id=(value) ⇒ Object
sets the ImageId property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def image_id=(value) update_property('image_id', value) end |
#instance_type ⇒ Object
returns the InstanceType property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def instance_type properties['instance_type'] end |
#instance_type=(value) ⇒ Object
sets the InstanceType property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def instance_type=(value) update_property('instance_type', value) end |
#name ⇒ Object
returns the Name property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def name=(value) update_property('name', value) end |
#owner_arn ⇒ Object
returns the OwnerArn property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def owner_arn properties['owner_arn'] end |
#owner_arn=(value) ⇒ Object
sets the OwnerArn property (String)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def owner_arn=(value) update_property('owner_arn', value) end |
#repositories ⇒ Object
returns the Repositories property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def repositories properties['repositories'] end |
#repositories=(value) ⇒ Object
sets the Repositories property (List)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def repositories=(value) update_property('repositories', value) end |
#subnet_id ⇒ Object
returns the SubnetId property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def subnet_id properties['subnet_id'] end |
#subnet_id=(value) ⇒ Object
sets the SubnetId property (String)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def subnet_id=(value) update_property('subnet_id', value) end |
#tags ⇒ Object
returns the Tags property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def properties['tags'] end |
#tags=(value) ⇒ Object
sets the Tags property (List)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def (value) update_property('tags', value) end |