dokushinno's Posts

Hi, I know this is an old thread. My apologies for reviving this. However, i think this is related to my question: https://communities.vmware.com/thread/462201 You mentioned about Tier-bas... See more...
Hi, I know this is an old thread. My apologies for reviving this. However, i think this is related to my question: https://communities.vmware.com/thread/462201 You mentioned about Tier-based storage costing, can I do this via the 2.5 API? Thanks.
Thanks Diwakar. I would be doing something like this then... :smileyconfused: HierarchyManagerImpl hm = HierarchyManagerImpl.getInstance(); List hierarchiesList = hm.getAllHierarchies(cbClie... See more...
Thanks Diwakar. I would be doing something like this then... :smileyconfused: HierarchyManagerImpl hm = HierarchyManagerImpl.getInstance(); List hierarchiesList = hm.getAllHierarchies(cbClient); //loop hierarchiesList     // HierarchyEntitiesType entityType = hierarchiesList [n].getEntities()    // entityType.getEntities() How do I determine if this "entity" is a "vCenter Server entity" and not "vCenter Chargeback Manager entity"? Im quite confused on the following classes and please confirm if getting the steps for getting the attribute value is correct: HierarchyType HierarchyEntitiesType this has a getEntity() which returns a list of: HierarchyEntityType this has a getAttributes() which returns EntityAttributesType this has has a getAttribute() which returns EntityAttributeType does invoking getValue() return 101 for Chargeback Manager entity or 0 for vCenter Server entity? (based on cbm_users_guide_2_0_0.pdf, Table 4-1. p57) Thanks heaps for any help. :smileyconfused:
Hi, I'm new to this Chargeback JAVA API. What I wanted was to create/generate a report without having to provide a hierarchy id or entity id. It's like more of a dump report for all the hi... See more...
Hi, I'm new to this Chargeback JAVA API. What I wanted was to create/generate a report without having to provide a hierarchy id or entity id. It's like more of a dump report for all the hierarchies and entities managed by the Chargeback server. Thanks.