Struct google_logging2::WriteLogEntriesRequest
source · pub struct WriteLogEntriesRequest {
pub log_name: Option<String>,
pub partial_success: Option<bool>,
pub labels: Option<HashMap<String, String>>,
pub resource: Option<MonitoredResource>,
pub entries: Option<Vec<LogEntry>>,
}Expand description
The parameters to WriteLogEntries.
§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).
- write entries (request)
Fields§
§log_name: Option<String>Optional. A default log resource name that is assigned to all log entries in entries that do not specify a value for log_name: “projects/[PROJECT_ID]/logs/[LOG_ID]” “organizations/[ORGANIZATION_ID]/logs/[LOG_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]” “folders/[FOLDER_ID]/logs/[LOG_ID]” [LOG_ID] must be URL-encoded. For example, “projects/my-project-id/logs/syslog” or “organizations/1234567890/logs/cloudresourcemanager.googleapis.com%2Factivity”. For more information about log names, see LogEntry.
partial_success: Option<bool>Optional. Whether valid entries should be written even if some other entries fail due to INVALID_ARGUMENT or PERMISSION_DENIED errors. If any entry is not written, then the response status is the error associated with one of the failed entries and the response includes error details keyed by the entries’ zero-based index in the entries.write method.
labels: Option<HashMap<String, String>>Optional. Default labels that are added to the labels field of all log entries in entries. If a log entry already has a label with the same key as a label in this parameter, then the log entry’s label is not changed. See LogEntry.
resource: Option<MonitoredResource>Optional. A default monitored resource object that is assigned to all log entries in entries that do not specify a value for resource. Example: { “type”: “gce_instance”, “labels”: { “zone”: “us-central1-a”, “instance_id”: “00000000000000000000” }} See LogEntry.
entries: Option<Vec<LogEntry>>Required. The log entries to write. Values supplied for the fields log_name, resource, and labels in this entries.write request are inserted into those log entries in this list that do not provide their own values.Stackdriver Logging also creates and inserts values for timestamp and insert_id if the entries do not provide them. The created insert_id for the N’th entry in this list will be greater than earlier entries and less than later entries. Otherwise, the order of log entries in this list does not matter.To improve throughput and to avoid exceeding the quota limit for calls to entries.write, you should write multiple log entries at once rather than calling this method for each individual log entry.
Trait Implementations§
source§impl Clone for WriteLogEntriesRequest
impl Clone for WriteLogEntriesRequest
source§fn clone(&self) -> WriteLogEntriesRequest
fn clone(&self) -> WriteLogEntriesRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for WriteLogEntriesRequest
impl Debug for WriteLogEntriesRequest
source§impl Default for WriteLogEntriesRequest
impl Default for WriteLogEntriesRequest
source§fn default() -> WriteLogEntriesRequest
fn default() -> WriteLogEntriesRequest
source§impl Deserialize for WriteLogEntriesRequest
impl Deserialize for WriteLogEntriesRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for WriteLogEntriesRequest
impl Serialize for WriteLogEntriesRequest
impl RequestValue for WriteLogEntriesRequest
Auto Trait Implementations§
impl Freeze for WriteLogEntriesRequest
impl RefUnwindSafe for WriteLogEntriesRequest
impl Send for WriteLogEntriesRequest
impl Sync for WriteLogEntriesRequest
impl Unpin for WriteLogEntriesRequest
impl UnwindSafe for WriteLogEntriesRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more