parent
da0f5d5850
commit
3893c46086
|
@ -56,13 +56,13 @@ type BackupOperationSpec struct {
|
||||||
BackupItemAction string `json:"backupItemAction"`
|
BackupItemAction string `json:"backupItemAction"`
|
||||||
|
|
||||||
// Kubernetes resource identifier for the item
|
// Kubernetes resource identifier for the item
|
||||||
ResourceIdentifier velero.ResourceIdentifier "json:resourceIdentifier"
|
ResourceIdentifier velero.ResourceIdentifier `json:"resourceIdentifier"`
|
||||||
|
|
||||||
// OperationID returned by the BIA plugin
|
// OperationID returned by the BIA plugin
|
||||||
OperationID string "json:operationID"
|
OperationID string `json:"operationID"`
|
||||||
|
|
||||||
// Items needing to be added to the backup after all async operations have completed
|
// Items needing to be added to the backup after all async operations have completed
|
||||||
PostOperationItems []velero.ResourceIdentifier "json:postOperationItems"
|
PostOperationItems []velero.ResourceIdentifier `json:"postOperationItems"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (in *BackupOperationSpec) DeepCopy() *BackupOperationSpec {
|
func (in *BackupOperationSpec) DeepCopy() *BackupOperationSpec {
|
||||||
|
|
|
@ -56,10 +56,10 @@ type RestoreOperationSpec struct {
|
||||||
RestoreItemAction string `json:"restoreItemAction"`
|
RestoreItemAction string `json:"restoreItemAction"`
|
||||||
|
|
||||||
// Kubernetes resource identifier for the item
|
// Kubernetes resource identifier for the item
|
||||||
ResourceIdentifier velero.ResourceIdentifier "json:resourceIdentifier"
|
ResourceIdentifier velero.ResourceIdentifier `json:"resourceIdentifier"`
|
||||||
|
|
||||||
// OperationID returned by the RIA plugin
|
// OperationID returned by the RIA plugin
|
||||||
OperationID string "json:operationID"
|
OperationID string `json:"operationID"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (in *RestoreOperationSpec) DeepCopy() *RestoreOperationSpec {
|
func (in *RestoreOperationSpec) DeepCopy() *RestoreOperationSpec {
|
||||||
|
|
Loading…
Reference in New Issue