DaanHoogland commented on code in PR #201: URL: https://github.com/apache/cloudstack-terraform-provider/pull/201#discussion_r2312369359
########## cloudstack/resource_cloudstack_traffic_type.go: ########## @@ -0,0 +1,282 @@ +// +// 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. +// + +package cloudstack + +import ( + "fmt" + "log" + "strings" + + "github.com/apache/cloudstack-go/v2/cloudstack" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" +) + +func resourceCloudStackTrafficType() *schema.Resource { + return &schema.Resource{ + Create: resourceCloudStackTrafficTypeCreate, + Read: resourceCloudStackTrafficTypeRead, + Update: resourceCloudStackTrafficTypeUpdate, + Delete: resourceCloudStackTrafficTypeDelete, + Importer: &schema.ResourceImporter{ + State: resourceCloudStackTrafficTypeImport, + }, + + Schema: map[string]*schema.Schema{ + "physical_network_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + }, + + "type": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + }, + + "kvm_network_label": { + Type: schema.TypeString, + Optional: true, + }, + + "vlan": { + Type: schema.TypeString, + Optional: true, + }, + + "xen_network_label": { + Type: schema.TypeString, + Optional: true, + }, + + "vmware_network_label": { + Type: schema.TypeString, + Optional: true, + }, + + "hyperv_network_label": { + Type: schema.TypeString, + Optional: true, + }, + + "ovm3_network_label": { + Type: schema.TypeString, + Optional: true, + }, + }, + } +} + +func resourceCloudStackTrafficTypeCreate(d *schema.ResourceData, meta interface{}) error { + cs := meta.(*cloudstack.CloudStackClient) + + physicalNetworkID := d.Get("physical_network_id").(string) + trafficType := d.Get("type").(string) + + // Create a new parameter struct + p := cs.Usage.NewAddTrafficTypeParams(physicalNetworkID, trafficType) + + // Set optional parameters + if kvmNetworkLabel, ok := d.GetOk("kvm_network_label"); ok { + p.SetKvmnetworklabel(kvmNetworkLabel.(string)) + } + + if vlan, ok := d.GetOk("vlan"); ok { + p.SetVlan(vlan.(string)) + } + + if xenNetworkLabel, ok := d.GetOk("xen_network_label"); ok { + p.SetXennetworklabel(xenNetworkLabel.(string)) + } + + if vmwareNetworkLabel, ok := d.GetOk("vmware_network_label"); ok { + p.SetVmwarenetworklabel(vmwareNetworkLabel.(string)) + } + + if hypervNetworkLabel, ok := d.GetOk("hyperv_network_label"); ok { + p.SetHypervnetworklabel(hypervNetworkLabel.(string)) + } + + if ovm3NetworkLabel, ok := d.GetOk("ovm3_network_label"); ok { + p.SetOvm3networklabel(ovm3NetworkLabel.(string)) + } + + // Create the traffic type + r, err := cs.Usage.AddTrafficType(p) + if err != nil { + return fmt.Errorf("Error creating traffic type %s: %s", trafficType, err) + } + + d.SetId(r.Id) + + return resourceCloudStackTrafficTypeRead(d, meta) +} + +func resourceCloudStackTrafficTypeRead(d *schema.ResourceData, meta interface{}) error { + cs := meta.(*cloudstack.CloudStackClient) + + // Get the traffic type details + p := cs.Usage.NewListTrafficTypesParams(d.Get("physical_network_id").(string)) + + l, err := cs.Usage.ListTrafficTypes(p) + if err != nil { + return err + } + + // Find the traffic type with the matching ID + var trafficType *cloudstack.TrafficType + for _, t := range l.TrafficTypes { + if t.Id == d.Id() { + trafficType = t + break + } + } + + if trafficType == nil { + log.Printf("[DEBUG] Traffic type %s does no longer exist", d.Get("type").(string)) + d.SetId("") + return nil + } + + // The TrafficType struct has a Name field which contains the traffic type + // But in some cases it might be empty, so we'll keep the original value from the state + if trafficType.Name != "" { + d.Set("type", trafficType.Name) + } + + // Note: The TrafficType struct doesn't have fields for network labels or VLAN + // We'll need to rely on what we store in the state + + return nil +} + +func resourceCloudStackTrafficTypeUpdate(d *schema.ResourceData, meta interface{}) error { + cs := meta.(*cloudstack.CloudStackClient) + + // Create a new parameter struct + p := cs.Usage.NewUpdateTrafficTypeParams(d.Id()) + + // Only set the parameters that have changed and are supported by the API + if d.HasChange("kvm_network_label") { + p.SetKvmnetworklabel(d.Get("kvm_network_label").(string)) + } + + if d.HasChange("xen_network_label") { + p.SetXennetworklabel(d.Get("xen_network_label").(string)) + } + + if d.HasChange("vmware_network_label") { + p.SetVmwarenetworklabel(d.Get("vmware_network_label").(string)) + } + + if d.HasChange("hyperv_network_label") { + p.SetHypervnetworklabel(d.Get("hyperv_network_label").(string)) + } + + if d.HasChange("ovm3_network_label") { + p.SetOvm3networklabel(d.Get("ovm3_network_label").(string)) + } + + // Note: The UpdateTrafficTypeParams struct doesn't have a SetVlan method + // so we can't update the VLAN + + // Update the traffic type + _, err := cs.Usage.UpdateTrafficType(p) + if err != nil { + return fmt.Errorf("Error updating traffic type %s: %s", d.Get("type").(string), err) + } + + return resourceCloudStackTrafficTypeRead(d, meta) +} + +func resourceCloudStackTrafficTypeDelete(d *schema.ResourceData, meta interface{}) error { + cs := meta.(*cloudstack.CloudStackClient) + + // Create a new parameter struct + p := cs.Usage.NewDeleteTrafficTypeParams(d.Id()) + + // Delete the traffic type + _, err := cs.Usage.DeleteTrafficType(p) + if err != nil { + // This is a very poor way to be told the ID does no longer exist :( + if strings.Contains(err.Error(), fmt.Sprintf( + "Invalid parameter id value=%s due to incorrect long value format, "+ + "or entity does not exist", d.Id())) { + return nil + } + + return fmt.Errorf("Error deleting traffic type %s: %s", d.Get("type").(string), err) + } + + return nil +} + +func resourceCloudStackTrafficTypeImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) { + // Import is expected to receive the traffic type ID + cs := meta.(*cloudstack.CloudStackClient) + + // We need to determine the physical_network_id by listing all physical networks and their traffic types + p := cs.Network.NewListPhysicalNetworksParams() + physicalNetworks, err := cs.Network.ListPhysicalNetworks(p) + if err != nil { + return nil, err + } + + // For each physical network, list its traffic types + for _, pn := range physicalNetworks.PhysicalNetworks { + tp := cs.Usage.NewListTrafficTypesParams(pn.Id) + trafficTypes, err := cs.Usage.ListTrafficTypes(tp) + if err != nil { + continue + } + + // Check if our traffic type ID is in this physical network + for _, tt := range trafficTypes.TrafficTypes { + if tt.Id == d.Id() { + // Found the physical network that contains our traffic type + d.Set("physical_network_id", pn.Id) + + // Set the type attribute - use the original value from the API call + // If the Name field is empty, use a default value based on the traffic type ID + if tt.Name != "" { + d.Set("type", tt.Name) + } else { + // Use a default value based on common traffic types + // This is a fallback and might not be accurate + d.Set("type", "Management") + } + + // For import to work correctly, we need to set default values for network labels + // These will be overridden by the user if needed + if d.Get("kvm_network_label") == "" { + d.Set("kvm_network_label", "cloudbr0") + } + + if d.Get("xen_network_label") == "" { + d.Set("xen_network_label", "xenbr0") + } + Review Comment: @ianc769 , I think we can considder this co-pilot comment in a future improvement. the magic values here are a bit ugly and rigid (albeit correct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org