pub struct ProjectMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on project resources.
It is not used directly, but through the Clouderrorreporting
hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_clouderrorreporting1_beta1 as clouderrorreporting1_beta1;
use clouderrorreporting1_beta1::{Clouderrorreporting, 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 = Clouderrorreporting::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete_events(...)`, `events_list(...)`, `events_report(...)`, `group_stats_list(...)`, `groups_get(...)` and `groups_update(...)`
// to build up your call.
let rb = hub.projects();
Implementations§
Source§impl<'a, C> ProjectMethods<'a, C>
impl<'a, C> ProjectMethods<'a, C>
Sourcepub fn events_list(&self, project_name: &str) -> ProjectEventListCall<'a, C>
pub fn events_list(&self, project_name: &str) -> ProjectEventListCall<'a, C>
Create a builder to help you perform the following task:
Lists the specified events.
§Arguments
projectName
- Required. The resource name of the Google Cloud Platform project. Written asprojects/{projectID}
, where{projectID}
is the Google Cloud Platform project ID. Example:projects/my-project-123
.
Sourcepub fn events_report(
&self,
request: ReportedErrorEvent,
project_name: &str,
) -> ProjectEventReportCall<'a, C>
pub fn events_report( &self, request: ReportedErrorEvent, project_name: &str, ) -> ProjectEventReportCall<'a, C>
Create a builder to help you perform the following task:
Report an individual error event and record the event to a log. This endpoint accepts either an OAuth token, or an API key for authentication. To use an API key, append it to the URL as the value of a key
parameter. For example: POST https://clouderrorreporting.googleapis.com/v1beta1/{projectName}/events:report?key=123ABC456
Note: [Error Reporting] (https://cloud.google.com/error-reporting) is a global service built on Cloud Logging and can analyze log entries when all of the following are true: * The log entries are stored in a log bucket in the global
location. * Customer-managed encryption keys (CMEK) are disabled on the log bucket. * The log bucket satisfies one of the following: * The log bucket is stored in the same project where the logs originated. * The logs were routed to a project, and then that project stored those logs in a log bucket that it owns.
§Arguments
request
- No description provided.projectName
- Required. The resource name of the Google Cloud Platform project. Written asprojects/{projectId}
, where{projectId}
is the Google Cloud Platform project ID. Example: //projects/my-project-123
.
Sourcepub fn group_stats_list(
&self,
project_name: &str,
) -> ProjectGroupStatListCall<'a, C>
pub fn group_stats_list( &self, project_name: &str, ) -> ProjectGroupStatListCall<'a, C>
Create a builder to help you perform the following task:
Lists the specified groups.
§Arguments
projectName
- Required. The resource name of the Google Cloud Platform project. Written asprojects/{projectID}
orprojects/{projectNumber}
, where{projectID}
and{projectNumber}
can be found in the Google Cloud console. Examples:projects/my-project-123
,projects/5551234
.
Sourcepub fn groups_get(&self, group_name: &str) -> ProjectGroupGetCall<'a, C>
pub fn groups_get(&self, group_name: &str) -> ProjectGroupGetCall<'a, C>
Create a builder to help you perform the following task:
Get the specified group.
§Arguments
groupName
- Required. The group resource name. Written asprojects/{projectID}/groups/{group_id}
. Call groupStats.list to return a list of groups belonging to this project. Example:projects/my-project-123/groups/my-group
In the group resource name, thegroup_id
is a unique identifier for a particular error group. The identifier is derived from key parts of the error-log content and is treated as Service Data. For information about how Service Data is handled, see Google Cloud Privacy Notice.
Sourcepub fn groups_update(
&self,
request: ErrorGroup,
name: &str,
) -> ProjectGroupUpdateCall<'a, C>
pub fn groups_update( &self, request: ErrorGroup, name: &str, ) -> ProjectGroupUpdateCall<'a, C>
Create a builder to help you perform the following task:
Replace the data for the specified group. Fails if the group does not exist.
§Arguments
request
- No description provided.name
- The group resource name. Written asprojects/{projectID}/groups/{group_id}
. Example:projects/my-project-123/groups/my-group
In the group resource name, thegroup_id
is a unique identifier for a particular error group. The identifier is derived from key parts of the error-log content and is treated as Service Data. For information about how Service Data is handled, see Google Cloud Privacy Notice.
Sourcepub fn delete_events(&self, project_name: &str) -> ProjectDeleteEventCall<'a, C>
pub fn delete_events(&self, project_name: &str) -> ProjectDeleteEventCall<'a, C>
Create a builder to help you perform the following task:
Deletes all error events of a given project.
§Arguments
projectName
- Required. The resource name of the Google Cloud Platform project. Written asprojects/{projectID}
, where{projectID}
is the Google Cloud Platform project ID. Example:projects/my-project-123
.
Trait Implementations§
impl<'a, C> MethodsBuilder for ProjectMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for ProjectMethods<'a, C>
impl<'a, C> !RefUnwindSafe for ProjectMethods<'a, C>
impl<'a, C> Send for ProjectMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for ProjectMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for ProjectMethods<'a, C>
impl<'a, C> !UnwindSafe for ProjectMethods<'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