We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
Group NullableBriefTenantGroupRequest
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.
The text was updated successfully, but these errors were encountered:
You can use AdditionalProperties to pass any values supported by the API into the api call itself.
AdditionalProperties
someRequest := &netbox.BriefTenantGroupRequest{} sommeRequest.AddtionnalProperties = map[string]interface{}{ "group_id": "some_group_id" }
As for:
Open a PR, I'm not your employee.
Sorry, something went wrong.
No branches or pull requests
Using go-netbox-4.2.2-3.
PatchedTenantRequest currently does not support referencing groups directly by ID.
PatchedTenantRequest has
Group NullableBriefTenantGroupRequest
json:"group,omitempty"`` andand
Please enhance generated structs to allow direct Ids in PATCH requests to match NetBox API.
The text was updated successfully, but these errors were encountered: