All URIs are relative to https://YOUR_CLUSTER_HOSTNAME_OR_NODE_IP:8080
Method | HTTP request | Description |
---|---|---|
create_cluster_add_remaining_node | POST /platform/3/upgrade/cluster/add_remaining_nodes | |
create_cluster_archive_item | POST /platform/3/upgrade/cluster/archive | |
create_cluster_assess_item | POST /platform/3/upgrade/cluster/assess | |
create_cluster_commit_item | POST /platform/3/upgrade/cluster/commit | |
create_cluster_firmware_assess_item | POST /platform/3/upgrade/cluster/firmware/assess | |
create_cluster_firmware_upgrade_item | POST /platform/3/upgrade/cluster/firmware/upgrade | |
create_cluster_patch_abort_item | POST /platform/3/upgrade/cluster/patch/abort | |
create_cluster_patch_patch | POST /platform/3/upgrade/cluster/patch/patches | |
create_cluster_retry_last_action_item | POST /platform/3/upgrade/cluster/retry_last_action | |
create_cluster_rollback_item | POST /platform/3/upgrade/cluster/rollback | |
create_cluster_upgrade_item | POST /platform/3/upgrade/cluster/upgrade | |
delete_cluster_patch_patch | DELETE /platform/3/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | |
get_cluster_firmware_progress | GET /platform/3/upgrade/cluster/firmware/progress | |
get_cluster_firmware_status | GET /platform/3/upgrade/cluster/firmware/status | |
get_cluster_node | GET /platform/3/upgrade/cluster/nodes/{ClusterNodeId} | |
get_cluster_nodes | GET /platform/3/upgrade/cluster/nodes | |
get_cluster_patch_patch | GET /platform/3/upgrade/cluster/patch/patches/{ClusterPatchPatchId} | |
get_upgrade_cluster | GET /platform/3/upgrade/cluster | |
list_cluster_patch_patches | GET /platform/3/upgrade/cluster/patch/patches | |
update_cluster_upgrade | PUT /platform/3/upgrade/cluster/upgrade |
Empty create_cluster_add_remaining_node(cluster_add_remaining_node)
Let system absorb any remaining or new nodes inside the existing upgrade.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_add_remaining_node = isi_sdk_8_0.Empty() # Empty |
try:
api_response = api_instance.create_cluster_add_remaining_node(cluster_add_remaining_node)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_add_remaining_node: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_add_remaining_node | Empty |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_archive_item(cluster_archive_item)
Start an archive of an upgrade.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_archive_item = isi_sdk_8_0.ClusterArchiveItem() # ClusterArchiveItem |
try:
api_response = api_instance.create_cluster_archive_item(cluster_archive_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_archive_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_archive_item | ClusterArchiveItem |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_assess_item(cluster_assess_item)
Start upgrade assessment on cluster.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_assess_item = isi_sdk_8_0.ClusterAssessItem() # ClusterAssessItem |
try:
api_response = api_instance.create_cluster_assess_item(cluster_assess_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_assess_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_assess_item | ClusterAssessItem |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_commit_item(cluster_commit_item)
Commit the upgrade of a cluster.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_commit_item = isi_sdk_8_0.Empty() # Empty |
try:
api_response = api_instance.create_cluster_commit_item(cluster_commit_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_commit_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_commit_item | Empty |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_firmware_assess_item(cluster_firmware_assess_item)
Start firmware upgrade assessment on cluster.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_firmware_assess_item = isi_sdk_8_0.Empty() # Empty |
try:
api_response = api_instance.create_cluster_firmware_assess_item(cluster_firmware_assess_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_firmware_assess_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_firmware_assess_item | Empty |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_firmware_upgrade_item(cluster_firmware_upgrade_item)
The settings necessary to start a firmware upgrade.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_firmware_upgrade_item = isi_sdk_8_0.ClusterFirmwareUpgradeItem() # ClusterFirmwareUpgradeItem |
try:
api_response = api_instance.create_cluster_firmware_upgrade_item(cluster_firmware_upgrade_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_firmware_upgrade_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_firmware_upgrade_item | ClusterFirmwareUpgradeItem |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_patch_abort_item(cluster_patch_abort_item)
Abort the previous action performed by the patch system.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_patch_abort_item = isi_sdk_8_0.Empty() # Empty |
try:
api_response = api_instance.create_cluster_patch_abort_item(cluster_patch_abort_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_patch_abort_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_patch_abort_item | Empty |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CreateResponse create_cluster_patch_patch(cluster_patch_patch, override=override, rolling=rolling)
Install a patch.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_patch_patch = isi_sdk_8_0.ClusterPatchPatch() # ClusterPatchPatch |
override = true # bool | Whether to ignore patch system validation and force the installation. (optional)
rolling = true # bool | Whether to install the patch on one node at a time. Defaults to true. (optional)
try:
api_response = api_instance.create_cluster_patch_patch(cluster_patch_patch, override=override, rolling=rolling)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_patch_patch: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_patch_patch | ClusterPatchPatch | ||
override | bool | Whether to ignore patch system validation and force the installation. | [optional] |
rolling | bool | Whether to install the patch on one node at a time. Defaults to true. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_retry_last_action_item(cluster_retry_last_action_item)
Retry the last upgrade action, in-case the previous attempt failed.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_retry_last_action_item = isi_sdk_8_0.ClusterRetryLastActionItem() # ClusterRetryLastActionItem |
try:
api_response = api_instance.create_cluster_retry_last_action_item(cluster_retry_last_action_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_retry_last_action_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_retry_last_action_item | ClusterRetryLastActionItem |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_rollback_item(cluster_rollback_item)
Rollback the upgrade of a cluster.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_rollback_item = isi_sdk_8_0.Empty() # Empty |
try:
api_response = api_instance.create_cluster_rollback_item(cluster_rollback_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_rollback_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_rollback_item | Empty |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Empty create_cluster_upgrade_item(cluster_upgrade_item)
The settings necessary to start an upgrade.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_upgrade_item = isi_sdk_8_0.ClusterUpgradeItem() # ClusterUpgradeItem |
try:
api_response = api_instance.create_cluster_upgrade_item(cluster_upgrade_item)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->create_cluster_upgrade_item: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_upgrade_item | ClusterUpgradeItem |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_cluster_patch_patch(cluster_patch_patch_id, override=override, rolling=rolling)
Uninstall a patch.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_patch_patch_id = 'cluster_patch_patch_id_example' # str | Uninstall a patch.
override = true # bool | Whether to ignore patch system validation and force the uninstallation. (optional)
rolling = true # bool | Whether to uninstall the patch on one node at a time. Defaults to true. (optional)
try:
api_instance.delete_cluster_patch_patch(cluster_patch_patch_id, override=override, rolling=rolling)
except ApiException as e:
print("Exception when calling UpgradeApi->delete_cluster_patch_patch: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_patch_patch_id | str | Uninstall a patch. | |
override | bool | Whether to ignore patch system validation and force the uninstallation. | [optional] |
rolling | bool | Whether to uninstall the patch on one node at a time. Defaults to true. | [optional] |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterFirmwareProgress get_cluster_firmware_progress()
Cluster wide firmware upgrade status info.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
try:
api_response = api_instance.get_cluster_firmware_progress()
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_cluster_firmware_progress: %s\n" % e)
This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterFirmwareStatus get_cluster_firmware_status(devices=devices, package=package)
The firmware status for the cluster.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
devices = true # bool | Show devices. If false, this returns an empty list. Default is false. (optional)
package = true # bool | Show package. If false, this returns an empty list.Default is false. (optional)
try:
api_response = api_instance.get_cluster_firmware_status(devices=devices, package=package)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_cluster_firmware_status: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
devices | bool | Show devices. If false, this returns an empty list. Default is false. | [optional] |
package | bool | Show package. If false, this returns an empty list.Default is false. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterNodesExtended get_cluster_node(cluster_node_id)
The node details useful during an upgrade or assessment.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_node_id = 56 # int | The node details useful during an upgrade or assessment.
try:
api_response = api_instance.get_cluster_node(cluster_node_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_cluster_node: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_node_id | int | The node details useful during an upgrade or assessment. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterNodesExtendedExtended get_cluster_nodes()
View information about nodes during an upgrade, rollback, or pre-upgrade assessment.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
try:
api_response = api_instance.get_cluster_nodes()
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_cluster_nodes: %s\n" % e)
This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterPatchPatches get_cluster_patch_patch(cluster_patch_patch_id, local=local, location=location)
View a single patch.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_patch_patch_id = 'cluster_patch_patch_id_example' # str | View a single patch.
local = true # bool | Only view patch information on the local node. (optional)
location = 'location_example' # str | Path location of patch file. (optional)
try:
api_response = api_instance.get_cluster_patch_patch(cluster_patch_patch_id, local=local, location=location)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_cluster_patch_patch: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_patch_patch_id | str | View a single patch. | |
local | bool | Only view patch information on the local node. | [optional] |
location | str | Path location of patch file. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpgradeCluster get_upgrade_cluster()
Cluster wide upgrade status info.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
try:
api_response = api_instance.get_upgrade_cluster()
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->get_upgrade_cluster: %s\n" % e)
This endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ClusterPatchPatchesExtended list_cluster_patch_patches(sort=sort, local=local, limit=limit, dir=dir, resume=resume)
List all patches.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
sort = 'sort_example' # str | The field that will be used for sorting. (optional)
local = true # bool | Whether to view patches on the local node only. (optional)
limit = 56 # int | Return no more than this many results at once (see resume). (optional)
dir = 'dir_example' # str | The direction of the sort. (optional)
resume = 'resume_example' # str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). (optional)
try:
api_response = api_instance.list_cluster_patch_patches(sort=sort, local=local, limit=limit, dir=dir, resume=resume)
pprint(api_response)
except ApiException as e:
print("Exception when calling UpgradeApi->list_cluster_patch_patches: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
sort | str | The field that will be used for sorting. | [optional] |
local | bool | Whether to view patches on the local node only. | [optional] |
limit | int | Return no more than this many results at once (see resume). | [optional] |
dir | str | The direction of the sort. | [optional] |
resume | str | Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options). | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update_cluster_upgrade(cluster_upgrade)
Add nodes to a running upgrade.
from __future__ import print_function
import time
import isi_sdk_8_0
from isi_sdk_8_0.rest import ApiException
from pprint import pprint
# Configure HTTP basic authorization: basicAuth
configuration = isi_sdk_8_0.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'
# create an instance of the API class
api_instance = isi_sdk_8_0.UpgradeApi(isi_sdk_8_0.ApiClient(configuration))
cluster_upgrade = isi_sdk_8_0.ClusterUpgrade() # ClusterUpgrade |
try:
api_instance.update_cluster_upgrade(cluster_upgrade)
except ApiException as e:
print("Exception when calling UpgradeApi->update_cluster_upgrade: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
cluster_upgrade | ClusterUpgrade |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]