-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove '/os-tenant-networks' REST API
Like '/os-networks', we can't remove this in its entirety due to the fact that some of these are proxy URLs that also work with neutron. These are retained but everything else is nuked. Note that this highlights a bug in the API, whereby a missing 'objects.Network.cidr' value results in a value of 'None' being output over the API. Clearly this is incorrect, but it's probably not worth fixing for this deprecated API. Change-Id: I31cb0891144bdd7945479bb6692b0a533de4c5d0 Signed-off-by: Stephen Finucane <[email protected]>
- Loading branch information
1 parent
991d675
commit e5e477c
Showing
13 changed files
with
30 additions
and
453 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
{ | ||
"networks": [ | ||
{ | ||
"cidr": "10.0.0.0/29", | ||
"id": "616fb98f-46ca-475e-917e-2563e5a8cd19", | ||
"label": "test_0" | ||
}, | ||
{ | ||
"cidr": "10.0.0.8/29", | ||
"id": "616fb98f-46ca-475e-917e-2563e5a8cd20", | ||
"label": "test_1" | ||
"cidr": "None", | ||
"id": "3cb9bc59-5699-4588-a4b1-b87f96708bc6", | ||
"label": "private" | ||
} | ||
] | ||
} |
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 was deleted.
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
11 changes: 3 additions & 8 deletions
11
...sts/functional/api_sample_tests/api_samples/os-tenant-networks/networks-list-res.json.tpl
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,14 +1,9 @@ | ||
{ | ||
"networks": [ | ||
{ | ||
"cidr": "10.0.0.0/29", | ||
"id": "%(id)s", | ||
"label": "test_0" | ||
}, | ||
{ | ||
"cidr": "10.0.0.8/29", | ||
"id": "%(id)s", | ||
"label": "test_1" | ||
"cidr": "None", | ||
"id": "%(uuid)s", | ||
"label": "private" | ||
} | ||
] | ||
} |
9 changes: 0 additions & 9 deletions
9
...sts/functional/api_sample_tests/api_samples/os-tenant-networks/networks-post-req.json.tpl
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...sts/functional/api_sample_tests/api_samples/os-tenant-networks/networks-post-res.json.tpl
This file was deleted.
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
Oops, something went wrong.