Merge "Added documentation to BayModel attrs"

This commit is contained in:
Jenkins 2016-02-26 05:15:52 +00:00 committed by Gerrit Code Review
commit 9d2b0bcb3f
1 changed files with 9 additions and 4 deletions

View File

@ -100,14 +100,19 @@ class BayModel(base.APIBase):
"""A list containing a self link and associated baymodel links"""
http_proxy = wtypes.StringType(min_length=1, max_length=255)
"""http_proxy for the bay """
"""Address of a proxy that will receive all HTTP requests and relay them.
The format is a URL including a port number.
"""
https_proxy = wtypes.StringType(min_length=1, max_length=255)
"""https_proxy for the bay """
"""Address of a proxy that will receive all HTTPS requests and relay them.
The format is a URL including a port number.
"""
no_proxy = wtypes.StringType(min_length=1, max_length=255)
"""Its comma separated list of ip for which proxies should not
used in the bay"""
"""A comma separated list of ips for which proxies should not
used in the bay
"""
volume_driver = wtypes.StringType(min_length=1, max_length=255)
"""The name of the driver used for instantiating container volume driver"""