smplkit 1.0.25 → 1.0.26
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: 7bdf868508ed91a94310a12e8341733ae453385e42104713e694c60641538bc1
|
|
4
|
+
data.tar.gz: 003c013da94f5776a03d32458704700bbca466b3b00c6b67b93971bba5e2f746
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7aec9a8462b8c935bee1467149de3789d168f92fab61862b41ba36e4bded04b32f487110bc509033b77a39b01254c35cd5ed4d903d694d6b62d026d8975f4a9
|
|
7
|
+
data.tar.gz: 1a4cb3c19a8e58e51a0347d059825b0ff1fe9f9f90350f140cf7a68c2714107d4bcfdc2870b44ee2afd754c993e90454e41101fa046e277b30476952469479e9
|
|
@@ -217,7 +217,7 @@ module SmplkitGeneratedClient::Audit
|
|
|
217
217
|
end
|
|
218
218
|
|
|
219
219
|
# Get Forwarder
|
|
220
|
-
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are
|
|
220
|
+
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted ``forwarder_delivery.request`` log column is what keeps redaction; that read path is unaffected by this route.
|
|
221
221
|
# @param forwarder_id [String]
|
|
222
222
|
# @param [Hash] opts the optional parameters
|
|
223
223
|
# @return [ForwarderResponse]
|
|
@@ -227,7 +227,7 @@ module SmplkitGeneratedClient::Audit
|
|
|
227
227
|
end
|
|
228
228
|
|
|
229
229
|
# Get Forwarder
|
|
230
|
-
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are
|
|
230
|
+
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted ``forwarder_delivery.request`` log column is what keeps redaction; that read path is unaffected by this route.
|
|
231
231
|
# @param forwarder_id [String]
|
|
232
232
|
# @param [Hash] opts the optional parameters
|
|
233
233
|
# @return [Array<(ForwarderResponse, Integer, Hash)>] ForwarderResponse data, response status code and response headers
|
|
@@ -564,7 +564,7 @@ module SmplkitGeneratedClient::Audit
|
|
|
564
564
|
end
|
|
565
565
|
|
|
566
566
|
# Update Forwarder
|
|
567
|
-
# Full-replace update. PUT semantics — every field is overwritten. The
|
|
567
|
+
# Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
|
|
568
568
|
# @param forwarder_id [String]
|
|
569
569
|
# @param forwarder_response [ForwarderResponse]
|
|
570
570
|
# @param [Hash] opts the optional parameters
|
|
@@ -575,7 +575,7 @@ module SmplkitGeneratedClient::Audit
|
|
|
575
575
|
end
|
|
576
576
|
|
|
577
577
|
# Update Forwarder
|
|
578
|
-
# Full-replace update. PUT semantics — every field is overwritten. The
|
|
578
|
+
# Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
|
|
579
579
|
# @param forwarder_id [String]
|
|
580
580
|
# @param forwarder_response [ForwarderResponse]
|
|
581
581
|
# @param [Hash] opts the optional parameters
|
|
@@ -70,7 +70,7 @@ describe 'ForwardersApi' do
|
|
|
70
70
|
|
|
71
71
|
# unit tests for get_forwarder
|
|
72
72
|
# Get Forwarder
|
|
73
|
-
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are
|
|
73
|
+
# Retrieve a single forwarder by id. Returns 404 if no forwarder with that id exists in the caller's account, including if the forwarder is soft-deleted. Header values in the response are returned in plaintext so callers can perform a GET-modify-PUT round-trip without re-entering secrets (ADR-014). The persisted ``forwarder_delivery.request`` log column is what keeps redaction; that read path is unaffected by this route.
|
|
74
74
|
# @param forwarder_id
|
|
75
75
|
# @param [Hash] opts the optional parameters
|
|
76
76
|
# @return [ForwarderResponse]
|
|
@@ -138,7 +138,7 @@ describe 'ForwardersApi' do
|
|
|
138
138
|
|
|
139
139
|
# unit tests for update_forwarder
|
|
140
140
|
# Update Forwarder
|
|
141
|
-
# Full-replace update. PUT semantics — every field is overwritten. The
|
|
141
|
+
# Full-replace update. PUT semantics — every field is overwritten. The GET path returns plaintext header values, so the standard get-mutate-put round-trip (ADR-014) preserves secrets without any extra work from the caller: GET, change one field, PUT the result.
|
|
142
142
|
# @param forwarder_id
|
|
143
143
|
# @param forwarder_response
|
|
144
144
|
# @param [Hash] opts the optional parameters
|