#[non_exhaustive]pub struct DeleteLogRequest {
pub log_name: String,
/* private fields */
}Expand description
The parameters to DeleteLog.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.log_name: StringRequired. The resource name of the log to delete:
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",
"organizations/123/logs/cloudaudit.googleapis.com%2Factivity".
For more information about log names, see LogEntry.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteLogRequest
impl Clone for DeleteLogRequest
Source§fn clone(&self) -> DeleteLogRequest
fn clone(&self) -> DeleteLogRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeleteLogRequest
impl Debug for DeleteLogRequest
Source§impl Default for DeleteLogRequest
impl Default for DeleteLogRequest
Source§fn default() -> DeleteLogRequest
fn default() -> DeleteLogRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteLogRequest
impl Message for DeleteLogRequest
Source§impl PartialEq for DeleteLogRequest
impl PartialEq for DeleteLogRequest
impl StructuralPartialEq for DeleteLogRequest
Auto Trait Implementations§
impl Freeze for DeleteLogRequest
impl RefUnwindSafe for DeleteLogRequest
impl Send for DeleteLogRequest
impl Sync for DeleteLogRequest
impl Unpin for DeleteLogRequest
impl UnwindSafe for DeleteLogRequest
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
Mutably borrows from an owned value. Read more