Struct google_logging2::api::LogMethods
source · pub struct LogMethods<'a, S>where
S: 'a,{ /* private fields */ }Expand description
A builder providing access to all methods supported on log resources.
It is not used directly, but through the Logging hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_logging2 as logging2;
use std::default::Default;
use logging2::{Logging, oauth2, hyper, hyper_rustls, chrono, FieldMask};
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
secret,
oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let mut hub = Logging::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().unwrap().https_or_http().enable_http1().build()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)` and `list(...)`
// to build up your call.
let rb = hub.logs();Implementations§
source§impl<'a, S> LogMethods<'a, S>
impl<'a, S> LogMethods<'a, S>
sourcepub fn delete(&self, log_name: &str) -> LogDeleteCall<'a, S>
pub fn delete(&self, log_name: &str) -> LogDeleteCall<'a, S>
Create a builder to help you perform the following task:
Deletes all the log entries in a log for the _Default Log Bucket. The log reappears if it receives new entries. Log entries written shortly before the delete operation might not be deleted. Entries received after the delete operation with a timestamp before the operation will be deleted.
§Arguments
logName- Required. 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.
sourcepub fn list(&self, parent: &str) -> LogListCall<'a, S>
pub fn list(&self, parent: &str) -> LogListCall<'a, S>
Create a builder to help you perform the following task:
Lists the logs in projects, organizations, folders, or billing accounts. Only logs that have entries are listed.
§Arguments
parent- Required. The resource name to list logs for: projects/[PROJECT_ID] organizations/[ORGANIZATION_ID] billingAccounts/[BILLING_ACCOUNT_ID] folders/[FOLDER_ID]
Trait Implementations§
impl<'a, S> MethodsBuilder for LogMethods<'a, S>
Auto Trait Implementations§
impl<'a, S> Freeze for LogMethods<'a, S>
impl<'a, S> !RefUnwindSafe for LogMethods<'a, S>
impl<'a, S> Send for LogMethods<'a, S>where
S: Sync,
impl<'a, S> Sync for LogMethods<'a, S>where
S: Sync,
impl<'a, S> Unpin for LogMethods<'a, S>
impl<'a, S> !UnwindSafe for LogMethods<'a, S>
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
Converts
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>
Converts
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