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

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

Bases: horizon.workflows.base.Workflow

default_steps = (<class 'openstack_dashboard.dashboards.project.vpn.workflows.AddIKEPolicyStep'>,)
failure_message = <django.utils.functional.__proxy__ object at 0x111a6850>
finalize_button_name = <django.utils.functional.__proxy__ object at 0x113510d0>
format_status_message(message)[source]
handle(request, context)[source]
name = <django.utils.functional.__proxy__ object at 0x11351090>
slug = 'addikepolicy'
success_message = <django.utils.functional.__proxy__ object at 0x11351110>
success_url = 'horizon:project:vpn:index'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIKEPolicyAction(request, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1134a490>), ('description', <django.forms.fields.CharField object at 0x1134a590>), ('auth_algorithm', <django.forms.fields.ChoiceField object at 0x1134a690>), ('encryption_algorithm', <django.forms.fields.ChoiceField object at 0x1134a7d0>), ('ike_version', <django.forms.fields.ChoiceField object at 0x111a65d0>), ('lifetime_units', <django.forms.fields.ChoiceField object at 0x1134a990>), ('lifetime_value', <django.forms.fields.IntegerField object at 0x1134aad0>), ('pfs', <django.forms.fields.ChoiceField object at 0x1134ac50>), ('phase1_negotiation_mode', <django.forms.fields.ChoiceField object at 0x1134ad90>)])
declared_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1134a490>), ('description', <django.forms.fields.CharField object at 0x1134a590>), ('auth_algorithm', <django.forms.fields.ChoiceField object at 0x1134a690>), ('encryption_algorithm', <django.forms.fields.ChoiceField object at 0x1134a7d0>), ('ike_version', <django.forms.fields.ChoiceField object at 0x111a65d0>), ('lifetime_units', <django.forms.fields.ChoiceField object at 0x1134a990>), ('lifetime_value', <django.forms.fields.IntegerField object at 0x1134aad0>), ('pfs', <django.forms.fields.ChoiceField object at 0x1134ac50>), ('phase1_negotiation_mode', <django.forms.fields.ChoiceField object at 0x1134ad90>)])
help_text = ''
help_text_template = 'project/vpn/_add_ike_policy_help.html'
media
name = <django.utils.functional.__proxy__ object at 0x1134ae50>
permissions = ('openstack.services.network',)
policy_rules = ()
progress_message = <django.utils.functional.__proxy__ object at 0x11351050>
slug = u'addikepolicyaction'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIKEPolicyStep(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of AddIKEPolicyAction

contribute(data, context)[source]
contributes = ('name', 'description', 'auth_algorithm', 'encryption_algorithm', 'ike_version', 'lifetime_units', 'lifetime_value', 'pfs', 'phase1_negotiation_mode')
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecPolicy(request=None, context_seed=None, entry_point=None, *args, **kwargs)[source]

Bases: horizon.workflows.base.Workflow

default_steps = (<class 'openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecPolicyStep'>,)
failure_message = <django.utils.functional.__proxy__ object at 0x1134e0d0>
finalize_button_name = <django.utils.functional.__proxy__ object at 0x1134e050>
format_status_message(message)[source]
handle(request, context)[source]
name = <django.utils.functional.__proxy__ object at 0x11351fd0>
slug = 'addipsecpolicy'
success_message = <django.utils.functional.__proxy__ object at 0x1134e090>
success_url = 'horizon:project:vpn:index'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecPolicyAction(request, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x11351250>), ('description', <django.forms.fields.CharField object at 0x11351450>), ('auth_algorithm', <django.forms.fields.ChoiceField object at 0x113515d0>), ('encapsulation_mode', <django.forms.fields.ChoiceField object at 0x11351710>), ('encryption_algorithm', <django.forms.fields.ChoiceField object at 0x11351810>), ('lifetime_units', <django.forms.fields.ChoiceField object at 0x11351910>), ('lifetime_value', <django.forms.fields.IntegerField object at 0x11351a50>), ('pfs', <django.forms.fields.ChoiceField object at 0x11351bd0>), ('transform_protocol', <django.forms.fields.ChoiceField object at 0x11351d10>)])
declared_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x11351250>), ('description', <django.forms.fields.CharField object at 0x11351450>), ('auth_algorithm', <django.forms.fields.ChoiceField object at 0x113515d0>), ('encapsulation_mode', <django.forms.fields.ChoiceField object at 0x11351710>), ('encryption_algorithm', <django.forms.fields.ChoiceField object at 0x11351810>), ('lifetime_units', <django.forms.fields.ChoiceField object at 0x11351910>), ('lifetime_value', <django.forms.fields.IntegerField object at 0x11351a50>), ('pfs', <django.forms.fields.ChoiceField object at 0x11351bd0>), ('transform_protocol', <django.forms.fields.ChoiceField object at 0x11351d10>)])
help_text = ''
help_text_template = 'project/vpn/_add_ipsec_policy_help.html'
media
name = <django.utils.functional.__proxy__ object at 0x11351dd0>
permissions = ('openstack.services.network',)
policy_rules = ()
progress_message = <django.utils.functional.__proxy__ object at 0x11351f90>
slug = u'addipsecpolicyaction'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecPolicyStep(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of AddIPSecPolicyAction

contribute(data, context)[source]
contributes = ('name', 'description', 'auth_algorithm', 'encapsulation_mode', 'encryption_algorithm', 'lifetime_units', 'lifetime_value', 'pfs', 'transform_protocol')
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnection(request=None, context_seed=None, entry_point=None, *args, **kwargs)[source]

Bases: horizon.workflows.base.Workflow

default_steps = (<class 'openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionStep'>, <class 'openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionOptionalStep'>)
failure_message = <django.utils.functional.__proxy__ object at 0x1134fed0>
finalize_button_name = <django.utils.functional.__proxy__ object at 0x1134fe50>
format_status_message(message)[source]
handle(request, context)[source]
name = <django.utils.functional.__proxy__ object at 0x1134fe10>
slug = 'addipsecsiteconnection'
success_message = <django.utils.functional.__proxy__ object at 0x1134fe90>
success_url = 'horizon:project:vpn:index'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionAction(request, context, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1134e210>), ('description', <django.forms.fields.CharField object at 0x1134e410>), ('vpnservice_id', <django.forms.fields.ChoiceField object at 0x1134e590>), ('ikepolicy_id', <django.forms.fields.ChoiceField object at 0x1134e6d0>), ('ipsecpolicy_id', <django.forms.fields.ChoiceField object at 0x1134e790>), ('peer_address', <horizon.forms.fields.IPField object at 0x1134e890>), ('peer_id', <horizon.forms.fields.IPField object at 0x1134e990>), ('peer_cidrs', <horizon.forms.fields.MultiIPField object at 0x1134eb10>), ('psk', <django.forms.fields.CharField object at 0x1134ec90>)])
declared_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1134e210>), ('description', <django.forms.fields.CharField object at 0x1134e410>), ('vpnservice_id', <django.forms.fields.ChoiceField object at 0x1134e590>), ('ikepolicy_id', <django.forms.fields.ChoiceField object at 0x1134e6d0>), ('ipsecpolicy_id', <django.forms.fields.ChoiceField object at 0x1134e790>), ('peer_address', <horizon.forms.fields.IPField object at 0x1134e890>), ('peer_id', <horizon.forms.fields.IPField object at 0x1134e990>), ('peer_cidrs', <horizon.forms.fields.MultiIPField object at 0x1134eb10>), ('psk', <django.forms.fields.CharField object at 0x1134ec90>)])
help_text = <django.utils.functional.__proxy__ object at 0x1134ee50>
help_text_template = None
media
name = <django.utils.functional.__proxy__ object at 0x1134ee10>
permissions = ('openstack.services.network',)
policy_rules = ()
populate_ikepolicy_id_choices(request, context)[source]
populate_ipsecpolicy_id_choices(request, context)[source]
populate_vpnservice_id_choices(request, context)[source]
progress_message = <django.utils.functional.__proxy__ object at 0x1134f0d0>
slug = u'addipsecsiteconnectionaction'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionOptionalAction(request, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('mtu', <django.forms.fields.IntegerField object at 0x1134f190>), ('dpd_action', <django.forms.fields.ChoiceField object at 0x1134f310>), ('dpd_interval', <django.forms.fields.IntegerField object at 0x1134f490>), ('dpd_timeout', <django.forms.fields.IntegerField object at 0x1134f650>), ('initiator', <django.forms.fields.ChoiceField object at 0x1134f810>), ('admin_state_up', <django.forms.fields.ChoiceField object at 0x1134fa10>)])
clean()[source]
declared_fields = OrderedDict([('mtu', <django.forms.fields.IntegerField object at 0x1134f190>), ('dpd_action', <django.forms.fields.ChoiceField object at 0x1134f310>), ('dpd_interval', <django.forms.fields.IntegerField object at 0x1134f490>), ('dpd_timeout', <django.forms.fields.IntegerField object at 0x1134f650>), ('initiator', <django.forms.fields.ChoiceField object at 0x1134f810>), ('admin_state_up', <django.forms.fields.ChoiceField object at 0x1134fa10>)])
help_text = <django.utils.functional.__proxy__ object at 0x1134fbd0>
help_text_template = None
media
name = <django.utils.functional.__proxy__ object at 0x1134fb90>
permissions = ('openstack.services.network',)
policy_rules = ()
populate_dpd_action_choices(request, context)[source]
progress_message = <django.utils.functional.__proxy__ object at 0x1134fdd0>
slug = u'addipsecsiteconnectionoptionalaction'
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionOptionalStep(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of AddIPSecSiteConnectionOptionalAction

contribute(data, context)[source]
contributes = ('dpd_action', 'dpd_interval', 'dpd_timeout', 'initiator', 'mtu', 'admin_state_up')
class openstack_dashboard.dashboards.project.vpn.workflows.AddIPSecSiteConnectionStep(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of AddIPSecSiteConnectionAction

contributes = ('name', 'description', 'vpnservice_id', 'ikepolicy_id', 'ipsecpolicy_id', 'peer_address', 'peer_id', 'peer_cidrs', 'psk')
class openstack_dashboard.dashboards.project.vpn.workflows.AddVPNService(request=None, context_seed=None, entry_point=None, *args, **kwargs)[source]

Bases: horizon.workflows.base.Workflow

default_steps = (<class 'openstack_dashboard.dashboards.project.vpn.workflows.AddVPNServiceStep'>,)
failure_message = <django.utils.functional.__proxy__ object at 0x1134a410>
finalize_button_name = <django.utils.functional.__proxy__ object at 0x1134a390>
format_status_message(message)[source]
handle(request, context)[source]
name = <django.utils.functional.__proxy__ object at 0x1134a350>
slug = 'addvpnservice'
success_message = <django.utils.functional.__proxy__ object at 0x1134a3d0>
success_url = 'horizon:project:vpn:index'
class openstack_dashboard.dashboards.project.vpn.workflows.AddVPNServiceAction(request, *args, **kwargs)[source]

Bases: horizon.workflows.base.Action

base_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1119fe50>), ('description', <django.forms.fields.CharField object at 0x113d56d0>), ('router_id', <django.forms.fields.ChoiceField object at 0x113d5ed0>), ('subnet_id', <django.forms.fields.ChoiceField object at 0x1134a110>), ('admin_state_up', <django.forms.fields.ChoiceField object at 0x1134a250>)])
declared_fields = OrderedDict([('name', <django.forms.fields.CharField object at 0x1119fe50>), ('description', <django.forms.fields.CharField object at 0x113d56d0>), ('router_id', <django.forms.fields.ChoiceField object at 0x113d5ed0>), ('subnet_id', <django.forms.fields.ChoiceField object at 0x1134a110>), ('admin_state_up', <django.forms.fields.ChoiceField object at 0x1134a250>)])
help_text = ''
help_text_template = 'project/vpn/_add_vpn_service_help.html'
media
name = <django.utils.functional.__proxy__ object at 0x1134a2d0>
permissions = ('openstack.services.network',)
policy_rules = ()
populate_router_id_choices(request, context)[source]
populate_subnet_id_choices(request, context)[source]
progress_message = <django.utils.functional.__proxy__ object at 0x1134a310>
slug = u'addvpnserviceaction'
class openstack_dashboard.dashboards.project.vpn.workflows.AddVPNServiceStep(workflow)[source]

Bases: horizon.workflows.base.Step

action_class

alias of AddVPNServiceAction

contribute(data, context)[source]
contributes = ('name', 'description', 'subnet_id', 'router_id', 'admin_state_up')

Previous topic

The openstack_dashboard.dashboards.project.vpn Module

Next topic

The openstack_dashboard.dashboards.project.vpn.urls Module

This Page