Class: SDM::RoleResources
- Inherits:
-
Object
- Object
- SDM::RoleResources
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
RoleResources enumerates the resources to which roles have access. The RoleResources service is read-only.
See RoleResource.
Instance Method Summary collapse
-
#initialize(channel, parent) ⇒ RoleResources
constructor
A new instance of RoleResources.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RoleResource records matching a given set of criteria.
Constructor Details
#initialize(channel, parent) ⇒ RoleResources
Returns a new instance of RoleResources.
2391 2392 2393 2394 2395 2396 2397 2398 |
# File 'lib/svc.rb', line 2391 def initialize(channel, parent) begin @stub = V1::RoleResources::Stub.new(nil, nil, channel_override: channel) rescue => exception raise Plumbing::convert_error_to_porcelain(exception) end @parent = parent end |
Instance Method Details
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RoleResource records matching a given set of criteria.
2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 |
# File 'lib/svc.rb', line 2401 def list( filter, *args, deadline: nil ) req = V1::RoleResourceListRequest.new() req. = V1::ListRequestMetadata.new() page_size_option = @parent.["PageSize"] if page_size_option.is_a? Integer req..limit = page_size_option end if not @parent.snapshot_time.nil? req..snapshot_at = @parent.snapshot_time end req.filter = Plumbing::quote_filter_args(filter, *args) resp = Enumerator::Generator.new { |g| tries = 0 loop do begin plumbing_response = @stub.list(req, metadata: @parent.("RoleResources.List", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception)) tries + +@parent.jitterSleep(tries) next end raise Plumbing::convert_error_to_porcelain(exception) end tries = 0 plumbing_response.role_resources.each do |plumbing_item| g.yield Plumbing::convert_role_resource_to_porcelain(plumbing_item) end break if plumbing_response..next_cursor == "" req..cursor = plumbing_response..next_cursor end } resp end |