class Azure::IotHub::Mgmt::V2019_03_22_preview::Models::FallbackRouteProperties
The properties of the fallback route. IoT Hub uses these properties when it routes messages to the fallback endpoint.
Attributes
@return [String] The condition which is evaluated in order to apply the fallback route. If the condition is not provided it will evaluate to true by default. For grammar, See: docs.microsoft.com/azure/iot-hub/iot-hub-devguide-query-language
@return [Array<String>] The list of endpoints to which the messages that satisfy the condition are routed to. Currently only 1 endpoint is allowed.
@return [Boolean] Used to specify whether the fallback route is enabled.
@return [String] The name of the route. The name can only include alphanumeric characters, periods, underscores, hyphens, has a maximum length of 64 characters, and must be unique.
@return [String] The source to which the routing rule is to be applied to. For example, DeviceMessages. Default value: 'DeviceMessages' .
Private Class Methods
Mapper for FallbackRouteProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-03-22-preview/generated/azure_mgmt_iot_hub/models/fallback_route_properties.rb, line 45 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FallbackRouteProperties', type: { name: 'Composite', class_name: 'FallbackRouteProperties', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, source: { client_side_validation: true, required: true, is_constant: true, serialized_name: 'source', default_value: 'DeviceMessages', type: { name: 'String' } }, condition: { client_side_validation: true, required: false, serialized_name: 'condition', type: { name: 'String' } }, endpoint_names: { client_side_validation: true, required: true, serialized_name: 'endpointNames', constraints: { MaxItems: 1, MinItems: 1 }, type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, is_enabled: { client_side_validation: true, required: true, serialized_name: 'isEnabled', type: { name: 'Boolean' } } } } } end