Infoblox::DHCP::DDNS - DHCP DDNS object.
The object is used to configure Multi-Grid Master preferences for updates from DHCP to Multi-Grid Master zones.
my $ddns = Infoblox::DHCP::DDNS->new( dns_ext_zone => $string, # required if zone_match is 'EXTERNAL' dns_grid_zone => $string, # required if zone_match is 'GRID' view => $string, # optional / The default value is the name of the default view external_primary => $ipaddr, # required if zone_match is 'EXTERNAL' or 'ANY_EXTERNAL' grid_primary => $string, # required if zone_match is 'GRID' or 'ANY_GRID' zone_match => 'ANY_EXTERNAL' | 'ANY_GRID' | 'EXTERNAL' | 'GRID', # required );
The object doesn't support any session methods.
This section describes all the methods that you can use to configure and retrieve a DHCP DDNS object.
Use this method to set or retrieve a zone name, in FQDN (Fully Qualified Domain Name) format, that is contained in an external member.
A zone name in FQDN 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 the attribute value my $value = $ddns->dns_ext_zone(); # Modify the attribute value $ddns->dns_ext_zone('exmmdns.com');
Use this method to set or retrieve a zone name, in FQDN (Fully Qualified Domain Name) format, that is contained in a Grid member.
A zone name in FQDN 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 the attribute value my $value = $ddns->dns_grid_zone(); # Modify the attribute value $ddns->dns_grid_zone('mmdns.com');
Use this method to set or retrieve the name of the DNS view in which the zone is located.
The name of the DNS view in string format. The default value is the name of the default view.
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 the attribute value my $value = $ddns->view(); # Modify the attribute value $ddns->view('dnsview');
Use this method to set or retrieve the IP address of an external member.
The IP address of an external member.
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 the attribute value my $value = $ddns->external_primary(); # Modify the attribute value $ddns->external_primary('10.0.0.1');
Use this method to set or retrieve the name of the primary Grid member.
The name of the primary Grid member.
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 the attribute value my $value = $ddns->grid_primary(); # Modify the attribute value $ddns->grid_primary('grid.com');
Use this method to set or retrieve the matching type.
The valid value is 'ANY_EXTERNAL', 'ANY_GRID', 'EXTERNAL' or 'GRID'.
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 the attribute value my $value = $ddns->zone_match(); # Modify the attribute value $ddns->zone_match('GRID');
Infoblox Inc. http://www.infoblox.com/
Infoblox::DHCP::View, Infoblox::Grid::Member::DHCP
Copyright (c) 2017 Infoblox Inc.