Stephen Huff 7b1cf9eecd fix(rds2): handle create_db_instance when AllocatedStorage is not specified
In all of the tests of `create_db_instance()`, the `AllocatedStorage`
parameter is provided.  The [RDS API
reference](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html)
says this parameter is optional; however, when none is provided, moto
returns an obscure error message:

```
self = <botocore.parsers.QueryParser object at 0x113745890>, shape = <Shape(Integer)>, text = 'None'

    @_text_content
    def _handle_integer(self, shape, text):
>       return int(text)
E       ValueError: invalid literal for int() with base 10: 'None'

/usr/local/Cellar/pyenv/1.2.13_1/versions/3.7.4/envs/rds_encrypt/lib/python3.7/site-packages/botocore/parsers.py:466: ValueError
```

This PR adds default values that correspond to the current default API
behaviors.
2019-10-15 16:18:37 -04:00
..
2017-05-10 21:58:42 -04:00
2017-02-23 21:37:43 -05:00
2019-08-19 18:01:44 -05:00
2019-05-25 11:18:16 +01:00
2017-09-27 09:54:46 +01:00
2019-05-25 18:35:07 +01:00
2019-10-13 20:32:53 +02:00
2017-10-16 17:06:22 -07:00
2017-02-15 22:35:45 -05:00
2017-02-23 21:37:43 -05:00
2017-02-23 21:37:43 -05:00