Class UsersResource.DataSourcesResource
The "dataSources" collection of methods.
Inherited Members
Namespace: Google.Apis.Fitness.v1
Assembly: Google.Apis.Fitness.v1.dll
Syntax
public class UsersResource.DataSourcesResource
Constructors
DataSourcesResource(IClientService)
Constructs a new resource.
Declaration
public DataSourcesResource(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
DataPointChanges
Gets the DataPointChanges resource.
Declaration
public virtual UsersResource.DataSourcesResource.DataPointChangesResource DataPointChanges { get; }
Property Value
Type | Description |
---|---|
UsersResource.DataSourcesResource.DataPointChangesResource |
Datasets
Gets the Datasets resource.
Declaration
public virtual UsersResource.DataSourcesResource.DatasetsResource Datasets { get; }
Property Value
Type | Description |
---|---|
UsersResource.DataSourcesResource.DatasetsResource |
Methods
Create(DataSource, string)
Creates a new data source that is unique across all data sources belonging to this user. A data source is a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point in every dataset inserted into or read from the Fitness API has an associated data source. Each data source produces a unique stream of dataset updates, with a unique data source identifier. Not all changes to data source affect the data stream ID, so that data collected by updated versions of the same application/device can still be considered to belong to the same data source. Data sources are identified using a string generated by the server, based on the contents of the source being created. The dataStreamId field should not be set when invoking this method. It will be automatically generated by the server with the correct format. If a dataStreamId is set, it must match the format that the server would generate. This format is a combination of some fields from the data source, and has a specific order. If it doesn't match, the request will fail with an error. Specifying a DataType which is not a known type (beginning with "com.google.") will create a DataSource with a custom data type. Custom data types are only readable by the application that created them. Custom data types are deprecated; use standard data types instead. In addition to the data source fields included in the data source ID, the developer project number that is authenticated when creating the data source is included. This developer project number is obfuscated when read by any other developer reading public data types.
Declaration
public virtual UsersResource.DataSourcesResource.CreateRequest Create(DataSource body, string userId)
Parameters
Type | Name | Description |
---|---|---|
DataSource | body | The body of the request. |
string | userId | Create the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. |
Returns
Type | Description |
---|---|
UsersResource.DataSourcesResource.CreateRequest |
Delete(string, string)
Deletes the specified data source. The request will fail if the data source contains any data points.
Declaration
public virtual UsersResource.DataSourcesResource.DeleteRequest Delete(string userId, string dataSourceId)
Parameters
Type | Name | Description |
---|---|---|
string | userId | Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. |
string | dataSourceId | The data stream ID of the data source to delete. |
Returns
Type | Description |
---|---|
UsersResource.DataSourcesResource.DeleteRequest |
Get(string, string)
Returns the specified data source.
Declaration
public virtual UsersResource.DataSourcesResource.GetRequest Get(string userId, string dataSourceId)
Parameters
Type | Name | Description |
---|---|---|
string | userId | Retrieve a data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. |
string | dataSourceId | The data stream ID of the data source to retrieve. |
Returns
Type | Description |
---|---|
UsersResource.DataSourcesResource.GetRequest |
List(string)
Lists all data sources that are visible to the developer, using the OAuth scopes provided. The list is not exhaustive; the user may have private data sources that are only visible to other developers, or calls using other scopes.
Declaration
public virtual UsersResource.DataSourcesResource.ListRequest List(string userId)
Parameters
Type | Name | Description |
---|---|---|
string | userId | List data sources for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. |
Returns
Type | Description |
---|---|
UsersResource.DataSourcesResource.ListRequest |
Update(DataSource, string, string)
Updates the specified data source. The dataStreamId, dataType, type, dataStreamName, and device properties with the exception of version, cannot be modified. Data sources are identified by their dataStreamId.
Declaration
public virtual UsersResource.DataSourcesResource.UpdateRequest Update(DataSource body, string userId, string dataSourceId)
Parameters
Type | Name | Description |
---|---|---|
DataSource | body | The body of the request. |
string | userId | Update the data source for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. |
string | dataSourceId | The data stream ID of the data source to update. |
Returns
Type | Description |
---|---|
UsersResource.DataSourcesResource.UpdateRequest |