@itentialopensource/adapter-nokia_nsp_network_management 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.js +18 -0
  3. package/.jshintrc +3 -0
  4. package/AUTH.md +38 -0
  5. package/BROKER.md +211 -0
  6. package/CALLS.md +206 -0
  7. package/CHANGELOG.md +9 -0
  8. package/CODE_OF_CONDUCT.md +43 -0
  9. package/CONTRIBUTING.md +13 -0
  10. package/ENHANCE.md +69 -0
  11. package/LICENSE +201 -0
  12. package/PROPERTIES.md +646 -0
  13. package/README.md +343 -0
  14. package/SUMMARY.md +9 -0
  15. package/SYSTEMINFO.md +22 -0
  16. package/TAB1.md +14 -0
  17. package/TAB2.md +321 -0
  18. package/TROUBLESHOOT.md +47 -0
  19. package/adapter.js +11110 -0
  20. package/adapterBase.js +1452 -0
  21. package/entities/.generic/action.json +214 -0
  22. package/entities/.generic/schema.json +28 -0
  23. package/entities/.system/action.json +52 -0
  24. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  25. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  26. package/entities/.system/schema.json +19 -0
  27. package/entities/.system/schemaTokenReq.json +53 -0
  28. package/entities/.system/schemaTokenResp.json +31 -0
  29. package/entities/AddressPool/action.json +65 -0
  30. package/entities/AddressPool/mockdatafiles/getIPv4AddressPool-default.json +47 -0
  31. package/entities/AddressPool/mockdatafiles/obtainValueFromPool-default.json +23 -0
  32. package/entities/AddressPool/schema.json +32 -0
  33. package/entities/AuditAndAlignment/action.json +165 -0
  34. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationDeployment-default.json +6 -0
  35. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateAllDeployments-default.json +7 -0
  36. package/entities/AuditAndAlignment/mockdatafiles/alignConfigurationTemplateMisalignedDeployments-default.json +7 -0
  37. package/entities/AuditAndAlignment/mockdatafiles/auditDeployment-default.json +7 -0
  38. package/entities/AuditAndAlignment/mockdatafiles/auditNodeDeployments-default.json +6 -0
  39. package/entities/AuditAndAlignment/mockdatafiles/auditTemplate-default.json +7 -0
  40. package/entities/AuditAndAlignment/mockdatafiles/checkAuditStatusCount-default.json +15 -0
  41. package/entities/AuditAndAlignment/mockdatafiles/getAuditDetails-default.json +9 -0
  42. package/entities/AuditAndAlignment/schema.json +26 -0
  43. package/entities/BaselineOperationsRestconfAPI/action.json +207 -0
  44. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/createBaselineDetector-default.json +35 -0
  45. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getAllBaselines-default.json +44 -0
  46. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaseline-default.json +24 -0
  47. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/getBaselineDetector-default.json +15 -0
  48. package/entities/BaselineOperationsRestconfAPI/mockdatafiles/patchBaselineDetector-default.json +13 -0
  49. package/entities/BaselineOperationsRestconfAPI/schema.json +39 -0
  50. package/entities/Brownfield/action.json +24 -0
  51. package/entities/Brownfield/mockdatafiles/discoverDeployments-default.json +7 -0
  52. package/entities/Brownfield/schema.json +19 -0
  53. package/entities/ConfigurationDeployments/action.json +207 -0
  54. package/entities/ConfigurationDeployments/mockdatafiles/createDeployment-default.json +7 -0
  55. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroup-default.json +18 -0
  56. package/entities/ConfigurationDeployments/mockdatafiles/createPortGroupDirectory-default.json +16 -0
  57. package/entities/ConfigurationDeployments/mockdatafiles/deleteDeployments-default.json +7 -0
  58. package/entities/ConfigurationDeployments/mockdatafiles/getDeployments-default.json +322 -0
  59. package/entities/ConfigurationDeployments/mockdatafiles/getPortGroupFDN-default.json +18 -0
  60. package/entities/ConfigurationDeployments/mockdatafiles/getSpecificDeployment-default.json +43 -0
  61. package/entities/ConfigurationDeployments/mockdatafiles/replaceDeployment-default.json +7 -0
  62. package/entities/ConfigurationDeployments/mockdatafiles/updateDeploymentConfiguration-default.json +7 -0
  63. package/entities/ConfigurationDeployments/schema.json +28 -0
  64. package/entities/ConfigurationTemplates/action.json +85 -0
  65. package/entities/ConfigurationTemplates/mockdatafiles/createTemplate-default.json +4 -0
  66. package/entities/ConfigurationTemplates/mockdatafiles/getTemplates-default.json +195 -0
  67. package/entities/ConfigurationTemplates/schema.json +22 -0
  68. package/entities/DataTablesRetention/action.json +86 -0
  69. package/entities/DataTablesRetention/mockdatafiles/getBaselineAgeoutPolicySettings-default.json +22 -0
  70. package/entities/DataTablesRetention/mockdatafiles/getIndicatorAgeoutPolicySettings-default.json +16 -0
  71. package/entities/DataTablesRetention/schema.json +22 -0
  72. package/entities/IETFL2Model/action.json +67 -0
  73. package/entities/IETFL2Model/mockdatafiles/getL2TopologyAttributes-default.json +5 -0
  74. package/entities/IETFL2Model/mockdatafiles/getL2TopologyNodeTerminationPoints-default.json +69 -0
  75. package/entities/IETFL2Model/schema.json +21 -0
  76. package/entities/IETFL3Model/action.json +277 -0
  77. package/entities/IETFL3Model/mockdatafiles/getAllNodesInANetwork-default.json +207 -0
  78. package/entities/IETFL3Model/mockdatafiles/getL3TopologyAttribute-default.json +8 -0
  79. package/entities/IETFL3Model/mockdatafiles/getNetworkType-default.json +7 -0
  80. package/entities/IETFL3Model/mockdatafiles/getSpecificLinkInANetwork-default.json +67 -0
  81. package/entities/IETFL3Model/mockdatafiles/getSpecificNetwork-default.json +498 -0
  82. package/entities/IETFL3Model/mockdatafiles/getSpecificNodeInANetwork-default.json +56 -0
  83. package/entities/IETFL3Model/mockdatafiles/getSpecificTerminationPointsOfANode-default.json +17 -0
  84. package/entities/IETFL3Model/mockdatafiles/getSupportingLink-default.json +8 -0
  85. package/entities/IETFL3Model/mockdatafiles/getSupportingNetwork-default.json +7 -0
  86. package/entities/IETFL3Model/mockdatafiles/getSupportingTerminationPoint-default.json +9 -0
  87. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyLinkAttributes-default.json +41 -0
  88. package/entities/IETFL3Model/mockdatafiles/l3GETSRTopologyNodeAttributes-default.json +16 -0
  89. package/entities/IETFL3Model/schema.json +42 -0
  90. package/entities/IETFLogicalInventoryRestconfAPI/action.json +235 -0
  91. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesConfig-default.json +14 -0
  92. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumbered-default.json +28 -0
  93. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkInterfacesUnnumberedIntf-default.json +21 -0
  94. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesConfig-default.json +16 -0
  95. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv4Addresses-default.json +39 -0
  96. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesIPv6Addresses-default.json +38 -0
  97. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveNetworkSubInterfacesState-default.json +15 -0
  98. package/entities/IETFLogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNodeVersionEntity-default.json +797 -0
  99. package/entities/IETFLogicalInventoryRestconfAPI/schema.json +51 -0
  100. package/entities/IETFSAPTopology/action.json +67 -0
  101. package/entities/IETFSAPTopology/mockdatafiles/getIETFNetworkFromSpecificNode-default.json +483 -0
  102. package/entities/IETFSAPTopology/mockdatafiles/getSAPNetwork-default.json +9 -0
  103. package/entities/IETFSAPTopology/mockdatafiles/getSAPsOnASpecificNodeOfSpecificServiceType-default.json +153 -0
  104. package/entities/IETFSAPTopology/schema.json +21 -0
  105. package/entities/IndicatorRules/action.json +106 -0
  106. package/entities/IndicatorRules/mockdatafiles/getAllIndicatorRules-default.json +818 -0
  107. package/entities/IndicatorRules/mockdatafiles/getSpecificIndicatorRule-default.json +119 -0
  108. package/entities/IndicatorRules/schema.json +23 -0
  109. package/entities/IndicatorTemplates/action.json +106 -0
  110. package/entities/IndicatorTemplates/mockdatafiles/avgCPUAllNodesAllActions-default.json +105 -0
  111. package/entities/IndicatorTemplates/mockdatafiles/getAllIndicatorTemplates-default.json +512 -0
  112. package/entities/IndicatorTemplates/mockdatafiles/getSpecificIndicatorTemplate-default.json +88 -0
  113. package/entities/IndicatorTemplates/mockdatafiles/uPDATEIndicatorTemplate-default.json +48 -0
  114. package/entities/IndicatorTemplates/schema.json +23 -0
  115. package/entities/Intent/action.json +105 -0
  116. package/entities/Intent/mockdatafiles/getIntent-default.json +161 -0
  117. package/entities/Intent/mockdatafiles/synchronizeIntent-default.json +6 -0
  118. package/entities/Intent/schema.json +23 -0
  119. package/entities/IntentTypeManagement/action.json +65 -0
  120. package/entities/IntentTypeManagement/mockdatafiles/getIntentTypes-default.json +482 -0
  121. package/entities/IntentTypeManagement/mockdatafiles/importIntentTypeFromIntentManager-default.json +6 -0
  122. package/entities/IntentTypeManagement/mockdatafiles/removeIntentType-default.json +7 -0
  123. package/entities/IntentTypeManagement/schema.json +21 -0
  124. package/entities/LogicalInventoryRestconfAPI/action.json +107 -0
  125. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/nspInventoryFindWithFilter-default.json +528 -0
  126. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicy-default.json +4189 -0
  127. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPolicyNEAndVersionSpecific-default.json +1083 -0
  128. package/entities/LogicalInventoryRestconfAPI/mockdatafiles/retrieveResyncPollingPolicyNESpecific-default.json +1113 -0
  129. package/entities/LogicalInventoryRestconfAPI/schema.json +34 -0
  130. package/entities/ManageZTPListFromDeviceAdministrator/action.json +85 -0
  131. package/entities/ManageZTPListFromDeviceAdministrator/mockdatafiles/getZTPListFromDeviceAdministrator-default.json +114 -0
  132. package/entities/ManageZTPListFromDeviceAdministrator/schema.json +33 -0
  133. package/entities/RouterNECorrelationMappingService/action.json +147 -0
  134. package/entities/RouterNECorrelationMappingService/mockdatafiles/getCorrelationPolicy-default.json +38 -0
  135. package/entities/RouterNECorrelationMappingService/mockdatafiles/getRouterNeMapping-default.json +32 -0
  136. package/entities/RouterNECorrelationMappingService/mockdatafiles/getSpecificMappingPolicy-default.json +32 -0
  137. package/entities/RouterNECorrelationMappingService/schema.json +47 -0
  138. package/entities/TemplateMigration/action.json +44 -0
  139. package/entities/TemplateMigration/mockdatafiles/cloneTemplate-default.json +7 -0
  140. package/entities/TemplateMigration/mockdatafiles/migrateDeployments-default.json +7 -0
  141. package/entities/TemplateMigration/schema.json +20 -0
  142. package/entities/UploadMappingFiles/action.json +45 -0
  143. package/entities/UploadMappingFiles/mockdatafiles/getIETFMappingFiles-default.json +953 -0
  144. package/entities/UploadMappingFiles/schema.json +31 -0
  145. package/error.json +190 -0
  146. package/metadata.json +61 -0
  147. package/package.json +81 -0
  148. package/pronghorn.json +5141 -0
  149. package/propertiesDecorators.json +14 -0
  150. package/propertiesSchema.json +1666 -0
  151. package/refs?service=git-upload-pack +0 -0
  152. package/report/creationReport.json +657 -0
  153. package/report/update-postman.json-OpenApi3Json.json +112049 -0
  154. package/report/updateReport1718639512342.json +120 -0
  155. package/sampleProperties.json +268 -0
  156. package/test/integration/adapterTestBasicGet.js +83 -0
  157. package/test/integration/adapterTestConnectivity.js +142 -0
  158. package/test/integration/adapterTestIntegration.js +3836 -0
  159. package/test/unit/adapterBaseTestUnit.js +1024 -0
  160. package/test/unit/adapterTestUnit.js +5403 -0
  161. package/utils/adapterInfo.js +206 -0
  162. package/utils/addAuth.js +94 -0
  163. package/utils/artifactize.js +146 -0
  164. package/utils/basicGet.js +50 -0
  165. package/utils/checkMigrate.js +63 -0
  166. package/utils/entitiesToDB.js +179 -0
  167. package/utils/findPath.js +74 -0
  168. package/utils/methodDocumentor.js +273 -0
  169. package/utils/modify.js +152 -0
  170. package/utils/packModificationScript.js +35 -0
  171. package/utils/patches2bundledDeps.js +90 -0
  172. package/utils/pre-commit.sh +32 -0
  173. package/utils/removeHooks.js +20 -0
  174. package/utils/setup.js +33 -0
  175. package/utils/taskMover.js +309 -0
  176. package/utils/tbScript.js +239 -0
  177. package/utils/tbUtils.js +489 -0
  178. package/utils/testRunner.js +298 -0
  179. package/utils/troubleshootingAdapter.js +193 -0
@@ -0,0 +1,195 @@
1
+ {
2
+ "nsp-icm:templates": {
3
+ "@": {
4
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates",
5
+ "nsp-model:identifier": "/nsp-icm:icm/templates"
6
+ },
7
+ "template": [
8
+ {
9
+ "@": {
10
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template",
11
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Gold Port']",
12
+ "nsp-model:creation-time": "2024-04-23T16:58:01.681Z",
13
+ "nsp-model:last-modified-time": "2024-04-23T16:58:01.724Z"
14
+ },
15
+ "name": "Gold Port",
16
+ "description": "Configure an access port with Gold profile",
17
+ "life-cycle-state": "released",
18
+ "intent-type": "icm-equipment-port-ethernet",
19
+ "intent-type-version": 2,
20
+ "schema-form-name": "gold.schemaForm",
21
+ "schema-form-content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"default\":\"Gold/Fixed schema-form\",\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":true,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"default\":\"qinq\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"default\":\"1500\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":true,\"validations\":{\"ranges\":[{\"max\":9800,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"default\":\"access\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":true,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]}]}",
22
+ "config-form-state": "up-to-date",
23
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\",\"description\":\"Gold/Fixed schema-form\",\"ethernet\":{\"encap-type\":\"qinq\",\"mtu\":\"1500\",\"mode\":\"access\"}}}",
24
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"encap-type\":null,\"mtu\":null,\"mode\":null}}}",
25
+ "role": "physical",
26
+ "category": "port",
27
+ "device-scope": "mdm-and-classic",
28
+ "flexible": false,
29
+ "props": "{\"required-object\":\"{}\",\"role\":\"physical\",\"target-xpath\":\"/nsp-equipment:network/network-element/hardware-component/port[boolean(port-details[port-type!='connector-port'])][not(contains('name','/u'))][boolean (parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/shelf'][not(contains('component-id','shelf=1-6-'))]) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/port']) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/card'][not(containsIgnoreCase('name','Processor'))])]\",\"description\":\"Intent-type to configure physical, breakout, xiom and satellite ports\",\"category\":\"port\",\"device-scope\":\"mdm-and-classic\"}",
30
+ "t-target-identifiers": "[{\"name\":\"port-id\",\"i18n-text\":\"Port-ID\",\"value-type\":\"STRING\",\"order\":3}]",
31
+ "creation-time": "2024-04-23T16:58:01.716270Z",
32
+ "created-by": "admin",
33
+ "last-modified-time": "2024-04-23T16:58:01.716270Z",
34
+ "target-identifiers": [
35
+ {
36
+ "@": {
37
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
38
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Gold Port']/target-identifiers[name='port-id']",
39
+ "nsp-model:creation-time": "2024-04-23T16:58:01.681Z",
40
+ "nsp-model:last-modified-time": "2024-04-23T16:58:01.681Z"
41
+ },
42
+ "name": "port-id",
43
+ "display-name": "Port-ID",
44
+ "order": 3
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "@": {
50
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template",
51
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure Port']",
52
+ "nsp-model:creation-time": "2024-04-23T16:58:11.849Z",
53
+ "nsp-model:last-modified-time": "2024-04-23T16:58:11.883Z"
54
+ },
55
+ "name": "Configure Port",
56
+ "description": "Configure an access port",
57
+ "life-cycle-state": "released",
58
+ "intent-type": "icm-equipment-port-ethernet",
59
+ "intent-type-version": 2,
60
+ "schema-form-name": "default.schemaForm",
61
+ "schema-form-content": "{\"meta-data\":{\"moduleContainer\":\"icm-equipment-port-ethernet:icm-equipment-port-ethernet\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-equipment-port-ethernet\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port\",\"name\":\"port\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port\"},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-equipment-port-ethernet.port.admin-state\",\"name\":\"port.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.description\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.description\",\"name\":\"port.description\",\"readOnly\":false,\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet\",\"name\":\"port.ethernet\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Ethernet\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.accounting-policy\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.accounting-policy\",\"name\":\"port.ethernet.accounting-policy\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":4294967295,\"min\":0}]},\"type\":\"number\",\"title\":\"Accounting Policy\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.collect-stats\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.collect-stats\",\"name\":\"port.ethernet.collect-stats\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Collect Stats\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"newRow\":true,\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.autonegotiate\",\"name\":\"port.ethernet.autonegotiate\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Autonegotiate\",\"required\":false,\"enum\":[{\"name\":\"notApplicable\",\"value\":\"notApplicable\"},{\"name\":\"true\",\"value\":\"true\"},{\"name\":\"false\",\"value\":\"false\"},{\"name\":\"limited\",\"value\":\"limited\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.dot1q-etype\",\"name\":\"port.ethernet.dot1q-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Dot1 Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.encap-type\",\"name\":\"port.ethernet.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mtu\",\"name\":\"port.ethernet.mtu\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9800,\"min\":512}]},\"type\":\"number\",\"title\":\"MTU\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.pbb-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.pbb-etype\",\"name\":\"port.ethernet.pbb-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"PBB Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.qinq-etype\",\"name\":\"port.ethernet.qinq-etype\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(0x[0-9a-f]+)?\"]},\"type\":\"string\",\"title\":\"Q in Q Etype\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.speed\",\"name\":\"port.ethernet.speed\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":10,\"min\":10},{\"max\":100,\"min\":100},{\"max\":1000,\"min\":1000},{\"max\":10000,\"min\":10000},{\"max\":25000,\"min\":25000},{\"max\":40000,\"min\":40000},{\"max\":50000,\"min\":50000},{\"max\":100000,\"min\":100000}]},\"type\":\"number\",\"title\":\"Speed\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.mode\",\"name\":\"port.ethernet.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"network\",\"value\":\"network\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"}]},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time\",\"name\":\"port.ethernet.hold-time\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Hold Time\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.down\",\"name\":\"port.ethernet.hold-time.down\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Down\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.units\",\"name\":\"port.ethernet.hold-time.units\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Units\",\"required\":false,\"enum\":[{\"name\":\"seconds\",\"value\":\"seconds\"},{\"name\":\"centiseconds\",\"value\":\"centiseconds\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.hold-time\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.hold-time.up\",\"name\":\"port.ethernet.hold-time.up\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":3600000,\"min\":0}]},\"type\":\"number\",\"title\":\"Up\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped\",\"name\":\"port.ethernet.down-when-looped\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Down When Looped\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.admin-state\",\"name\":\"port.ethernet.down-when-looped.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.keep-alive\",\"name\":\"port.ethernet.down-when-looped.keep-alive\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":120,\"min\":1}]},\"type\":\"number\",\"title\":\"Keep Alive\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.retry-timeout\",\"name\":\"port.ethernet.down-when-looped.retry-timeout\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":0,\"min\":0},{\"max\":160,\"min\":10}]},\"type\":\"number\",\"title\":\"Retry Timeout\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.down-when-looped\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.down-when-looped.use-broadcast-address\",\"name\":\"port.ethernet.down-when-looped.use-broadcast-address\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Use Broadcast Address\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm\",\"name\":\"port.ethernet.ssm\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SSM\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.admin-state\",\"name\":\"port.ethernet.ssm.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.code-type\",\"name\":\"port.ethernet.ssm.code-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Code Type\",\"required\":false,\"enum\":[{\"name\":\"sonet\",\"value\":\"sonet\"},{\"name\":\"sdh\",\"value\":\"sdh\"}]},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.esmc-tunnel\",\"name\":\"port.ethernet.ssm.esmc-tunnel\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"ESMC Tunnel\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.ssm\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.ssm.tx-dus\",\"name\":\"port.ethernet.ssm.tx-dus\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Tx Dus\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor\",\"name\":\"port.ethernet.crc-monitor\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"CRC Monitor\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.window-size\",\"name\":\"port.ethernet.crc-monitor.window-size\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":60,\"min\":5}]},\"type\":\"number\",\"title\":\"Window Size\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade\",\"name\":\"port.ethernet.crc-monitor.signal-degrade\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Degrade\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-degrade\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-degrade.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-degrade.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet.crc-monitor\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure\",\"name\":\"port.ethernet.crc-monitor.signal-failure\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Signal Failure\"},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.threshold\",\"name\":\"port.ethernet.crc-monitor.signal-failure.threshold\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Threshold\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"port.ethernet.crc-monitor.signal-failure\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.crc-monitor.signal-failure.multiplier\",\"name\":\"port.ethernet.crc-monitor.signal-failure.multiplier\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":9,\"min\":1}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"port.ethernet\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp\",\"name\":\"port.ethernet.lldp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LLDP\"},{\"columnSpan\":6,\"propertyGroup\":\"port.ethernet.lldp\",\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac\",\"readOnly\":false,\"title\":\"Dest MAC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"port.ethernet.lldp.dest-mac\",\"key\":[\"mac-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.mac-type\",\"floatingFilter\":true,\"name\":\"mac-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"MAC Type\",\"required\":true,\"enum\":[{\"name\":\"nearest-bridge\",\"value\":\"nearest-bridge\"},{\"name\":\"nearest-non-tpmr\",\"value\":\"nearest-non-tpmr\"},{\"name\":\"nearest-customer\",\"value\":\"nearest-customer\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.notification\",\"floatingFilter\":true,\"name\":\"notification\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Notification\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.port-id-subtype\",\"floatingFilter\":true,\"name\":\"port-id-subtype\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Port Id Subtype\",\"required\":false,\"enum\":[{\"name\":\"tx-if-alias\",\"value\":\"tx-if-alias\"},{\"name\":\"tx-if-name\",\"value\":\"tx-if-name\"},{\"name\":\"tx-local\",\"value\":\"tx-local\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.receive\",\"floatingFilter\":true,\"name\":\"receive\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Receive\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.transmit\",\"floatingFilter\":true,\"name\":\"transmit\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Transmit\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tunnel-nearest-bridge\",\"floatingFilter\":true,\"name\":\"tunnel-nearest-bridge\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Tunnel Nearest Bridge\",\"when\":{\"field\":\"mac-type\",\"value\":\"nearest-bridge\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":6,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"title\":\"Tx Mgmt Address\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"tx-mgmt-address\",\"key\":[\"mgmt-address-system-type\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.admin-state\",\"floatingFilter\":true,\"name\":\"admin-state\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-mgmt-address.mgmt-address-system-type\",\"floatingFilter\":true,\"name\":\"mgmt-address-system-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Mgmt Address System Type\",\"required\":true,\"enum\":[{\"name\":\"oob\",\"value\":\"oob\"},{\"name\":\"system\",\"value\":\"system\"},{\"name\":\"system-ipv6\",\"value\":\"system-ipv6\"},{\"name\":\"oob-ipv6\",\"value\":\"oob-ipv6\"}]}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs\",\"floatingFilter\":true,\"name\":\"tx-tlvs\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Tx TLVs\"},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.port-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.port-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Port Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-cap\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-cap\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Cap\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-desc\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-desc\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Desc\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"tx-tlvs\",\"_viewConfigPath\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"hide\":true,\"componentId\":\"icm-equipment-port-ethernet.port.ethernet.lldp.dest-mac.tx-tlvs.sys-name\",\"floatingFilter\":true,\"name\":\"tx-tlvs.sys-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"boolean\",\"title\":\"Sys Name\",\"required\":false}]}]}",
62
+ "config-form-state": "up-to-date",
63
+ "default-target-data": " {\"port\":{\"admin-state\":\"enable\"}}",
64
+ "target-data-struct": "{\"port\":{\"admin-state\":null,\"description\":null,\"ethernet\":{\"accounting-policy\":null,\"collect-stats\":null,\"autonegotiate\":null,\"dot1q-etype\":null,\"encap-type\":null,\"mtu\":null,\"pbb-etype\":null,\"qinq-etype\":null,\"speed\":null,\"mode\":null,\"hold-time\":{\"down\":null,\"units\":null,\"up\":null},\"down-when-looped\":{\"admin-state\":null,\"keep-alive\":null,\"retry-timeout\":null,\"use-broadcast-address\":null},\"ssm\":{\"admin-state\":null,\"code-type\":null,\"esmc-tunnel\":null,\"tx-dus\":null},\"crc-monitor\":{\"window-size\":null,\"signal-degrade\":{\"threshold\":null,\"multiplier\":null},\"signal-failure\":{\"threshold\":null,\"multiplier\":null}},\"lldp\":{\"dest-mac\":[{\"mac-type\":null,\"notification\":null,\"port-id-subtype\":null,\"receive\":null,\"transmit\":null,\"tunnel-nearest-bridge\":null,\"tx-mgmt-address\":[{\"admin-state\":null,\"mgmt-address-system-type\":null}],\"tx-tlvs\":{\"port-desc\":null,\"sys-cap\":null,\"sys-desc\":null,\"sys-name\":null}}]}}}}",
65
+ "role": "physical",
66
+ "category": "port",
67
+ "device-scope": "mdm-and-classic",
68
+ "flexible": true,
69
+ "props": "{\"required-object\":\"{}\",\"role\":\"physical\",\"target-xpath\":\"/nsp-equipment:network/network-element/hardware-component/port[boolean(port-details[port-type!='connector-port'])][not(contains('name','/u'))][boolean (parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/shelf'][not(contains('component-id','shelf=1-6-'))]) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/port']) or boolean(parent[nsp-model:schema-nodeid='/nsp-equipment:network/network-element/hardware-component/card'][not(containsIgnoreCase('name','Processor'))])]\",\"description\":\"Intent-type to configure physical, breakout, xiom and satellite ports\",\"category\":\"port\",\"device-scope\":\"mdm-and-classic\"}",
70
+ "t-target-identifiers": "[{\"name\":\"port-id\",\"i18n-text\":\"Port-ID\",\"value-type\":\"STRING\",\"order\":3}]",
71
+ "creation-time": "2024-04-23T16:58:11.874607Z",
72
+ "created-by": "admin",
73
+ "last-modified-time": "2024-04-23T16:58:11.874607Z",
74
+ "target-identifiers": [
75
+ {
76
+ "@": {
77
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
78
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure Port']/target-identifiers[name='port-id']",
79
+ "nsp-model:creation-time": "2024-04-23T16:58:11.849Z",
80
+ "nsp-model:last-modified-time": "2024-04-23T16:58:11.849Z"
81
+ },
82
+ "name": "port-id",
83
+ "display-name": "Port-ID",
84
+ "order": 3
85
+ }
86
+ ]
87
+ },
88
+ {
89
+ "@": {
90
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template",
91
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure LAG']",
92
+ "nsp-model:creation-time": "2024-04-23T16:58:21.996Z",
93
+ "nsp-model:last-modified-time": "2024-04-23T16:58:22.019Z"
94
+ },
95
+ "name": "Configure LAG",
96
+ "description": "Configure a LAG",
97
+ "life-cycle-state": "released",
98
+ "intent-type": "icm-logical-lag-access",
99
+ "intent-type-version": 2,
100
+ "schema-form-name": "default.schemaForm",
101
+ "schema-form-content": "{\"meta-data\":{\"moduleContainer\":\"icm-logical-lag-access:icm-logical-lag-access\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-logical-lag-access\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag\",\"name\":\"lag\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LAG\"},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.description\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.description\",\"name\":\"lag.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":255,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.admin-state\",\"hide\":true,\"default\":\"enable\",\"componentId\":\"icm-logical-lag-access.lag.admin-state\",\"name\":\"lag.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.max-ports\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.max-ports\",\"name\":\"lag.max-ports\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Max Ports\",\"required\":false,\"enum\":[{\"name\":\"32\",\"value\":\"32\"},{\"name\":\"64\",\"value\":\"64\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.encap-type\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.encap-type\",\"name\":\"lag.encap-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Encap Type\",\"required\":false,\"enum\":[{\"name\":\"null\",\"value\":\"null\"},{\"name\":\"dot1q\",\"value\":\"dot1q\"},{\"name\":\"qinq\",\"value\":\"qinq\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.mode\",\"default\":\"access\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.mode\",\"name\":\"lag.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"required\":false,\"enum\":[{\"name\":\"access\",\"value\":\"access\"},{\"name\":\"hybrid\",\"value\":\"hybrid\"},{\"name\":\"network\",\"value\":\"network\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-type\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-type\",\"name\":\"lag.port-type\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Port Type\",\"required\":false,\"enum\":[{\"name\":\"standard\",\"value\":\"standard\"},{\"name\":\"hs\",\"value\":\"hs\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-interval\",\"name\":\"lag.lacp-xmit-interval\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"LACP Xmit Interval\",\"required\":false,\"enum\":[{\"name\":\"slow\",\"value\":\"slow\"},{\"name\":\"fast\",\"value\":\"fast\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp-xmit-stdby\",\"name\":\"lag.lacp-xmit-stdby\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"LACP Xmit Stdby\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp\",\"name\":\"lag.lacp\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"LACP\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.enableLacp\",\"name\":\"lag.lacp.enableLacp\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable LACP\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.mode\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.mode\",\"name\":\"lag.lacp.mode\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Mode\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false,\"enum\":[{\"name\":\"passive\",\"value\":\"passive\"},{\"name\":\"active\",\"value\":\"active\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.administrative-key\",\"name\":\"lag.lacp.administrative-key\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"type\":\"number\",\"title\":\"Administrative Key\",\"when\":\"lag.lacp.enableLacp = 'true'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-id\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-id\",\"name\":\"lag.lacp.system-id\",\"readOnly\":false,\"type\":\"string\",\"title\":\"System Id\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.lacp\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.lacp.system-priority\",\"name\":\"lag.lacp.system-priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":0}]},\"type\":\"number\",\"title\":\"System Priority\",\"when\":\"lag.lacp.enableLacp = 'true' and lag.mode = 'access'\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold\",\"name\":\"lag.port-threshold\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Port Threshold\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.value\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.value\",\"name\":\"lag.port-threshold.value\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":63,\"min\":0}]},\"type\":\"number\",\"title\":\"Value\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.action\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.action\",\"name\":\"lag.port-threshold.action\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Action\",\"required\":false,\"enum\":[{\"name\":\"down\",\"value\":\"down\"},{\"name\":\"dynamic-cost\",\"value\":\"dynamic-cost\"},{\"name\":\"static-cost\",\"value\":\"static-cost\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.port-threshold\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port-threshold.cost\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.port-threshold.cost\",\"name\":\"lag.port-threshold.cost\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":16777215,\"min\":1}]},\"type\":\"number\",\"title\":\"Cost\",\"when\":{\"field\":\"lag.port-threshold.action\",\"value\":\"static-cost\",\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash\",\"name\":\"lag.per-link-hash\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Per Link Hash\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.enablePerLinkHash\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.enablePerLinkHash\",\"name\":\"lag.per-link-hash.enablePerLinkHash\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable Per Link Hash\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag.per-link-hash\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted\",\"name\":\"lag.per-link-hash.weighted\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"Weighted\",\"when\":{\"field\":\"lag.per-link-hash.enablePerLinkHash\",\"value\":true,\"operator\":\"equals\"}},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash.weighted\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted.enableWeighted\",\"default\":false,\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted.enableWeighted\",\"name\":\"lag.per-link-hash.weighted.enableWeighted\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Enable Weighted\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.per-link-hash.weighted\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.per-link-hash.weighted.auto-rebalance\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.per-link-hash.weighted.auto-rebalance\",\"name\":\"lag.per-link-hash.weighted.auto-rebalance\",\"readOnly\":false,\"type\":\"boolean\",\"title\":\"Auto Rebalance\",\"when\":{\"field\":\"lag.per-link-hash.weighted.enableWeighted\",\"value\":true,\"operator\":\"equals\"},\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness\",\"name\":\"lag.bfd-liveness\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"BFD\"},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4\",\"name\":\"lag.bfd-liveness.ipv4\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv4\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.admin-state\",\"name\":\"lag.bfd-liveness.ipv4.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv4.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patternsOperator\":\"and\",\"patterns\":[\"[0-9\\\\.]*\",\"(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(%[\\\\p{N}\\\\p{L}]+)?\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.receive-interval\",\"name\":\"lag.bfd-liveness.ipv4.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv4.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv4.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv4.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv4\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv4.multiplier\",\"name\":\"lag.bfd-liveness.ipv4.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":7,\"propertyGroup\":\"lag.bfd-liveness\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6\",\"name\":\"lag.bfd-liveness.ipv6\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"IPv6\"},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.admin-state\",\"name\":\"lag.bfd-liveness.ipv6.admin-state\",\"readOnly\":false,\"type\":\"enum\",\"title\":\"Admin State\",\"required\":false,\"enum\":[{\"name\":\"enable\",\"value\":\"enable\"},{\"name\":\"disable\",\"value\":\"disable\"}]},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.local-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.local-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Local IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.remote-ip-address\",\"name\":\"lag.bfd-liveness.ipv6.remote-ip-address\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":2147483647,\"min\":0}],\"patterns\":[\"(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\"]},\"type\":\"string\",\"title\":\"Remote IP Address\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.receive-interval\",\"name\":\"lag.bfd-liveness.ipv6.receive-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Receive Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.transmit-interval\",\"name\":\"lag.bfd-liveness.ipv6.transmit-interval\",\"description\":\"milliseconds: [10..100000]\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":100000,\"min\":10}]},\"type\":\"number\",\"title\":\"Transmit Interval (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":3600,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-admin-down-time\",\"name\":\"lag.bfd-liveness.ipv6.max-admin-down-time\",\"description\":\"seconds: [0..3600|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Admin Down Time (seconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"types\":[{\"columnSpan\":4,\"name\":\"int32-0\",\"validations\":{\"ranges\":[{\"max\":60000,\"min\":0}]},\"type\":\"number\",\"title\":\"int32\"},{\"columnSpan\":4,\"name\":\"enumeration-1\",\"type\":\"enum\",\"title\":\"enumeration\",\"enum\":[{\"name\":\"infinite\",\"value\":\"infinite\"}]}],\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.max-setup-time\",\"name\":\"lag.bfd-liveness.ipv6.max-setup-time\",\"description\":\"milliseconds: [0..60000|infinite]\",\"readOnly\":false,\"type\":\"union\",\"title\":\"Max Setup Time (milliseconds)\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"lag.bfd-liveness.ipv6\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"hide\":true,\"componentId\":\"icm-logical-lag-access.lag.bfd-liveness.ipv6.multiplier\",\"name\":\"lag.bfd-liveness.ipv6.multiplier\",\"description\":\"3..20\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":20,\"min\":3}]},\"type\":\"number\",\"title\":\"Multiplier\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"lag\",\"newRow\":true,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port\",\"componentId\":\"icm-logical-lag-access.lag.port\",\"readOnly\":false,\"title\":\"Port\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"lag.port\",\"key\":[\"port-id\"],\"properties\":[{\"columnSpan\":2,\"displayKey\":\"port-id\",\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.port-id\",\"componentId\":\"icm-logical-lag-access.lag.port.port-id\",\"floatingFilter\":true,\"readOnly\":false,\"componentProps\":{\"isPagination\":true,\"isObject\":false,\"paginationProps\":{\"pageLabel\":\"Page\"}},\"suggest\":\"suggestPortIds\",\"sortable\":true,\"type\":\"leafref\",\"title\":\"Port Id\",\"required\":true,\"name\":\"port-id\",\"properties\":[{\"name\":\"port-id\",\"description\":\"Port ID\",\"floatingFilter\":true,\"title\":\"Port ID\",\"type\":\"string\"},{\"name\":\"description\",\"description\":\"Description\",\"floatingFilter\":true,\"title\":\"Description\",\"type\":\"string\"},{\"name\":\"encapType\",\"description\":\"Encapsulation Type\",\"floatingFilter\":true,\"title\":\"Encapsulation Type\",\"type\":\"string\"},{\"name\":\"mode\",\"description\":\"Mode\",\"floatingFilter\":true,\"title\":\"Mode\",\"type\":\"string\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.priority\",\"componentId\":\"icm-logical-lag-access.lag.port.priority\",\"floatingFilter\":true,\"name\":\"priority\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":65535,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Priority\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.sub-group\",\"componentId\":\"icm-logical-lag-access.lag.port.sub-group\",\"floatingFilter\":true,\"name\":\"sub-group\",\"description\":\"-2:auto-iom, -1:auto-mda, <1..8>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-2},{\"max\":8,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Sub Group\",\"required\":false},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-logical-lag-access.lag.port.hash-weight\",\"componentId\":\"icm-logical-lag-access.lag.port.hash-weight\",\"floatingFilter\":true,\"name\":\"hash-weight\",\"description\":\"-1:port-speed, <1..100000>\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":100000,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Hash Weight\",\"required\":false}]}]}",
102
+ "config-form-state": "up-to-date",
103
+ "default-target-data": " {\"lag\":{\"admin-state\":\"enable\",\"mode\":\"access\",\"lacp\":{\"enableLacp\":false},\"per-link-hash\":{\"enablePerLinkHash\":false,\"weighted\":{\"enableWeighted\":false}}}}",
104
+ "target-data-struct": "{\"lag\":{\"description\":null,\"admin-state\":null,\"max-ports\":null,\"encap-type\":null,\"mode\":null,\"port-type\":null,\"lacp-xmit-interval\":null,\"lacp-xmit-stdby\":null,\"lacp\":{\"enableLacp\":null,\"mode\":null,\"administrative-key\":null,\"system-id\":null,\"system-priority\":null},\"port-threshold\":{\"value\":null,\"action\":null,\"cost\":null},\"per-link-hash\":{\"enablePerLinkHash\":null,\"weighted\":{\"enableWeighted\":null,\"auto-rebalance\":null}},\"bfd-liveness\":{\"ipv4\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null},\"ipv6\":{\"admin-state\":null,\"local-ip-address\":null,\"remote-ip-address\":null,\"receive-interval\":null,\"transmit-interval\":null,\"max-admin-down-time\":null,\"max-setup-time\":null,\"multiplier\":null}},\"port\":[{\"port-id\":null,\"priority\":null,\"sub-group\":null,\"hash-weight\":null}]}}",
105
+ "role": "logical",
106
+ "category": "LAG",
107
+ "device-scope": "mdm-and-classic",
108
+ "flexible": true,
109
+ "props": "{\"required-object\":\"{}\",\"role\":\"logical\",\"description\":\"Intent-type to configure access lag\",\"category\":\"LAG\",\"device-scope\":\"mdm-and-classic\",\"select-target\":\"single\"}",
110
+ "t-target-identifiers": "[{\"name\":\"lag-name\",\"length\":\"1..27\",\"pattern\":\"^lag-.+$\",\"i18n-text\":\"LAG-NAME\",\"value-type\":\"STRING\",\"order\":3},{\"name\":\"lag-id\",\"i18n-text\":\"LAG-ID\",\"range\":\"1..800\",\"value-type\":\"NUMBER\",\"order\":4}]",
111
+ "creation-time": "2024-04-23T16:58:22.012372Z",
112
+ "created-by": "admin",
113
+ "last-modified-time": "2024-04-23T16:58:22.012372Z",
114
+ "target-identifiers": [
115
+ {
116
+ "@": {
117
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
118
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure LAG']/target-identifiers[name='lag-name']",
119
+ "nsp-model:creation-time": "2024-04-23T16:58:21.996Z",
120
+ "nsp-model:last-modified-time": "2024-04-23T16:58:21.996Z"
121
+ },
122
+ "name": "lag-name",
123
+ "display-name": "LAG-NAME",
124
+ "order": 3,
125
+ "pattern": "^lag-.+$"
126
+ },
127
+ {
128
+ "@": {
129
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
130
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure LAG']/target-identifiers[name='lag-id']",
131
+ "nsp-model:creation-time": "2024-04-23T16:58:21.996Z",
132
+ "nsp-model:last-modified-time": "2024-04-23T16:58:21.996Z"
133
+ },
134
+ "name": "lag-id",
135
+ "display-name": "LAG-ID",
136
+ "order": 4
137
+ }
138
+ ]
139
+ },
140
+ {
141
+ "@": {
142
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template",
143
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure EQoS']",
144
+ "nsp-model:creation-time": "2024-04-23T16:58:32.101Z",
145
+ "nsp-model:last-modified-time": "2024-04-23T16:58:32.122Z"
146
+ },
147
+ "name": "Configure EQoS",
148
+ "description": "Configure SAP Egress QoS on an SR",
149
+ "life-cycle-state": "released",
150
+ "intent-type": "icm-qos-sapegress-srqos",
151
+ "intent-type-version": 2,
152
+ "schema-form-name": "default.schemaForm",
153
+ "schema-form-content": "{\"meta-data\":{\"moduleContainer\":\"icm-qos-sapegress-srqos:icm-qos-sapegress-srqos\"},\"type\":\"object\",\"formProperties\":{\"suppressMovableColumns\":true,\"title\":\"icm-qos-sapegress-srqos\",\"columnWidth\":\"175px\"},\"properties\":[{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress\",\"name\":\"sap-egress\",\"readOnly\":false,\"type\":\"propertyGroup\",\"title\":\"SAP Egress\"},{\"columnSpan\":2,\"propertyGroup\":\"sap-egress\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.description\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.description\",\"name\":\"sap-egress.description\",\"readOnly\":false,\"validations\":{\"length\":[{\"max\":80,\"min\":0}]},\"type\":\"string\",\"title\":\"Description\",\"required\":false},{\"columnSpan\":6,\"propertyGroup\":\"sap-egress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue\",\"readOnly\":false,\"title\":\"Queue\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-egress.queue\",\"key\":[\"queue-id\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-id\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-id\",\"floatingFilter\":true,\"name\":\"queue-id\",\"readOnly\":false,\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]},\"sortable\":true,\"type\":\"number\",\"title\":\"Queue ID\",\"required\":true},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-type\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.queue-type\",\"floatingFilter\":true,\"name\":\"queue-type\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"Queue Type\",\"required\":false,\"enum\":[{\"name\":\"expedited\",\"value\":\"expedited\"},{\"name\":\"auto-expedited\",\"value\":\"auto-expedited\"},{\"name\":\"best-effort\",\"value\":\"best-effort\"}]},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent\",\"floatingFilter\":true,\"name\":\"scheduler-parent\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Scheduler Parent\"},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.scheduler-name\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.scheduler-name\",\"floatingFilter\":true,\"name\":\"scheduler-parent.scheduler-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"string\",\"title\":\"Scheduler Name\",\"required\":false},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.level\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Level\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.weight\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"Weight\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-level\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-level\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Level\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-level\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":0}]}},{\"columnSpan\":2,\"propertyGroup\":\"scheduler-parent\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-weight\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.scheduler-parent.cir-weight\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR Weight\",\"required\":false,\"hide\":true,\"name\":\"scheduler-parent.cir-weight\",\"validations\":{\"ranges\":[{\"max\":100,\"min\":0}]}},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule\",\"floatingFilter\":true,\"name\":\"adaptation-rule\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Adaptation Rule\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.pir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.pir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"PIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.pir\"},{\"columnSpan\":2,\"propertyGroup\":\"adaptation-rule\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.cir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.adaptation-rule.cir\",\"floatingFilter\":true,\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"CIR\",\"required\":false,\"enum\":[{\"name\":\"max\",\"value\":\"max\"},{\"name\":\"min\",\"value\":\"min\"},{\"name\":\"closest\",\"value\":\"closest\"}],\"hide\":true,\"name\":\"adaptation-rule.cir\"},{\"columnSpan\":7,\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate\",\"hide\":true,\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate\",\"floatingFilter\":true,\"name\":\"rate\",\"readOnly\":false,\"sortable\":true,\"type\":\"propertyGroup\",\"title\":\"Rate\"},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.pir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.pir\",\"floatingFilter\":true,\"description\":\"-1:max, <1..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"PIR\",\"required\":false,\"hide\":true,\"name\":\"rate.pir\",\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":6400000000,\"min\":1}]}},{\"columnSpan\":2,\"propertyGroup\":\"rate\",\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.cir\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.queue.rate.cir\",\"floatingFilter\":true,\"description\":\"-1:max, <0..6400000000>\",\"readOnly\":false,\"sortable\":true,\"type\":\"number\",\"title\":\"CIR\",\"required\":false,\"hide\":true,\"name\":\"rate.cir\",\"validations\":{\"ranges\":[{\"max\":-1,\"min\":-1},{\"max\":6400000000,\"min\":0}]}}]},{\"columnSpan\":6,\"propertyGroup\":\"sap-egress\",\"newRow\":true,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc\",\"readOnly\":false,\"title\":\"FC\",\"type\":\"list\",\"hide\":true,\"typeProps\":{\"isPagination\":true,\"countProps\":{\"label\":\"Total\"},\"showCount\":true},\"name\":\"sap-egress.fc\",\"key\":[\"fc-name\"],\"properties\":[{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc.fc-name\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc.fc-name\",\"floatingFilter\":true,\"name\":\"fc-name\",\"readOnly\":false,\"sortable\":true,\"type\":\"enum\",\"title\":\"FC Name\",\"required\":true,\"enum\":[{\"name\":\"be\",\"value\":\"be\"},{\"name\":\"l2\",\"value\":\"l2\"},{\"name\":\"af\",\"value\":\"af\"},{\"name\":\"l1\",\"value\":\"l1\"},{\"name\":\"h2\",\"value\":\"h2\"},{\"name\":\"ef\",\"value\":\"ef\"},{\"name\":\"h1\",\"value\":\"h1\"},{\"name\":\"nc\",\"value\":\"nc\"}]},{\"columnSpan\":2,\"_viewConfigPath\":\"icm-qos-sapegress-srqos.sap-egress.fc.queue\",\"componentId\":\"icm-qos-sapegress-srqos.sap-egress.fc.queue\",\"floatingFilter\":true,\"readOnly\":false,\"suggest\":\"suggestQueueId\",\"sortable\":true,\"type\":\"number\",\"title\":\"Queue\",\"required\":false,\"component\":\"autoComplete\",\"name\":\"queue\",\"validations\":{\"ranges\":[{\"max\":8,\"min\":1}]}}]}]}",
154
+ "config-form-state": "up-to-date",
155
+ "default-target-data": " {}",
156
+ "target-data-struct": "{\"sap-egress\":{\"description\":null,\"queue\":[{\"queue-id\":null,\"queue-type\":null,\"scheduler-parent\":{\"scheduler-name\":null,\"level\":null,\"weight\":null,\"cir-level\":null,\"cir-weight\":null},\"adaptation-rule\":{\"pir\":null,\"cir\":null},\"rate\":{\"pir\":null,\"cir\":null}}],\"fc\":[{\"fc-name\":null,\"queue\":null}]}}",
157
+ "role": "logical",
158
+ "category": "QoS",
159
+ "device-scope": "mdm-and-classic",
160
+ "flexible": true,
161
+ "props": "{\"required-object\":\"{}\",\"role\":\"logical\",\"description\":\"Intent-type to configure qos sap-egress\",\"category\":\"QoS\",\"device-scope\":\"mdm-and-classic\"}",
162
+ "t-target-identifiers": "[{\"name\":\"sap-egress-policy-name\",\"length\":\"1..64\",\"i18n-text\":\"SAP Egress Policy Name\",\"function-name\":\"suggestPolicyName\",\"value-type\":\"STRING\",\"order\":3},{\"name\":\"policy-id\",\"i18n-text\":\"SAP Egress Policy ID\",\"range\":\"1..65535\",\"function-name\":\"suggestPolicyId\",\"value-type\":\"NUMBER\",\"order\":4}]",
163
+ "creation-time": "2024-04-23T16:58:32.117021Z",
164
+ "created-by": "admin",
165
+ "last-modified-time": "2024-04-23T16:58:32.117021Z",
166
+ "target-identifiers": [
167
+ {
168
+ "@": {
169
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
170
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure EQoS']/target-identifiers[name='sap-egress-policy-name']",
171
+ "nsp-model:creation-time": "2024-04-23T16:58:32.101Z",
172
+ "nsp-model:last-modified-time": "2024-04-23T16:58:32.101Z"
173
+ },
174
+ "name": "sap-egress-policy-name",
175
+ "display-name": "SAP Egress Policy Name",
176
+ "order": 3,
177
+ "function-name": "suggestPolicyName"
178
+ },
179
+ {
180
+ "@": {
181
+ "nsp-model:schema-nodeid": "/nsp-icm:icm/templates/template/target-identifiers",
182
+ "nsp-model:identifier": "/nsp-icm:icm/templates/template[name='Configure EQoS']/target-identifiers[name='policy-id']",
183
+ "nsp-model:creation-time": "2024-04-23T16:58:32.101Z",
184
+ "nsp-model:last-modified-time": "2024-04-23T16:58:32.101Z"
185
+ },
186
+ "name": "policy-id",
187
+ "display-name": "SAP Egress Policy ID",
188
+ "order": 4,
189
+ "function-name": "suggestPolicyId"
190
+ }
191
+ ]
192
+ }
193
+ ]
194
+ }
195
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "createTemplate",
12
+ "enum": [
13
+ "createTemplate",
14
+ "getTemplates",
15
+ "updateTemplateLifecycle",
16
+ "deleteTemplate"
17
+ ],
18
+ "external_name": "ph_request_type"
19
+ }
20
+ },
21
+ "definitions": {}
22
+ }
@@ -0,0 +1,86 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getIndicatorAgeoutPolicySettings",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/restconf/data/indicators-admin:/ageout-policies/ageout-policy?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": "mockdatafiles/getIndicatorAgeoutPolicySettings-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "updateTheRetentionTimeForIndicators",
26
+ "protocol": "REST",
27
+ "method": "PATCH",
28
+ "entitypath": "{base_path}/{version}/restconf/data/indicators-admin:/ageout-policies/ageout-policy?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "getBaselineAgeoutPolicySettings",
46
+ "protocol": "REST",
47
+ "method": "GET",
48
+ "entitypath": "{base_path}/{version}/restconf/data/rtanalytics-admin:/ageout-policies/ageout-policy?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "sendGetBody": false,
54
+ "requestDatatype": "JSON",
55
+ "responseDatatype": "JSON",
56
+ "headers": {},
57
+ "responseObjects": [
58
+ {
59
+ "type": "default",
60
+ "key": "",
61
+ "mockFile": "mockdatafiles/getBaselineAgeoutPolicySettings-default.json"
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "name": "updateTheRetentionTimeForBaseline",
67
+ "protocol": "REST",
68
+ "method": "PATCH",
69
+ "entitypath": "{base_path}/{version}/restconf/data/rtanalytics-admin:/ageout-policies?{query}",
70
+ "requestSchema": "schema.json",
71
+ "responseSchema": "schema.json",
72
+ "timeout": 0,
73
+ "sendEmpty": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ }
85
+ ]
86
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "ageout-policy": [
3
+ {
4
+ "max-retention": 403,
5
+ "min-retention": 1,
6
+ "name": "rtanalytics:/base/window/anomalyevent",
7
+ "retention": 90
8
+ },
9
+ {
10
+ "max-retention": 403,
11
+ "min-retention": 1,
12
+ "name": "rtanalytics:/base/window/baseline",
13
+ "retention": 90
14
+ },
15
+ {
16
+ "max-retention": 403,
17
+ "min-retention": 1,
18
+ "name": "rtanalytics:/base/window/windowmeasurement",
19
+ "retention": 90
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "ageout-policy": [
3
+ {
4
+ "max-retention": 403,
5
+ "min-retention": 1,
6
+ "name": "indicators:/base/indicator/data",
7
+ "retention": 90
8
+ },
9
+ {
10
+ "max-retention": 403,
11
+ "min-retention": 1,
12
+ "name": "indicators:/base/threshold/event",
13
+ "retention": 90
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getIndicatorAgeoutPolicySettings",
12
+ "enum": [
13
+ "getIndicatorAgeoutPolicySettings",
14
+ "updateTheRetentionTimeForIndicators",
15
+ "getBaselineAgeoutPolicySettings",
16
+ "updateTheRetentionTimeForBaseline"
17
+ ],
18
+ "external_name": "ph_request_type"
19
+ }
20
+ },
21
+ "definitions": {}
22
+ }