本文整理了Java中org.jclouds.ultradns.ws.domain.ZoneProperties.getResourceRecordCount()
方法的一些代码示例,展示了ZoneProperties.getResourceRecordCount()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneProperties.getResourceRecordCount()
方法的具体详情如下:
包路径:org.jclouds.ultradns.ws.domain.ZoneProperties
类名称:ZoneProperties
方法名:getResourceRecordCount
[英]The count of records in this zone.
[中]
代码示例来源:origin: jclouds/legacy-jclouds
@Test
public void testGetZone() {
for (Zone zone : api().listByAccount(account.getId())) {
ZoneProperties zoneProperties = api().get(zone.getName());
assertEquals(zoneProperties.getName(), zone.getName());
assertEquals(zoneProperties.getType(), zone.getType());
assertEquals(zoneProperties.getTypeCode(), zone.getTypeCode());
assertNotNull(zoneProperties.getModified(), "Modified cannot be null for " + zone);
assertTrue(zoneProperties.getResourceRecordCount() >= 0,
"ResourceRecordCount must be positive or zero for a Zone " + zone);
}
}
代码示例来源:origin: apache/jclouds
@Test
public void testGetZone() {
for (Zone zone : api().listByAccount(account.getId())) {
ZoneProperties zoneProperties = api().get(zone.getName());
assertEquals(zoneProperties.getName(), zone.getName());
assertEquals(zoneProperties.getType(), zone.getType());
assertEquals(zoneProperties.getTypeCode(), zone.getTypeCode());
assertNotNull(zoneProperties.getModified(), "Modified cannot be null for " + zone);
assertTrue(zoneProperties.getResourceRecordCount() >= 0,
"ResourceRecordCount must be positive or zero for a Zone " + zone);
}
}
代码示例来源:origin: jclouds/legacy-jclouds
@Test
public void testCreateAndDeleteZone() {
try {
api().createInAccount(zoneName, account.getId());
ZoneProperties newZone = api().get(zoneName);
getAnonymousLogger().info("created zone: " + newZone);
try {
api().createInAccount(zoneName, account.getId());
fail();
} catch (ResourceAlreadyExistsException e) {
}
assertEquals(newZone.getName(), zoneName);
assertEquals(newZone.getType(), Type.PRIMARY);
assertEquals(newZone.getTypeCode(), Type.PRIMARY.getCode());
assertNotNull(newZone.getModified(), "Modified cannot be null for " + newZone);
assertEquals(newZone.getResourceRecordCount(), 5);
} finally {
api().delete(zoneName);
}
}
代码示例来源:origin: apache/jclouds
@Test
public void testCreateAndDeleteZone() {
try {
api().createInAccount(zoneName, account.getId());
ZoneProperties newZone = api().get(zoneName);
getAnonymousLogger().info("created zone: " + newZone);
try {
api().createInAccount(zoneName, account.getId());
fail();
} catch (ResourceAlreadyExistsException e) {
}
assertEquals(newZone.getName(), zoneName);
assertEquals(newZone.getType(), Type.PRIMARY);
assertEquals(newZone.getTypeCode(), Type.PRIMARY.getCode());
assertNotNull(newZone.getModified(), "Modified cannot be null for " + newZone);
assertEquals(newZone.getResourceRecordCount(), 5);
} finally {
api().delete(zoneName);
}
}
内容来源于网络,如有侵权,请联系作者删除!