Examples of VolumeQuota


Examples of org.jclouds.openstack.cinder.v1.domain.VolumeQuota

      String zone = Iterables.getFirst(api.getConfiguredZones(), "nova");
      quotaApi = api.getQuotaApi(zone);
   }

   public void testGetStorageQuotas() throws ExecutionException, InterruptedException {
      VolumeQuota volumeQuota = quotaApi.getByTenant("demo");

      assertTrue(volumeQuota.getGigabytes() >= 0);
      assertTrue(volumeQuota.getVolumes() >= 0);
      assertTrue(volumeQuota.getSnapshots() >= 0);
   }
View Full Code Here

Examples of org.jclouds.openstack.cinder.v1.domain.VolumeQuota

      String zone = Iterables.getFirst(api.getConfiguredZones(), "nova");
      quotaApi = api.getQuotaApi(zone);
   }

   public void testGetStorageQuotas() throws ExecutionException, InterruptedException {
      VolumeQuota volumeQuota = quotaApi.getByTenant("demo");

      assertTrue(volumeQuota.getGigabytes() >= 0);
      assertTrue(volumeQuota.getVolumes() >= 0);
      assertTrue(volumeQuota.getSnapshots() >= 0);
   }
View Full Code Here

Examples of org.jclouds.openstack.cinder.v1.domain.VolumeQuota

      String region = Iterables.getFirst(api.getConfiguredRegions(), "nova");
      quotaApi = api.getQuotaApi(region);
   }

   public void testGetStorageQuotas() throws ExecutionException, InterruptedException {
      VolumeQuota volumeQuota = quotaApi.getByTenant("demo");

      assertTrue(volumeQuota.getGigabytes() >= 0);
      assertTrue(volumeQuota.getVolumes() >= 0);
      assertTrue(volumeQuota.getSnapshots() >= 0);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.