Struct google_sqladmin1_beta4::Flag [] [src]

pub struct Flag {
    pub kind: Option<String>,
    pub name: Option<String>,
    pub allowed_string_values: Option<Vec<String>>,
    pub applies_to: Option<Vec<String>>,
    pub max_value: Option<String>,
    pub requires_restart: Option<bool>,
    pub min_value: Option<String>,
    pub type_: Option<String>,
}

A Google Cloud SQL service flag resource.

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

This is always sql#flag.

This is the name of the flag. Flag names always use underscores, not hyphens, e.g. max_allowed_packet

For STRING flags, a list of strings that the value can be set to.

The database version this flag applies to. Can be MYSQL_5_5, MYSQL_5_6, or MYSQL_5_7. MYSQL_5_7 is applicable only to Second Generation instances.

For INTEGER flags, the maximum allowed value.

Indicates whether changing this flag will trigger a database restart. Only applicable to Second Generation instances.

For INTEGER flags, the minimum allowed value.

The type of the flag. Flags are typed to being BOOLEAN, STRING, INTEGER or NONE. NONE is used for flags which do not take a value, such as skip_grant_tables.

Trait Implementations

impl Default for Flag
[src]

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

impl Clone for Flag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Flag
[src]

Formats the value using the given formatter.

impl Resource for Flag
[src]