I want to differentiate bewteen Isilon 8.x and 7.x using REST API calls.
One Isilon 8.x, we have platform/3/cluster/version API which gives me isilon's version.
Does similar API work on Isilon 7.x as well?
Solved! Go to Solution.
try this API command:
https://IP:8080/platform/1/cluster/config
Look for "release":
"onefs_version" : { "build" : "B_MR_8_1_0_4_057(RELEASE)", "release" : "v8.1.0.4",
These are the OneFS API versions and their corresponding releases:
OneFS versionAPI version
8.1 | 5 |
8.0.1 | 4 |
8.0 | 3 |
7.2.1 | 2 |
7.2 | 1 |
try this API command:
https://IP:8080/platform/1/cluster/config
Look for "release":
"onefs_version" : { "build" : "B_MR_8_1_0_4_057(RELEASE)", "release" : "v8.1.0.4",
These are the OneFS API versions and their corresponding releases:
OneFS versionAPI version
8.1 | 5 |
8.0.1 | 4 |
8.0 | 3 |
7.2.1 | 2 |
7.2 | 1 |
@PhilLam Thanks!
Is there a guarantee that the response of this is consistent over different versions? Will different versions need different handling?