pub struct DomainMethods<'a, C>where
C: 'a,{ /* private fields */ }Expand description
A builder providing access to all methods supported on domain resources.
It is not used directly, but through the PostmasterTools hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_gmailpostmastertools1 as gmailpostmastertools1;
use gmailpostmastertools1::{PostmasterTools, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let connector = hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_only()
.enable_http2()
.build();
let executor = hyper_util::rt::TokioExecutor::new();
let auth = yup_oauth2::InstalledFlowAuthenticator::with_client(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
yup_oauth2::client::CustomHyperClientBuilder::from(
hyper_util::client::legacy::Client::builder(executor).build(connector),
),
).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_http2()
.build()
);
let mut hub = PostmasterTools::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get(...)`, `list(...)`, `traffic_stats_get(...)` and `traffic_stats_list(...)`
// to build up your call.
let rb = hub.domains();Implementations§
Source§impl<'a, C> DomainMethods<'a, C>
impl<'a, C> DomainMethods<'a, C>
Sourcepub fn traffic_stats_get(&self, name: &str) -> DomainTrafficStatGetCall<'a, C>
pub fn traffic_stats_get(&self, name: &str) -> DomainTrafficStatGetCall<'a, C>
Create a builder to help you perform the following task:
Get traffic statistics for a domain on a specific date. Returns PERMISSION_DENIED if user does not have permission to access TrafficStats for the domain.
§Arguments
name- The resource name of the traffic statistics to get. E.g., domains/mymail.mydomain.com/trafficStats/20160807.
Sourcepub fn traffic_stats_list(
&self,
parent: &str,
) -> DomainTrafficStatListCall<'a, C>
pub fn traffic_stats_list( &self, parent: &str, ) -> DomainTrafficStatListCall<'a, C>
Create a builder to help you perform the following task:
List traffic statistics for all available days. Returns PERMISSION_DENIED if user does not have permission to access TrafficStats for the domain.
§Arguments
parent- The resource name of the domain whose traffic statistics we’d like to list. It should have the formdomains/{domain_name}, where domain_name is the fully qualified domain name.
Sourcepub fn get(&self, name: &str) -> DomainGetCall<'a, C>
pub fn get(&self, name: &str) -> DomainGetCall<'a, C>
Create a builder to help you perform the following task:
Gets a specific domain registered by the client. Returns NOT_FOUND if the domain does not exist.
§Arguments
name- The resource name of the domain. It should have the formdomains/{domain_name}, where domain_name is the fully qualified domain name.
Sourcepub fn list(&self) -> DomainListCall<'a, C>
pub fn list(&self) -> DomainListCall<'a, C>
Create a builder to help you perform the following task:
Lists the domains that have been registered by the client. The order of domains in the response is unspecified and non-deterministic. Newly created domains will not necessarily be added to the end of this list.