[][src]Struct google_appengine1_beta5::Instance

pub struct Instance {
    pub app_engine_release: Option<String>,
    pub vm_id: Option<String>,
    pub memory_usage: Option<String>,
    pub vm_ip: Option<String>,
    pub qps: Option<f32>,
    pub availability: Option<String>,
    pub name: Option<String>,
    pub errors: Option<u32>,
    pub vm_status: Option<String>,
    pub vm_unlocked: Option<bool>,
    pub id: Option<String>,
    pub average_latency: Option<i32>,
    pub requests: Option<i32>,
    pub vm_name: Option<String>,
    pub start_timestamp: 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: Option<String>

App Engine release this instance is running on.@OutputOnly

vm_id: Option<String>

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

memory_usage: Option<String>

Total memory in use (bytes).@OutputOnly

vm_ip: Option<String>

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

qps: Option<f32>

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

availability: Option<String>

Availability of the instance.@OutputOnly

name: Option<String>

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

errors: Option<u32>

Number of errors since this instance was started.@OutputOnly

vm_status: Option<String>

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

vm_unlocked: Option<bool>

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

id: Option<String>

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

average_latency: Option<i32>

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

requests: Option<i32>

Number of requests since this instance was started.@OutputOnly

vm_name: Option<String>

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

start_timestamp: Option<String>

Time that this instance was started.@OutputOnly

vm_zone_name: Option<String>

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

Trait Implementations

impl ResponseResult for Instance[src]

impl Default for Instance[src]

impl Clone for Instance[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Instance[src]

impl Serialize for Instance[src]

impl<'de> Deserialize<'de> for Instance[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]