AppSettings.cs
952 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace Google.Cloud.Bigtable.ScanTest
{
class AppSettings
{
public string InstanceId { get; set; }
public string ProjectId { get; set; }
public string TableName { get; set; }
public string ColumnFamily { get; set; }
public string RowKeyPrefix { get; set; }
public string LogFile { get; set; }
public string PerfFile { get; set; }
public long Records { get; set; }
public int LoadThreads { get; set; }
public int RowKeySize { get; set; }
public int ColumnLength { get; set; }
public string ColumnPrefix { get; set; }
public int ScanInterval { get; set; }
public int Columns { get; set; }
public int BatchSize { get; set; }
public string ScanLimits { get; set; }
public int MutateRowTimeOutInMilliSeconds { get; set; }
}
}