Class: SDM::AccountResources
- Inherits:
-
Object
- Object
- SDM::AccountResources
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
AccountResources enumerates the resources to which accounts have access. The AccountResources service is read-only.
See AccountResource.
Instance Method Summary collapse
-
#initialize(channel, parent) ⇒ AccountResources
constructor
A new instance of AccountResources.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of AccountResource records matching a given set of criteria.
Constructor Details
#initialize(channel, parent) ⇒ AccountResources
Returns a new instance of AccountResources.
775 776 777 778 779 780 781 782 |
# File 'lib/svc.rb', line 775 def initialize(channel, parent) begin @stub = V1::AccountResources::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 AccountResource records matching a given set of criteria.
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 |
# File 'lib/svc.rb', line 785 def list( filter, *args, deadline: nil ) req = V1::AccountResourceListRequest.new() req. = V1::ListRequestMetadata.new() if @parent.page_limit > 0 req..limit = @parent.page_limit 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.("AccountResources.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.account_resources.each do |plumbing_item| g.yield Plumbing::convert_account_resource_to_porcelain(plumbing_item) end break if plumbing_response..next_cursor == "" req..cursor = plumbing_response..next_cursor end } resp end |