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
I am trying to use DnsrecordFind, with no success irrespective of how I try to use it. I have tried the following:
res, err := c.DnsrecordFind("", &freeipa.DnsrecordFindArgs{}, &freeipa.DnsrecordFindOptionalArgs{ Sizelimit: freeipa.Int(0), })
This returns the error:
2024/07/31 16:07:35 RequirementError (3007): 'dnszoneidnsname' is required
That's fair enough.
If I try:
res, err := c.DnsrecordFind("example.com", &freeipa.DnsrecordFindArgs{}, &freeipa.DnsrecordFindOptionalArgs{ Sizelimit: freeipa.Int(0), })
I get the error:
2024/07/31 16:09:19 unexpected value for field Idnsname: [map[__dns_name__:@]] ([]interface {})
res, err := c.DnsrecordFind("", &freeipa.DnsrecordFindArgs{}, &freeipa.DnsrecordFindOptionalArgs{ Dnszoneidnsname: freeipa.String("example.com"), Sizelimit: freeipa.Int(0), })
2024/07/31 16:10:53 OverlapError (3006): overlapping arguments and options: ['dnszoneidnsname']
Any pointers?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to use DnsrecordFind, with no success irrespective of how I try to use it. I have tried the following:
res, err := c.DnsrecordFind("", &freeipa.DnsrecordFindArgs{}, &freeipa.DnsrecordFindOptionalArgs{ Sizelimit: freeipa.Int(0), })
This returns the error:
2024/07/31 16:07:35 RequirementError (3007): 'dnszoneidnsname' is required
That's fair enough.
If I try:
res, err := c.DnsrecordFind("example.com", &freeipa.DnsrecordFindArgs{}, &freeipa.DnsrecordFindOptionalArgs{ Sizelimit: freeipa.Int(0), })
I get the error:
2024/07/31 16:09:19 unexpected value for field Idnsname: [map[__dns_name__:@]] ([]interface {})
If I try:
I get the error:
2024/07/31 16:10:53 OverlapError (3006): overlapping arguments and options: ['dnszoneidnsname']
Any pointers?
The text was updated successfully, but these errors were encountered: