Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contains address #373

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions infoblox_client/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -7693,6 +7693,10 @@ class NetworkV4(Network):
comment: Comment for the network, maximum 256 characters.
conflict_count: The number of conflicts discovered via network
discovery.
contains_address: When specified in searches, the returned network
is the smallest network that contains this IPv4 Address. If
specified, all other search attributes are ignored, except
for network_view.
ddns_domainname: The dynamic DNS domain name the appliance uses
specifically for DDNS updates for this network.
ddns_generate_hostname: If this field is set to True, the DHCP
Expand Down Expand Up @@ -7956,7 +7960,7 @@ class NetworkV4(Network):
_infoblox_type = 'network'
_fields = ['authority', 'auto_create_reversezone', 'bootfile',
'bootserver', 'cloud_info', 'comment', 'conflict_count',
'ddns_domainname', 'ddns_generate_hostname',
'contains_address', 'ddns_domainname', 'ddns_generate_hostname',
'ddns_server_always_updates', 'ddns_ttl',
'ddns_update_fixed_addresses', 'ddns_use_option81',
'delete_reason', 'deny_bootp', 'dhcp_utilization',
Expand Down Expand Up @@ -8008,10 +8012,10 @@ class NetworkV4(Network):
_updateable_search_fields = ['comment', 'discovered_bridge_domain',
'discovered_tenant', 'ipv4addr', 'network',
'rir_organization', 'unmanaged']
_all_searchable_fields = ['comment', 'discovered_bgp_as',
'discovered_bridge_domain', 'discovered_tenant',
'discovered_vlan_id', 'discovered_vlan_name',
'discovered_vrf_description',
_all_searchable_fields = ['comment', 'contains_address',
'discovered_bgp_as', 'discovered_bridge_domain',
'discovered_tenant', 'discovered_vlan_id',
'discovered_vlan_name', 'discovered_vrf_description',
'discovered_vrf_name', 'discovered_vrf_rd',
'discovery_engine_type', 'ipv4addr', 'network',
'network_container', 'network_view', 'rir',
Expand Down