Class: SDM::SnapshotProxyClusterKeys
- Inherits:
-
Object
- Object
- SDM::SnapshotProxyClusterKeys
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotProxyClusterKeys exposes the read only methods of the ProxyClusterKeys service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one ProxyClusterKey by ID.
-
#initialize(proxy_cluster_keys) ⇒ SnapshotProxyClusterKeys
constructor
A new instance of SnapshotProxyClusterKeys.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of ProxyClusterKeys matching a given set of criteria.
Constructor Details
#initialize(proxy_cluster_keys) ⇒ SnapshotProxyClusterKeys
Returns a new instance of SnapshotProxyClusterKeys.
5443 5444 5445 |
# File 'lib/svc.rb', line 5443 def initialize(proxy_cluster_keys) @proxy_cluster_keys = proxy_cluster_keys end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one ProxyClusterKey by ID.
5448 5449 5450 5451 5452 5453 5454 5455 5456 |
# File 'lib/svc.rb', line 5448 def get( id, deadline: nil ) return @proxy_cluster_keys.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of ProxyClusterKeys matching a given set of criteria.
5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 |
# File 'lib/svc.rb', line 5459 def list( filter, *args, deadline: nil ) return @proxy_cluster_keys.list( filter, *args, deadline: deadline, ) end |