Method: SDM::ManagedSecretRetrieveRequest#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(id: nil, public_key: nil) ⇒ ManagedSecretRetrieveRequest
Returns a new instance of ManagedSecretRetrieveRequest.
8759 8760 8761 8762 8763 8764 8765 |
# File 'lib/models/porcelain.rb', line 8759 def initialize( id: nil, public_key: nil ) @id = id == nil ? "" : id @public_key = public_key == nil ? "" : public_key end |