Add vault operations.
This commit is contained in:
parent
b296294086
commit
7156df1a63
9 changed files with 208 additions and 0 deletions
11
moto/glacier/urls.py
Normal file
11
moto/glacier/urls.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from __future__ import unicode_literals
|
||||
from .responses import GlacierResponse
|
||||
|
||||
url_bases = [
|
||||
"https?://glacier.(.+).amazonaws.com",
|
||||
]
|
||||
|
||||
url_paths = {
|
||||
'{0}/(?P<account_number>.+)/vaults$': GlacierResponse.all_vault_response,
|
||||
'{0}/(?P<account_number>.+)/vaults/(?P<vault_name>.+)$': GlacierResponse.vault_response,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue