a507314d45
* Add ram.create_resource_share * Add ram.get_resource_shares * Add ram.update_resource_share * Add ram.delete_resource_share * Add ram.enable_sharing_with_aws_organization * Fix server tests * Add CR suggestions
13 lines
532 B
Python
13 lines
532 B
Python
from __future__ import unicode_literals
|
|
from .responses import ResourceAccessManagerResponse
|
|
|
|
url_bases = ["https?://ram.(.+).amazonaws.com"]
|
|
|
|
url_paths = {
|
|
"{0}/createresourceshare$": ResourceAccessManagerResponse.dispatch,
|
|
"{0}/deleteresourceshare/?$": ResourceAccessManagerResponse.dispatch,
|
|
"{0}/enablesharingwithawsorganization$": ResourceAccessManagerResponse.dispatch,
|
|
"{0}/getresourceshares$": ResourceAccessManagerResponse.dispatch,
|
|
"{0}/updateresourceshare$": ResourceAccessManagerResponse.dispatch,
|
|
}
|