Class: Fog::AWS::EC2::Server

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aws/models/ec2/server.rb

Instance Attribute Summary collapse

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods inherited from Model

#collection, #inspect, #reload, #to_json, #wait_for

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Server

Returns a new instance of Server.



34
35
36
37
38
# File 'lib/fog/aws/models/ec2/server.rb', line 34

def initialize(attributes={})
  @groups ||= ["default"]
  @flavor_id ||= 'm1.small'
  super
end

Instance Attribute Details

#architectureObject

Returns the value of attribute architecture.



11
12
13
# File 'lib/fog/aws/models/ec2/server.rb', line 11

def architecture
  @architecture
end

Instance Method Details

#addressesObject



40
41
42
43
44
# File 'lib/fog/aws/models/ec2/server.rb', line 40

def addresses
  requires :id

  connection.addresses(:server => self)
end

#console_outputObject



46
47
48
49
50
# File 'lib/fog/aws/models/ec2/server.rb', line 46

def console_output
  requires :id

  connection.get_console_output(@id)
end

#destroyObject



52
53
54
55
56
57
# File 'lib/fog/aws/models/ec2/server.rb', line 52

def destroy
  requires :id

  connection.terminate_instances(@id)
  true
end

#flavorObject



75
76
77
# File 'lib/fog/aws/models/ec2/server.rb', line 75

def flavor
  @flavor ||= connection.flavors.all.detect {|flavor| flavor.id == @flavor_id}
end

#flavor=(new_flavor) ⇒ Object



71
72
73
# File 'lib/fog/aws/models/ec2/server.rb', line 71

def flavor=(new_flavor)
  @flavor = new_flavor
end

#flavor_idObject

def security_group

connection.security_groups.all(@group_id)

end

def security_group=(new_security_group)

@group_id = new_security_group.name

end



67
68
69
# File 'lib/fog/aws/models/ec2/server.rb', line 67

def flavor_id
  @flavor && @flavor.id || @flavor_id
end

#key_pairObject



79
80
81
82
83
# File 'lib/fog/aws/models/ec2/server.rb', line 79

def key_pair
  requires :key_name

  connection.keypairs.all(@key_name).first
end

#key_pair=(new_keypair) ⇒ Object



85
86
87
# File 'lib/fog/aws/models/ec2/server.rb', line 85

def key_pair=(new_keypair)
  @key_name = new_keypair.name
end

#monitoring=(new_monitoring) ⇒ Object



89
90
91
92
93
94
95
# File 'lib/fog/aws/models/ec2/server.rb', line 89

def monitoring=(new_monitoring)
  if new_monitoring.is_a?(Hash)
    @monitoring = new_monitoring['state']
  else
    @monitoring = new_monitoring
  end
end

#placement=(new_placement) ⇒ Object



97
98
99
100
101
102
103
# File 'lib/fog/aws/models/ec2/server.rb', line 97

def placement=(new_placement)
  if new_placement.is_a?(Hash)
    @availability_zone = new_placement['availabilityZone']
  else
    @availability_zone = new_placement
  end
end

#ready?Boolean

Returns:

  • (Boolean)


105
106
107
# File 'lib/fog/aws/models/ec2/server.rb', line 105

def ready?
  @state == 'running'
end

#rebootObject



109
110
111
112
113
# File 'lib/fog/aws/models/ec2/server.rb', line 109

def reboot
  requires :id
  connection.reboot_instances(@id)
  true
end

#saveObject



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/fog/aws/models/ec2/server.rb', line 115

def save
  requires :image_id

  options = {
    'BlockDeviceMapping'          => @block_device_mapping,
    'InstanceType'                => flavor_id,
    'KernelId'                    => @kernel_id,
    'KeyName'                     => @key_name,
    'Monitoring.Enabled'          => @monitoring,
    'Placement.AvailabilityZone'  => @availability_zone,
    'RamdiskId'                   => @ramdisk_id,
    'SecurityGroup'               => @groups,
    'UserData'                    => @user_data
  }

  data = connection.run_instances(@image_id, 1, 1, options)
  merge_attributes(data.body['instancesSet'].first)
  true
end

#startObject



135
136
137
138
139
# File 'lib/fog/aws/models/ec2/server.rb', line 135

def start
  requires :id
  connection.start_instances(@id)
  true
end

#stopObject



141
142
143
144
145
# File 'lib/fog/aws/models/ec2/server.rb', line 141

def stop
  requires :id
  connection.stop_instances(@id)
  true
end

#volumesObject



147
148
149
150
151
# File 'lib/fog/aws/models/ec2/server.rb', line 147

def volumes
  requires :id

  connection.volumes(:server => self)
end