I'm using kubernate client to get the nodes list like this way.
obj = KubeApiHelper("default")
nodeList = obj.get_nodes_list()
for node in nodeList.items:
print node.**status.conditions**
the line I bold I lack of Intelisense helper from IDE. I want to iterate through my nodes and pick up some nested properties about status.
This is the view on intelisense window.
Is there a possibility to make pycharm aware of nested class properties (aka intelisense) . As you can see in the picture I have no help from intelisense when browsing through node status object. I used to work with visual studio and c# which such operation for ide was not an issue.