Infoblox::Discovery::NetworkDeprovisionInfo - Network deprovision information.
The object provides information about network deprovision.
my $object = Infoblox::Discovery::NetworkDeprovisionInfo->new( 'interface' => $interface, # Required 'network' => $network, # Required 'network_view' => $address/cidr, # Optional, default value is the default network view );
The object does not support any session methods.
Use this method to set or retrieve the interface object.
Valid value is an Infoblox::Grid::Discovery::DeviceInterface object.
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 interface value $value = $deprovision_info->interface();
#Set interface value $deprovision_info->interface($interface);
Use this method to set or retrieve the network address.
Valid value is a string representing the address and netmask of the network in CIDR format (example: 10.0.0.0/8).
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 = $deprovision_info->network();
#Set attribute value $deprovision_info->network("10.0.0.0/8");
Use this method to set or retrieve the network view name.
Valid value is a string representing network view name.
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 = $deprovision_info->network_view();
#Set attribute value $deprovision_info->network_view($view);
Infoblox Inc. http://www.infoblox.com/
Copyright (c) 2017 Infoblox Inc.