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
806 807 808 809 810 811 812 813 |
# File 'lib/svc.rb', line 806 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.
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 |
# File 'lib/svc.rb', line 816 def list( filter, *args, deadline: nil ) req = V1::AccountResourceListRequest.new() req. = V1::ListRequestMetadata.new() if not @parent.page_limit.nil? 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, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) 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 |