@@ -88,7 +88,7 @@ type VolumeSnapshotStatus struct {
88
88
// CreationTime is the time the snapshot was successfully created. If it is set,
89
89
// it means the snapshot was created; Otherwise the snapshot was not created.
90
90
// +optional
91
- CreationTime * metav1.Time `json:"createdAt " protobuf:"bytes,1,opt,name=createdAt "`
91
+ CreationTime * metav1.Time `json:"creationTime " protobuf:"bytes,1,opt,name=creationTime "`
92
92
93
93
// When restoring volume from the snapshot, the volume size should be equal to or
94
94
// larger than the RestoreSize if it is specified. If RestoreSize is set to nil, it means
@@ -171,7 +171,7 @@ type VolumeSnapshotContent struct {
171
171
// +optional
172
172
metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
173
173
174
- // Spec represents the desired state of the snapshot data
174
+ // Spec represents the desired state of the snapshot content
175
175
Spec VolumeSnapshotContentSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
176
176
}
177
177
@@ -187,7 +187,7 @@ type VolumeSnapshotContentList struct {
187
187
Items []VolumeSnapshotContent `json:"items" protobuf:"bytes,2,rep,name=items"`
188
188
}
189
189
190
- // VolumeSnapshotContentSpec is the spec of the volume snapshot data
190
+ // VolumeSnapshotContentSpec is the spec of the volume snapshot content
191
191
type VolumeSnapshotContentSpec struct {
192
192
// Source represents the location and type of the volume snapshot
193
193
VolumeSnapshotSource `json:",inline" protobuf:"bytes,1,opt,name=volumeSnapshotSource"`
0 commit comments