Sha256: 945fef51684760f1102f874121b0f2ce9fff4c65349e6bc825de4d0f77bd8e45
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 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::Storage::Mgmt::V2021_01_01 module Models # # IP rule with specific IP or IP range in CIDR format. # class IPRule include MsRestAzure # @return [String] Specifies the IP or IP range in CIDR format. Only IPV4 # address is allowed. attr_accessor :ipaddress_or_range # @return [Action] The action of IP ACL rule. Possible values include: # 'Allow'. Default value: 'Allow' . attr_accessor :action # # Mapper for IPRule class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IPRule', type: { name: 'Composite', class_name: 'IPRule', model_properties: { ipaddress_or_range: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'String' } }, action: { client_side_validation: true, required: false, serialized_name: 'action', default_value: 'Allow', type: { name: 'Enum', module: 'Action' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_storage-0.23.0 | lib/2021-01-01/generated/azure_mgmt_storage/models/iprule.rb |