Class: Smplkit::Management::AuditNamespace
- Inherits:
-
Object
- Object
- Smplkit::Management::AuditNamespace
- Defined in:
- lib/smplkit/management/audit.rb
Overview
Audit management surface — accessed via mgmt.audit.forwarders.
Counterpart to the runtime Audit::AuditClient. The runtime client owns event recording and read-side queries; this surface owns SIEM forwarder CRUD. ADR-047 §2.7.
Instance Attribute Summary collapse
-
#forwarders ⇒ ForwardersNamespace
readonly
CRUD surface for
mgmt.audit.forwarders.
Instance Method Summary collapse
-
#initialize(api_client) ⇒ AuditNamespace
constructor
A new instance of AuditNamespace.
Constructor Details
#initialize(api_client) ⇒ AuditNamespace
Returns a new instance of AuditNamespace.
14 15 16 17 18 |
# File 'lib/smplkit/management/audit.rb', line 14 def initialize(api_client) @forwarders = ForwardersNamespace.new( SmplkitGeneratedClient::Audit::ForwardersApi.new(api_client) ) end |
Instance Attribute Details
#forwarders ⇒ ForwardersNamespace (readonly)
Returns CRUD surface for mgmt.audit.forwarders.
12 13 14 |
# File 'lib/smplkit/management/audit.rb', line 12 def forwarders @forwarders end |