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.
6107 6108 6109 |
# File 'lib/svc.rb', line 6107 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.
6112 6113 6114 6115 6116 6117 6118 6119 6120 |
# File 'lib/svc.rb', line 6112 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.
6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 |
# File 'lib/svc.rb', line 6123 def list( filter, *args, deadline: nil ) return @proxy_cluster_keys.list( filter, *args, deadline: deadline, ) end |