Struct google_appengine1::Instance [] [src]

pub struct Instance {
    pub app_engine_release: Option<String>,
    pub vm_id: Option<String>,
    pub memory_usage: Option<String>,
    pub vm_debug_enabled: Option<bool>,
    pub start_time: Option<String>,
    pub vm_ip: Option<String>,
    pub qps: Option<f32>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub errors: Option<i32>,
    pub vm_status: Option<String>,
    pub availability: Option<String>,
    pub average_latency: Option<i32>,
    pub requests: Option<i32>,
    pub vm_name: Option<String>,
    pub vm_zone_name: Option<String>,
}

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

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

App Engine release this instance is running on.@OutputOnly

Virtual machine ID of this instance. Only applicable for instances in App Engine flexible environment.@OutputOnly

Total memory in use (bytes).@OutputOnly

Whether this instance is in debug mode. Only applicable for instances in App Engine flexible environment.@OutputOnly

Time that this instance was started.@OutputOnly

The IP address of this instance. Only applicable for instances in App Engine flexible environment.@OutputOnly

Average queries per second (QPS) over the last minute.@OutputOnly

Relative name of the instance within the version. Example: instance-1.@OutputOnly

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

Number of errors since this instance was started.@OutputOnly

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

Availability of the instance.@OutputOnly

Average latency (ms) over the last minute.@OutputOnly

Number of requests since this instance was started.@OutputOnly

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

Zone where the virtual machine is located. Only applicable for instances in App Engine flexible environment.@OutputOnly

Trait Implementations

impl Default for Instance
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for Instance
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Instance
[src]

[src]

Formats the value using the given formatter.

impl ResponseResult for Instance
[src]