Neutron v2: AddGatewayNetwork, RemoveGatewayNetwork and GetAdvertised…#2406
Merged
mandre merged 1 commit intogophercloud:masterfrom May 26, 2022
Merged
Neutron v2: AddGatewayNetwork, RemoveGatewayNetwork and GetAdvertised…#2406mandre merged 1 commit intogophercloud:masterfrom
mandre merged 1 commit intogophercloud:masterfrom
Conversation
Contributor
Author
|
This is the last PR for |
mandre
reviewed
May 24, 2022
| Example: | ||
|
|
||
|
|
||
| opts := speakers.AddGatewayNetworkOpts{NetworkID: networkID} |
Contributor
There was a problem hiding this comment.
Nit: it looks like you have a mix of tabs and spaces.
Suggested change
| opts := speakers.AddGatewayNetworkOpts{NetworkID: networkID} | |
| opts := speakers.AddGatewayNetworkOpts{NetworkID: networkID} |
|
|
||
| Example: | ||
|
|
||
| opts := speakers.RemoveGatewayNetworkOpts{NetworkID: networkID} |
Contributor
There was a problem hiding this comment.
ditto
Suggested change
| opts := speakers.RemoveGatewayNetworkOpts{NetworkID: networkID} | |
| opts := speakers.RemoveGatewayNetworkOpts{NetworkID: networkID} |
| return | ||
| } | ||
|
|
||
| // GetAdvertisedRoutes a.k.a. GET /v2.0/bgp-speakers/{bgp-speaker-id}/bgp-dragents |
Contributor
There was a problem hiding this comment.
Suggested change
| // GetAdvertisedRoutes a.k.a. GET /v2.0/bgp-speakers/{bgp-speaker-id}/bgp-dragents | |
| // GetAdvertisedRoutes a.k.a. GET /bgp-speakers/{id}/get_advertised_routes |
| } | ||
|
|
||
| // AddGatewayNetwork a.k.a. PUT /v2.0/bgp-speakers/{bgp-speaker-id}/add_gateway_network | ||
| func AddGatewayNetwork(c *gophercloud.ServiceClient, bgpSpeakerID string, opts AddGatewayNetworkOpts) (r AddGatewayNetworkResult) { |
Contributor
There was a problem hiding this comment.
Same comment as in #2400, we should make use of the AddGatewayNetworkOptsBuilder interface.
| } | ||
|
|
||
| // RemoveGatewayNetwork a.k.a. PUT /v2.0/bgp-speakers/{bgp-speaker-id}/remove_gateway_network | ||
| func RemoveGatewayNetwork(c *gophercloud.ServiceClient, bgpSpeakerID string, opts RemoveGatewayNetworkOpts) (r RemoveGatewayNetworkResult) { |
Contributor
There was a problem hiding this comment.
Same for the RemoveGatewayNetworkOptsBuilder interface.
Contributor
Author
|
Thanks @mandre, I fixed the problems you pointed. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Neutron V2: BGP Dynamic Routing
For #2208