Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I create objects that have relations with other objects? #197

Closed
fbreckle opened this issue Feb 17, 2025 · 1 comment
Closed

How do I create objects that have relations with other objects? #197

fbreckle opened this issue Feb 17, 2025 · 1 comment

Comments

@fbreckle
Copy link

Hi,

I maintain a fork of the old (openapi 2) go-netbox at https://github.com/fbreckle/go-netbox. I specifically, and exclusively, use that library to support my terraform provider at https://github.com/e-breuninger/terraform-provider-netbox.

Since I am not really a fan of backporting the (painfully frequent) breaking api changes to my go-netbox fork, I plan to eventually migrate back to this official client.

As I planned to look at the 4.2 changes today, I figured I might as well check how a migration to this client could work by implementing the netbox_site terraform resource. Specifically, a site has a foreign-key relation to region, meaning I usually pass a region ID to go-netbox when creating the site. The region ID is an int64.

How does this work in this new client? The DcimSitesCreate function gets its values from a WritableSiteRequest. What I do not understand is how I am supposed to fill out the WritableSiteRequest object. In our example, region, it needs a NullableBriefRegionRequest. But that in turn is made from a name and slug, not by an ID.

I looked around the models and it seems this is not an issue specific to the Site object.

Basically, what I am asking is:

Can anyone provide a code example for the following workflow?

  1. Create region, save ID
  2. Create site where the region is set to the previously created region by ID
@nutgood
Copy link
Collaborator

nutgood commented Feb 17, 2025

Hey,

So this is a generated library which kinda sucks but oh well.

The way you'd accomplish that is through the AdditionalProperties map[string]interface{} that's exposed on every model.

So something like this should work:

package main

import (
	"context"

	"github.com/netbox-community/go-netbox/v4"
)

func main() {
	api := netbox.NewAPIClientFor("soemthing", "else")

	region := netbox.WritableRegionRequest{
		Name: "Test Region",
		Slug: "test-region",
	}

	regionResponse, _, _ := api.DcimAPI.DcimRegionsCreate(context.Background()).WritableRegionRequest(region).Execute()

	site := netbox.WritableSiteRequest{
		Name: "Test Site",
		Slug: "test-site",
	}

	site.AdditionalProperties["region_id"] = regionResponse.GetId()

	api.DcimAPI.DcimSitesCreate(context.Background()).WritableSiteRequest(site).Execute()

}

Keep in mind that the property name might not be region_id, you'd have to look at the api docs themselves to see what's expected.

I'll close this issue, but feel free to open it again if this doesn't answer your question.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants