forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImage.java
More file actions
209 lines (177 loc) · 6.09 KB
/
Image.java
File metadata and controls
209 lines (177 loc) · 6.09 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
* 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.ImageOption;
import com.google.gcloud.compute.Compute.OperationOption;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.List;
import java.util.Objects;
/**
* A Google Compute Engine Image. An image contains a boot loader, an operating system and a root
* file system that is necessary for starting an instance. Compute Engine offers publicly-available
* images of certain operating systems that you can use, or you can create a custom image. A custom
* image is an image created from one of your virtual machine instances that contains your specific
* instance configurations. To get an {@code Image} object with the most recent information use
* {@link #reload}. {@code Image} adds a layer of service-related functionality
* over {@link ImageInfo}.
*
* @see <a href="https://cloud.google.com/compute/docs/images">Images</a>
*/
public class Image extends ImageInfo {
private static final long serialVersionUID = 4623766590317494020L;
private final ComputeOptions options;
private transient Compute compute;
/**
* A builder for {@code Image} objects.
*/
public static class Builder extends ImageInfo.Builder {
private final Compute compute;
private final ImageInfo.BuilderImpl infoBuilder;
Builder(Compute compute, ImageId imageId, ImageConfiguration configuration) {
this.compute = compute;
this.infoBuilder = new ImageInfo.BuilderImpl();
this.infoBuilder.imageId(imageId);
this.infoBuilder.configuration(configuration);
}
Builder(Image image) {
this.compute = image.compute;
this.infoBuilder = new ImageInfo.BuilderImpl(image);
}
@Override
Builder generatedId(String generatedId) {
infoBuilder.generatedId(generatedId);
return this;
}
@Override
Builder creationTimestamp(Long creationTimestamp) {
infoBuilder.creationTimestamp(creationTimestamp);
return this;
}
@Override
public Builder imageId(ImageId imageId) {
infoBuilder.imageId(imageId);
return this;
}
@Override
public Builder description(String description) {
infoBuilder.description(description);
return this;
}
@Override
public Builder configuration(ImageConfiguration configuration) {
infoBuilder.configuration(configuration);
return this;
}
@Override
Builder status(Status status) {
infoBuilder.status(status);
return this;
}
@Override
Builder diskSizeGb(Long diskSizeGb) {
infoBuilder.diskSizeGb(diskSizeGb);
return this;
}
@Override
Builder licenses(List<LicenseId> licenses) {
infoBuilder.licenses(licenses);
return this;
}
@Override
Builder deprecationStatus(DeprecationStatus<ImageId> deprecationStatus) {
infoBuilder.deprecationStatus(deprecationStatus);
return this;
}
@Override
public Image build() {
return new Image(compute, infoBuilder);
}
}
Image(Compute compute, ImageInfo.BuilderImpl infoBuilder) {
super(infoBuilder);
this.compute = checkNotNull(compute);
this.options = compute.options();
}
/**
* Checks if this image exists.
*
* @return {@code true} if this image exists, {@code false} otherwise
* @throws ComputeException upon failure
*/
public boolean exists() {
return reload(ImageOption.fields()) != null;
}
/**
* Fetches current image' latest information. Returns {@code null} if the image does not exist.
*
* @param options image options
* @return an {@code Image} object with latest information or {@code null} if not found
* @throws ComputeException upon failure
*/
public Image reload(ImageOption... options) {
return compute.getImage(imageId(), options);
}
/**
* Deletes this image.
*
* @return a global operation if the delete request was successfully sent, {@code null} if the
* image was not found
* @throws ComputeException upon failure or if this image is a publicly-available image
*/
public Operation delete(OperationOption... options) {
return compute.deleteImage(imageId(), options);
}
/**
* Deprecates this image.
*
* @return a global operation if the deprecation request was successfully sent, {@code null} if
* the image was not found
* @throws ComputeException upon failure or if this image is a publicly-available image
*/
public Operation deprecate(DeprecationStatus<ImageId> deprecationStatus,
OperationOption... options) {
return compute.deprecate(imageId(), deprecationStatus, options);
}
/**
* Returns the image'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) {
return obj instanceof Image
&& Objects.equals(toPb(), ((Image) obj).toPb())
&& Objects.equals(options, ((Image) obj).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 Image fromPb(Compute compute, com.google.api.services.compute.model.Image imagePb) {
return new Image(compute, new ImageInfo.BuilderImpl(imagePb));
}
}