forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubnetwork.java
More file actions
190 lines (161 loc) · 5.6 KB
/
Copy pathSubnetwork.java
File metadata and controls
190 lines (161 loc) · 5.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gcloud.compute;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.gcloud.compute.Compute.OperationOption;
import com.google.gcloud.compute.Compute.SubnetworkOption;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.Objects;
/**
* A Google Compute Engine Subnetwork. Subnetworks segments your cloud network IP space into
* subnetworks. Subnetwork prefixes can be automatically allocated, or you can create a custom
* topology. Objects of this class are immutable. To get a {@code Subnetwork} object with the most
* recent information use {@link #reload}. {@code Subnetwork} adds a layer of service-related
* functionality over {@link SubnetworkInfo}.
*
* @see <a href="https://cloud.google.com/compute/docs/subnetworks">Subnetworks</a>
*/
public class Subnetwork extends SubnetworkInfo {
private static final long serialVersionUID = 8608280908101278096L;
private final ComputeOptions options;
private transient Compute compute;
/**
* A builder for {@code Subnetwork} objects.
*/
public static class Builder extends SubnetworkInfo.Builder {
private final Compute compute;
private final SubnetworkInfo.BuilderImpl infoBuilder;
Builder(Compute compute, SubnetworkId subnetworkId, NetworkId networkId, String ipRange) {
this.compute = compute;
this.infoBuilder = new SubnetworkInfo.BuilderImpl(subnetworkId, networkId, ipRange);
this.infoBuilder.subnetworkId(subnetworkId);
this.infoBuilder.network(networkId);
this.infoBuilder.ipRange(ipRange);
}
Builder(Subnetwork subnetwork) {
this.compute = subnetwork.compute;
this.infoBuilder = new SubnetworkInfo.BuilderImpl(subnetwork);
}
@Override
Builder generatedId(String generatedId) {
infoBuilder.generatedId(generatedId);
return this;
}
@Override
Builder creationTimestamp(Long creationTimestamp) {
infoBuilder.creationTimestamp(creationTimestamp);
return this;
}
@Override
public Builder subnetworkId(SubnetworkId subnetworkId) {
infoBuilder.subnetworkId(subnetworkId);
return this;
}
@Override
public Builder description(String description) {
infoBuilder.description(description);
return this;
}
@Override
Builder gatewayAddress(String gatewayAddress) {
infoBuilder.gatewayAddress(gatewayAddress);
return this;
}
@Override
public Builder network(NetworkId network) {
infoBuilder.network(network);
return this;
}
@Override
public Builder ipRange(String ipRange) {
infoBuilder.ipRange(ipRange);
return this;
}
@Override
public Subnetwork build() {
return new Subnetwork(compute, infoBuilder);
}
}
Subnetwork(Compute compute, SubnetworkInfo.BuilderImpl infoBuilder) {
super(infoBuilder);
this.compute = checkNotNull(compute);
this.options = compute.options();
}
/**
* Checks if this subnetwork exists.
*
* @return {@code true} if this subnetwork exists, {@code false} otherwise
* @throws ComputeException upon failure
*/
public boolean exists() {
return reload(SubnetworkOption.fields()) != null;
}
/**
* Fetches current subnetwork' latest information. Returns {@code null} if the subnetwork does not
* exist.
*
* @param options subnetwork options
* @return an {@code Subnetwork} object with latest information or {@code null} if not found
* @throws ComputeException upon failure
*/
public Subnetwork reload(SubnetworkOption... options) {
return compute.getSubnetwork(subnetworkId(), options);
}
/**
* Deletes this subnetwork. If this subnetwork was auto-generated deletion will fail.
*
* @return an operation object if delete request was successfully sent, {@code null} if the
* subnetwork was not found
* @throws ComputeException upon failure
*/
public Operation delete(OperationOption... options) {
return compute.deleteSubnetwork(subnetworkId(), options);
}
/**
* Returns the subnetwork's {@code Compute} object used to issue requests.
*/
public Compute compute() {
return compute;
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
@Override
public final boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj == null || !obj.getClass().equals(Subnetwork.class)) {
return false;
}
Subnetwork other = (Subnetwork) obj;
return Objects.equals(toPb(), other.toPb()) && Objects.equals(options, other.options);
}
@Override
public final int hashCode() {
return Objects.hash(super.hashCode(), options);
}
private void readObject(ObjectInputStream input) throws IOException, ClassNotFoundException {
input.defaultReadObject();
this.compute = options.service();
}
static Subnetwork fromPb(Compute compute,
com.google.api.services.compute.model.Subnetwork subnetworkPb) {
return new Subnetwork(compute, new SubnetworkInfo.BuilderImpl(subnetworkPb));
}
}