Struct google_dns1::Change[][src]

pub struct Change {
    pub deletions: Option<Vec<ResourceRecordSet>>,
    pub status: Option<String>,
    pub kind: Option<String>,
    pub is_serving: Option<bool>,
    pub start_time: Option<String>,
    pub additions: Option<Vec<ResourceRecordSet>>,
    pub id: Option<String>,
}

An atomic update to a collection of ResourceRecordSets.

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

Which ResourceRecordSets to remove? Must match existing data exactly.

Status of the operation (output only).

Identifies what kind of resource this is. Value: the fixed string "dns#change".

If the DNS queries for the zone will be served.

The time that this operation was started by the server (output only). This is in RFC3339 text format.

Which ResourceRecordSets to add?

Unique identifier for the resource; defined by the server (output only).

Trait Implementations

impl Default for Change
[src]

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

impl Clone for Change
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Change
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Change
[src]

impl Resource for Change
[src]

impl ResponseResult for Change
[src]

Auto Trait Implementations

impl Send for Change

impl Sync for Change