Exemplo n.º 1
0
 public ApplicationSource(
     string chart,
     ApplicationSourceDirectory directory,
     ApplicationSourceHelm helm,
     dynamic ksonnet,
     dynamic kustomize,
     dynamic plugin,
     string path,
     string repoUrl,
     string targetRevision
     )
 {
     Chart     = chart;
     Directory = directory;
     Helm      = helm;
     // Ksonnet = ksonnet;
     // Kustomize = kustomize;
     // Plugin = plugin;
     Path           = path;
     RepoUrl        = repoUrl;
     TargetRevision = targetRevision;
 }
 protected bool Equals(ApplicationSourceDirectory other)
 {
     return(Exclude == other.Exclude && Include == other.Include && Recurse == other.Recurse);
 }