Hi, i have a query on netapp ontap API interface.
There is an import Cluster from netapp_ontap.resources.
A variable endpoint has created an instance of Cluster as, endpoint=Cluster().
This led to usage of a function set_config_connection(), in which a variable host is set as, host=find_nodes()[0].
I believe that the function set_config_connection() was invoked by creating intsance, as it was seen in LOG.
Now, I want to hardcode the host value. Can I just give it while creating instance like, endpoint=Cluster(host="<host>").
Further this endpoint is used for GET operation, where I found it is using Node IP, wanted to make it work with cluster management IP
Please help out!
It would be helpful if there s a detailed documentation of Cluster's arguments for parameterizing.