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

CreateNetwork.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'>)
CreateNetwork.failure_message = <django.utils.functional.__proxy__ object at 0x8602250>
CreateNetwork.finalize_button_name = <django.utils.functional.__proxy__ object at 0x570c950>
CreateNetwork.format_status_message(message)[source]
CreateNetwork.get_failure_url()[source]
CreateNetwork.get_success_url()[source]
CreateNetwork.handle(request, data)[source]
CreateNetwork.name = <django.utils.functional.__proxy__ object at 0x570c310>
CreateNetwork.slug = 'create_network'
CreateNetwork.success_message = <django.utils.functional.__proxy__ object at 0x86022d0>
CreateNetwork.wizard = True
class openstack_dashboard.dashboards.project.networks.workflows.CreateNetworkInfo(workflow)[source]

Bases: horizon.workflows.base.Step

CreateNetworkInfo.action_class

alias of CreateNetworkInfoAction

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

Bases: horizon.workflows.base.Action

CreateNetworkInfoAction.base_fields = OrderedDict([('net_name', <django.forms.fields.CharField object at 0x856c1d0>), ('admin_state', <django.forms.fields.ChoiceField object at 0x856c550>)])
CreateNetworkInfoAction.declared_fields = OrderedDict([('net_name', <django.forms.fields.CharField object at 0x856c1d0>), ('admin_state', <django.forms.fields.ChoiceField object at 0x856c550>)])
CreateNetworkInfoAction.help_text = <django.utils.functional.__proxy__ object at 0x856c790>
CreateNetworkInfoAction.help_text_template = None
CreateNetworkInfoAction.media
CreateNetworkInfoAction.name = <django.utils.functional.__proxy__ object at 0x856c8d0>
CreateNetworkInfoAction.permissions = ()
CreateNetworkInfoAction.progress_message = <django.utils.functional.__proxy__ object at 0x856c910>
CreateNetworkInfoAction.slug = u'createnetworkinfoaction'
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetDetail(workflow)[source]

Bases: horizon.workflows.base.Step

CreateSubnetDetail.action_class

alias of CreateSubnetDetailAction

CreateSubnetDetail.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

CreateSubnetDetailAction.base_fields = OrderedDict([('enable_dhcp', <django.forms.fields.BooleanField object at 0x3cb0f50>), ('ipv6_modes', <django.forms.fields.ChoiceField object at 0x3cb0c90>), ('allocation_pools', <django.forms.fields.CharField object at 0x63f15d0>), ('dns_nameservers', <django.forms.fields.CharField object at 0x63f1d10>), ('host_routes', <django.forms.fields.CharField object at 0x570c990>)])
CreateSubnetDetailAction.clean()[source]
CreateSubnetDetailAction.declared_fields = OrderedDict([('enable_dhcp', <django.forms.fields.BooleanField object at 0x3cb0f50>), ('ipv6_modes', <django.forms.fields.ChoiceField object at 0x3cb0c90>), ('allocation_pools', <django.forms.fields.CharField object at 0x63f15d0>), ('dns_nameservers', <django.forms.fields.CharField object at 0x63f1d10>), ('host_routes', <django.forms.fields.CharField object at 0x570c990>)])
CreateSubnetDetailAction.help_text = <django.utils.functional.__proxy__ object at 0x570cfd0>
CreateSubnetDetailAction.help_text_template = None
CreateSubnetDetailAction.media
CreateSubnetDetailAction.name = <django.utils.functional.__proxy__ object at 0x570ce50>
CreateSubnetDetailAction.permissions = ()
CreateSubnetDetailAction.populate_ipv6_modes_choices(request, context)[source]
CreateSubnetDetailAction.progress_message = <django.utils.functional.__proxy__ object at 0x570c110>
CreateSubnetDetailAction.slug = u'createsubnetdetailaction'
class openstack_dashboard.dashboards.project.networks.workflows.CreateSubnetInfo(workflow)[source]

Bases: horizon.workflows.base.Step

CreateSubnetInfo.action_class

alias of CreateSubnetInfoAction

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

Bases: horizon.workflows.base.Action

CreateSubnetInfoAction.base_fields = OrderedDict([('with_subnet', <django.forms.fields.BooleanField object at 0x856cdd0>), ('subnet_name', <django.forms.fields.CharField object at 0x856c110>), ('cidr', <horizon.forms.fields.IPField object at 0x4ac9650>), ('ip_version', <django.forms.fields.ChoiceField object at 0x3cb0510>), ('gateway_ip', <horizon.forms.fields.IPField object at 0x3cb0550>), ('no_gateway', <django.forms.fields.BooleanField object at 0x3cb0f90>)])
CreateSubnetInfoAction.clean()[source]
CreateSubnetInfoAction.declared_fields = OrderedDict([('with_subnet', <django.forms.fields.BooleanField object at 0x856cdd0>), ('subnet_name', <django.forms.fields.CharField object at 0x856c110>), ('cidr', <horizon.forms.fields.IPField object at 0x4ac9650>), ('ip_version', <django.forms.fields.ChoiceField object at 0x3cb0510>), ('gateway_ip', <horizon.forms.fields.IPField object at 0x3cb0550>), ('no_gateway', <django.forms.fields.BooleanField object at 0x3cb0f90>)])
CreateSubnetInfoAction.help_text = <django.utils.functional.__proxy__ object at 0x3cb01d0>
CreateSubnetInfoAction.help_text_template = None
CreateSubnetInfoAction.media
CreateSubnetInfoAction.msg = <django.utils.functional.__proxy__ object at 0x3cb0790>
CreateSubnetInfoAction.name = <django.utils.functional.__proxy__ object at 0x3cb0350>
CreateSubnetInfoAction.permissions = ()
CreateSubnetInfoAction.progress_message = <django.utils.functional.__proxy__ object at 0x3cb0450>
CreateSubnetInfoAction.slug = u'createsubnetinfoaction'

Previous topic

The openstack_dashboard.dashboards.project.networks.forms Module

Next topic

The openstack_dashboard.dashboards.project.networks.subnets.tables Module

This Page