You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Followup to #3985, closes#4005.
- Add `is_default` to IP pool response
- Inline `ip_pools_fetch` into the one callsite and delete it (per
discussion
#3985 (comment))
- Other small test tweaks suggested by @luqmana
Copy file name to clipboardExpand all lines: openapi/nexus.json
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10133,6 +10133,9 @@
10133
10133
"type": "string",
10134
10134
"format": "uuid"
10135
10135
},
10136
+
"is_default": {
10137
+
"type": "boolean"
10138
+
},
10136
10139
"name": {
10137
10140
"description": "unique, mutable, user-controlled identifier for each resource",
10138
10141
"allOf": [
@@ -10160,6 +10163,7 @@
10160
10163
"required": [
10161
10164
"description",
10162
10165
"id",
10166
+
"is_default",
10163
10167
"name",
10164
10168
"time_created",
10165
10169
"time_modified"
@@ -10173,7 +10177,7 @@
10173
10177
"type": "string"
10174
10178
},
10175
10179
"is_default": {
10176
-
"description": "Whether the IP pool is considered a default pool for its scope (fleet, or silo). If a pool is marked default and is associated with a silo, instances created in that silo will draw IPs from that pool unless another pool is specified at instance create time.",
10180
+
"description": "Whether the IP pool is considered a default pool for its scope (fleet or silo). If a pool is marked default and is associated with a silo, instances created in that silo will draw IPs from that pool unless another pool is specified at instance create time.",
0 commit comments