1 // SPDX-License-Identifier: Apache-2.0
\r
2 // Copyright (c) 2020 Intel Corporation
\r
4 package resourcestatus
\r
6 // ResourceStatus struct is used to maintain the rsync status for resources in the appcontext
\r
7 // that rsync is synchronizing to clusters
\r
8 type ResourceStatus struct {
\r
12 type RsyncStatus = string
\r
14 type statusValues struct {
\r
18 Retrying RsyncStatus
\r
22 var RsyncStatusEnum = &statusValues{
\r
26 Retrying: "Retrying",
\r