diff options
| author | Paul Michali <pcm@cisco.com> | 2013-09-17 11:28:20 -0400 |
|---|---|---|
| committer | Paul Michali <pcm@cisco.com> | 2013-09-17 12:23:41 -0400 |
| commit | 768c6392beb3ab40fe1f6d3eefa7d316e4a1a424 (patch) | |
| tree | 66c2fa8cba708a938f44535151d04b93e3a2c356 | |
| parent | e61e846292c7af0256bd3cdd908830187fe03d2f (diff) | |
| download | python-neutronclient-768c6392beb3ab40fe1f6d3eefa7d316e4a1a424.tar.gz | |
Update help string to match API doc
This changes the text to match what we are stating in
the API documentation (clarifying with review 46569).
Since there is no validation, no changes were made for
peer-address, which is now a string and not IPAddress.
Also, we are leaving peer-id as mandatory, per the API
document.
bug-1225129
Change-Id: I9c3f14213785084349b56a4081e34c209b878ec4
| -rw-r--r-- | neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py b/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py index c2eb8e6..ed81aaa 100644 --- a/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py +++ b/neutronclient/neutron/v2_0/vpn/ipsec_site_connection.py @@ -100,12 +100,12 @@ class CreateIPsecSiteConnection(neutronv20.CreateCommand): parser.add_argument( '--peer-address', required=True, - help='Remote branch router public ' - 'IPv4 address or IPv6 address or FQDN.') + help='Peer gateway public IPv4/IPv6 address or FQDN.') parser.add_argument( '--peer-id', required=True, - help='Remote branch router identity') + help='Peer router identity for authentication. Can be ' + 'IPv4/IPv6 address, e-mail address, key id, or FQDN.') parser.add_argument( '--peer-cidr', action='append', dest='peer_cidrs', |
