cloudstack/ui/src/config/section/infra/phynetworks.js
Nico 6b9615b2f9
Selected type on update traffic type is based on chosen type in traffic types tab (#10902)
Co-authored-by: Nicole Schmidt <nicole.schmidt@scclouds.com.br>
2025-07-31 15:21:19 +05:30

137 lines
4.5 KiB
JavaScript

// 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.
import { shallowRef, defineAsyncComponent, reactive } from 'vue'
export default {
name: 'physicalnetwork',
title: 'label.physical.network',
docHelp: 'adminguide/networking_and_traffic.html#basic-zone-physical-network-configuration',
icon: 'api-outlined',
hidden: true,
permission: ['listPhysicalNetworks'],
columns: ['name', 'state', 'isolationmethods', 'vlan', 'broadcastdomainrange', 'zonename', 'tags'],
details: ['name', 'state', 'isolationmethods', 'vlan', 'broadcastdomainrange', 'zonename', 'tags'],
tabs: [{
name: 'details',
component: shallowRef(defineAsyncComponent(() => import('@/components/view/DetailsTab.vue')))
}, {
name: 'traffic.types',
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/network/TrafficTypesTab.vue')))
}, {
name: 'network.service.providers',
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/network/ServiceProvidersTab.vue')))
}, {
name: 'dedicated.vlan.vni.ranges',
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/network/DedicatedVLANTab.vue')))
}],
related: [{
name: 'guestnetwork',
title: 'label.guest.networks',
param: 'physicalnetworkid'
},
{
name: 'publicip',
title: 'label.public.ip.addresses',
param: 'physicalnetworkid'
}],
actions: [
{
api: 'createPhysicalNetwork',
icon: 'plus-outlined',
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', 'NSX', 'NETRIS']
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'play-circle-outlined',
label: 'label.action.enable.physical.network',
message: 'message.action.enable.physical.network',
dataView: true,
args: ['state'],
show: (record) => { return record.state === 'Disabled' },
mapping: {
state: {
value: (record) => { return 'Enabled' }
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'stop-outlined',
label: 'label.action.disable.physical.network',
message: 'message.action.disable.physical.network',
dataView: true,
args: ['state'],
show: (record) => { return record.state === 'Enabled' },
mapping: {
state: {
value: (record) => { return 'Disabled' }
}
}
},
{
api: 'updatePhysicalNetwork',
icon: 'edit-outlined',
label: 'label.update.physical.network',
dataView: true,
args: ['vlan', 'tags']
},
{
api: 'addTrafficType',
icon: 'plus-square-outlined',
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-outlined',
label: 'label.update.traffic.label',
dataView: true,
popup: true,
component: shallowRef(defineAsyncComponent(() => import('@/views/infra/network/EditTrafficLabel.vue')))
},
{
api: 'deletePhysicalNetwork',
icon: 'delete-outlined',
label: 'label.action.delete.physical.network',
message: 'message.action.delete.physical.network',
dataView: true
}
]
}
export const trafficTypeTab = reactive({
index: 0
})