Struct google_androidmanagement1::EnterpriseMethods[][src]

pub struct EnterpriseMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

A builder providing access to all methods supported on enterprise resources. It is not used directly, but through the AndroidManagement hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_androidmanagement1 as androidmanagement1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use androidmanagement1::AndroidManagement;
 
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 = AndroidManagement::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 `applications_get(...)`, `create(...)`, `devices_delete(...)`, `devices_get(...)`, `devices_issue_command(...)`, `devices_list(...)`, `devices_operations_cancel(...)`, `devices_operations_delete(...)`, `devices_operations_get(...)`, `devices_operations_list(...)`, `devices_patch(...)`, `enrollment_tokens_create(...)`, `enrollment_tokens_delete(...)`, `get(...)`, `patch(...)`, `policies_delete(...)`, `policies_get(...)`, `policies_list(...)`, `policies_patch(...)` and `web_tokens_create(...)`
// to build up your call.
let rb = hub.enterprises();

Methods

impl<'a, C, A> EnterpriseMethods<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets info about an application.

Arguments

  • name - The name of the application in the form enterprises/{enterpriseId}/applications/{package_name}.

Create a builder to help you perform the following task:

Lists devices for a given enterprise.

Arguments

  • parent - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Updates a device.

Arguments

  • request - No description provided.
  • name - The name of the device in the form enterprises/{enterpriseId}/devices/{deviceId}.

Create a builder to help you perform the following task:

Gets a device.

Arguments

  • name - The name of the device in the form enterprises/{enterpriseId}/devices/{deviceId}.

Create a builder to help you perform the following task:

Updates or creates a policy.

Arguments

  • request - No description provided.
  • name - The name of the policy in the form enterprises/{enterpriseId}/policies/{policyId}.

Create a builder to help you perform the following task:

Creates an enterprise. This is the last step in the enterprise signup flow.

Arguments

  • request - No description provided.

Create a builder to help you perform the following task:

Updates an enterprise.

Arguments

  • request - No description provided.
  • name - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

Arguments

  • name - The name of the operation resource to be cancelled.

Create a builder to help you perform the following task:

Gets an enterprise.

Arguments

  • name - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Creates a web token to access an embeddable managed Google Play web UI for a given enterprise.

Arguments

  • request - No description provided.
  • parent - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Creates an enrollment token for a given enterprise.

Arguments

  • request - No description provided.
  • parent - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Deletes an enrollment token. This operation invalidates the token, preventing its future use.

Arguments

  • name - The name of the enrollment token in the form enterprises/{enterpriseId}/enrollmentTokens/{enrollmentTokenId}.

Create a builder to help you perform the following task:

Lists policies for a given enterprise.

Arguments

  • parent - The name of the enterprise in the form enterprises/{enterpriseId}.

Create a builder to help you perform the following task:

Deletes a policy. This operation is only permitted if no devices are currently referencing the policy.

Arguments

  • name - The name of the policy in the form enterprises/{enterpriseId}/policies/{policyId}.

Create a builder to help you perform the following task:

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

Arguments

  • name - The name of the operation resource.

Create a builder to help you perform the following task:

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Arguments

  • name - The name of the operation resource to be deleted.

Create a builder to help you perform the following task:

Issues a command to a device. The Operation resource returned contains a Command in its metadata field. Use the get operation method to get the status of the command.

Arguments

  • request - No description provided.
  • name - The name of the device in the form enterprises/{enterpriseId}/devices/{deviceId}.

Create a builder to help you perform the following task:

Deletes a device. This operation wipes the device.

Arguments

  • name - The name of the device in the form enterprises/{enterpriseId}/devices/{deviceId}.

Create a builder to help you perform the following task:

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name binding allows API services to override the binding to use different resource name schemes, such as users//operations. To override the binding, API services can add a binding such as "/v1/{name=users/}/operations" to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.

Arguments

  • name - The name of the operation's parent resource.

Create a builder to help you perform the following task:

Gets a policy.

Arguments

  • name - The name of the policy in the form enterprises/{enterpriseId}/policies/{policyId}.

Trait Implementations

impl<'a, C, A> MethodsBuilder for EnterpriseMethods<'a, C, A>
[src]

Auto Trait Implementations

impl<'a, C, A> !Send for EnterpriseMethods<'a, C, A>

impl<'a, C, A> !Sync for EnterpriseMethods<'a, C, A>