From 836b47cb7e99a977c5a23b059ca1d0b5065d310e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 24 Jul 2024 11:54:23 +0200 Subject: Merging upstream version 1.46.3. Signed-off-by: Daniel Baumann --- aclk/aclk-schemas/proto/context/v1/context.proto | 57 ------------------------ 1 file changed, 57 deletions(-) delete mode 100644 aclk/aclk-schemas/proto/context/v1/context.proto (limited to 'aclk/aclk-schemas/proto/context/v1/context.proto') diff --git a/aclk/aclk-schemas/proto/context/v1/context.proto b/aclk/aclk-schemas/proto/context/v1/context.proto deleted file mode 100644 index eb771f8eb..000000000 --- a/aclk/aclk-schemas/proto/context/v1/context.proto +++ /dev/null @@ -1,57 +0,0 @@ -syntax = "proto3"; - -package context.v1; - -option go_package = "context/v1;context"; - -// ContextsUpdated is an Event produced by the Agent, consumed by the Cloud. -// -// it contains a collection of ContextUpdated messages for a specific NodeInstance. -message ContextsUpdated { - // contexUpdates contains the collection of context updates - repeated ContextUpdated contextUpdates = 1; - // claim_id, node_id pair identifies the node instance - string claim_id = 2; - string node_id = 3; - // version_hash is the contexts version_hash result the cloud should - // get after applying this message updates. - uint64 version_hash = 4; - // it's and always increasing number to compare - // which version_hash is more recent between multiple - // ContextsUpdated messages. Bigger means more recent. - uint64 created_at = 5; -} - -// ContextUpdated contains context data. -message ContextUpdated { - // context id - string id = 1; - // context version is an epoch in seconds. - uint64 version = 2; - // first_entry, last_entry are epochs in seconds - uint64 first_entry = 3; - uint64 last_entry = 4; - // deleted flag is used to signal a context deletion - bool deleted = 5; - // context configuration fields - string title = 6; - uint64 priority = 7; - string chart_type = 8; - string units = 9; - string family = 10; -} - -// ContextsSnapshot is an Event produced by the Agent, consumed by the Cloud. -// -// it contains a snapshot of the existing contexts on the Agent. -// snapshot version and context versions are epochs in seconds so we can -// identify if a context version was generated after a specific snapshot. -message ContextsSnapshot { - // contexts contains the collection of existing contexts - repeated ContextUpdated contexts = 1; - // claim_id, node_id pair identifies the node instance - string claim_id = 2; - string node_id = 3; - // version is an epoch in seconds - uint64 version = 4; -} -- cgit v1.2.3