File tree Expand file tree Collapse file tree 3 files changed +47
-0
lines changed Expand file tree Collapse file tree 3 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 256
256
},
257
257
"admin_password" : {
258
258
"type" : " string"
259
+ },
260
+ "interfaces" : {
261
+ "type" : " object" ,
262
+ "properties" : {
263
+ "include_pattern" : {
264
+ "type" : " string" ,
265
+ "description" : " A regular expression that must match for a system interface\n to be included in the AD DC interfaces list.\n "
266
+ },
267
+ "exclude_pattern" : {
268
+ "type" : " string" ,
269
+ "description" : " A regular expression that must not match for a system interface\n to be included in the AD DC interfaces list.\n "
270
+ }
271
+ }
259
272
}
260
273
},
261
274
"required" : [
Original file line number Diff line number Diff line change @@ -249,6 +249,19 @@ properties:
249
249
type : string
250
250
admin_password :
251
251
type : string
252
+ interfaces :
253
+ type : object
254
+ properties :
255
+ include_pattern :
256
+ type : string
257
+ description : |
258
+ A regular expression that must match for a system interface
259
+ to be included in the AD DC interfaces list.
260
+ exclude_pattern :
261
+ type : string
262
+ description : |
263
+ A regular expression that must not match for a system interface
264
+ to be included in the AD DC interfaces list.
252
265
required :
253
266
- realm
254
267
additionalProperties : false
Original file line number Diff line number Diff line change 274
274
"realm" : {"type" : "string" },
275
275
"short_domain" : {"type" : "string" },
276
276
"admin_password" : {"type" : "string" },
277
+ "interfaces" : {
278
+ "type" : "object" ,
279
+ "properties" : {
280
+ "include_pattern" : {
281
+ "type" : "string" ,
282
+ "description" : (
283
+ "A regular expression that must match for"
284
+ " a system interface\n to be included in"
285
+ " the AD DC interfaces list.\n "
286
+ ),
287
+ },
288
+ "exclude_pattern" : {
289
+ "type" : "string" ,
290
+ "description" : (
291
+ "A regular expression that must not match"
292
+ " for a system interface\n to be included"
293
+ " in the AD DC interfaces list.\n "
294
+ ),
295
+ },
296
+ },
297
+ },
277
298
},
278
299
"required" : ["realm" ],
279
300
"additionalProperties" : False ,
You can’t perform that action at this time.
0 commit comments