Fix a typo in sample policy file

In the sample policy file, HTTP method should be all uppercase,
the'PUT' was wrongly written as'Put'.

Change-Id: Ie0cec484b5f021fa3ed3c49c242be0a0d02e2e1d
This commit is contained in:
Hanxiang Gao 2020-10-27 14:51:01 +08:00
parent 6397a03ed8
commit fb6945810c
1 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ rules = [
'Onboard existing subnet into a subnetpool',
[
{
'method': 'Put',
'method': 'PUT',
'path': ONBOARD_PATH,
},
]
@ -127,7 +127,7 @@ rules = [
'Add prefixes to a subnetpool',
[
{
'method': 'Put',
'method': 'PUT',
'path': ADD_PREFIXES_PATH,
},
]
@ -138,7 +138,7 @@ rules = [
'Remove unallocated prefixes from a subnetpool',
[
{
'method': 'Put',
'method': 'PUT',
'path': REMOVE_PREFIXES_PATH,
},
]