Client for interacting with Infoblox NIOS over WAPI
Project description
=============================== Infoblox Client
.. image:: https://travis-ci.org/infobloxopen/infoblox-client.svg?branch=master :target: https://travis-ci.org/infobloxopen/infoblox-client
.. image:: https://img.shields.io/pypi/v/infoblox-client.svg :target: https://pypi.python.org/pypi/infoblox-client
.. image:: https://codecov.io/github/infobloxopen/infoblox-client/coverage.svg?branch=master :target: https://codecov.io/github/infobloxopen/infoblox-client?branch=master
.. image:: https://readthedocs.org/projects/infoblox-client/badge/?version=latest :target: http://infoblox-client.readthedocs.org/en/latest/?badge=latest
Client for interacting with Infoblox NIOS over WAPI.
- Free software: Apache license
- Documentation: https://infoblox-client.readthedocs.org.
Installation
Install infoblox-client using pip:
::
pip install infoblox-client
Usage
Configure logger prior to loading infoblox_client to get all debug messages in console:
.. code:: python
import logging logging.basicConfig(level=logging.DEBUG)
Low level API, using connector module
Retrieve list of network views from NIOS:
.. code:: python
from infoblox_client import connector
opts = {'host': '192.168.1.10', 'username': 'admin', 'password': 'admin'}
conn = connector.Connector(opts)
# get all network_views
network_views = conn.get_object('networkview')
# search network by cidr in specific network view
network = conn.get_object('network', {'network': '100.0.0.0/8', 'network_view': 'default'})
For these request data is returned as list of dicts:
.. code:: python
network_views:
[{u'_ref': u'networkview/ZG5zLm5ldHdvcmtfdmlldyQw:default/true',
u'is_default': True,
u'name': u'default'}]
network:
[{u'_ref': u'network/ZG5zLm5ldHdvcmskMTAwLjAuMC4wLzgvMA:100.0.0.0/8/default',
u'network': u'100.0.0.0/8',
u'network_view': u'default'}]
High level API, using objects
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Example of creating Network View, Network, DNS View, DNSZone and HostRecord using NIOS objects:
.. code:: python
from infoblox_client import connector
from infoblox_client import objects
opts = {'host': '192.168.1.10', 'username': 'admin', 'password': 'admin'}
conn = connector.Connector(opts)
Create a network view, and network:
.. code:: python
nview = objects.NetworkView.create(conn, name='my_view')
network = objects.Network.create(conn, network_view='my_view', cidr='192.168.1.0/24')
Create a DNS view and zone:
.. code:: python
view = objects.DNSView.create(conn, network_view='my_view', name='my_dns_view')
zone = objects.DNSZone.create(conn, view='my_dns_view', fqdn='my_zone.com')
Create a host record:
.. code:: python
my_ip = objects.IP.create(ip='192.168.1.25', mac='aa:bb:cc:11:22:33')
hr = objects.HostRecord.create(conn, view='my_dns_view',
name='my_host_record.my_zone.com', ip=my_ip)
Create host record with Extensible Attributes (EA):
.. code:: python
ea = objects.EA({'Tenant ID': tenantid, 'CMP Type': cmptype,
'Cloud API Owned': True})
host = objects.HostRecord.create(conn, name='new_host', ip=my_ip, extattrs=ea)
Create a host record with inherited Extensible Attributes (EA):
.. code:: python
my_ip = objects.IP.create(ip='192.168.1.25', mac='aa:bb:cc:11:22:33', use_for_ea_inheritance=True)
hr = objects.HostRecord.create(conn, view='my_dns_view',
name='my_host_record.my_zone.com', ip=my_ip)
Set the TTL to 30 minutes:
.. code:: python
hr = objects.HostRecord.create(conn, view='my_dns_view',
name='my_host_record.my_zone.com', ip=my_ip,
ttl = 1800)
Create a new host record, from the next available IP in a CIDR, with a MAC address, and DHCP enabled:
.. code:: python
next = objects.IPAllocation.next_available_ip_from_cidr('default', '10.0.0.0/24')
my_ip = objects.IP.create(ip=next, mac='aa:bb:cc:11:22:33', configure_for_dhcp=True)
host = objects.HostRecord.create(conn, name='some.valid.fqdn', view='Internal', ip=my_ip)
Reply from NIOS is parsed back into objects and contains next data:
.. code:: python
In [22]: hr
Out[22]: HostRecordV4: _ref=record:host/ZG5zLmhvc3QkLjQuY29tLm15X3pvbmUubXlfaG9zdF9yZWNvcmQ:my_host_record.my_zone.com/my_dns_view, name=my_host_record.my_zone.com, ipv4addrs=[<infoblox_client.objects.IPv4 object at 0x7f7d6b0fe9d0>], view=my_dns_view
Create a new fixed address, with a MS server DHCP reservation:
.. code:: python
obj, created = objects.FixedAddress.create_check_exists(connector=conn,
ip='192.168.100.100',
mac='aa:bb:cc:11:22:33',
comment='My DHCP reservation',
name='My hostname',
network_view='default',
ms_server={'_struct': 'msdhcpserver',
'ipv4addr': '192.168.0.0'})
High level API, using InfobloxObjectManager
Create a new fixed address, selecting it from the next available IP in a CIDR:
.. code:: python
from infoblox_client.object_manager import InfobloxObjectManager
new_address = InfobloxObjectManager(conn).create_fixed_address_from_cidr(netview='default', mac='aa:bb:cc:11:22:33', cidr='10.0.0.0/24', extattrs=[])
What you get back is a FixedAddressV4
object.
Objects Interface
All top level objects support interface for CRUD operations. List of supported objects is defined in next section.
-
create(cls, connector, check_if_exists=True, update_if_exists=False, **kwargs)
Creates object on NIOS side. Requires connector passed as the first argument,check_if_exists
andupdate_if_exists
are optional. Object related fields are passed in as kwargs:field=value
,field2=value2
. -
search(cls, connector, return_fields=None, search_extattrs=None, force_proxy=False, **kwargs)
Search single object on NIOS side, returns first object that match search criteria. Requires connector passed as the first argument.return_fields
can be set to retrieve particular fields from NIOS, for examplereturn_fields=['view', 'name']
. Ifreturn_fields
is[]
defaultreturn_fields
are returned by NIOS side for currentwapi_version
.search_extattrs
is used to filter out results by extensible attributes.force_proxy
forces search request to be processed on Grid Master (applies only in cloud environment) -
search_all(cls, connector, return_fields=None, search_extattrs=None, force_proxy=False, **kwargs)
Search all objects on NIOS side that match search criteria. Returns a list of objects. All other options are equal tosearch()
. -
update(self)
Update the object on NIOS side by pushing changes done in the local object. -
delete(self)
Deletes the object from NIOS side.
Supported NIOS objects
All NIOS Objects are supported in the 0.6.1 version release. check infoblox_client/objects.py for description of the objects. Newly supported objects
AAAADtcRecord
AAAARecord
AAAASharedRecord
ADtcRecord
ADtcRecordBase
ARecord
ARecordBase
ASharedRecord
ASharedRecordBase
AdAuthServer
AdAuthService
Addressac
Admingroup
Adminrole
Adminuser
AliasRecord
Allendpoints
Allnsgroup
Allrecords
Allrpzrecords
AnyMember
Approvalworkflow
Authpolicy
Awsrte53Task
Awsrte53Taskgroup
Awsuser
BaseObject
Bfdtemplate
Bgpas
Bulkhost
Bulkhostnametemplate
CNAMEDtcRecord
CNAMERecord
CNAMESharedRecord
CaaRecord
Cacertificate
Capacityreport
CapacityreportObjectcount
Captiveportal
CaptiveportalFile
CertificateAuthservice
Changedobject
CiscoiseEndpoint
Clientsubnetdomain
Csvimporttask
DHCPLease
DHCPRoamingHost
DNSView
DNSZone
DNSZoneDelegated
DNSZoneForward
DbObjects
Dbsnapshot
DdnsPrincipalcluster
DdnsPrincipalclusterGroup
DeletedObjects
DhcidRecord
DhcpOptionDefinition
DhcpOptionDefinitionV4
DhcpOptionDefinitionV6
DhcpOptionSpace
DhcpOptionSpaceV4
DhcpOptionSpaceV6
DhcpStatistics
Dhcpddns
Dhcpfailover
Dhcpmember
Dhcpoption
Discovery
DiscoveryAutoconversionsetting
DiscoveryCiscoapicconfiguration
DiscoveryClicredential
DiscoveryDevice
DiscoveryDevicecomponent
DiscoveryDeviceinterface
DiscoveryDeviceneighbor
DiscoveryDevicesupportbundle
DiscoveryDiagnostictask
DiscoveryGridproperties
DiscoveryIfaddrinfo
DiscoveryMemberproperties
DiscoveryNetworkinfo
DiscoveryPort
DiscoveryScaninterface
DiscoverySeedrouter
DiscoverySnmp3Credential
DiscoverySnmpcredential
DiscoveryStatus
DiscoveryVlaninfo
DiscoveryVrf
DiscoveryVrfmappingrule
Discoverytask
Discoverytaskport
Discoverytaskvserver
Distributionschedule
DnameRecord
Dns64Group
DnskeyRecord
Dnsseckey
Dnssectrustedkey
DsRecord
Dtc
DtcAllrecords
DtcCertificate
DtcLbdn
DtcMonitor
DtcMonitorHttp
DtcMonitorIcmp
DtcMonitorPdp
DtcMonitorSip
DtcMonitorSnmp
DtcMonitorSnmpOid
DtcMonitorTcp
DtcObject
DtcPool
DtcPoolConsolidatedMonitorHealth
DtcPoolLink
DtcServer
DtcServerLink
DtcServerMonitor
DtcTopology
DtcTopologyLabel
DtcTopologyRule
DtcTopologyRuleSource
DtclbdnRecord
DxlEndpoint
DxlEndpointBroker
EA
EADefinition
Exclusionrange
Exclusionrangetemplate
ExtensibleattributedefListvalues
Extserver
Extsyslogbackupserver
Fileop
Filterfingerprint
Filtermac
Filternac
Filteroption
Filterrelayagent
Filterrule
Fingerprint
FixedAddress
FixedAddressTemplate
FixedAddressTemplateV4
FixedAddressTemplateV6
FixedAddressV4
FixedAddressV6
Forwardingmemberserver
Ftpuser
Grid
GridCloudapi
GridCloudapiCloudstatistics
GridCloudapiUser
GridCloudapiVm
GridCloudapiVmaddress
GridDashboard
GridDhcpproperties
GridDns
GridDnsFixedrrsetorderfqdn
GridFiledistribution
GridLicensePool
GridLicensePoolContainer
GridLicensesubpool
GridMaxminddbinfo
GridMemberCloudapi
GridServicerestartGroup
GridServicerestartGroupOrder
GridServicerestartRequest
GridServicerestartRequestChangedobject
GridServicerestartStatus
GridThreatanalytics
GridThreatprotection
GridX509Certificate
GridmemberSoamname
GridmemberSoaserial
HostRecord
HostRecordV4
HostRecordV6
Hostnamerewritepolicy
Hotfix
HsmAllgroups
HsmSafenet
HsmSafenetgroup
HsmThales
HsmThalesgroup
IP
IPAddress
IPAllocation
IPRange
IPRangeV4
IPRangeV6
IPv4
IPv4Address
IPv4HostAddress
IPv6
IPv6Address
IPv6HostAddress
InfobloxObject
Interface
IpamStatistics
Ipv6Networksetting
Kerberoskey
LdapAuthService
LdapEamapping
LdapServer
LicenseGridwide
LocaluserAuthservice
Logicfilterrule
Lomnetworkconfig
Lomuser
MXRecord
MXSharedRecord
Macfilteraddress
Mastergrid
Member
MemberDhcpproperties
MemberDns
MemberDnsgluerecordaddr
MemberDnsip
MemberFiledistribution
MemberLicense
MemberParentalcontrol
MemberThreatanalytics
MemberThreatprotection
Memberserver
Memberservicecommunication
Memberservicestatus
Msdhcpoption
Msdhcpserver
Msdnsserver
Msserver
MsserverAdsitesDomain
MsserverAdsitesSite
MsserverDcnsrecordcreation
MsserverDhcp
MsserverDns
Mssuperscope
Namedacl
NaptrDtcRecord
NaptrRecord
Natgroup
Network
NetworkContainer
NetworkContainerV4
NetworkContainerV6
NetworkDiscovery
NetworkTemplate
NetworkTemplateV4
NetworkTemplateV6
NetworkV4
NetworkV6
NetworkView
Networkuser
NetworkviewAssocmember
Nodeinfo
NotificationRestEndpoint
NotificationRestTemplate
NotificationRestTemplateparameter
NotificationRule
NotificationRuleexpressionop
NsRecord
Nsec3ParamRecord
Nsec3Record
NsecRecord
Nsgroup
NsgroupDelegation
NsgroupForwardingmember
NsgroupForwardstubserver
NsgroupStubmember
Nxdomainrule
OcspResponder
Option60Matchrule
Orderedranges
Orderedresponsepolicyzones
Ospf
OutboundCloudclient
OutboundCloudclientEvent
ParentalcontrolAbs
ParentalcontrolAvp
ParentalcontrolBlockingpolicy
ParentalcontrolIpspacediscriminator
ParentalcontrolMsp
ParentalcontrolNasgateway
ParentalcontrolSitemember
ParentalcontrolSpm
ParentalcontrolSubscriber
ParentalcontrolSubscribersite
Permission
PtrRecord
PtrRecordV4
PtrRecordV6
RadiusAuthservice
RadiusServer
RangeTemplate
RangeTemplateV4
RangeTemplateV6
Rdatasubfield
Recordnamepolicy
Remoteddnszone
Restartservicestatus
Rir
RirOrganization
RpzAIpaddressRecord
RpzARecord
RpzAaaaIpaddressRecord
RpzAaaaRecord
RpzCnameClientipaddressRecord
RpzCnameClientipaddressdnRecord
RpzCnameIpaddressRecord
RpzCnameIpaddressdnRecord
RpzCnameRecord
RpzMxRecord
RpzNaptrRecord
RpzPtrRecord
RpzPtrRecordV4
RpzPtrRecordV6
RpzSrvRecord
RpzTxtRecord
RrsigRecord
Ruleset
SRVDtcRecord
SRVRecord
SRVSharedRecord
SamlAuthservice
Scavengingtask
Scheduledtask
Search
SettingNetwork
SettingViewaddress
SharedNetwork
SharedNetworkV4
SharedNetworkV6
Sharedrecordgroup
SmartfolderChildren
SmartfolderGlobal
SmartfolderGroupby
SmartfolderPersonal
SmartfolderQueryitem
Snmpuser
Sortlist
SubObjects
Superhost
Superhostchild
SyslogEndpoint
SyslogEndpointServers
Syslogserver
TXTRecord
TXTSharedRecord
TacacsplusAuthservice
TacacsplusServer
Taxii
TaxiiRpzconfig
Tenant
Tftpfiledir
ThreatanalyticsModuleset
ThreatanalyticsWhitelist
ThreatinsightCloudclient
ThreatprotectionGridRule
ThreatprotectionNatrule
ThreatprotectionProfile
ThreatprotectionProfileRule
ThreatprotectionRule
ThreatprotectionRulecategory
ThreatprotectionRuleset
ThreatprotectionRuletemplate
ThreatprotectionStatinfo
ThreatprotectionStatistics
Thresholdtrap
TlsaRecord
Trapnotification
UnknownRecord
Updatesdownloadmemberconfig
Upgradegroup
UpgradegroupMember
UpgradegroupSchedule
Upgradeschedule
Upgradestatus
Upgradestep
Userprofile
Vdiscoverytask
Vlan
Vlanlink
Vlanrange
Vlanview
Vtftpdirmember
ZoneAuthDiscrepancy
ZoneRp
ZoneStub
Zoneassociation
Zonenameserver
Until 0.4.25 this project supported
-
NetworkView
for 'networkview' -
DNSView
for 'view' -
DNSZone
for 'zone_auth' -
Member
for 'member' -
Network
(V4 and V6)NetworkV4
for 'network'NetworkV6
for 'ipv6network'
-
IPRange
(V4 and V6)IPRangeV4
for 'range'IPRangeV6
for 'ipv6range'
-
HostRecord
(V4 and V6)HostRecordV4
for 'record:host'HostRecordV6
for 'record:host'
-
FixedAddress
(V4 and V6)FixedAddressV4
for 'fixedaddress'FixedAddressV6
for 'ipv6fixedaddress'
-
IPAddress
(V4 and V6)IPv4Address
for 'ipv4address'IPv6Address
for 'ipv6address'
-
ARecordBase
ARecord
for 'record:a'AAAARecord
for 'record:aaaa'
-
PtrRecord
(V4 and V6)PtrRecordV4
for 'record:ptr'PtrRecordV6
for 'record:ptr'
-
EADefinition
for 'extensibleattributedef' -
CNAMERecord
for 'record:cname' -
MXRecord
for 'record:mx'
Search by regular expression
Search for partial match is supported only by low-level API for now. Use '~' with field name to search by regular expressions. Not all fields support search by regular expression. Refer to wapidoc to find out complete list of fields that can be searched this way. Examples:
Find all networks that starts with '10.10.':
.. code:: python
conn = connector.Connector(opts) nw = conn.get_object('network', {'network~': '10.10.'})
Find all host records that starts with '10.10.':
.. code:: python
conn = connector.Connector(opts) hr = conn.get_object('record:host', {'ipv4addr~': '10.10.'})
More examples
Utilizing extensible attributes and searching on them can easily be done with the get_object
function.
The default
field in return_fields
acts like the +
does in WAPI.
_return_fields+
Specified list of fields (comma separated) will be returned in addition to the basic fields of the object (documented for each object).
This enables you to always get the default values in return, in addition to what you specify whether
you search for a network
or a networkcontainer
,
defined as place_to_check
in the code below.
.. code:: python
from infoblox_client.connector import Connector
def default_infoblox_connection():
opts = {'host': '192.168.1.10', 'username': 'admin', 'password': 'admin'}
conn = Connector(opts)
return conn
def search_extensible_attribute(connection, place_to_check: str, extensible_attribute: str, value: str):
"""
Find extensible attributes.
:param connection: Infoblox connection
:param place_to_check: Can be `network`, `networkcontainer` or `record:host` and so on.
:param extensible_attribute: Which extensible attribute to search for. Can be `CustomerCode`, `Location`
and so on.
:param value: The value you want to search for.
:return: result
"""
extensible_args = [
place_to_check,
{
f"*{extensible_attribute}:~": value,
}
]
kwargs = {
'return_fields': [
'default',
'extattrs',
]
}
result = {"type": f"{place_to_check}", "objects": connection.get_object(*extensible_args, **kwargs)}
return result
connection = default_infoblox_connection()
search_network = search_extensible_attribute(connection, "network", "CustomerCode", "Infoblox")
# Print the output:
print(search_network)
{
"type": "network",
"objects": [
{
"_ref": "network/ZG5zLmhvc3QkLjQuY29tLm15X3pvbmUubXlfaG9zdF9yZWNvcmQ:192.168.1.1/28/default",
"comment": "Infoblox Network",
"extattrs": {
"CustomerCode": {
"value": "Infoblox"
}
},
"network": "192.168.1.0/28",
"network_view": "default"
}
]
}
search_host = search_extensible_attribute(connection, "record:host", "CustomerCode", "Infoblox")
# Print the output:
print(search_host)
{
"type": "record:host",
"objects": [
{
"_ref": "record:host/ZG5zLm5ldHdvcmtfdmlldyQw:InfobloxHost",
"extattrs": {
"CustomerCode": {
"value": "Infoblox"
}
},
"ipv4addrs": [
{
"_ref": "record:host_ipv4addr/ZG5zLm5ldHdvcmtfdmlldyQwdvcmtfdmlldyQw:192.168.1.1/InfobloxHost",
"configure_for_dhcp": false,
"host": "InfobloxHost",
"ipv4addr": "192.168.1.1"
}
],
"name": "InfobloxHost",
"view": " "
}
]
}
Features
- TODO
History
0.6.1 (2024-11-15)
- Resolved the problem with cookie management and re-authentication upon cookie expiration #384;
- Dropped support for Python versions below 3.6 #384;
0.6.0 (2022-11-18)
- Added support for Python version 3.9 #352;
- Removed support for Python version below 3.0 #352;
0.5.2 (2022-10-12)
- Added Certificate based authentication logic #330;
- Fixed use of EA inheritance in IP Objects #318;
- Fixed missing fields ('ipv4addr', 'ipv6addr') for 'class Member()' #345;
0.5.1 (2022-03-14)
- Updated connector's urlencoding logic for proper array encoding #287;
- Updated InfobloxObject's fetch method to raise
InfobloxFetchGotMultipleObjects
exception #288; - Fix a bug when calling abstracted class from_dict with V4 & V6 subclass #282;
- Fix a bug when updating DNSZone object exception was raised and field not allowed to update #331;
- Fix a bug when ARecord and AAAARecord object skips updating the updatable fields #334, #328;
- Raised an exception while searching with non searchable fields #339;
- Fix errors generated for the client using sphinx with make docs #343;
0.5.0 (2020-05-14)
- Majorly Updated objects with around 380+ NIOS object calls supported now.(Find the infoblox_client/objects.py file to list the supported objects and its descriptions)
- Bug Fixes
- python-six dependency set to >=1.11.0
0.4.25 (2020-03-12)
- Bug Fixes
0.4.24 (2020-02-25)
- Added some extra fields(ms_server) for Fixed Address
- Supporting MX record
- Bug Fixes - PTR records now return an IP
0.4.23 (2019-09-10)
- Added some extra fields for network class
- Fixed update option for A Record
- Adding fields for fixed address
0.4.22 (2019-02-21)
- Supported returning default fileds plus user required fields reflecting WAPI
- Supporting 'aliases' parameter of HOST record for DNS
0.4.21 (2019-01-18)
- Supporting wapi version 2.10 or above
0.4.20 (2018-03-27)
- Updated default WAPI version from 1.4 to 2.1
0.4.19 (2018-02-06)
- Changed logging of failure on object search from Error to Warning
0.4.18 (2017-11-20)
- Fix bug related to temporary unavailable status code
0.4.17 (2017-11-09)
- Added pagination support for wapi calls
0.4.15 (2017-07-18)
- Changed logic of generate duid using only mac address
0.4.14 (2017-05-18)
- Add function to check object is created or reused
0.4.13 (2017-03-01)
- Add TTL field to HostRecordV*
- Add CNAME record support
- Specify return fields for an SRV record
0.4.12 (2016-12-08)
- Allow search all fields
- Remove ptrdname from PTR record search attributes
0.4.11 (2016-10-31)
- Add search HostRecords by MAC
0.4.10 (2016-10-24)
- Updated history and author
0.4.9 (2016-10-24)
- Add function to get fixed addresses by mac
0.4.8 (2016-10-10)
- Add ptrdname search option to PtrRecord objects
0.4.7 (2016-07-14)
- Add zones extensible attribute update support
0.4.6 (2016-07-01)
- Add network_view support for host records
0.4.5 (2016-06-13)
- Allow raising exception in create_ea_definition
- Add pep8 check to tox
- Add pep8 check to Travis CI
- Add examples of searching by regular expression
0.4.4 (2016-05-11)
- Pass only_ref option to update_from_dict
- Do not fail on processing unknown fields
- Fetch only object reference for service restart
- Update README with example of using EA
0.4.3 (2016-03-28)
- Add default fields for Member
- Update docstring for create_network
- Add fields to FixedAddressV4 and IPAddress
0.4.2 (2016-03-04)
- Add max_retries option to connector
- Log failure on get with Error log level
0.4.1 (2016-02-26)
- Add 'max_results' as connector option
0.4.0 (2016-02-19)
- Add max_results option to connector and objects
- Add Tenant object
- Update README.rst with more examples
0.3.9 (2016-02-18)
- Add 'configure_for_dns' field for HostRecord
0.3.8 (2016-02-17)
- Add 'extattrs' to DNSZone/DNSView return_fields
0.3.7 (2016-02-12)
- Add return_fields to NetworkView
0.3.6 (2016-01-28)
- Add support for list and tuple values to EA object
- Remove _value_to_bool
0.3.5 (2016-01-22)
- No changes
0.3.4 (2016-01-21)
- Do not override verify flag on request level
0.3.3 (2016-01-20)
- create_required_ea_definitions return created list
- Add 'start_addr', 'end_addr' to ip detection list
- Add request type to connector logger
- Flake8 fixes
0.3.2 (2016-01-19)
- Convert strings into booleans for ssl_verify
- Update AUTHORS.rst, add contributors
- Remove unused methods from utils.py
0.3.1 (2016-01-14)
- Add 'zone' to search fields of Host Record
0.3.0 (2016-01-14)
- Update development status from Pre-Alpha to Alpha
- Feature/tox testing (huge changes in testing env)
- Add 'network' to search fields of FixedAddress
- Allow domain-name-servers for ipv6
- Update existent EA for network instead of replace
0.2.3 (2016-01-06)
- Return None if search failed instead of exception
- Add ip_version as a public property for objects
0.2.2 (2015-12-23)
- Fix updating object from create method
- Rework delete_all_associated_objects logic
- Fix error handling in create_object
- Do not catch exception on create_dns_zone level
- Update feature version for member_ipv6_setting
0.2.1 (2015-12-18)
- Add InfobloxMemberAlreadyAssigned exception
- Update dns record if already exists
- Add 'log_api_calls_as_info' option for connector
- Check for empty values in EA
0.2.0 (2015-12-17)
- Deprecate network_exists method in object_manager
- Add _global_field_processing for objects
- Add parsing 'extattrs' into EA objects for all InfobloxObject childs
- Add docs badge to README.rst
- Reworked get_network in object_manager
- Move eq to BaseObject
- Check if fixed address is found before delete
0.1.4 (2015-12-08)
- Field updates for Member object
- Log all api calls in connector on debug level
0.1.3 (2015-12-04)
- Add 'network' field to ip versioned fields
- Skip adding DHCP options for IPv6 network
- Do not search IPRange before creating
0.1.2 (2015-12-02)
- Do not fail if object is not found on delete
- Raise exception with details if reply is not json
- Add 'silent_ssl_warnings' option to connector
0.1.1 (2015-12-01)
- Fix unbind_name_from_record_a
0.1.0 (2015-12-01)
- Add new field type '_updateable_search_field' to objects and fix HostRecord search
- Fix 'make docs'
- Update README.rst (fixed formatting)
0.0.11 (2015-11-25)
- Fix adding second ip to HostRecord
- Fix failing in pdb
- Convert EA values into boolean if possible
- Added 'ips' allias for ip field in HostRecord
0.0.10 (2015-11-19)
- Add utility to determine supported feature
- Update README.rst with objects interface
0.0.9 (2015-11-13)
- Add allowed_object_types field for EA Definition
- Allow to return default fields for object
- Update README.rst with list of supported objects
0.0.8 (2015-11-12)
- Add Extensible Attributes Definition support
- Fixed options processing for create_network in object_manager
- Fixed missed DNSZone object in create_dns_zone
0.0.7 (2015-10-27)
- Added 'network' to IPRange search fields
- Modified
get
method of the EA class to allow return default values
0.0.6 (2015-10-26)
- Added initial support of Extensible Attributes as sub objects
- Added search by Extensible Attributes
- Improved validation in connector
- Added delete_object_by_ref to object manager
0.0.5 (2015-10-12)
- Fixed issues in working with objects
- Added missed _get_object_type_from_ref
- Added code coverage
- Updated links to point to infobloxopen repository
0.0.4 (2015-09-23)
- Added object abstraction for interacting with NIOS objects
- Added object_manager to simplify some operations on objects
0.0.3 (2015-09-15)
- Added dependencies to package.
0.0.2 (2015-09-11)
- Fixed using dashes in package directory names that prevented package import after install.
0.0.1 (2015-09-11)
- Added connector to send wapi requests to NIOS, does not includes NIOS object model at this point.
- First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file infoblox-client-0.6.1.tar.gz
.
File metadata
- Download URL: infoblox-client-0.6.1.tar.gz
- Upload date:
- Size: 222.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd98b85ecb44114ab71515d0abac4541a67f12e3a48c278d0f1832cae5c549a8 |
|
MD5 | 79d8c395f6d622e69f648695a5b5a842 |
|
BLAKE2b-256 | 8122463dab58fe5cff978225a11a5534f825dcc842b599858d64dc1b1cd071ca |