cisco-axl 1.1.1 → 1.1.2
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.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Service constructor for methods. Requires a JSON object consisting of hostname,
|
|
|
79
79
|
let service = new axlService("10.10.20.1", "administrator", "ciscopsdt", "14.0");
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
###
|
|
82
|
+
### service.returnOperations(filter?) ⇒ Returns promise
|
|
83
83
|
|
|
84
84
|
Method takes optional argument to filter results. No argument returns all operations. Returns results via Promise.
|
|
85
85
|
|
|
@@ -87,7 +87,7 @@ Method takes optional argument to filter results. No argument returns all operat
|
|
|
87
87
|
| :--------------- | :------- | :----- | :--------- | :---------------------------------- |
|
|
88
88
|
| returnOperations | filter | string | No | Provide a string to filter results. |
|
|
89
89
|
|
|
90
|
-
###
|
|
90
|
+
### service.getOperationTags(operation) ⇒ Returns promise
|
|
91
91
|
|
|
92
92
|
Method requires passing an AXL operation. Returns results via Promise.
|
|
93
93
|
|
|
@@ -95,7 +95,7 @@ Method requires passing an AXL operation. Returns results via Promise.
|
|
|
95
95
|
| :--------------- | :-------- | :----- | :--------- | :----------------------------------------------------------------------- |
|
|
96
96
|
| getOperationTags | operation | string | Yes | Provide the name of the AXL operation you wish to retrieve the tags for. |
|
|
97
97
|
|
|
98
|
-
###
|
|
98
|
+
### service.executeOperation(operation,tags,opts?) ⇒ Returns promise
|
|
99
99
|
|
|
100
100
|
Method requires passing an AXL operation and JSON object of tags. Returns results via Promise.
|
|
101
101
|
|