smplkit 3.0.30 → 3.0.31
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: dc5e08cf2ae84ef61652aded8b7701d5ec67471f9a53080f0949d4781b85a461
|
|
4
|
+
data.tar.gz: 8de8616d64928b4fdd814371b1f831a0e1f5999dfe87a39e66cac8589b19de2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dab6e36f952afe75ad6cf1a959d4fd8cc598b5fdda02c63ee9fea59e5f97ee2a5bc5ded446579cb94f0770cd27b221df773b879d4e268e98111fb37930dd4cdb
|
|
7
|
+
data.tar.gz: 4ebfc82dbd61fc7c03375f24c88dad1f5fc082e29dc8233a8884492b320198ca87e8419541c63939ce2ad61b63c18a6b9279f9cdee131c6ce223ae0debb78dd1
|
|
@@ -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.
|