You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set-NetboxIPAMAddress -id 1 -Tenant ""
Invoke-RestMethod: { "tenant": [ "Related object not found using the provided numeric ID: 0" ] }
InvalidOperation: You cannot call a method on a null-valued expression.
set-NetboxIPAMAddress -id 1 -Tenant 0
Invoke-RestMethod: { "tenant": [ "Related object not found using the provided numeric ID: 0" ] }
InvalidOperation: You cannot call a method on a null-valued expression.
set-NetboxIPAMAddress -id 1 -Tenant
Set-NetboxIPAMAddress: Missing an argument for parameter 'Tenant'. Specify a parameter of type 'System.UInt64' and try again.
set-NetboxIPAMAddress -id 1 -Tenant NULL
Set-NetboxIPAMAddress: Cannot process argument transformation on parameter 'Tenant'. Cannot convert value "NULL" to type "System.UInt64". Error: "The input string 'NULL' was not in a correct format."
set-NetboxIPAMAddress -id 1 -Tenant $null
Invoke-RestMethod: { "tenant": [ "Related object not found using the provided numeric ID: 0" ] }
InvalidOperation: You cannot call a method on a null-valued expression.
set-NetboxIPAMAddress -id 1 -Tenant unset
Set-NetboxIPAMAddress: Cannot process argument transformation on parameter 'Tenant'. Cannot convert value "unset" to type "System.UInt64". Error: "The input string 'unset' was not in a correct format."
Have you an idea for a solution? Maybe a code example can help.
The text was updated successfully, but these errors were encountered:
Hi,
I whould like to unset fields.
Example: I created a new object
I added a tenant to this object
Now, I whould like to remove the tenant.
Have you an idea for a solution? Maybe a code example can help.
The text was updated successfully, but these errors were encountered: