Struct google_logging2::LogMethods
source · pub struct LogMethods<'a, C, A>where
C: 'a,
A: '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 yup_oauth2 as oauth2;
extern crate google_logging2 as logging2;
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use logging2::Logging;
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
<MemoryStorage as Default>::default(), None);
let mut hub = Logging::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), 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, C, A> LogMethods<'a, C, A>
impl<'a, C, A> LogMethods<'a, C, A>
sourcepub fn delete(&self, log_name: &str) -> LogDeleteCall<'a, C, A>
pub fn delete(&self, log_name: &str) -> LogDeleteCall<'a, C, A>
Create a builder to help you perform the following task:
Deletes all the log entries in a log. The log reappears if it receives new entries. Log entries written shortly before the delete operation might not 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/1234567890/logs/cloudresourcemanager.googleapis.com%2Factivity”. For more information about log names, see LogEntry.
sourcepub fn list(&self, parent: &str) -> LogListCall<'a, C, A>
pub fn list(&self, parent: &str) -> LogListCall<'a, C, A>
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 that owns the logs: “projects/[PROJECT_ID]” “organizations/[ORGANIZATION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]” “folders/[FOLDER_ID]”
Trait Implementations§
impl<'a, C, A> MethodsBuilder for LogMethods<'a, C, A>
Auto Trait Implementations§
impl<'a, C, A> Freeze for LogMethods<'a, C, A>
impl<'a, C, A> !RefUnwindSafe for LogMethods<'a, C, A>
impl<'a, C, A> !Send for LogMethods<'a, C, A>
impl<'a, C, A> !Sync for LogMethods<'a, C, A>
impl<'a, C, A> Unpin for LogMethods<'a, C, A>
impl<'a, C, A> !UnwindSafe for LogMethods<'a, C, A>
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> 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