{"id":16940270,"url":"https://github.com/greenpau/go-redfish-api-idrac","last_synced_at":"2026-01-12T06:31:43.577Z","repository":{"id":57544978,"uuid":"251674945","full_name":"greenpau/go-redfish-api-idrac","owner":"greenpau","description":"iDRAC Redfish API client library written in Go.","archived":false,"fork":false,"pushed_at":"2023-09-05T23:57:01.000Z","size":91,"stargazers_count":12,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-08T10:11:21.960Z","etag":null,"topics":["dell","idrac-client","idrac9","redfish"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/greenpau.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-03-31T17:10:20.000Z","updated_at":"2025-03-05T22:45:47.000Z","dependencies_parsed_at":"2022-08-27T04:22:20.600Z","dependency_job_id":"dc4928f3-b9a2-4826-8127-8955938877a3","html_url":"https://github.com/greenpau/go-redfish-api-idrac","commit_stats":{"total_commits":26,"total_committers":2,"mean_commits":13.0,"dds":0.07692307692307687,"last_synced_commit":"282c1510fc6a6ae511df3da93fa71dec83cd99db"},"previous_names":["greenpau/go-idrac-redfish-api"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/greenpau/go-redfish-api-idrac","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fgo-redfish-api-idrac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fgo-redfish-api-idrac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fgo-redfish-api-idrac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fgo-redfish-api-idrac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/greenpau","download_url":"https://codeload.github.com/greenpau/go-redfish-api-idrac/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fgo-redfish-api-idrac/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265276120,"owners_count":23739125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dell","idrac-client","idrac9","redfish"],"created_at":"2024-10-13T21:06:41.942Z","updated_at":"2026-01-12T06:31:38.558Z","avatar_url":"https://github.com/greenpau.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-redfish-api-idrac\n\n\u003ca href=\"https://github.com/greenpau/go-redfish-api-idrac/actions/\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/greenpau/go-redfish-api-idrac/workflows/build/badge.svg?branch=main\"\u003e\u003c/a\u003e\n\u003ca href=\"https://pkg.go.dev/github.com/greenpau/go-redfish-api-idrac\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/badge/godoc-reference-blue.svg\"\u003e\u003c/a\u003e\n\niDRAC Redfish API client library written in Go.\n\n\u003c!-- begin-markdown-toc --\u003e\n## Table of Contents\n\n* [Getting Started](#getting-started)\n  * [API Client](#api-client)\n* [References](#references)\n\n\u003c!-- end-markdown-toc --\u003e\n\n## Getting Started\n\nTested with:\n\n* Integrated Dell Remote Access Controller, Redfish API Version: `1.4.0`\n\n### API Client\n\nInstall the client by running:\n\n```\ngo get -u github.com/greenpau/go-redfish-api-idrac/cmd/go-redfish-api-idrac-client\n```\n\nPrior to using the client, add your credentials via the following environment\nvariables:\n\n```bash\nexport IDRAC_API_USERNAME=admin\nexport IDRAC_API_PASSWORD=secret\n```\n\nAdditionally, there is an option for adding host via environment variables:\n\n```bash\nexport IDRAC_API_HOST=10.10.10.10\n```\n\nAlternative, the credentials may be kept in `config.yaml` configuration file.\nThe binary searches for the file `$HOME/.redfish` directory.\n\nNext, use the API in the following manner:\n\n```bash\nbin/go-redfish-api-idrac-client --host 10.10.10.10 --operation get-info --log.level debug\nbin/go-redfish-api-idrac-client --host 10.10.10.10 --operation get-systems --log.level debug\n```\n\nThe list of available operations (`--operation` argument) follows:\n\n* `get-info`: Get basic information about a remote API endpoint\n* `get-system`: Get system information\n\nAdditionally, the `--resource` argument accepts any valid Redfish API Endpoint:\n\n```bash\ngo-redfish-api-idrac-client --host 10.10.10.10 --resource \"/redfish/v1/Systems\" --log.level debug\ngo-redfish-api-idrac-client --host 10.10.10.10 --resource \"/redfish/v1/Systems/System.Embedded.1\" --log.level debug\n```\n\n## References\n\n* [Open Data Protocol (OData)](https://en.wikipedia.org/wiki/Open_Data_Protocol)\n* [OData Version 4.01 Documentation](https://www.odata.org/documentation/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreenpau%2Fgo-redfish-api-idrac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgreenpau%2Fgo-redfish-api-idrac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreenpau%2Fgo-redfish-api-idrac/lists"}