3 unstable releases
Uses old Rust 2015
0.2.0 | Apr 7, 2018 |
---|---|
0.1.1 | Apr 4, 2016 |
0.1.0 | Apr 3, 2016 |
#8 in #incident
30KB
443 lines
pagerduty
An unofficial PagerDuty API Client for The Rust Programming Language.
Please see the documentation for usage instructions.
lib.rs
:
Unofficial PagerDuty API Client
The code for this project resides at https://github.com/jwilm/pagerduty-rs.
This is an early version of the PagerDuty API Client. Many of the APIs are not yet implemented
in this client. The initial features implemented are those necessary to create new incidents
from a monitoring service. Furthemore, this library only works on Rust nightlies at the
moment; we are using the Serde library for handling JSON serialization and make extensive use of
the automatically derived De/Serialize
implementations.
Support
The following APIs are supported
- Integration API
The following APIs are unsupported
- Alerts
- Escalation Policies
- Incidents
- Log Entries
- Maintenance Windows
- Reports
- Schedules
- Services
- Users
- Teams
Additionally, the following features are unsupported
- Webhooks
If you are interested in using this library and the feature you want is not yet implemented, please file an issue on this project's repository. Features will be implemented on a most-in-demand basis.
Tips
There are a few things to know that might ease getting started with this library.
- Request types store string values as
Cow<'a, str>
, and setters for these properties acceptInto<Cow<'a, str>>
to keep the API ergononmic. - Parts of the API (specifically, integration event
set_details
) let you provide arbitrary data with the request. Any structured type that implementsSerialize
can be used in these cases. There's currently no enforcement of the structured part of that contract. If you do not uphold that constaint, you will probably get aBadRequest
response.
Dependencies
~7MB
~156K SLoC