Quantcast
Channel: VMware Communities : Discussion List - VMware vCloud SDK for Java
Viewing all articles
Browse latest Browse all 144

Delete a vCloud entity by name

$
0
0

Hello to all,

 

 

    For now when I need to delete a organization, I do the following steps :

 

        QueryParams<QueryReferenceField> params = new QueryParams<QueryReferenceField>();
        Filter filter = new Filter(new Expression(QueryReferenceField.NAME, "my_org_name", ExpressionType.EQUALS));
        params.setFilter(filter);
       
        ReferenceResult result  = vcloudClient.getQueryService().queryReferences(QueryReferenceType.ORGANIZATION, params);
       
        AdminOrganization organization = AdminOrganization.getAdminOrgById(vcloudClient, result.getReferences().get(0).getId());
       
        // first of all disable the organization
        organization.disable();
       
        organization.delete();

 

   Approximately the same steps must be done in order do delete other entities from vcloud (netwroks, vdcs, etc.)

 

    My question is : Is it possible to delete a vCloud entity using a genereic mecanism based only on entity name ? I mean without using the query service

 

Thank you


Viewing all articles
Browse latest Browse all 144

Trending Articles