class Azure::IotHub::Mgmt::V2016_02_03::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/2016-02-03/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