{"id":31773841,"url":"https://github.com/manageiq/azure-armrest","last_synced_at":"2025-10-10T04:29:57.790Z","repository":{"id":32048909,"uuid":"35620488","full_name":"ManageIQ/azure-armrest","owner":"ManageIQ","description":"Ruby interface for Azure using the new REST API","archived":false,"fork":false,"pushed_at":"2025-08-18T22:08:10.000Z","size":1125,"stargazers_count":16,"open_issues_count":2,"forks_count":35,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-10-02T08:23:35.658Z","etag":null,"topics":["azure","hacktoberfest","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ManageIQ.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-05-14T15:51:27.000Z","updated_at":"2025-10-01T15:37:51.000Z","dependencies_parsed_at":"2023-12-15T03:45:44.028Z","dependency_job_id":"3217e8db-fe45-4146-bb21-5f47290362bb","html_url":"https://github.com/ManageIQ/azure-armrest","commit_stats":{"total_commits":636,"total_committers":25,"mean_commits":25.44,"dds":"0.32704402515723274","last_synced_commit":"8131b3ee0bb5334c2ec61934102a6d087dbb5641"},"previous_names":[],"tags_count":82,"template":false,"template_full_name":null,"purl":"pkg:github/ManageIQ/azure-armrest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManageIQ%2Fazure-armrest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManageIQ%2Fazure-armrest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManageIQ%2Fazure-armrest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManageIQ%2Fazure-armrest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ManageIQ","download_url":"https://codeload.github.com/ManageIQ/azure-armrest/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ManageIQ%2Fazure-armrest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002681,"owners_count":26083442,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["azure","hacktoberfest","ruby"],"created_at":"2025-10-10T04:29:55.887Z","updated_at":"2025-10-10T04:29:57.784Z","avatar_url":"https://github.com/ManageIQ.png","language":"Ruby","readme":"## Description\n\nA Ruby interface for Azure using the new REST API.\n\n[![Gem Version](https://badge.fury.io/rb/azure-armrest.svg)](http://badge.fury.io/rb/azure-armrest)\n[![CI](https://github.com/ManageIQ/azure-armrest/actions/workflows/ci.yaml/badge.svg)](https://github.com/ManageIQ/azure-armrest/actions/workflows/ci.yaml)\n[![Code Climate](https://codeclimate.com/github/ManageIQ/azure-armrest/badges/gpa.svg)](https://codeclimate.com/github/ManageIQ/azure-armrest)\n[![Test Coverage](https://codeclimate.com/github/ManageIQ/azure-armrest/badges/coverage.svg)](https://codeclimate.com/github/ManageIQ/azure-armrest/coverage)\n\n[![Join the chat at https://gitter.im/ManageIQ/azure-armrest](https://badges.gitter.im/ManageIQ/azure-armrest.svg)](https://gitter.im/ManageIQ/azure-armrest?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n## Synopsis\n\n```ruby\nrequire 'azure/armrest'\n\n# Create a configuration object. All service objects will then use the\n# information you set here.\n#\n# A token will be retrieved based on the information you provided\n\nconf = Azure::Armrest::Configuration.new(\n  :client_id       =\u003e 'XXXXX',\n  :client_key      =\u003e 'YYYYY',\n  :tenant_id       =\u003e 'ZZZZZ',\n  :subscription_id =\u003e 'ABCDEFG'\n)\n\n# This will then use the configuration info set above.\nvms = Azure::Armrest::VirtualMachineService.new(conf)\n\n# You can add other options specific to the service to be created,\n# such as the provider.\n\noptions = {:provider =\u003e 'Microsoft.ClassicCompute'}\nvms = Azure::Armrest::VirtualMachineService.new(conf, options)\n\n# List all virtual machines for a given resource group:\nvms.list(some_group).each do |vm|\n  puts vm.name\n  puts vm.resource_group\n  puts vm.location\n  puts vm.properties.hardware_profile.vm_size\nend\n```\n\n## Subscriptions\n\nAs of version 0.4.0 you a subscription ID is not longer strictly necessary in\nthe Configuration constructor, but almost all service classes require it in\ntheir own constructor. Only the SubscriptionService class does not.\n\nIn version 0.3.x the subscription ID was mandatory. Prior to 0.3.x, if you did\nnot provide a subscription ID in your configuration object, then the first\nsubscription ID returned from a REST call would be used.\n\n## Notes\n\nCurrently only the client credentials strategy is supported. Support for other\nstrategies may be added over time.\n\n## License\n\nThe gem is available as open source under the terms of the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0).\n\n## Authors\n\n* Daniel Berger\n* Bronagh Sorota\n* Bill Wei\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanageiq%2Fazure-armrest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanageiq%2Fazure-armrest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanageiq%2Fazure-armrest/lists"}