Struct chirpstack_api::as_pb::external::api::device_service_client::DeviceServiceClient[][src]

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

DeviceService is the service managing the devices.

Implementations

impl DeviceServiceClient<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> DeviceServiceClient<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(
    &mut self,
    request: impl IntoRequest<CreateDeviceRequest>
) -> Result<Response<()>, Status>
[src]

Create creates the given device.

pub async fn get(
    &mut self,
    request: impl IntoRequest<GetDeviceRequest>
) -> Result<Response<GetDeviceResponse>, Status>
[src]

Get returns the device matching the given DevEUI.

pub async fn list(
    &mut self,
    request: impl IntoRequest<ListDeviceRequest>
) -> Result<Response<ListDeviceResponse>, Status>
[src]

List returns the available devices.

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

Delete deletes the device matching the given DevEUI.

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

Update updates the device matching the given DevEUI.

pub async fn create_keys(
    &mut self,
    request: impl IntoRequest<CreateDeviceKeysRequest>
) -> Result<Response<()>, Status>
[src]

CreateKeys creates the given device-keys.

pub async fn get_keys(
    &mut self,
    request: impl IntoRequest<GetDeviceKeysRequest>
) -> Result<Response<GetDeviceKeysResponse>, Status>
[src]

GetKeys returns the device-keys for the given DevEUI.

pub async fn update_keys(
    &mut self,
    request: impl IntoRequest<UpdateDeviceKeysRequest>
) -> Result<Response<()>, Status>
[src]

UpdateKeys updates the device-keys.

pub async fn delete_keys(
    &mut self,
    request: impl IntoRequest<DeleteDeviceKeysRequest>
) -> Result<Response<()>, Status>
[src]

DeleteKeys deletes the device-keys for the given DevEUI.

pub async fn activate(
    &mut self,
    request: impl IntoRequest<ActivateDeviceRequest>
) -> Result<Response<()>, Status>
[src]

Activate (re)activates the device with the given parameters (for ABP or for importing OTAA activations).

pub async fn deactivate(
    &mut self,
    request: impl IntoRequest<DeactivateDeviceRequest>
) -> Result<Response<()>, Status>
[src]

Deactivate de-activates the device.

pub async fn get_activation(
    &mut self,
    request: impl IntoRequest<GetDeviceActivationRequest>
) -> Result<Response<GetDeviceActivationResponse>, Status>
[src]

GetActivation returns the current activation details of the device (OTAA and ABP).

pub async fn get_random_dev_addr(
    &mut self,
    request: impl IntoRequest<GetRandomDevAddrRequest>
) -> Result<Response<GetRandomDevAddrResponse>, Status>
[src]

GetRandomDevAddr returns a random DevAddr taking the NwkID prefix into account.

pub async fn stream_frame_logs(
    &mut self,
    request: impl IntoRequest<StreamDeviceFrameLogsRequest>
) -> Result<Response<Streaming<StreamDeviceFrameLogsResponse>>, Status>
[src]

StreamFrameLogs streams the uplink and downlink frame-logs for the given DevEUI.

  • These are the raw LoRaWAN frames and this endpoint is intended for debugging only.
  • This endpoint does not work from a web-browser.

pub async fn stream_event_logs(
    &mut self,
    request: impl IntoRequest<StreamDeviceEventLogsRequest>
) -> Result<Response<Streaming<StreamDeviceEventLogsResponse>>, Status>
[src]

StreamEventLogs stream the device events (uplink payloads, ACKs, joins, errors).

  • This endpoint is intended for debugging only.
  • This endpoint does not work from a web-browser.

Trait Implementations

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for DeviceServiceClient<T>

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

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

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

impl<T> !UnwindSafe for DeviceServiceClient<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> 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]