class Azure::EventHub::Mgmt::V2018_01_01_preview::Models::NWRuleSetVirtualNetworkRules

The response from the List namespace operation.

Attributes

ignore_missing_vnet_service_endpoint[RW]

@return [Boolean] Value that indicates whether to ignore missing Vnet Service Endpoint

subnet[RW]

@return [Subnet] Subnet properties

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-01-01-preview/generated/azure_mgmt_event_hub/models/nwrule_set_virtual_network_rules.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NWRuleSetVirtualNetworkRules',
    type: {
      name: 'Composite',
      class_name: 'NWRuleSetVirtualNetworkRules',
      model_properties: {
        subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subnet',
          type: {
            name: 'Composite',
            class_name: 'Subnet'
          }
        },
        ignore_missing_vnet_service_endpoint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ignoreMissingVnetServiceEndpoint',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end