Merge "Document internet gateway properties:"

This commit is contained in:
Jenkins 2013-09-25 12:20:14 +00:00 committed by Gerrit Code Review
commit 637181bf3c
1 changed files with 7 additions and 3 deletions

View File

@ -59,11 +59,15 @@ class VPCGatewayAttachment(resource.Resource):
properties_schema = {
'VpcId': {
'Type': 'String',
'Required': True},
'InternetGatewayId': {'Type': 'String'},
'Required': True,
'Description': _('VPC ID for this gateway association.')},
'InternetGatewayId': {
'Type': 'String',
'Description': _('ID of the InternetGateway.')},
'VpnGatewayId': {
'Type': 'String',
'Implemented': False}
'Implemented': False,
'Description': _('ID of the VPNGateway to attach to the VPC.')}
}
def _vpc_route_tables(self):