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

fix: fqdn should be optional in ConfigForwarder #21

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions dns_config/docs/ConfigForwarder.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Address** | **string** | Server IP address. |
**Fqdn** | **string** | Server FQDN. |
**Fqdn** | Pointer to **string** | Server FQDN. | [optional]
**ProtocolFqdn** | Pointer to **string** | Server FQDN in punycode. | [optional] [readonly]

## Methods

### NewConfigForwarder

`func NewConfigForwarder(address string, fqdn string, ) *ConfigForwarder`
`func NewConfigForwarder(address string, ) *ConfigForwarder`

NewConfigForwarder instantiates a new ConfigForwarder object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -66,6 +66,11 @@ and a boolean to check if the value has been set.

SetFqdn sets Fqdn field to given value.

### HasFqdn

`func (o *ConfigForwarder) HasFqdn() bool`

HasFqdn returns a boolean if a field has been set.

### GetProtocolFqdn

Expand Down
35 changes: 22 additions & 13 deletions dns_config/model_config_forwarder.go

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

Loading