Etg.Yams.Storage.Config.AppDeploymentConfig.AddClusterId C# (CSharp) Method

AddClusterId() public method

public AddClusterId ( string clusterId ) : AppDeploymentConfig
clusterId string
return AppDeploymentConfig
        public AppDeploymentConfig AddClusterId(string clusterId)
        {
            if (TargetClusters.Contains(clusterId))
            {
                throw new InvalidOperationException();
            }
            var clusterIds = new HashSet<string>(TargetClusters) {clusterId};
            return new AppDeploymentConfig(AppIdentity, clusterIds, Properties);
        }