
org.jclouds.googlecomputeengine.domain.AutoValue_Region Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-compute-engine Show documentation
Show all versions of google-compute-engine Show documentation
jclouds components to access GoogleCompute
The newest version!
package org.jclouds.googlecomputeengine.domain;
import java.net.URI;
import java.util.Date;
import java.util.List;
import javax.annotation.processing.Generated;
import org.jclouds.javax.annotation.Nullable;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_Region extends Region {
private final String id;
private final Date creationTimestamp;
private final URI selfLink;
private final String name;
private final String description;
private final Region.Status status;
private final List zones;
private final List quotas;
AutoValue_Region(
String id,
Date creationTimestamp,
URI selfLink,
String name,
@Nullable String description,
Region.Status status,
List zones,
List quotas) {
if (id == null) {
throw new NullPointerException("Null id");
}
this.id = id;
if (creationTimestamp == null) {
throw new NullPointerException("Null creationTimestamp");
}
this.creationTimestamp = creationTimestamp;
if (selfLink == null) {
throw new NullPointerException("Null selfLink");
}
this.selfLink = selfLink;
if (name == null) {
throw new NullPointerException("Null name");
}
this.name = name;
this.description = description;
if (status == null) {
throw new NullPointerException("Null status");
}
this.status = status;
if (zones == null) {
throw new NullPointerException("Null zones");
}
this.zones = zones;
if (quotas == null) {
throw new NullPointerException("Null quotas");
}
this.quotas = quotas;
}
@Override
public String id() {
return id;
}
@Override
public Date creationTimestamp() {
return creationTimestamp;
}
@Override
public URI selfLink() {
return selfLink;
}
@Override
public String name() {
return name;
}
@Nullable
@Override
public String description() {
return description;
}
@Override
public Region.Status status() {
return status;
}
@Override
public List zones() {
return zones;
}
@Override
public List quotas() {
return quotas;
}
@Override
public String toString() {
return "Region{"
+ "id=" + id + ", "
+ "creationTimestamp=" + creationTimestamp + ", "
+ "selfLink=" + selfLink + ", "
+ "name=" + name + ", "
+ "description=" + description + ", "
+ "status=" + status + ", "
+ "zones=" + zones + ", "
+ "quotas=" + quotas
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof Region) {
Region that = (Region) o;
return (this.id.equals(that.id()))
&& (this.creationTimestamp.equals(that.creationTimestamp()))
&& (this.selfLink.equals(that.selfLink()))
&& (this.name.equals(that.name()))
&& ((this.description == null) ? (that.description() == null) : this.description.equals(that.description()))
&& (this.status.equals(that.status()))
&& (this.zones.equals(that.zones()))
&& (this.quotas.equals(that.quotas()));
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= id.hashCode();
h$ *= 1000003;
h$ ^= creationTimestamp.hashCode();
h$ *= 1000003;
h$ ^= selfLink.hashCode();
h$ *= 1000003;
h$ ^= name.hashCode();
h$ *= 1000003;
h$ ^= (description == null) ? 0 : description.hashCode();
h$ *= 1000003;
h$ ^= status.hashCode();
h$ *= 1000003;
h$ ^= zones.hashCode();
h$ *= 1000003;
h$ ^= quotas.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy