Struct google_container1::DailyMaintenanceWindow[][src]

pub struct DailyMaintenanceWindow {
    pub duration: Option<String>,
    pub start_time: Option<String>,
}

Time window specified for daily maintenance operations.

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

Fields

[Output only] Duration of the time window, automatically chosen to be smallest possible in the given scenario. Duration will be in RFC3339 format "PTnHnMnS".

Time within the maintenance window to start the maintenance operations. Time format should be in RFC3339 format "HH:MM”, where HH : [00-23] and MM : [00-59] GMT.

Trait Implementations

impl Default for DailyMaintenanceWindow
[src]

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

impl Clone for DailyMaintenanceWindow
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DailyMaintenanceWindow
[src]

Formats the value using the given formatter. Read more

impl Part for DailyMaintenanceWindow
[src]

Auto Trait Implementations