Infoblox::Grid::Discovery::VRFMappingRule - VRF mapping rule.
The object provides mapping of regular expressions that represent the VRF name and network view.
my $object = Infoblox::Grid::Discovery::VRFMappingRule->new( 'network_view' => $string, # Required 'criteria' => $string, # Required 'comment' => $string, # Optional );
The object does not support any session methods.
This section describes all the methods that you can use to set or retrieve the attribute values of the object.
Use this method to set or retrieve the name of the network view associated with the VRF mapping rule.
The name of the network view associated with the VRF mapping rule.
If you specified a parameter, the method returns true when the modification succeeds, and returns false when the operation fails.
If you did not specify a parameter, the method returns the attribute value.
# Get attribute value my $value = $object->network_view(); # Modify attribute value $object->network_view('default');
Use this method to set or retrieve the criteria of the VRF mapping rule.
Extended POSIX regular expression matching the VRF name. The regular expression string should contain the leading caret anchor ^
and the trailing dollar anchor $
symbols.
If you specified a parameter, the method returns true when the modification succeeds, and returns false when the operation fails.
If you did not specify a parameter, the method returns the attribute value.
# Get attribute value my $value = $object->criteria(); # Modify attribute value $object->criteria('.*+Red\d');
Use this method to set or retrieve the comment for the VRF mapping rule.
The comment in string format.
If you specified a parameter, the method returns true when the modification succeeds, and returns false when the operation fails.
If you did not specify a parameter, the method returns the attribute value.
# Get attribute value my $value = $object->comment(); # Modify attribute value $object->comment('comment');
Infoblox Inc. http://www.infoblox.com/
Copyright (c) 2017 Infoblox Inc.