# File lib/fog/aws/models/beanstalk/environment.rb, line 117 def destroy requires :id service.terminate_environment({'EnvironmentId' => id}) true end
Return events related to this version
# File lib/fog/aws/models/beanstalk/environment.rb, line 59 def events requires :id service.events.all({'EnvironmentId' => id}) end
# File lib/fog/aws/models/beanstalk/environment.rb, line 28 def healthy? health == 'Green' end
Returns the current live resources for this environment
# File lib/fog/aws/models/beanstalk/environment.rb, line 41 def live_resources requires :id data = service.describe_environment_resources({'EnvironmentId' => id}).body['DescribeEnvironmentResourcesResult']['EnvironmentResources'] data.delete('EnvironmentName') # Delete the environment name from the result, only return actual resources data end
Returns the load balancer object associated with the environment.
# File lib/fog/aws/models/beanstalk/environment.rb, line 49 def load_balancer(elb_connection = Fog::AWS[:elb]) if resources.nil? elb_connection.load_balancers.get(live_resources['LoadBalancers'].first['Name']) else elb_connection.load_balancers.get(resources['LoadBalancer']['LoadBalancerName']) end end
# File lib/fog/aws/models/beanstalk/environment.rb, line 32 def ready? status == 'Ready' end
Rebuilds the environment
# File lib/fog/aws/models/beanstalk/environment.rb, line 72 def rebuild requires :id service.rebuild_environment({'EnvironmentId' => id}) reload end
Restarts the app servers in this environment
# File lib/fog/aws/models/beanstalk/environment.rb, line 65 def restart_app_server requires :id service.restart_app_server({'EnvironmentId' => id}) reload end
# File lib/fog/aws/models/beanstalk/environment.rb, line 123 def save requires :name, :application_name requires_one :template_name, :solution_stack_name options = { 'ApplicationName' => application_name, 'CNAMEPrefix' => cname_prefix, 'Description' => description, 'EnvironmentName' => name, 'OptionSettings' => option_settings, 'OptionsToRemove' => options_to_remove, 'SolutionStackName' => solution_stack_name, 'TemplateName' => template_name, 'VersionLabel' => version_label } options.delete_if {|key, value| value.nil?} data = service.create_environment(options).body['CreateEnvironmentResult'] merge_attributes(data) true end
# File lib/fog/aws/models/beanstalk/environment.rb, line 78 def swap_cnames(source) requires :name service.swap_environment_cnames({ 'SourceEnvironmentName' => source.name, 'DestinationEnvironmentName' => name }) source.reload reload end
# File lib/fog/aws/models/beanstalk/environment.rb, line 36 def terminated? status == 'Terminated' end
Return the version object for this environment
# File lib/fog/aws/models/beanstalk/environment.rb, line 89 def version requires :application_name, :version_label service.versions.get(application_name, version_label) end
Update the running version of this environment
# File lib/fog/aws/models/beanstalk/environment.rb, line 95 def version=(new_version) requires :id if new_version.is_a?(String) new_version_label = new_version elsif new_version.is_a?(Fog::AWS::ElasticBeanstalk::Version) new_version_label = new_version.label else raise "Unknown type for new_version, must be either String or Fog::AWS::ElasticBeanstalk::Version" end if new_version.nil? raise "Version label not specified." end data = service.update_environment({ 'EnvironmentId' => id, 'VersionLabel' => new_version_label }).body['UpdateEnvironmentResult'] merge_attributes(data) end
Generated with the Darkfish Rdoc Generator 2.