You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Get a single entity from the Cloud SIEM entity context store by its identifier, returning the historical
5508
+
# revisions of the entity in the requested time range. The endpoint can either return revisions across an
5509
+
# interval (`from` / `to`) or the snapshot of the entity at a single point in time (`as_of`); the two modes
5510
+
# are mutually exclusive.
5511
+
#
5512
+
# @param id [String] The unique identifier of the entity to retrieve.
5513
+
# @param opts [Hash] the optional parameters
5514
+
# @option opts [String] :from The start of the time range to query, as an RFC3339 timestamp or a relative time (for example, `now-7d`). Defaults to `now-7d`. Ignored when `as_of` is set.
5515
+
# @option opts [String] :to The end of the time range to query, as an RFC3339 timestamp or a relative time (for example, `now`). Defaults to `now`. Ignored when `as_of` is set.
5516
+
# @option opts [String] :as_of A point in time at which to query the entity revisions, as an RFC3339 timestamp, a Unix timestamp (in seconds), or a relative time (for example, `now-1d`). When set, `from` and `to` are ignored. Cannot be combined with custom `from` / `to` values.
5517
+
# @return [Array<(SingleEntityContextResponse, Integer, Hash)>] SingleEntityContextResponse data, response status code and response headers
0 commit comments