Class: SDM::ManagedSecretLogsRequest
- Inherits:
-
Object
- Object
- SDM::ManagedSecretLogsRequest
- Defined in:
- lib/models/porcelain.rb
Overview
ManagedSecretLogsRequest specifies criteria for retrieving a log of Managed Secrets actions.
Instance Attribute Summary collapse
-
#filter ⇒ Object
A human-readable filter query string.
Instance Method Summary collapse
-
#initialize(filter: nil) ⇒ ManagedSecretLogsRequest
constructor
A new instance of ManagedSecretLogsRequest.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(filter: nil) ⇒ ManagedSecretLogsRequest
Returns a new instance of ManagedSecretLogsRequest.
9848 9849 9850 9851 9852 |
# File 'lib/models/porcelain.rb', line 9848 def initialize( filter: nil ) @filter = filter == nil ? "" : filter end |
Instance Attribute Details
#filter ⇒ Object
A human-readable filter query string.
9846 9847 9848 |
# File 'lib/models/porcelain.rb', line 9846 def filter @filter end |
Instance Method Details
#to_json(options = {}) ⇒ Object
9854 9855 9856 9857 9858 9859 9860 |
# File 'lib/models/porcelain.rb', line 9854 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |