Skip to content
Open
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
18 changes: 18 additions & 0 deletions api/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3021,6 +3021,8 @@ components:
srvPort: 0
uid: uid
hostname: hostname
httpsParams: httpsParams
httpsPriority: 0
mxPreference: 0
data: data
fqdn: fqdn
Expand All @@ -3034,6 +3036,11 @@ components:
type: string
hostname:
type: string
httpsParams:
type: string
httpsPriority:
minimum: 0
type: integer
mxPreference:
minimum: 0
type: integer
Expand Down Expand Up @@ -3063,6 +3070,8 @@ components:
- srvPort: 0
uid: uid
hostname: hostname
httpsParams: httpsParams
httpsPriority: 0
mxPreference: 0
data: data
fqdn: fqdn
Expand All @@ -3072,6 +3081,8 @@ components:
- srvPort: 0
uid: uid
hostname: hostname
httpsParams: httpsParams
httpsPriority: 0
mxPreference: 0
data: data
fqdn: fqdn
Expand All @@ -3090,6 +3101,8 @@ components:
DnsAPIRecordsPutInput:
example:
srvPort: 0
httpsParams: httpsParams
httpsPriority: 0
mxPreference: 0
data: data
srvPriority: 0
Expand All @@ -3098,6 +3111,11 @@ components:
properties:
data:
type: string
httpsParams:
type: string
httpsPriority:
minimum: 0
type: integer
mxPreference:
minimum: 0
type: integer
Expand Down
52 changes: 52 additions & 0 deletions api/docs/DnsAPIRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Name | Type | Description | Notes
**Data** | **string** | |
**Fqdn** | **string** | |
**Hostname** | **string** | |
**HttpsParams** | Pointer to **string** | | [optional]
**HttpsPriority** | Pointer to **int32** | | [optional]
**MxPreference** | Pointer to **int32** | | [optional]
**SrvPort** | Pointer to **int32** | | [optional]
**SrvPriority** | Pointer to **int32** | | [optional]
Expand Down Expand Up @@ -93,6 +95,56 @@ and a boolean to check if the value has been set.
SetHostname sets Hostname field to given value.


### GetHttpsParams

`func (o *DnsAPIRecord) GetHttpsParams() string`

GetHttpsParams returns the HttpsParams field if non-nil, zero value otherwise.

### GetHttpsParamsOk

`func (o *DnsAPIRecord) GetHttpsParamsOk() (*string, bool)`

GetHttpsParamsOk returns a tuple with the HttpsParams field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetHttpsParams

`func (o *DnsAPIRecord) SetHttpsParams(v string)`

SetHttpsParams sets HttpsParams field to given value.

### HasHttpsParams

`func (o *DnsAPIRecord) HasHttpsParams() bool`

HasHttpsParams returns a boolean if a field has been set.

### GetHttpsPriority

`func (o *DnsAPIRecord) GetHttpsPriority() int32`

GetHttpsPriority returns the HttpsPriority field if non-nil, zero value otherwise.

### GetHttpsPriorityOk

`func (o *DnsAPIRecord) GetHttpsPriorityOk() (*int32, bool)`

GetHttpsPriorityOk returns a tuple with the HttpsPriority field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetHttpsPriority

`func (o *DnsAPIRecord) SetHttpsPriority(v int32)`

SetHttpsPriority sets HttpsPriority field to given value.

### HasHttpsPriority

`func (o *DnsAPIRecord) HasHttpsPriority() bool`

HasHttpsPriority returns a boolean if a field has been set.

### GetMxPreference

`func (o *DnsAPIRecord) GetMxPreference() int32`
Expand Down
52 changes: 52 additions & 0 deletions api/docs/DnsAPIRecordsPutInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | **string** | |
**HttpsParams** | Pointer to **string** | | [optional]
**HttpsPriority** | Pointer to **int32** | | [optional]
**MxPreference** | Pointer to **int32** | | [optional]
**SrvPort** | Pointer to **int32** | | [optional]
**SrvPriority** | Pointer to **int32** | | [optional]
Expand Down Expand Up @@ -50,6 +52,56 @@ and a boolean to check if the value has been set.
SetData sets Data field to given value.


### GetHttpsParams

`func (o *DnsAPIRecordsPutInput) GetHttpsParams() string`

GetHttpsParams returns the HttpsParams field if non-nil, zero value otherwise.

### GetHttpsParamsOk

`func (o *DnsAPIRecordsPutInput) GetHttpsParamsOk() (*string, bool)`

GetHttpsParamsOk returns a tuple with the HttpsParams field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetHttpsParams

`func (o *DnsAPIRecordsPutInput) SetHttpsParams(v string)`

SetHttpsParams sets HttpsParams field to given value.

### HasHttpsParams

`func (o *DnsAPIRecordsPutInput) HasHttpsParams() bool`

HasHttpsParams returns a boolean if a field has been set.

### GetHttpsPriority

`func (o *DnsAPIRecordsPutInput) GetHttpsPriority() int32`

GetHttpsPriority returns the HttpsPriority field if non-nil, zero value otherwise.

### GetHttpsPriorityOk

`func (o *DnsAPIRecordsPutInput) GetHttpsPriorityOk() (*int32, bool)`

GetHttpsPriorityOk returns a tuple with the HttpsPriority field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetHttpsPriority

`func (o *DnsAPIRecordsPutInput) SetHttpsPriority(v int32)`

SetHttpsPriority sets HttpsPriority field to given value.

### HasHttpsPriority

`func (o *DnsAPIRecordsPutInput) HasHttpsPriority() bool`

HasHttpsPriority returns a boolean if a field has been set.

### GetMxPreference

`func (o *DnsAPIRecordsPutInput) GetMxPreference() int32`
Expand Down
90 changes: 81 additions & 9 deletions api/model_dns_api_record.go

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

Loading
Loading