The openstack_dashboard.dashboards.project.networks.workflows ModuleΒΆ

class openstack_dashboard.dashboards.project.networks.workflows.CreateNetwork(request=None, context_seed=None, entry_point=None, *args, **kwargs)[source]

Bases: horizon.workflows.base.Workflow

default_steps = (<class 'openstack_dashboard.dashboards.project.networks.workflows.CreateNetworkInfo'>, <class 'openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetInfo'>, <class 'openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetDetail'>)
failure_message = <django.utils.functional.__proxy__ object at 0xab37c50>
finalize_button_name = <django.utils.functional.__proxy__ object at 0xab37590>
format_status_message(message)[source]
get_failure_url()[source]
get_success_url()[source]
handle(request, data)[source]
name = <django.utils.functional.__proxy__ object at 0xab37810>
slug = 'create_network'
success_message = <django.utils.functional.__proxy__ object at 0xab37490>
wizard = True
class openstack_dashboard.dashboards.project.networks.workflows.CreateNetworkInfo(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of CreateNetworkInfoAction

contributes = ('net_name', 'admin_state', 'net_profile_id', 'with_subnet')
class openstack_dashboard.dashboards.project.networks.workflows.CreateNetworkInfoAction(request, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('net_name', <django.forms.fields.CharField object at 0xa54d890>), ('net_profile_id', <django.forms.fields.ChoiceField object at 0x9190d10>), ('admin_state', <django.forms.fields.ChoiceField object at 0x9190250>), ('with_subnet', <django.forms.fields.BooleanField object at 0x7752e90>)])
declared_fields = OrderedDict([('net_name', <django.forms.fields.CharField object at 0xa54d890>), ('net_profile_id', <django.forms.fields.ChoiceField object at 0x9190d10>), ('admin_state', <django.forms.fields.ChoiceField object at 0x9190250>), ('with_subnet', <django.forms.fields.BooleanField object at 0x7752e90>)])
get_network_profile_choices(request)[source]
help_text = <django.utils.functional.__proxy__ object at 0x7752550>
help_text_template = None
media
name = <django.utils.functional.__proxy__ object at 0x7752750>
permissions = ()
progress_message = <django.utils.functional.__proxy__ object at 0x99252d0>
slug = u'createnetworkinfoaction'
widget = <django.forms.widgets.HiddenInput object at 0x69f5a10>
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetDetail(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of CreateSubnetDetailAction

contributes = ('enable_dhcp', 'ipv6_modes', 'allocation_pools', 'dns_nameservers', 'host_routes')
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetDetailAction(request, context, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('enable_dhcp', <django.forms.fields.BooleanField object at 0xa235e50>), ('ipv6_modes', <django.forms.fields.ChoiceField object at 0xa2350d0>), ('allocation_pools', <django.forms.fields.CharField object at 0xa235a90>), ('dns_nameservers', <django.forms.fields.CharField object at 0xab37e50>), ('host_routes', <django.forms.fields.CharField object at 0xab37f90>)])
clean()[source]
declared_fields = OrderedDict([('enable_dhcp', <django.forms.fields.BooleanField object at 0xa235e50>), ('ipv6_modes', <django.forms.fields.ChoiceField object at 0xa2350d0>), ('allocation_pools', <django.forms.fields.CharField object at 0xa235a90>), ('dns_nameservers', <django.forms.fields.CharField object at 0xab37e50>), ('host_routes', <django.forms.fields.CharField object at 0xab37f90>)])
help_text = <django.utils.functional.__proxy__ object at 0xab371d0>
help_text_template = None
media
name = <django.utils.functional.__proxy__ object at 0xab377d0>
permissions = ()
populate_ipv6_modes_choices(request, context)[source]
progress_message = <django.utils.functional.__proxy__ object at 0xab379d0>
slug = u'createsubnetdetailaction'
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetInfo(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of CreateSubnetInfoAction

contributes = ('subnet_name', 'cidr', 'ip_version', 'gateway_ip', 'no_gateway', 'subnetpool', 'prefixlen', 'address_source')
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetInfoAction(request, context, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('subnet_name', <django.forms.fields.CharField object at 0x9925fd0>), ('address_source', <django.forms.fields.ChoiceField object at 0x68cac90>), ('subnetpool', <django.forms.fields.ChoiceField object at 0x68ca410>), ('prefixlen', <django.forms.fields.ChoiceField object at 0x6b127d0>), ('cidr', <horizon.forms.fields.IPField object at 0x6b12150>), ('ip_version', <django.forms.fields.ChoiceField object at 0x9996b90>), ('gateway_ip', <horizon.forms.fields.IPField object at 0x9996450>), ('no_gateway', <django.forms.fields.BooleanField object at 0x9996f50>)])
clean()[source]
declared_fields = OrderedDict([('subnet_name', <django.forms.fields.CharField object at 0x9925fd0>), ('address_source', <django.forms.fields.ChoiceField object at 0x68cac90>), ('subnetpool', <django.forms.fields.ChoiceField object at 0x68ca410>), ('prefixlen', <django.forms.fields.ChoiceField object at 0x6b127d0>), ('cidr', <horizon.forms.fields.IPField object at 0x6b12150>), ('ip_version', <django.forms.fields.ChoiceField object at 0x9996b90>), ('gateway_ip', <horizon.forms.fields.IPField object at 0x9996450>), ('no_gateway', <django.forms.fields.BooleanField object at 0x9996f50>)])
get_subnetpool_choices(request)[source]
help_text = <django.utils.functional.__proxy__ object at 0x9996dd0>
help_text_template = None
hide_subnetpool_choices()[source]
media
msg = <django.utils.functional.__proxy__ object at 0x9996890>
name = <django.utils.functional.__proxy__ object at 0x9996310>
permissions = ()
progress_message = <django.utils.functional.__proxy__ object at 0xa235290>
slug = u'createsubnetinfoaction'

Previous topic

The openstack_dashboard.dashboards.project.networks.forms Module

Next topic

The openstack_dashboard.dashboards.project.networks.urls Module

This Page