moto/moto/ram/urls.py
Anton Grübel a507314d45
RAM - implement CRUD endpoints (#3158)
* 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
2020-07-21 14:15:13 +01:00

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,
}