pub struct CustomerMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on customer resources.
It is not used directly, but through the AndroidProvisioningPartner
hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_androiddeviceprovisioning1 as androiddeviceprovisioning1;
use androiddeviceprovisioning1::{AndroidProvisioningPartner, 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 = AndroidProvisioningPartner::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `configurations_create(...)`, `configurations_delete(...)`, `configurations_get(...)`, `configurations_list(...)`, `configurations_patch(...)`, `devices_apply_configuration(...)`, `devices_get(...)`, `devices_list(...)`, `devices_remove_configuration(...)`, `devices_unclaim(...)`, `dpcs_list(...)` and `list(...)`
// to build up your call.
let rb = hub.customers();
Implementations§
Source§impl<'a, C> CustomerMethods<'a, C>
impl<'a, C> CustomerMethods<'a, C>
Sourcepub fn configurations_create(
&self,
request: Configuration,
parent: &str,
) -> CustomerConfigurationCreateCall<'a, C>
pub fn configurations_create( &self, request: Configuration, parent: &str, ) -> CustomerConfigurationCreateCall<'a, C>
Create a builder to help you perform the following task:
Creates a new configuration. Once created, a customer can apply the configuration to devices.
§Arguments
request
- No description provided.parent
- Required. The customer that manages the configuration. An API resource name in the formatcustomers/[CUSTOMER_ID]
. This field has custom validation in CreateConfigurationRequestValidator
Sourcepub fn configurations_delete(
&self,
name: &str,
) -> CustomerConfigurationDeleteCall<'a, C>
pub fn configurations_delete( &self, name: &str, ) -> CustomerConfigurationDeleteCall<'a, C>
Create a builder to help you perform the following task:
Deletes an unused configuration. The API call fails if the customer has devices with the configuration applied.
§Arguments
name
- Required. The configuration to delete. An API resource name in the formatcustomers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]
. If the configuration is applied to any devices, the API call fails.
Sourcepub fn configurations_get(
&self,
name: &str,
) -> CustomerConfigurationGetCall<'a, C>
pub fn configurations_get( &self, name: &str, ) -> CustomerConfigurationGetCall<'a, C>
Create a builder to help you perform the following task:
Gets the details of a configuration.
§Arguments
name
- Required. The configuration to get. An API resource name in the formatcustomers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]
.
Sourcepub fn configurations_list(
&self,
parent: &str,
) -> CustomerConfigurationListCall<'a, C>
pub fn configurations_list( &self, parent: &str, ) -> CustomerConfigurationListCall<'a, C>
Create a builder to help you perform the following task:
Lists a customer’s configurations.
§Arguments
parent
- Required. The customer that manages the listed configurations. An API resource name in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn configurations_patch(
&self,
request: Configuration,
name: &str,
) -> CustomerConfigurationPatchCall<'a, C>
pub fn configurations_patch( &self, request: Configuration, name: &str, ) -> CustomerConfigurationPatchCall<'a, C>
Create a builder to help you perform the following task:
Updates a configuration’s field values.
§Arguments
request
- No description provided.name
- Output only. The API resource name in the formatcustomers/[CUSTOMER_ID]/configurations/[CONFIGURATION_ID]
. Assigned by the server.
Sourcepub fn devices_apply_configuration(
&self,
request: CustomerApplyConfigurationRequest,
parent: &str,
) -> CustomerDeviceApplyConfigurationCall<'a, C>
pub fn devices_apply_configuration( &self, request: CustomerApplyConfigurationRequest, parent: &str, ) -> CustomerDeviceApplyConfigurationCall<'a, C>
Create a builder to help you perform the following task:
Applies a Configuration to the device to register the device for zero-touch enrollment. After applying a configuration to a device, the device automatically provisions itself on first boot, or next factory reset.
§Arguments
request
- No description provided.parent
- Required. The customer managing the device. An API resource name in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn devices_get(&self, name: &str) -> CustomerDeviceGetCall<'a, C>
pub fn devices_get(&self, name: &str) -> CustomerDeviceGetCall<'a, C>
Create a builder to help you perform the following task:
Gets the details of a device.
§Arguments
name
- Required. The device to get. An API resource name in the formatcustomers/[CUSTOMER_ID]/devices/[DEVICE_ID]
.
Sourcepub fn devices_list(&self, parent: &str) -> CustomerDeviceListCall<'a, C>
pub fn devices_list(&self, parent: &str) -> CustomerDeviceListCall<'a, C>
Create a builder to help you perform the following task:
Lists a customer’s devices.
§Arguments
parent
- Required. The customer managing the devices. An API resource name in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn devices_remove_configuration(
&self,
request: CustomerRemoveConfigurationRequest,
parent: &str,
) -> CustomerDeviceRemoveConfigurationCall<'a, C>
pub fn devices_remove_configuration( &self, request: CustomerRemoveConfigurationRequest, parent: &str, ) -> CustomerDeviceRemoveConfigurationCall<'a, C>
Create a builder to help you perform the following task:
Removes a configuration from device.
§Arguments
request
- No description provided.parent
- Required. The customer managing the device in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn devices_unclaim(
&self,
request: CustomerUnclaimDeviceRequest,
parent: &str,
) -> CustomerDeviceUnclaimCall<'a, C>
pub fn devices_unclaim( &self, request: CustomerUnclaimDeviceRequest, parent: &str, ) -> CustomerDeviceUnclaimCall<'a, C>
Create a builder to help you perform the following task:
Unclaims a device from a customer and removes it from zero-touch enrollment. After removing a device, a customer must contact their reseller to register the device into zero-touch enrollment again.
§Arguments
request
- No description provided.parent
- Required. The customer managing the device. An API resource name in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn dpcs_list(&self, parent: &str) -> CustomerDpcListCall<'a, C>
pub fn dpcs_list(&self, parent: &str) -> CustomerDpcListCall<'a, C>
Create a builder to help you perform the following task:
Lists the DPCs (device policy controllers) that support zero-touch enrollment.
§Arguments
parent
- Required. The customer that can use the DPCs in configurations. An API resource name in the formatcustomers/[CUSTOMER_ID]
.
Sourcepub fn list(&self) -> CustomerListCall<'a, C>
pub fn list(&self) -> CustomerListCall<'a, C>
Create a builder to help you perform the following task:
Lists the user’s customer accounts.
Trait Implementations§
impl<'a, C> MethodsBuilder for CustomerMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for CustomerMethods<'a, C>
impl<'a, C> !RefUnwindSafe for CustomerMethods<'a, C>
impl<'a, C> Send for CustomerMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for CustomerMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for CustomerMethods<'a, C>
impl<'a, C> !UnwindSafe for CustomerMethods<'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