[][src]Struct gcp_client::google::cloud::iot::v1::device_manager_client::DeviceManagerClient

pub struct DeviceManagerClient<T> { /* fields omitted */ }

Internet of Things (IoT) service. Securely connect and manage IoT devices.

Implementations

impl<T> DeviceManagerClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn create_device_registry<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
[src]

Creates a device registry that contains devices.

pub async fn get_device_registry<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
[src]

Gets a device registry configuration.

pub async fn update_device_registry<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
[src]

Updates a device registry configuration.

pub async fn delete_device_registry<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteDeviceRegistryRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a device registry configuration.

pub async fn list_device_registries<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDeviceRegistriesRequest>
) -> Result<Response<ListDeviceRegistriesResponse>, Status>
[src]

Lists device registries.

pub async fn create_device<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateDeviceRequest>
) -> Result<Response<Device>, Status>
[src]

Creates a device in a device registry.

pub async fn get_device<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetDeviceRequest>
) -> Result<Response<Device>, Status>
[src]

Gets details about a device.

pub async fn update_device<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateDeviceRequest>
) -> Result<Response<Device>, Status>
[src]

Updates a device.

pub async fn delete_device<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteDeviceRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a device.

pub async fn list_devices<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDevicesRequest>
) -> Result<Response<ListDevicesResponse>, Status>
[src]

List devices in a device registry.

pub async fn modify_cloud_to_device_config<'_>(
    &'_ mut self,
    request: impl IntoRequest<ModifyCloudToDeviceConfigRequest>
) -> Result<Response<DeviceConfig>, Status>
[src]

Modifies the configuration for the device, which is eventually sent from the Cloud IoT Core servers. Returns the modified configuration version and its metadata.

pub async fn list_device_config_versions<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDeviceConfigVersionsRequest>
) -> Result<Response<ListDeviceConfigVersionsResponse>, Status>
[src]

Lists the last few versions of the device configuration in descending order (i.e.: newest first).

pub async fn list_device_states<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListDeviceStatesRequest>
) -> Result<Response<ListDeviceStatesResponse>, Status>
[src]

Lists the last few versions of the device state in descending order (i.e.: newest first).

pub async fn set_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

Sets the access control policy on the specified resource. Replaces any existing policy.

pub async fn get_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

pub async fn test_iam_permissions<'_>(
    &'_ mut self,
    request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
[src]

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

pub async fn send_command_to_device<'_>(
    &'_ mut self,
    request: impl IntoRequest<SendCommandToDeviceRequest>
) -> Result<Response<SendCommandToDeviceResponse>, Status>
[src]

Sends a command to the specified device. In order for a device to be able to receive commands, it must:

  1. be connected to Cloud IoT Core using the MQTT protocol, and
  2. be subscribed to the group of MQTT topics specified by /devices/{device-id}/commands/#. This subscription will receive commands at the top-level topic /devices/{device-id}/commands as well as commands for subfolders, like /devices/{device-id}/commands/subfolder. Note that subscribing to specific subfolders is not supported. If the command could not be delivered to the device, this method will return an error; in particular, if the device is not subscribed, this method will return FAILED_PRECONDITION. Otherwise, this method will return OK. If the subscription is QoS 1, at least once delivery will be guaranteed; for QoS 0, no acknowledgment will be expected from the device.

pub async fn bind_device_to_gateway<'_>(
    &'_ mut self,
    request: impl IntoRequest<BindDeviceToGatewayRequest>
) -> Result<Response<BindDeviceToGatewayResponse>, Status>
[src]

Associates the device with the gateway.

pub async fn unbind_device_from_gateway<'_>(
    &'_ mut self,
    request: impl IntoRequest<UnbindDeviceFromGatewayRequest>
) -> Result<Response<UnbindDeviceFromGatewayResponse>, Status>
[src]

Deletes the association between the device and the gateway.

Trait Implementations

impl<T: Clone> Clone for DeviceManagerClient<T>[src]

impl<T> Debug for DeviceManagerClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for DeviceManagerClient<T>

impl<T> Send for DeviceManagerClient<T> where
    T: Send

impl<T> Sync for DeviceManagerClient<T> where
    T: Sync

impl<T> Unpin for DeviceManagerClient<T> where
    T: Unpin

impl<T> !UnwindSafe for DeviceManagerClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]