blob: 7545815f99ce22865cdb8496cfdf8093655d3c44 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
export default {
name: 'physicalnetwork',
title: 'label.physical.network',
docHelp: 'adminguide/networking_and_traffic.html#basic-zone-physical-network-configuration',
icon: 'api',
hidden: true,
permission: ['listPhysicalNetworks'],
columns: ['name', 'state', 'isolationmethods', 'vlan', 'broadcastdomainrange', 'zonename', 'tags'],
details: ['name', 'state', 'isolationmethods', 'vlan', 'broadcastdomainrange', 'zonename', 'tags'],
tabs: [{
name: 'details',
component: () => import('@/components/view/DetailsTab.vue')
}, {
name: 'traffic.types',
component: () => import('@/views/infra/network/TrafficTypesTab.vue')
}, {
name: 'network.service.providers',
component: () => import('@/views/infra/network/ServiceProvidersTab.vue')
}, {
name: 'dedicated.vlan.vni.ranges',
component: () => import('@/views/infra/network/DedicatedVLANTab.vue')
}],
related: [{
name: 'guestnetwork',
title: 'label.guest.networks',
param: 'physicalnetworkid'
}],
actions: [
{
api: 'createPhysicalNetwork',
icon: 'plus',
label: 'label.add.physical.network',
listView: true,
args: ['name', 'zoneid', 'isolationmethods', 'vlan', 'tags', 'networkspeed', 'broadcastdomainrange'],
mapping: {
isolationmethods: {
options: ['VLAN', 'VXLAN', 'GRE', 'STT', 'BCF_SEGMENT', 'SSP', 'ODL', 'L3VPN', 'VCS']
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'play-circle',
label: 'label.action.enable.physical.network',
dataView: true,
args: ['state'],
show: (record) => { return record.state === 'Disabled' },
mapping: {
state: {
value: (record) => { return 'Enabled' }
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'stop',
label: 'label.action.disable.physical.network',
dataView: true,
args: ['state'],
show: (record) => { return record.state === 'Enabled' },
mapping: {
state: {
value: (record) => { return 'Disabled' }
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'edit',
label: 'label.update.physical.network',
dataView: true,
args: ['vlan', 'tags']
},
{
api: 'addTrafficType',
icon: 'plus-square',
label: 'label.add.traffic.type',
dataView: true,
args: ['traffictype', 'physicalnetworkid', 'isolationmethod'],
mapping: {
traffictype: {
options: ['Public', 'Guest', 'Management', 'Storage']
},
physicalnetworkid: {
value: (record) => { return record.id }
},
isolationmethod: {
options: ['', 'vlan', 'vxlan']
}
}
},
{
api: 'updateTrafficType',
icon: 'branches',
label: 'label.update.traffic.label',
dataView: true,
popup: true,
component: () => import('@/views/infra/network/EditTrafficLabel.vue')
},
{
api: 'deletePhysicalNetwork',
icon: 'delete',
label: 'label.action.delete.physical.network',
message: 'message.action.delete.physical.network',
dataView: true
}
]
}