Class: Google::Apis::AppengineV1beta4::Instance

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1beta4/classes.rb,
generated/google/apis/appengine_v1beta4/representations.rb,
generated/google/apis/appengine_v1beta4/representations.rb

Overview

An Instance resource is the computing unit that App Engine uses to automatically scale an application.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Instance

Returns a new instance of Instance



735
736
737
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 735

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#app_engine_releaseString

App Engine release this instance is running on.@OutputOnly Corresponds to the JSON property appEngineRelease

Returns:

  • (String)


649
650
651
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 649

def app_engine_release
  @app_engine_release
end

#availabilityString

Availability of the instance.@OutputOnly Corresponds to the JSON property availability

Returns:

  • (String)


654
655
656
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 654

def availability
  @availability
end

#average_latencyFixnum

Average latency (ms) over the last minute.@OutputOnly Corresponds to the JSON property averageLatency

Returns:

  • (Fixnum)


659
660
661
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 659

def average_latency
  @average_latency
end

#errorsFixnum

Number of errors since this instance was started.@OutputOnly Corresponds to the JSON property errors

Returns:

  • (Fixnum)


664
665
666
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 664

def errors
  @errors
end

#idString

Relative name of the instance within the version. Example: instance-1.@ OutputOnly Corresponds to the JSON property id

Returns:

  • (String)


670
671
672
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 670

def id
  @id
end

#memory_usageFixnum

Total memory in use (bytes).@OutputOnly Corresponds to the JSON property memoryUsage

Returns:

  • (Fixnum)


675
676
677
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 675

def memory_usage
  @memory_usage
end

#nameString

Full path to the Instance resource in the API. Example: apps/myapp/modules/ default/versions/v1/instances/instance-1.@OutputOnly Corresponds to the JSON property name

Returns:

  • (String)


681
682
683
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 681

def name
  @name
end

#qpsFloat

Average queries per second (QPS) over the last minute.@OutputOnly Corresponds to the JSON property qps

Returns:

  • (Float)


686
687
688
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 686

def qps
  @qps
end

#requestsFixnum

Number of requests since this instance was started.@OutputOnly Corresponds to the JSON property requests

Returns:

  • (Fixnum)


691
692
693
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 691

def requests
  @requests
end

#start_timestampString

Time that this instance was started.@OutputOnly Corresponds to the JSON property startTimestamp

Returns:

  • (String)


696
697
698
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 696

def start_timestamp
  @start_timestamp
end

#vm_idString

Virtual machine ID of this instance. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmId

Returns:

  • (String)


702
703
704
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 702

def vm_id
  @vm_id
end

#vm_ipString

The IP address of this instance. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmIp

Returns:

  • (String)


708
709
710
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 708

def vm_ip
  @vm_ip
end

#vm_nameString

Name of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmName

Returns:

  • (String)


714
715
716
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 714

def vm_name
  @vm_name
end

#vm_statusString

Status of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmStatus

Returns:

  • (String)


720
721
722
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 720

def vm_status
  @vm_status
end

#vm_unlockedBoolean Also known as: vm_unlocked?

Whether this instance is in debug mode. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmUnlocked

Returns:

  • (Boolean)


726
727
728
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 726

def vm_unlocked
  @vm_unlocked
end

#vm_zone_nameString

Zone where the virtual machine is located. Only applicable for instances in App Engine flexible environment.@OutputOnly Corresponds to the JSON property vmZoneName

Returns:

  • (String)


733
734
735
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 733

def vm_zone_name
  @vm_zone_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 740

def update!(**args)
  @app_engine_release = args[:app_engine_release] if args.key?(:app_engine_release)
  @availability = args[:availability] if args.key?(:availability)
  @average_latency = args[:average_latency] if args.key?(:average_latency)
  @errors = args[:errors] if args.key?(:errors)
  @id = args[:id] if args.key?(:id)
  @memory_usage = args[:memory_usage] if args.key?(:memory_usage)
  @name = args[:name] if args.key?(:name)
  @qps = args[:qps] if args.key?(:qps)
  @requests = args[:requests] if args.key?(:requests)
  @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
  @vm_id = args[:vm_id] if args.key?(:vm_id)
  @vm_ip = args[:vm_ip] if args.key?(:vm_ip)
  @vm_name = args[:vm_name] if args.key?(:vm_name)
  @vm_status = args[:vm_status] if args.key?(:vm_status)
  @vm_unlocked = args[:vm_unlocked] if args.key?(:vm_unlocked)
  @vm_zone_name = args[:vm_zone_name] if args.key?(:vm_zone_name)
end