Пример #1
0
 def start_instances(self):
     instance_ids = instance_ids_from_querystring(self.querystring)
     instances = ec2_backend.start_instances(instance_ids)
     template = Template(EC2_START_INSTANCES)
     return template.render(instances=instances)
Пример #2
0
 def start_instances(self):
     instance_ids = instance_ids_from_querystring(self.querystring)
     instances = ec2_backend.start_instances(instance_ids)
     template = Template(EC2_START_INSTANCES)
     return template.render(instances=instances)
Пример #3
0
 def start_instances(self):
     instances = ec2_backend.start_instances(self.instance_ids)
     template = Template(EC2_START_INSTANCES)
     return template.render(instances=instances)