Struct gapi_grpc::google::cloud::iot::v1::ListDevicesRequest[][src]

pub struct ListDevicesRequest {
    pub parent: String,
    pub device_num_ids: Vec<u64>,
    pub device_ids: Vec<String>,
    pub field_mask: Option<FieldMask>,
    pub gateway_list_options: Option<GatewayListOptions>,
    pub page_size: i32,
    pub page_token: String,
}

Request for ListDevices.

Fields

parent: String

Required. The device registry path. Required. For example, projects/my-project/locations/us-central1/registries/my-registry.

device_num_ids: Vec<u64>

A list of device numeric IDs. If empty, this field is ignored. Maximum IDs: 10,000.

device_ids: Vec<String>

A list of device string IDs. For example, ['device0', 'device12']. If empty, this field is ignored. Maximum IDs: 10,000

field_mask: Option<FieldMask>

The fields of the Device resource to be returned in the response. The fields id and num_id are always returned, along with any other fields specified in snake_case format, for example: last_heartbeat_time.

gateway_list_options: Option<GatewayListOptions>

Options related to gateways.

page_size: i32

The maximum number of devices to return in the response. If this value is zero, the service will select a default size. A call may return fewer objects than requested. A non-empty next_page_token in the response indicates that more data is available.

page_token: String

The value returned by the last ListDevicesResponse; indicates that this is a continuation of a prior ListDevices call and the system should return the next page of data.

Trait Implementations

impl Clone for ListDevicesRequest[src]

impl Debug for ListDevicesRequest[src]

impl Default for ListDevicesRequest[src]

impl Message for ListDevicesRequest[src]

impl PartialEq<ListDevicesRequest> for ListDevicesRequest[src]

impl StructuralPartialEq for ListDevicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListDevicesRequest

impl Send for ListDevicesRequest

impl Sync for ListDevicesRequest

impl Unpin for ListDevicesRequest

impl UnwindSafe for ListDevicesRequest

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>, 
[src]

impl<T> WithSubscriber for T[src]