Class: SDM::SnapshotSecretStores
- Inherits:
-
Object
- Object
- SDM::SnapshotSecretStores
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotSecretStores exposes the read only methods of the SecretStores service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one SecretStore by ID.
-
#initialize(secret_stores) ⇒ SnapshotSecretStores
constructor
A new instance of SnapshotSecretStores.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of SecretStores matching a given set of criteria.
Constructor Details
#initialize(secret_stores) ⇒ SnapshotSecretStores
6034 6035 6036 |
# File 'lib/svc.rb', line 6034 def initialize(secret_stores) @secret_stores = secret_stores end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one SecretStore by ID.
6039 6040 6041 6042 6043 6044 6045 6046 6047 |
# File 'lib/svc.rb', line 6039 def get( id, deadline: nil ) return @secret_stores.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of SecretStores matching a given set of criteria.
6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 |
# File 'lib/svc.rb', line 6050 def list( filter, *args, deadline: nil ) return @secret_stores.list( filter, *args, deadline: deadline, ) end |