Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release IDM support #710

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ schema:
- "https://raw.githubusercontent.com/"

versions:
"2.31.0":
description: Support for writing timeseries to the core data models.
changelog:
added:
- Support for writing time series to the core data models.
"2.30.4":
description: Fix some minor issues related to retrying failed pushes to CDF.
changelog:
Expand Down
10 changes: 9 additions & 1 deletion schema/cognite_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Configuration for pushing data to Cognite Data Fusion (CDF)",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/cognite_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/cognite_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down Expand Up @@ -89,6 +89,14 @@
"relationships": {
"type": "boolean",
"description": "Set to `true` to enable creating relationships from OPC UA references. Requires [`extraction.relationships`](#extraction.relationships) to be enabled."
},
"space": {
"type": "string",
"description": "Data modeling space to write to. If this is set, metadata is written to the core data models instead of to CDF Clean. Note that only timeseries are currently supported. Nodes will be created in the CogniteExtractorTimeSeries view in the industrial data models."
},
"source": {
"type": "string",
"description": "External ID of the `source` that created core data model time series will be tied to. If this is not specified, it defaults to either `OPC_UA:[source.endpoint-url]` or `OPC_UA_NODESET:[source.node-set-source.nodesets[LAST].[file-name or url]`"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion schema/logger_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Configure logging to console or file",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/logger_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/logger_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down
2 changes: 1 addition & 1 deletion schema/state_storage_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"unevaluatedProperties": false,
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/state_store_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/state_store_config.schema.json"
}
],
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schema/ua_retries_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Configuration for retries on OPC-UA service calls",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/retry_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/retry_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down
Loading