Skip to content

Commit

Permalink
feat: Add patch to remove primary IP
Browse files Browse the repository at this point in the history
  • Loading branch information
smutel committed Sep 14, 2022
1 parent 08f5671 commit e02f45b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions patchs/swagger-v3.2.9-primary-ip.patch
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",

0 comments on commit e02f45b

Please sign in to comment.