forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiskImageConfiguration.java
More file actions
161 lines (134 loc) · 4.4 KB
/
DiskImageConfiguration.java
File metadata and controls
161 lines (134 loc) · 4.4 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
/*
* 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.api.services.compute.model.Image;
import com.google.common.base.MoreObjects;
import java.util.Objects;
/**
* A Google Compute Engine disk image configuration. This class can be used to create images from an
* existing Google Compute Engine disk.
*/
public class DiskImageConfiguration extends ImageConfiguration {
private static final long serialVersionUID = 2716403667042981170L;
private final DiskId sourceDisk;
private final String sourceDiskId;
/**
* A builder for {@code DiskImageConfiguration} objects.
*/
public static final class Builder
extends ImageConfiguration.Builder<DiskImageConfiguration, Builder> {
private DiskId sourceDisk;
private String sourceDiskId;
private Builder() {
super(Type.DISK);
}
private Builder(DiskImageConfiguration imageConfiguration) {
super(imageConfiguration);
this.sourceDisk = imageConfiguration.sourceDisk;
this.sourceDiskId = imageConfiguration.sourceDiskId;
}
private Builder(Image imagePb) {
super(Type.DISK, imagePb);
this.sourceDisk = DiskId.fromUrl(imagePb.getSourceDisk());
this.sourceDiskId = imagePb.getSourceDiskId();
}
/**
* Sets the identity of the source disk used to create the image.
*/
public Builder sourceDisk(DiskId sourceDisk) {
this.sourceDisk = checkNotNull(sourceDisk);
return this;
}
Builder sourceDiskId(String sourceDiskId) {
this.sourceDiskId = sourceDiskId;
return this;
}
/**
* Creates a {@code DiskImageConfiguration} object.
*/
@Override
public DiskImageConfiguration build() {
return new DiskImageConfiguration(this);
}
}
private DiskImageConfiguration(Builder builder) {
super(builder);
this.sourceDisk = checkNotNull(builder.sourceDisk);
this.sourceDiskId = builder.sourceDiskId;
}
/**
* Returns the identity of the source disk used to create this image.
*/
public DiskId sourceDisk() {
return sourceDisk;
}
/**
* Returns the id of the disk used to create this image. This value may be used to determine
* whether the image was taken from the current or a previous instance of a given disk name.
*/
public String sourceDiskId() {
return sourceDiskId;
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
@Override
MoreObjects.ToStringHelper toStringHelper() {
return super.toStringHelper()
.add("sourceDisk", sourceDisk)
.add("sourceDiskId", sourceDiskId);
}
@Override
public final int hashCode() {
return Objects.hash(baseHashCode(), sourceDisk, sourceDiskId);
}
@Override
public final boolean equals(Object obj) {
return obj instanceof DiskImageConfiguration && baseEquals((DiskImageConfiguration) obj);
}
@Override
DiskImageConfiguration setProjectId(String projectId) {
if (sourceDisk.project() != null) {
return this;
}
return toBuilder().sourceDisk(sourceDisk.setProjectId(projectId)).build();
}
@Override
Image toPb() {
Image imagePb = super.toPb();
imagePb.setSourceDisk(sourceDisk.selfLink());
imagePb.setSourceDiskId(sourceDiskId);
return imagePb;
}
/**
* Creates a builder for a {@code DiskImageConfiguration} given the source disk identity.
*/
public static Builder builder(DiskId sourceDisk) {
return new Builder().sourceDisk(sourceDisk);
}
/**
* Creates a {@code DiskImageConfiguration} object given the source disk identity.
*/
public static DiskImageConfiguration of(DiskId sourceId) {
return builder(sourceId).build();
}
@SuppressWarnings("unchecked")
static DiskImageConfiguration fromPb(Image imagePb) {
return new Builder(imagePb).build();
}
}