Sha256: 3d6c48638f19bc991320506d6356b3f239989d3f31684081dff6577d6acae33c
Contents?: true
Size: 1.91 KB
Versions: 8
Compression:
Stored size: 1.91 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::IotHub::Mgmt::V2017_07_01 module Models # # The IP filter rules for the IoT hub. # class IpFilterRule include MsRestAzure # @return [String] The name of the IP filter rule. attr_accessor :filter_name # @return [IpFilterActionType] The desired action for requests captured # by this rule. Possible values include: 'Accept', 'Reject' attr_accessor :action # @return [String] A string that contains the IP address range in CIDR # notation for the rule. attr_accessor :ip_mask # # Mapper for IpFilterRule class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IpFilterRule', type: { name: 'Composite', class_name: 'IpFilterRule', model_properties: { filter_name: { client_side_validation: true, required: true, serialized_name: 'filterName', type: { name: 'String' } }, action: { client_side_validation: true, required: true, serialized_name: 'action', type: { name: 'Enum', module: 'IpFilterActionType' } }, ip_mask: { client_side_validation: true, required: true, serialized_name: 'ipMask', type: { name: 'String' } } } } } end end end end
Version data entries
8 entries across 8 versions & 1 rubygems