smplkit 3.0.30 → 3.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0021b5c734b38bf092baf71836eb50116e61087c9463c848720e709bb47b1e0d
|
|
4
|
+
data.tar.gz: 19b4d7532e2a64a94c36f9bcc7d420baf0ee1229e92bddf12eab715964cd5681
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e009701770ef8d010ac7e3ab60fb3d57e9c754a281f62eae73474a3cc0df63ddf4974c8c5d0779783e513bc363c4470e362ee50a718e66630a6e925142c3efb
|
|
7
|
+
data.tar.gz: 6a4bec0d70fbfeb4b6e7e65f3e896426802ae1058b0d0ceda867479ff0bd56582d2abe71869d60ebe8a27f759742a3bfbab5a09aba0c5702386deafaa7ea7ca9
|
|
@@ -16,7 +16,7 @@ require 'time'
|
|
|
16
16
|
module SmplkitGeneratedClient::Audit
|
|
17
17
|
# A destination that receives audit events recorded for the account. Each event recorded for the account is evaluated against every enabled forwarder. If the filter expression evaluates truthy — or is absent — the event is shaped by the configured transform and delivered to the destination defined by ``configuration``.
|
|
18
18
|
class Forwarder < ApiModelBase
|
|
19
|
-
# Human-readable name for the forwarder.
|
|
19
|
+
# Human-readable name for the forwarder. Must contain at least one non-whitespace character.
|
|
20
20
|
attr_accessor :name
|
|
21
21
|
|
|
22
22
|
# Free-text description for the forwarder.
|
|
@@ -37,7 +37,7 @@ module SmplkitGeneratedClient::Audit
|
|
|
37
37
|
# Template applied to each event before delivery. The shape depends on ``transform_type``: for `JSONATA`, a string containing a JSONata expression. Omit to deliver the event JSON unchanged.
|
|
38
38
|
attr_accessor :transform
|
|
39
39
|
|
|
40
|
-
# Transport-specific delivery configuration. Shape is discriminated by ``forwarder_type``; today all destination types use ``HttpConfiguration``.
|
|
40
|
+
# Transport-specific delivery configuration. Shape is discriminated by ``forwarder_type``; today all destination types use ``HttpConfiguration``. Each managed vendor type (`DATADOG`, `NEW_RELIC`, `HONEYCOMB`, `SPLUNK_HEC`, `ELASTIC`) requires a vendor-specific authentication header to be present with a non-empty value; see the destination's documentation for the expected header name.
|
|
41
41
|
attr_accessor :configuration
|
|
42
42
|
|
|
43
43
|
# When the forwarder was created.
|
|
@@ -14,12 +14,12 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module SmplkitGeneratedClient::Audit
|
|
17
|
-
# A single HTTP header attached to a forwarder delivery request. Header values
|
|
17
|
+
# A single HTTP header attached to a forwarder delivery request. Header values are encrypted at the application layer before persistence regardless of header name; the wire representation here is always plaintext on both the request and the response, so a `GET → mutate → PUT` round-trip preserves header values without requiring the customer to re-enter secrets.
|
|
18
18
|
class HttpHeader < ApiModelBase
|
|
19
19
|
# Header name.
|
|
20
20
|
attr_accessor :name
|
|
21
21
|
|
|
22
|
-
# Header value.
|
|
22
|
+
# Header value. Stored encrypted at rest; returned as plaintext on `GET`.
|
|
23
23
|
attr_accessor :value
|
|
24
24
|
|
|
25
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|