-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add patch to remove primary IP
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- swagger-v3.2.9.json.ori 2022-09-09 16:49:09.744102195 +0200 | ||
+++ swagger-v3.2.9.json 2022-09-09 16:50:06.216890544 +0200 | ||
@@ -15398,12 +15398,14 @@ | ||
"primary_ip4" : { | ||
"title" : "Primary IPv4", | ||
"type" : "integer", | ||
- "x-nullable" : true | ||
+ "x-nullable" : true, | ||
+ "x-omitempty" : false | ||
}, | ||
"primary_ip6" : { | ||
"title" : "Primary IPv6", | ||
"type" : "integer", | ||
- "x-nullable" : true | ||
+ "x-nullable" : true, | ||
+ "x-omitempty" : false | ||
}, | ||
"rack" : { | ||
"title" : "Rack", | ||
@@ -20590,12 +20592,14 @@ | ||
"primary_ip4" : { | ||
"title" : "Primary IPv4", | ||
"type" : "integer", | ||
- "x-nullable" : true | ||
+ "x-nullable" : true, | ||
+ "x-omitempty" : false | ||
}, | ||
"primary_ip6" : { | ||
"title" : "Primary IPv6", | ||
"type" : "integer", | ||
- "x-nullable" : true | ||
+ "x-nullable" : true, | ||
+ "x-omitempty" : false | ||
}, | ||
"role" : { | ||
"title" : "Role", |