pub struct Operation {
pub dns_key_context: Option<OperationDnsKeyContext>,
pub id: Option<String>,
pub kind: Option<String>,
pub start_time: Option<String>,
pub status: Option<String>,
pub type_: Option<String>,
pub user: Option<String>,
pub zone_context: Option<OperationManagedZoneContext>,
}Expand description
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).
- get managed zone operations (response)
- patch managed zones (response)
- update managed zones (response)
Fields§
§dns_key_context: Option<OperationDnsKeyContext>Only populated if the operation targeted a DnsKey (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)
kind: Option<String>no description provided
start_time: Option<String>The time that this operation was started by the server. This is in RFC3339 text format (output only).
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.
type_: Option<String>Type of the operation. Operations include insert, update, and delete (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)
zone_context: Option<OperationManagedZoneContext>Only populated if the operation targeted a ManagedZone (output only).