~ubuntu-branches/ubuntu/wily/horizon/wily-proposed

« back to all changes in this revision

Viewing changes to openstack_dashboard/api/network_base.py

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2015-09-08 15:52:37 UTC
  • mfrom: (0.20.1) (0.19.3)
  • Revision ID: package-import@ubuntu.com-20150908155237-7muid4idbm4qdelw
Tags: 2:8.0.0~b3-0ubuntu1
* New upstream milestone for OpenStack Liberty.
* d/control: Align (build-)depends with upstream.
* d/p/ubuntu_settings.patch: Rebased.
* d/p/embedded-xstatic.patch: Rebased.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
    def associate(self, floating_ip_id, port_id):
85
85
        """Associates the floating IP to the port.
86
86
 
87
 
        port_id is a fixed IP of a instance (Nova) or
88
 
        a port_id attached to a VNIC of a instance.
 
87
        port_id is a fixed IP of an instance (Nova) or
 
88
        a port_id attached to a VNIC of an instance.
89
89
        """
90
90
        pass
91
91
 
170
170
    * from_port: lower limit of allowed port range (inclusive)
171
171
    * to_port: upper limit of allowed port range (inclusive)
172
172
    * ip_range: remote IP CIDR (source for ingress, dest for egress).
173
 
    The value should be a format of "{'cidr': <cidr>}"
 
173
      The value should be a format of "{'cidr': <cidr>}"
174
174
    * group: remote security group. The value should be a format of
175
 
    "{'name': <secgroup_name>}"
 
175
      "{'name': <secgroup_name>}"
176
176
 
177
177
    """
178
178