Struct google_sqladmin1_beta4::DatabaseFlags [] [src]

pub struct DatabaseFlags {
    pub name: Option<String>,
    pub value: Option<String>,
}

MySQL flags for Cloud SQL instances.

This type is not used in any activity, and only used as part of another schema.

Fields

The name of the flag. These flags are passed at instance startup, so include both MySQL server options and MySQL system variables. Flags should be specified with underscores, not hyphens. For more information, see Configuring MySQL Flags in the Google Cloud SQL documentation, as well as the official MySQL documentation for server options and system variables.

The value of the flag. Booleans should be set to on for true and off for false. This field must be omitted if the flag doesn't take a value.

Trait Implementations

impl Debug for DatabaseFlags
[src]

Formats the value using the given formatter.

impl Clone for DatabaseFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DatabaseFlags
[src]

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

impl Part for DatabaseFlags
[src]