Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I want to know how to find specific object with name. (i.e search EPG object with name)I already know through the tutorial how to read the list of objects using the get method and for-loop statement. I am looking for another way not to use a for loop...
I found soulution... I use get_deep method instead of find. This is code snippet. read_tenants_list = Tenant.get_deep(session, names=['common', 'Test_Tenant'], limit_to=['fvTenant', 'fvBD'] for tenant in read_tenants_list: print(json.dumps(tenant....