smplkit 3.0.86 → 3.0.87
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: c2fdb5a80c9783bf884e828769eb3474b2006337a2850d31f3e7db99ffd42d14
|
|
4
|
+
data.tar.gz: 4d8d2f80f0f7b77744c34c09fe0a73215e80ebb7049a630a6d068b0d7c860826
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 163879655a41a24c1aaeeb74c36d3ad0f7cbb7ddb9253c1a64e213e596dbd6ae3ecfb6819b3f2f60d648677c1e36a1491ec1c4c4c757722d1ad7e7c08934b58b
|
|
7
|
+
data.tar.gz: '058b6d8e3509ec5a2cd476c33b61ae16c2f2346bac8b2fdb5a1a64c78a5dac3730c57db03a2063d557e3f65266d4030d7626895a2703310881512dd2ee2cfc96'
|
|
@@ -14,18 +14,18 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module SmplkitGeneratedClient::Audit
|
|
17
|
-
# HTTP request configuration
|
|
17
|
+
# HTTP request configuration for delivering a payload to a destination. The shared base shape for any product that posts to a customer-supplied HTTP destination. Smpl Audit forwarders use it directly; Smpl Jobs extends it (adding ``body`` and ``timeout``). When other transports land (``FTP``, ``SQS``, …) their own configuration schemas will join this one as members of a discriminated union under a ``configuration`` field.
|
|
18
18
|
class HttpConfiguration < ApiModelBase
|
|
19
|
-
# HTTP method used when delivering
|
|
19
|
+
# HTTP method used when delivering the request.
|
|
20
20
|
attr_accessor :method
|
|
21
21
|
|
|
22
22
|
# Destination URL. Must be an absolute `http://` or `https://` URL with a hostname (e.g. `https://siem.example.com/in`).
|
|
23
23
|
attr_accessor :url
|
|
24
24
|
|
|
25
|
-
# HTTP headers attached to each
|
|
25
|
+
# HTTP headers attached to each request.
|
|
26
26
|
attr_accessor :headers
|
|
27
27
|
|
|
28
|
-
# HTTP response status that indicates
|
|
28
|
+
# HTTP response status that indicates success. Either a specific status code (e.g. `200`, `204`) or a status class (`1xx`, `2xx`, `3xx`, `4xx`, `5xx`).
|
|
29
29
|
attr_accessor :success_status
|
|
30
30
|
|
|
31
31
|
# Whether to verify the destination server's TLS certificate against trusted certificate authorities. Defaults to `true` and should be left on for any production destination. Set to `false` only for development or short-lived testing against a destination that presents an untrusted certificate (e.g. a Splunk Cloud trial stack on `:8088` serving its default self-signed certificate). When `false`, deliveries proceed without certificate verification — they are vulnerable to man-in-the-middle attacks. For long-lived self-signed setups, pin the issuing CA via `ca_cert` instead of disabling verification entirely.
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module SmplkitGeneratedClient::Audit
|
|
17
|
-
# A single HTTP header attached to
|
|
17
|
+
# A single HTTP header attached to an outbound 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
|