[][src]Struct google_dns1::Operation

pub struct Operation {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub dns_key_context: Option<OperationDnsKeyContext>,
    pub zone_context: Option<OperationManagedZoneContext>,
    pub user: Option<String>,
    pub start_time: Option<String>,
    pub type_: Option<String>,
    pub id: Option<String>,
}

An operation represents a successful mutation performed on a Cloud DNS resource. Operations provide: - An audit log of server resource mutations. - A way to recover/retry API calls in the case where the response is never received by the caller. Use the caller specified client_operation_id.

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

status: Option<String>

Status of the operation. Can be one of the following: "PENDING" or "DONE" (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.

kind: Option<String>

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

dns_key_context: Option<OperationDnsKeyContext>

Only populated if the operation targeted a DnsKey (output only).

zone_context: Option<OperationManagedZoneContext>

Only populated if the operation targeted a ManagedZone (output only).

user: Option<String>

User who requested the operation, for example: user@example.com. cloud-dns-system for operations automatically done by the system. (output only)

start_time: Option<String>

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

type_: Option<String>

Type of the operation. Operations include insert, update, and delete (output only).

id: Option<String>

Unique identifier for the resource. This is the client_operation_id if the client specified it when the mutation was initiated, otherwise, it is generated by the server. The name must be 1-63 characters long and match the regular expression [-a-z0-9]? (output only)

Trait Implementations

impl ResponseResult for Operation[src]

impl Clone for Operation[src]

impl Default for Operation[src]

impl Debug for Operation[src]

impl Serialize for Operation[src]

impl<'de> Deserialize<'de> for Operation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]