com.google.cloud.compute.deprecated.ZoneOperationId.getProject()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中com.google.cloud.compute.deprecated.ZoneOperationId.getProject()方法的一些代码示例,展示了ZoneOperationId.getProject()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneOperationId.getProject()方法的具体详情如下:
包路径:com.google.cloud.compute.deprecated.ZoneOperationId
类名称:ZoneOperationId
方法名:getProject

ZoneOperationId.getProject介绍

暂无

代码示例

代码示例来源:origin: googleapis/google-cloud-java

/** Returns the identity of the zone this address belongs to. */
public ZoneId getZoneId() {
 return ZoneId.of(getProject(), zone);
}

代码示例来源:origin: googleapis/google-cloud-java

@Override
ZoneOperationId setProjectId(String projectId) {
 if (getProject() != null) {
  return this;
 }
 return ZoneOperationId.of(projectId, zone, getOperation());
}

代码示例来源:origin: googleapis/google-cloud-java

private void compareZoneOperationId(ZoneOperationId expected, ZoneOperationId value) {
 assertEquals(expected, value);
 assertEquals(expected.getProject(), expected.getProject());
 assertEquals(expected.getZone(), expected.getZone());
 assertEquals(expected.getOperation(), expected.getOperation());
 assertEquals(expected.getSelfLink(), expected.getSelfLink());
 assertEquals(expected.hashCode(), expected.hashCode());
}

代码示例来源:origin: googleapis/google-cloud-java

ZoneOperationId zoneOperationId = ZoneOperationId.of(PROJECT, ZONE, NAME);
assertEquals(OperationId.Type.ZONE, zoneOperationId.getType());
assertEquals(PROJECT, zoneOperationId.getProject());
assertEquals(ZONE, zoneOperationId.getZone());
assertEquals(NAME, zoneOperationId.getOperation());
zoneOperationId = ZoneOperationId.of(ZONE, NAME);
assertEquals(OperationId.Type.ZONE, zoneOperationId.getType());
assertNull(zoneOperationId.getProject());
assertEquals(ZONE, zoneOperationId.getZone());
assertEquals(NAME, zoneOperationId.getOperation());
zoneOperationId = ZoneOperationId.of(ZoneId.of(PROJECT, ZONE), NAME);
assertEquals(OperationId.Type.ZONE, zoneOperationId.getType());
assertEquals(PROJECT, zoneOperationId.getProject());
assertEquals(ZONE, zoneOperationId.getZone());
assertEquals(NAME, zoneOperationId.getOperation());

相关文章