The openstack_dashboard.dashboards.project.access_and_security.security_groups.forms Module

class openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.AddRule(*args, **kwargs)[source]

Bases: horizon.forms.base.SelfHandlingForm

base_fields = {'id': <django.forms.fields.CharField object at 0x2b27667fd0d0>, 'rule_menu': <django.forms.fields.ChoiceField object at 0x2b276674a990>, 'direction': <django.forms.fields.ChoiceField object at 0x2b276674a6d0>, 'ip_protocol': <django.forms.fields.IntegerField object at 0x2b276674a490>, 'port_or_range': <django.forms.fields.ChoiceField object at 0x2b276674abd0>, 'port': <django.forms.fields.IntegerField object at 0x2b276674a750>, 'from_port': <django.forms.fields.IntegerField object at 0x2b276674ae10>, 'to_port': <django.forms.fields.IntegerField object at 0x2b276468ccd0>, 'icmp_type': <django.forms.fields.IntegerField object at 0x2b27662059d0>, 'icmp_code': <django.forms.fields.IntegerField object at 0x2b2766205c10>, 'remote': <django.forms.fields.ChoiceField object at 0x2b2766205910>, 'cidr': <horizon.forms.fields.IPField object at 0x2b2766205050>, 'security_group': <django.forms.fields.ChoiceField object at 0x2b2766205b90>, 'ethertype': <django.forms.fields.ChoiceField object at 0x2b2764e26650>}
clean()[source]
handle(request, data)[source]
media
class openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.CreateGroup(request, *args, **kwargs)[source]

Bases: openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.GroupBase

base_fields = {'name': <django.forms.fields.CharField object at 0x2b27667fd250>, 'description': <django.forms.fields.CharField object at 0x2b27667fdcd0>}
error_message = <django.utils.functional.__proxy__ object at 0x2b27667fd810>
media
success_message = <django.utils.functional.__proxy__ object at 0x2b27667fd410>
class openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.GroupBase(request, *args, **kwargs)[source]

Bases: horizon.forms.base.SelfHandlingForm

Base class to handle creation and update of security groups.

Children classes must define two attributes:

success_message

A success message containing the placeholder %s, which will be replaced by the group name.

error_message

An error message containing the placeholder %s, which will be replaced by the error message.

base_fields = {'name': <django.forms.fields.CharField object at 0x2b27667fd250>, 'description': <django.forms.fields.CharField object at 0x2b27667fdcd0>}
handle(request, data)[source]
media
class openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.UpdateGroup(request, *args, **kwargs)[source]

Bases: openstack_dashboard.dashboards.project.access_and_security.security_groups.forms.GroupBase

base_fields = {'name': <django.forms.fields.CharField object at 0x2b27667fd250>, 'description': <django.forms.fields.CharField object at 0x2b27667fdcd0>, 'id': <django.forms.fields.CharField object at 0x2b27667fda10>}
error_message = <django.utils.functional.__proxy__ object at 0x2b27667fd590>
media
success_message = <django.utils.functional.__proxy__ object at 0x2b27667fdf90>

Previous topic

The openstack_dashboard.dashboards.project.access_and_security.security_groups.tables Module

Next topic

The openstack_dashboard.dashboards.project.access_and_security.floating_ips.views Module

This Page