summaryrefslogtreecommitdiffstats
path: root/aclk/aclk-schemas/proto/context/v1/stream.proto
diff options
context:
space:
mode:
Diffstat (limited to 'aclk/aclk-schemas/proto/context/v1/stream.proto')
-rw-r--r--aclk/aclk-schemas/proto/context/v1/stream.proto34
1 files changed, 0 insertions, 34 deletions
diff --git a/aclk/aclk-schemas/proto/context/v1/stream.proto b/aclk/aclk-schemas/proto/context/v1/stream.proto
deleted file mode 100644
index a6e7e3abf..000000000
--- a/aclk/aclk-schemas/proto/context/v1/stream.proto
+++ /dev/null
@@ -1,34 +0,0 @@
-syntax = "proto3";
-
-package context.v1;
-
-option go_package = "context/v1;context";
-
-// ContextsCheckpoint is a Command produced by the Cloud, consumed by the Agent.
-//
-// It informs the Agent the contexts' version_hash that the cloud has for a specific NodeInstance.
-message ContextsCheckpoint {
- // claim_id, node_id pair is used to identify the NodeInstance.
- string claim_id = 1;
- string node_id = 2;
- // version_hash tells the Agent the current version hash for the contexts received
- // if the version hash calculated by the Agent is different, Agent will request
- // to re-sync all contexts.
- uint64 version_hash= 3;
-}
-
-// StopStreamingContexts is a Command produced by the Cloud, consumed by the Agent.
-//
-// It instructs the Agent to stop sending ContextsUpdated messages for a NodeInstance
-// due to a reason.
-message StopStreamingContexts {
- // claim_id, node_id pair is used to identify the node instance
- string claim_id = 1;
- string node_id = 2;
-
- StopStreamingContextsReason reason = 3;
-}
-
-enum StopStreamingContextsReason {
- RATE_LIMIT_EXCEEDED = 0;
-}