Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

6 Commits

Repository files navigation

Library for Netapp API access

This is a rust library that can be used to access the Netapp ONTAP REST API.

It is handwritten and not necessarily including all the functionalities you can find in the swagger docs.

Example

use reqwest::Url;use rontap::OntapConnectionParams;#[tokio::main]asyncfnmain() -> Result<()>{let params = OntapConnectionParams{url:Url::from_str("https://mynetapp.example.com/api")?,username:"foobar".into(),password:"secret".into(),};let c = params.connect().await?;dbg!(c.get_volumes().await?);}

About

rust library to access Netapp ONTAP REST library

Resources

Stars

1 star

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages