You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, there is nothing equivalent to resource.available_resources. I think that this would be helpful. Marking as feature request.
One way you could go about figuring the available resources for now is using the inspect module to figure out the resources members and then look for any member that begins with a capitol letter. Those are usually the resources.
Thanks. I can also find what I'm looking for by accessing the _loader private attribute of the client and then loading the service model but, of course, I shouldn't be mucking around with those private attributes.
We currently have the ability to inspect what resources are available to
a session, but not what subresources are available to a resource. This
adds a method to do that on each resource class.
Resolvesboto#113
I can easily find the available service resources give a session:
But is there a way to find the available resources for a given service resource? I.E. is there some way to get the equivalent of:
I've been going through the code for a while and can't really figure out an easy way to do this.
The text was updated successfully, but these errors were encountered: