Sha256: 956076b0ed50c7955d28a32950b59e1fff35fdf633c20403bfdc0952979af0d6
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 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::V2019_07_01_preview 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_iot_hub-0.17.5 | lib/2019-07-01-preview/generated/azure_mgmt_iot_hub/models/ip_filter_rule.rb |