class Azure::IotHub::Mgmt::V2018_12_01_preview::Models::ExportDevicesRequest
Use to provide parameters when requesting an export of all devices in the IoT hub.
Attributes
exclude_keys[RW]
@return [Boolean] The value indicating whether keys should be excluded during export.
export_blob_container_uri[RW]
@return [String] The export blob container URI.
Public Class Methods
mapper()
click to toggle source
Mapper for ExportDevicesRequest
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-12-01-preview/generated/azure_mgmt_iot_hub/models/export_devices_request.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExportDevicesRequest', type: { name: 'Composite', class_name: 'ExportDevicesRequest', model_properties: { export_blob_container_uri: { client_side_validation: true, required: true, serialized_name: 'exportBlobContainerUri', type: { name: 'String' } }, exclude_keys: { client_side_validation: true, required: true, serialized_name: 'excludeKeys', type: { name: 'Boolean' } } } } } end