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.
11344 11345 11346 11347 11348 |
# File 'lib/models/porcelain.rb', line 11344 def initialize( filter: nil ) @filter = filter == nil ? "" : filter end |
Instance Attribute Details
#filter ⇒ Object
A human-readable filter query string.
11342 11343 11344 |
# File 'lib/models/porcelain.rb', line 11342 def filter @filter end |
Instance Method Details
#to_json(options = {}) ⇒ Object
11350 11351 11352 11353 11354 11355 11356 |
# File 'lib/models/porcelain.rb', line 11350 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 |