pub struct ExclusionMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on exclusion 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 logging2::{Logging, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let client = hyper_util::client::legacy::Client::builder(
hyper_util::rt::TokioExecutor::new()
)
.build(
hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_or_http()
.enable_http1()
.build()
);
let mut hub = Logging::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `create(...)`, `delete(...)`, `get(...)`, `list(...)` and `patch(...)`
// to build up your call.
let rb = hub.exclusions();
Implementations§
Source§impl<'a, C> ExclusionMethods<'a, C>
impl<'a, C> ExclusionMethods<'a, C>
Sourcepub fn create(
&self,
request: LogExclusion,
parent: &str,
) -> ExclusionCreateCall<'a, C>
pub fn create( &self, request: LogExclusion, parent: &str, ) -> ExclusionCreateCall<'a, C>
Create a builder to help you perform the following task:
Creates a new exclusion in the _Default sink in a specified parent resource. Only log entries belonging to that resource can be excluded. You can have up to 10 exclusions in a resource.
§Arguments
request
- No description provided.parent
- Required. The parent resource in which to create the exclusion: “projects/[PROJECT_ID]” “organizations/[ORGANIZATION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]” “folders/[FOLDER_ID]” For examples:“projects/my-logging-project” “organizations/123456789”
Sourcepub fn delete(&self, name: &str) -> ExclusionDeleteCall<'a, C>
pub fn delete(&self, name: &str) -> ExclusionDeleteCall<'a, C>
Create a builder to help you perform the following task:
Deletes an exclusion in the _Default sink.
§Arguments
name
- Required. The resource name of an existing exclusion to delete: “projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]” “organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]” “folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]” For example:“projects/my-project/exclusions/my-exclusion”
Sourcepub fn get(&self, name: &str) -> ExclusionGetCall<'a, C>
pub fn get(&self, name: &str) -> ExclusionGetCall<'a, C>
Create a builder to help you perform the following task:
Gets the description of an exclusion in the _Default sink.
§Arguments
name
- Required. The resource name of an existing exclusion: “projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]” “organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]” “folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]” For example:“projects/my-project/exclusions/my-exclusion”
Sourcepub fn list(&self, parent: &str) -> ExclusionListCall<'a, C>
pub fn list(&self, parent: &str) -> ExclusionListCall<'a, C>
Create a builder to help you perform the following task:
Lists all the exclusions on the _Default sink in a parent resource.
§Arguments
parent
- Required. The parent resource whose exclusions are to be listed. “projects/[PROJECT_ID]” “organizations/[ORGANIZATION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]” “folders/[FOLDER_ID]”
Sourcepub fn patch(
&self,
request: LogExclusion,
name: &str,
) -> ExclusionPatchCall<'a, C>
pub fn patch( &self, request: LogExclusion, name: &str, ) -> ExclusionPatchCall<'a, C>
Create a builder to help you perform the following task:
Changes one or more properties of an existing exclusion in the _Default sink.
§Arguments
request
- No description provided.name
- Required. The resource name of the exclusion to update: “projects/[PROJECT_ID]/exclusions/[EXCLUSION_ID]” “organizations/[ORGANIZATION_ID]/exclusions/[EXCLUSION_ID]” “billingAccounts/[BILLING_ACCOUNT_ID]/exclusions/[EXCLUSION_ID]” “folders/[FOLDER_ID]/exclusions/[EXCLUSION_ID]” For example:“projects/my-project/exclusions/my-exclusion”
Trait Implementations§
impl<'a, C> MethodsBuilder for ExclusionMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for ExclusionMethods<'a, C>
impl<'a, C> !RefUnwindSafe for ExclusionMethods<'a, C>
impl<'a, C> Send for ExclusionMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for ExclusionMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for ExclusionMethods<'a, C>
impl<'a, C> !UnwindSafe for ExclusionMethods<'a, C>
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> 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>
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