Andy Lee 9ca9fdb521
feat: support for subnets and VPCs from UI (#374)
Signed-off-by: Andy Lee <andy.lee@suse.com>
2025-07-16 17:51:37 +08:00

28 lines
633 B
JavaScript

import { clone } from '@shell/utils/object';
import { HCI } from '../types';
import HarvesterResource from './harvester';
export default class HciVPC extends HarvesterResource {
get parentNameOverride() {
return this.$rootGetters['i18n/t'](`typeLabel."${ HCI.VPC }"`, { count: 1 })?.trim();
}
get doneOverride() {
const detailLocation = clone(this.listLocation);
detailLocation.params.resource = HCI.VPC;
return detailLocation;
}
get parentLocationOverride() {
return {
...this.listLocation,
params: {
...this.listLocation.params,
resource: HCI.VPC
}
};
}
}