Struct google_dns1::api::Change[][src]

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

A Change represents a set of ResourceRecordSet additions and deletions applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone are modified by creating a new Change element in the Changes collection. In turn the Changes collection also records the past modifications to the ResourceRecordSets in a ManagedZone. The current state of the ManagedZone is the sum effect of applying all Change elements in the Changes collection in sequence.

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

additions: Option<Vec<ResourceRecordSet>>

Which ResourceRecordSets to add?

deletions: Option<Vec<ResourceRecordSet>>

Which ResourceRecordSets to remove? Must match existing data exactly.

id: Option<String>

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

is_serving: Option<bool>

If the DNS queries for the zone will be served.

kind: Option<String>

no description provided

start_time: Option<String>

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

status: Option<String>

Status of the operation (output only). A status of “done” means that the request to update the authoritative servers has been sent, but the servers might not be updated yet.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.