Method: SDM::ManagedSecretRetrieveRequest#initialize

Defined in:
lib/models/porcelain.rb

#initialize(id: nil, public_key: nil) ⇒ ManagedSecretRetrieveRequest

Returns a new instance of ManagedSecretRetrieveRequest.



8593
8594
8595
8596
8597
8598
8599
# File 'lib/models/porcelain.rb', line 8593

def initialize(
  id: nil,
  public_key: nil
)
  @id = id == nil ? "" : id
  @public_key = public_key == nil ? "" : public_key
end