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

Cannot reference Group by Id in PatchedTenantRequest #208

Closed
rejoice-full opened this issue Mar 17, 2025 · 1 comment
Closed

Cannot reference Group by Id in PatchedTenantRequest #208

rejoice-full opened this issue Mar 17, 2025 · 1 comment

Comments

@rejoice-full
Copy link

rejoice-full commented Mar 17, 2025

Using go-netbox-4.2.2-3.

PatchedTenantRequest currently does not support referencing groups directly by ID.

PatchedTenantRequest has Group NullableBriefTenantGroupRequest json:"group,omitempty"`` and

type NullableBriefTenantGroupRequest struct {
	value *BriefTenantGroupRequest
	isSet bool
}

and

type BriefTenantGroupRequest struct {
	Name string `json:"name"`
	Slug string `json:"slug" validate:"regexp=^[-a-zA-Z0-9_]+$"`
	Description *string `json:"description,omitempty"`
	AdditionalProperties map[string]interface{}
}

Please enhance generated structs to allow direct Ids in PATCH requests to match NetBox API.

@nutgood
Copy link
Collaborator

nutgood commented Mar 17, 2025

You can use AdditionalProperties to pass any values supported by the API into the api call itself.

someRequest := &netbox.BriefTenantGroupRequest{}
sommeRequest.AddtionnalProperties = map[string]interface{}{
  "group_id": "some_group_id"
}

As for:

Please enhance generated structs to allow direct Ids in PATCH requests to match NetBox API.

Open a PR, I'm not your employee.

@nutgood nutgood closed this as not planned Won't fix, can't repro, duplicate, stale Mar 17, 2025
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