Skip to content

Commit

Permalink
added default value to ddns_use_conflict_resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
unasra committed Sep 10, 2024
1 parent b1af645 commit b97bf51
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 22 deletions.
1 change: 1 addition & 0 deletions ipam/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13125,6 +13125,7 @@ components:
format: boolean
type: boolean
ddns_use_conflict_resolution:
default: true
description: |-
When true, DHCP server will apply conflict resolution, as described in RFC 4703, when attempting to fulfill the update request.

Expand Down
42 changes: 21 additions & 21 deletions ipam/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ipam/docs/IPSpace.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Name | Type | Description | Notes
**DdnsSendUpdates** | Pointer to **bool** | Determines if DDNS updates are enabled at the IP space level. Defaults to _true_. | [optional] [default to true]
**DdnsTtlPercent** | Pointer to **float32** | DDNS TTL value - to be calculated as a simple percentage of the lease's lifetime, using the parameter's value as the percentage. It is specified as a percentage (e.g. 25, 75). Defaults to unspecified. | [optional]
**DdnsUpdateOnRenew** | Pointer to **bool** | Instructs the DHCP server to always update the DNS information when a lease is renewed even if its DNS information has not changed. Defaults to _false_. | [optional] [default to false]
**DdnsUseConflictResolution** | Pointer to **bool** | When true, DHCP server will apply conflict resolution, as described in RFC 4703, when attempting to fulfill the update request. When false, DHCP server will simply attempt to update the DNS entries per the request, regardless of whether or not they conflict with existing entries owned by other DHCP4 clients. Defaults to _true_. | [optional]
**DdnsUseConflictResolution** | Pointer to **bool** | When true, DHCP server will apply conflict resolution, as described in RFC 4703, when attempting to fulfill the update request. When false, DHCP server will simply attempt to update the DNS entries per the request, regardless of whether or not they conflict with existing entries owned by other DHCP4 clients. Defaults to _true_. | [optional] [default to true]
**DefaultRealms** | Pointer to **[]string** | Reserved for future use. | [optional]
**DhcpConfig** | Pointer to [**DHCPConfig**](DHCPConfig.md) | The shared DHCP configuration for the IP space that controls how leases are issued. | [optional]
**DhcpOptions** | Pointer to [**[]OptionItem**](OptionItem.md) | The list of IPv4 DHCP options for IP space. May be either a specific option or a group of options. | [optional]
Expand Down
4 changes: 4 additions & 0 deletions ipam/model_ip_space.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b97bf51

Please sign in to comment.