Exemple #1
0
 protected bool Equals(ArgoApplicationSyncOperation other)
 {
     return(base.Equals(other) &&
            DryRun == other.DryRun &&
            Manifests.IsCollectionEqualTo(other.Manifests) &&
            Prune == other.Prune);
 }
Exemple #2
0
 public ApplicationStateRequestedOperation(
     List <BaseNameValueModel> info,
     dynamic initiatedBy,
     dynamic retry,
     ArgoApplicationSyncOperation sync
     )
 {
     Info        = info;
     InitiatedBy = initiatedBy;
     Retry       = retry;
     Sync        = sync;
 }