class Azure::Network::Mgmt::V2017_09_01::Models::VerificationIPFlowResult

Results of IP flow verification on the target resource.

Attributes

access[RW]

@return [Access] Indicates whether the traffic is allowed or denied. Possible values include: 'Allow', 'Deny'

rule_name[RW]

@return [String] Name of the rule. If input is not matched against any security rule, it is not displayed.

Public Class Methods

mapper() click to toggle source

Mapper for VerificationIPFlowResult class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2017-09-01/generated/azure_mgmt_network/models/verification_ipflow_result.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VerificationIPFlowResult',
    type: {
      name: 'Composite',
      class_name: 'VerificationIPFlowResult',
      model_properties: {
        access: {
          client_side_validation: true,
          required: false,
          serialized_name: 'access',
          type: {
            name: 'String'
          }
        },
        rule_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ruleName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end