Skip to content

Commit

Permalink
Add dependencyPaths attribute to NcObjectPropertiesHolder
Browse files Browse the repository at this point in the history
  • Loading branch information
cristian-recoseanu committed Jan 29, 2025
1 parent e6faaf7 commit dacbc8c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions device-configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ interface NcPropertyValueHolder {
```typescript
interface NcObjectPropertiesHolder {
attribute NcRolePath path; // Object role path
attribute sequence<NcRolePath> dependencyPaths; // Sequence of role paths which are a dependency for this object (helpful to inform clients which objects need to be restored together)
attribute sequence<NcPropertyValueHolder> values; // Object properties values
attribute NcBoolean isRebuildable; // Describes if the object is rebuildable
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
"isSequence": false,
"constraints": null
},
{
"description": "Sequence of role paths which are a dependency for this object (helpful to inform clients which objects need to be restored together)",
"name": "dependencyPaths",
"typeName": "NcRolePath",
"isNullable": false,
"isSequence": true,
"constraints": null
},
{
"description": "Object properties values",
"name": "values",
Expand Down

0 comments on commit dacbc8c

Please sign in to comment.