rsc.nuspec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  3. <metadata>
  4. <id>rsc</id>
  5. <version>6.4.1</version>
  6. <packageSourceUrl>https://github.com/douglaswth/chocolatey-packages/tree/master/automatic/rsc</packageSourceUrl>
  7. <owners>Douglas Thrift</owners>
  8. <title>rsc</title>
  9. <authors>RightScale</authors>
  10. <projectUrl>https://github.com/rightscale/rsc</projectUrl>
  11. <licenseUrl>https://github.com/rightscale/rsc/blob/master/LICENSE</licenseUrl>
  12. <requireLicenseAcceptance>false</requireLicenseAcceptance>
  13. <projectSourceUrl>https://github.com/rightscale/rsc</projectSourceUrl>
  14. <bugTrackerUrl>https://github.com/rightscale/rsc/issues</bugTrackerUrl>
  15. <tags>rsc admin rightscale API rest cli go golang</tags>
  16. <summary>Generic RightScale API client Go package and command line tool</summary>
  17. <description>
  18. # rsc - A generic RightScale API client
  19. `rsc` provides both a command line tool and a go package for interacting with the RightScale APIs.
  20. The currently supported APIs are the RightScale Cloud Management API 1.5 and 1.6 APIs, the
  21. RightScale Self-Service 1.0 APIs (latest version for this product) and the RightLink10 APIs exposed
  22. by the RightLink10 agent. The RightScale APIs reference can be found on the
  23. [RightScale docs](http://docs.rightscale.com/api/) site.
  24. `rsc` can be used in one of two ways:
  25. * as a command line tool
  26. * as a way to make API requests to RightScale programmatically from Go code
  27. ## Command Line Tool
  28. The command line tool uses subcommands to interact with each API. Use `rsc cm15` to send requests
  29. to the RightScale Cloud Management API 1.5, `rsc cm16` to send requests to the RightScale Cloud
  30. Management API 1.6, `rsc ss` to send requests to the RightScale Self-Service API 1.0 and `rsc rl10`
  31. to send requests to RightLink10.
  32. </description>
  33. <releaseNotes>See the [CHANGELOG](https://github.com/rightscale/rsc/blob/master/CHANGELOG.md).</releaseNotes>
  34. </metadata>
  35. <files>
  36. <file src="tools\**" target="tools" />
  37. </files>
  38. </package>