Structures
The following structures are available globally.
-
Structure containing details of database document changes.
Changes can include creation, data updates, documents replicated from the server, or documents deleted.
See moreDeclaration
Swift
public struct DocumentChangedDetails
-
Query parameter structure to use when querying a known list of keys.
See moreDeclaration
Swift
public struct QueryByKeyList: QueryParameters
-
Query parameter structure to use when querying a range of keys.
See moreDeclaration
Swift
public struct QueryByKeyRange: QueryParameters
-
Aggregation functions allow you to perform mathematical operations on a number of data points to create a reduced number of data points. Aggregation functions each perform distinct mathematical operations and are performed on all the data points included in the sampling period.
See moreDeclaration
Swift
public struct TagAggregation
-
Groups allow you to construct a query to return data points in specified groups
Groups can be made by providing one or more of the following attribute:
name: Allows data points to be the name of a property of the data point. For example you could group data points by there quality by setting name =
quality
rangeSize: Is the number of values to place in a group. For example, a range size of 10 puts measurements between 0-9 in one group, 10-19 in the next group, and so on
groupCount: Defines the maximum number of groups to return. For example if you set the rangeSize to 1 hour and you set the groupCount to 24 than you would get 24 groups each with an hours worth of data points
Example of grouping by quality:
let group = TagGroup group.name = "quality" group.rangeSize = 4 group.groupCount = 4 ...
The above example would give you 4 groups of quality (Bad, Uncertain, Not Acceptable and Good). The first group would contain all quality values for bad data points, the second group would contain all the data points for uncertain data points and so on.
See moreDeclaration
Swift
public struct TagGroup
-
Queries enable you to filter and aggregate data based on properties of a Tag and its data points.
Time Series tags can have properties with different types of data values that represent quality, type, attributes, etc… of a data point. For example you could query all tags and all data points whos quality is Good, filtering out quality levels less than Good.
Queries can combined multiple elements or by using a single one. For example a TagQuery could specify a grouping with an aggregation and limit of how many data points to return or it would simply be a single item like limit to the last two data points.
Example of a query that would return tags grouped by their quality level and limited to the last 3 values
See morelet tagGroup = TagGroup(name: "quality") let tagQuery = TagQuery(name: "sensorTag", group: tagGroup, limit: 3) ...
Declaration
Swift
public struct TagQuery
-
The tag for a data point request and the values that were retreived by a data point request
See moreDeclaration
Swift
public struct TagDataPoint
-
DataPoint response information about how the data points are grouped for a tag
See moreDeclaration
Swift
public struct TagResultGroup
-
The value of a data point.
Each data point has three pieces of information. A timestamp, measurement and quality of the data point.
See moreDeclaration
Swift
public struct TagDataPointValue: Equatable
-
A single result for a tag that has been fetched from the Time Series service
The TagDataPointResult provides the grouping information for the tag, the data point value, any filters that have been applied and any attributes of the tag
See moreDeclaration
Swift
public struct TagDataPointResult
-
OptionSet indicating endpoint connectivity statuses
See moreDeclaration
Swift
public struct ReachabilityStatus: OptionSet, CustomStringConvertible
-
Model for Predix Sync server information as returned by the
See morePredixSyncServerInformationFetcher
Declaration
Swift
public struct PredixSyncServerInformation
-
Configuration for Authentication
See moreDeclaration
Swift
public struct AuthenticationManagerConfiguration
-
Configuration for TimeSeries
See moreDeclaration
Swift
public struct TimeSeriesManagerConfiguration
-
Configuration for AssetManager
See moreDeclaration
Swift
public struct AssetManagerConfiguration
-
Error codes for PredixSDK errors
See moreDeclaration
Swift
public struct ErrorCodes
-
Sampling for a given a Time Series aggregation
See moreDeclaration
Swift
public struct AggregationSampling
-
Specifies a range of time that would allow you to request data points that happened within that time range. The operation works much like the Swift Range object.
TimeRange can work with partial and close ranges
An example of a closed range would be requesting all times from 0 to 2
let timeRange = TimeRange(0...2)
An example of a partialRange would be asking for everything up to 2
let timeRange = TimeRange(...2)
or anything from 2
See morelet timeRange = TimeRange(2...)
Declaration
Swift
public struct TimeRange
-
A Time Series request to retrieve a datapoint or datapoints.
The DataPointRequest allows you to setup a request that can be used to fetch the datapoints for a set of tags and tag attributes.
Basic Usage:
let dataPointRequest = DataPointRequest(["sensorTag1"])
In this example a request would be created that when fetched would return all data points for sensorTag1
See moreDeclaration
Swift
public struct DataPointRequest
-
A LatestDataPointRequest fetches the latest data points for an array of given tag names
A latest data point request will return the last 15 days of data points received by the Time Series service. Latest data points does not support running a TagQuery to aggregate or filter the results.
See moreDeclaration
Swift
public struct LatestDataPointRequest
-
Stats object which holds rawCount attribute
See moreDeclaration
Swift
public struct Stats: Equatable
-
The response for a DataPointRequest
See moreDeclaration
Swift
public struct DataPointResponse: Equatable
-
A Model that represents a Predix UAA session. Please visit the UAA documentation site for more information
See moreDeclaration
Swift
public struct PredixUAAAccessToken
-
Handles registering device for push notifications on the Predix Push Notification service
Example usage:
See morelet pushRegistration = PushNotificationRegistation(token: deviceToken, userName: userName) pushRegistration.register(to: pushServiceURL, with: myApplicationKey)
Declaration
Swift
public struct PushNotificationRegistation: Codable