C# (CSharp) Client.Model Пространство имен

Классы

Имя Описание
BulkDataSet Set of data to send for a bulk write. This encapsulates the timestamp and list of BulkPoints
BulkIdPoint Represents a datapoint for a series referenced by id. This class is used to represent datapoints in a bulk write.
BulkKeyPoint Represents a datapoint for a series referenced by id. This class is used to represent datapoints in a bulk write.
BulkPoint The abstract parent class representing a datapoint used in a bulk write. Bulk writing allows values for different series to be written for the same timestamp in one Rest call. The series can be referenced by series id or series key. The two subclasses represent these two options.
DataPoint Represents one timestamp/value pair. This class uses a Joda Time DateTime.
DataSet Respresents data from a time range of a series. This is essentially a list of DataPoints with some added metadata. This is the object returned from a query. The DataSet contains series metadata, the start/end times for the queried range, a list of the DataPoints and a statistics summary table. The Summary table contains statistics for the time range (sum, mean, min, max, count, etc.)
DeleteSummary Represents a summary of the delete series operationd
Filter Represents a filter on the set of Series. This is used to query a set of series with specific properties. A filter can include ids, keys, tags and attributes. An empty filter is created and filter predicates are added. For example a filter to return series with keys myagley-1 and myagley-2 looks like this:
 {@code Filter filter = new Filter(); filter.addKey("myagley-1"); filter.addKey("myagley-1"); } 
FoldingFunction
IntervalParameter
MultiIdPoint Represents a datapoint for a series referenced by id. This class is used to represent datapoints in a multi write.
MultiKeyPoint Represents a datapoint for a series referenced by key. This class is used to represent datapoints in a multi write.
MultiPoint The abstract parent class representing a datapoint used in a multi write. Multi writing allows values for different series to be written for multiple timestamps in one Rest call. The series can be referenced by series id or series key. The two subclasses represent these two options.
QueryStringParameter
Series Respresents metadata associated with the series. Each series has a globally unique id that is generated by the system and a user defined key. The key must be unique among all of your series. Each series may have a set of tags and attributes that can be used to filter series during bulk reads. Attributes are key/value pairs. Both the key and attribute must be strings. Tags are keys with no values. Tags must also be strings.
SeriesProperty