Etg.Yams.Storage.Config.AppDeploymentConfig.RemoveClusterId C# (CSharp) 메소드

RemoveClusterId() 공개 메소드

public RemoveClusterId ( string clusterId ) : AppDeploymentConfig
clusterId string
리턴 AppDeploymentConfig
        public AppDeploymentConfig RemoveClusterId(string clusterId)
        {
            if (!TargetClusters.Contains(clusterId))
            {
                throw new InvalidOperationException();
            }
            var clusterIds = TargetClusters.Where(c => c != clusterId);
            return new AppDeploymentConfig(AppIdentity, clusterIds, Properties);
        }