class Azure::IotHub::Mgmt::V2018_12_01_preview::Models::MessagingEndpointProperties
The properties of the messaging endpoints used by this IoT hub.
Attributes
lock_duration_as_iso8601[RW]
@return [Duration] The lock duration. See: docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload.
max_delivery_count[RW]
@return [Integer] The number of times the IoT hub attempts to deliver a message. See: docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload.
ttl_as_iso8601[RW]
@return [Duration] The period of time for which a message is available to consume before it is expired by the IoT hub. See: docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload.
Public Class Methods
mapper()
click to toggle source
Mapper for MessagingEndpointProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-12-01-preview/generated/azure_mgmt_iot_hub/models/messaging_endpoint_properties.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MessagingEndpointProperties', type: { name: 'Composite', class_name: 'MessagingEndpointProperties', model_properties: { lock_duration_as_iso8601: { client_side_validation: true, required: false, serialized_name: 'lockDurationAsIso8601', type: { name: 'TimeSpan' } }, ttl_as_iso8601: { client_side_validation: true, required: false, serialized_name: 'ttlAsIso8601', type: { name: 'TimeSpan' } }, max_delivery_count: { client_side_validation: true, required: false, serialized_name: 'maxDeliveryCount', constraints: { InclusiveMaximum: 100, InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end