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
Copy file name to clipboardExpand all lines: ocaml/idl/datamodel.ml
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4674,14 +4674,26 @@ let pif_db_forget = call
4674
4674
~allowed_roles:_R_POOL_OP
4675
4675
()
4676
4676
4677
+
let pif_set_property = call
4678
+
~name:"set_property"
4679
+
~doc:"Set the value of a property of the PIF"
4680
+
~params:[
4681
+
Ref _pif, "self", "The PIF";
4682
+
String, "name", "The property name";
4683
+
String, "value", "The property value";
4684
+
]
4685
+
~lifecycle:[Published, rel_augusta, ""]
4686
+
~allowed_roles:_R_POOL_OP
4687
+
()
4688
+
4677
4689
let pif =
4678
4690
create_obj ~in_db:true~in_product_since:rel_rio ~in_oss_since:oss_since_303 ~internal_deprecated_since:None~persist:PersistEverything~gen_constructor_destructor:false~name:_pif ~descr:"A physical network interface (note separate VLANs are represented as several PIFs)"
0 commit comments