purity_fb_1dot12.VersionApi

All URIs are relative to https://purity_fb_server/api

Method HTTP request Description
list_versions GET /api_version

list_versions

VersionResponse list_versions()

Get all supported REST versions

Example

from purity_fb import PurityFb, VersionResponse, rest

fb = PurityFb("10.255.9.28") # assume the array IP is 10.255.9.28
fb.disable_verify_ssl()
try:
    # no need to login to get API versions
    res = fb.api_version.list_versions()
    assert isinstance(res, VersionResponse)
    print (res.versions)  # ex: ["1.0", "1.1", "1.2"]
except rest.ApiException as e:
    print("Exception when logging in to the array: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

VersionResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to Overview]