-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add `NetworkPolicyServer` to `GatewayTypeRADIUS` object model * version and changelog * changelogs
- Loading branch information
1 parent
7183861
commit d3f0892
Showing
15 changed files
with
403 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.38.0 | ||
0.39.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
management/docs/GatewayTypeRADIUSAllOfNetworkPolicyServer.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# GatewayTypeRADIUSAllOfNetworkPolicyServer | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Ip** | **string** | The IP address of the Network Policy Server (NPS). | | ||
**Port** | **int32** | The port number of the NPS. | | ||
|
||
## Methods | ||
|
||
### NewGatewayTypeRADIUSAllOfNetworkPolicyServer | ||
|
||
`func NewGatewayTypeRADIUSAllOfNetworkPolicyServer(ip string, port int32, ) *GatewayTypeRADIUSAllOfNetworkPolicyServer` | ||
|
||
NewGatewayTypeRADIUSAllOfNetworkPolicyServer instantiates a new GatewayTypeRADIUSAllOfNetworkPolicyServer object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewGatewayTypeRADIUSAllOfNetworkPolicyServerWithDefaults | ||
|
||
`func NewGatewayTypeRADIUSAllOfNetworkPolicyServerWithDefaults() *GatewayTypeRADIUSAllOfNetworkPolicyServer` | ||
|
||
NewGatewayTypeRADIUSAllOfNetworkPolicyServerWithDefaults instantiates a new GatewayTypeRADIUSAllOfNetworkPolicyServer object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetIp | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) GetIp() string` | ||
|
||
GetIp returns the Ip field if non-nil, zero value otherwise. | ||
|
||
### GetIpOk | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) GetIpOk() (*string, bool)` | ||
|
||
GetIpOk returns a tuple with the Ip field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetIp | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) SetIp(v string)` | ||
|
||
SetIp sets Ip field to given value. | ||
|
||
|
||
### GetPort | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) GetPort() int32` | ||
|
||
GetPort returns the Port field if non-nil, zero value otherwise. | ||
|
||
### GetPortOk | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) GetPortOk() (*int32, bool)` | ||
|
||
GetPortOk returns a tuple with the Port field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetPort | ||
|
||
`func (o *GatewayTypeRADIUSAllOfNetworkPolicyServer) SetPort(v int32)` | ||
|
||
SetPort sets Port field to given value. | ||
|
||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.