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.
11095 11096 11097 11098 11099 |
# File 'lib/models/porcelain.rb', line 11095 def initialize( filter: nil ) @filter = filter == nil ? "" : filter end |
Instance Attribute Details
#filter ⇒ Object
A human-readable filter query string.
11093 11094 11095 |
# File 'lib/models/porcelain.rb', line 11093 def filter @filter end |
Instance Method Details
#to_json(options = {}) ⇒ Object
11101 11102 11103 11104 11105 11106 11107 |
# File 'lib/models/porcelain.rb', line 11101 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 |