[WIP] Resource tagging (#1332)
* Ran scaffold * Made a start on get_resources. * Added more EC2 to tag list * More stuff * Added more methods * Added S3 region name * Added values test * Some final touchups
This commit is contained in:
parent
474023f9a1
commit
8ee05e22af
9 changed files with 877 additions and 0 deletions
10
moto/resourcegroupstaggingapi/urls.py
Normal file
10
moto/resourcegroupstaggingapi/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from __future__ import unicode_literals
|
||||
from .responses import ResourceGroupsTaggingAPIResponse
|
||||
|
||||
url_bases = [
|
||||
"https?://tagging.(.+).amazonaws.com",
|
||||
]
|
||||
|
||||
url_paths = {
|
||||
'{0}/$': ResourceGroupsTaggingAPIResponse.dispatch,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue