Struct gapi_grpc::google::cloud::iot::v1::device_manager_client::DeviceManagerClient [−][src]
Internet of Things (IoT) service. Securely connect and manage IoT devices.
Implementations
impl DeviceManagerClient<Channel>
[src]
pub async fn connect<D>(dst: D) -> Result<Self, Error> where
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
[src]
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
Attempt to create a new client by connecting to a given endpoint.
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]
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
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]
&mut self,
request: impl IntoRequest<CreateDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
Creates a device registry that contains devices.
pub async fn get_device_registry(
&mut self,
request: impl IntoRequest<GetDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
[src]
&mut self,
request: impl IntoRequest<GetDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
Gets a device registry configuration.
pub async fn update_device_registry(
&mut self,
request: impl IntoRequest<UpdateDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateDeviceRegistryRequest>
) -> Result<Response<DeviceRegistry>, Status>
Updates a device registry configuration.
pub async fn delete_device_registry(
&mut self,
request: impl IntoRequest<DeleteDeviceRegistryRequest>
) -> Result<Response<()>, Status>
[src]
&mut self,
request: impl IntoRequest<DeleteDeviceRegistryRequest>
) -> Result<Response<()>, Status>
Deletes a device registry configuration.
pub async fn list_device_registries(
&mut self,
request: impl IntoRequest<ListDeviceRegistriesRequest>
) -> Result<Response<ListDeviceRegistriesResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListDeviceRegistriesRequest>
) -> Result<Response<ListDeviceRegistriesResponse>, Status>
Lists device registries.
pub async fn create_device(
&mut self,
request: impl IntoRequest<CreateDeviceRequest>
) -> Result<Response<Device>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateDeviceRequest>
) -> Result<Response<Device>, Status>
Creates a device in a device registry.
pub async fn get_device(
&mut self,
request: impl IntoRequest<GetDeviceRequest>
) -> Result<Response<Device>, Status>
[src]
&mut self,
request: impl IntoRequest<GetDeviceRequest>
) -> Result<Response<Device>, Status>
Gets details about a device.
pub async fn update_device(
&mut self,
request: impl IntoRequest<UpdateDeviceRequest>
) -> Result<Response<Device>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateDeviceRequest>
) -> Result<Response<Device>, Status>
Updates a device.
pub async fn delete_device(
&mut self,
request: impl IntoRequest<DeleteDeviceRequest>
) -> Result<Response<()>, Status>
[src]
&mut self,
request: impl IntoRequest<DeleteDeviceRequest>
) -> Result<Response<()>, Status>
Deletes a device.
pub async fn list_devices(
&mut self,
request: impl IntoRequest<ListDevicesRequest>
) -> Result<Response<ListDevicesResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListDevicesRequest>
) -> Result<Response<ListDevicesResponse>, Status>
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]
&mut self,
request: impl IntoRequest<ModifyCloudToDeviceConfigRequest>
) -> Result<Response<DeviceConfig>, Status>
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]
&mut self,
request: impl IntoRequest<ListDeviceConfigVersionsRequest>
) -> Result<Response<ListDeviceConfigVersionsResponse>, Status>
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]
&mut self,
request: impl IntoRequest<ListDeviceStatesRequest>
) -> Result<Response<ListDeviceStatesResponse>, Status>
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]
&mut self,
request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
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]
&mut self,
request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
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]
&mut self,
request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
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]
&mut self,
request: impl IntoRequest<SendCommandToDeviceRequest>
) -> Result<Response<SendCommandToDeviceResponse>, Status>
Sends a command to the specified device. In order for a device to be able to receive commands, it must:
- be connected to Cloud IoT Core using the MQTT protocol, and
- 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]
&mut self,
request: impl IntoRequest<BindDeviceToGatewayRequest>
) -> Result<Response<BindDeviceToGatewayResponse>, Status>
Associates the device with the gateway.
pub async fn unbind_device_from_gateway(
&mut self,
request: impl IntoRequest<UnbindDeviceFromGatewayRequest>
) -> Result<Response<UnbindDeviceFromGatewayResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<UnbindDeviceFromGatewayRequest>
) -> Result<Response<UnbindDeviceFromGatewayResponse>, Status>
Deletes the association between the device and the gateway.
Trait Implementations
impl<T: Clone> Clone for DeviceManagerClient<T>
[src]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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,
T: Send,
impl<T> Sync for DeviceManagerClient<T> where
T: Sync,
T: Sync,
impl<T> Unpin for DeviceManagerClient<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for DeviceManagerClient<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,