Class: Google::Apis::AppengineV1beta::Instance

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



1096
1097
1098
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1096

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)


1010
1011
1012
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1010

def app_engine_release
  @app_engine_release
end

#availabilityString

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

Returns:

  • (String)


1015
1016
1017
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1015

def availability
  @availability
end

#average_latencyFixnum

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

Returns:

  • (Fixnum)


1020
1021
1022
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1020

def average_latency
  @average_latency
end

#errorsFixnum

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

Returns:

  • (Fixnum)


1025
1026
1027
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1025

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)


1031
1032
1033
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1031

def id
  @id
end

#memory_usageFixnum

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

Returns:

  • (Fixnum)


1036
1037
1038
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1036

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)


1042
1043
1044
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1042

def name
  @name
end

#qpsFloat

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

Returns:

  • (Float)


1047
1048
1049
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1047

def qps
  @qps
end

#requestsFixnum

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

Returns:

  • (Fixnum)


1052
1053
1054
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1052

def requests
  @requests
end

#start_timeString

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

Returns:

  • (String)


1057
1058
1059
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1057

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)


1063
1064
1065
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1063

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)


1070
1071
1072
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1070

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)


1076
1077
1078
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1076

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)


1082
1083
1084
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1082

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)


1088
1089
1090
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1088

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)


1094
1095
1096
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1094

def vm_zone_name
  @vm_zone_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 1101

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_time = args[:start_time] if args.key?(:start_time)
  @vm_debug_enabled = args[:vm_debug_enabled] if args.key?(:vm_debug_enabled)
  @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_zone_name = args[:vm_zone_name] if args.key?(:vm_zone_name)
end