Skip to content

Commit

Permalink
add instanceID to a other relevant spots and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ozangoktan committed Dec 5, 2024
1 parent c9c2a6e commit 84d8027
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

using System.Collections.Generic;
using CogniteSdk.DataModels;

namespace CogniteSdk.Beta
{
Expand All @@ -18,6 +19,10 @@ public class WrappedTimeSeriesId
/// Timeseries external ID.
/// </summary>
public string ExternalId { get; set; }
/// <summary>
/// Timeseries instance ID.
/// </summary>
public InstanceIdentifier InstanceId { get; set; }
}

/// <summary>
Expand Down
6 changes: 6 additions & 0 deletions CogniteSdk.Types/Beta/Subscriptions/SubscriptionUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ public class SubscriptionUpdate
/// </summary>
public UpdateEnumerable<string> TimeSeriesIds { get; set; }
/// <summary>
/// Add or remove time series instance IDs for this subscription.
///
/// Not applicable to filter based subscriptions.
/// </summary>
public UpdateEnumerable<InstanceIdentifier> InstanceIds { get; set; }
/// <summary>
/// Update subscription name.
/// </summary>
public UpdateNullable<string> Name { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.10.0
4.11.0

0 comments on commit 84d8027

Please sign in to comment.