Method: SDM::SecretStores#initialize

Defined in:
lib/svc.rb

#initialize(channel, parent) ⇒ SecretStores

Returns a new instance of SecretStores.



4524
4525
4526
4527
4528
4529
4530
4531
# File 'lib/svc.rb', line 4524

def initialize(channel, parent)
  begin
    @stub = V1::SecretStores::Stub.new(nil, nil, channel_override: channel)
  rescue => exception
    raise Plumbing::convert_error_to_porcelain(exception)
  end
  @parent = parent
end