Example #1
0
 public async Task <bool> UpdateCluster(Model.Cluster cluster)
 {
     return(await _apiClient.ClusterSdk.UpdateCluster(cluster));
 }
 public UpdateClusterCommand(Model.Cluster cluster, Guid userID, string userName)
 {
     _cluster  = cluster;
     _userID   = userID;
     _userName = userName;
 }
Example #3
0
 public async Task <long> AddCluster(Model.Cluster cluster)
 {
     return(await _apiClient.ClusterSdk.AddCluster(cluster));
 }