Class: Google::Apis::AppengineV1::Instance

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/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



1852
1853
1854
# File 'generated/google/apis/appengine_v1/classes.rb', line 1852

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)


1778
1779
1780
# File 'generated/google/apis/appengine_v1/classes.rb', line 1778

def app_engine_release
  @app_engine_release
end

#availabilityString

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

Returns:

  • (String)


1783
1784
1785
# File 'generated/google/apis/appengine_v1/classes.rb', line 1783

def availability
  @availability
end

#average_latencyFixnum

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

Returns:

  • (Fixnum)


1826
1827
1828
# File 'generated/google/apis/appengine_v1/classes.rb', line 1826

def average_latency
  @average_latency
end

#errorsFixnum

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

Returns:

  • (Fixnum)


1816
1817
1818
# File 'generated/google/apis/appengine_v1/classes.rb', line 1816

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)


1773
1774
1775
# File 'generated/google/apis/appengine_v1/classes.rb', line 1773

def id
  @id
end

#memory_usageFixnum

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

Returns:

  • (Fixnum)


1831
1832
1833
# File 'generated/google/apis/appengine_v1/classes.rb', line 1831

def memory_usage
  @memory_usage
end

#nameString

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

Returns:

  • (String)


1767
1768
1769
# File 'generated/google/apis/appengine_v1/classes.rb', line 1767

def name
  @name
end

#qpsFloat

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

Returns:

  • (Float)


1821
1822
1823
# File 'generated/google/apis/appengine_v1/classes.rb', line 1821

def qps
  @qps
end

#requestsFixnum

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

Returns:

  • (Fixnum)


1811
1812
1813
# File 'generated/google/apis/appengine_v1/classes.rb', line 1811

def requests
  @requests
end

#start_timeString

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

Returns:

  • (String)


1806
1807
1808
# File 'generated/google/apis/appengine_v1/classes.rb', line 1806

def start_time
  @start_time
end

#vm_debug_enabledBoolean Also known as: vm_debug_enabled?

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

Returns:

  • (Boolean)


1843
1844
1845
# File 'generated/google/apis/appengine_v1/classes.rb', line 1843

def vm_debug_enabled
  @vm_debug_enabled
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)


1801
1802
1803
# File 'generated/google/apis/appengine_v1/classes.rb', line 1801

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)


1850
1851
1852
# File 'generated/google/apis/appengine_v1/classes.rb', line 1850

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)


1789
1790
1791
# File 'generated/google/apis/appengine_v1/classes.rb', line 1789

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)


1837
1838
1839
# File 'generated/google/apis/appengine_v1/classes.rb', line 1837

def vm_status
  @vm_status
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)


1795
1796
1797
# File 'generated/google/apis/appengine_v1/classes.rb', line 1795

def vm_zone_name
  @vm_zone_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
# File 'generated/google/apis/appengine_v1/classes.rb', line 1857

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