openwhisk-rust

Crates.ioopenwhisk-rust
lib.rsopenwhisk-rust
version0.1.5
sourcesrc
created_at2022-06-02 05:15:00.890789
updated_at2023-01-05 10:27:43.203692
descriptionOpenWhisk Client written in Rust
homepage
repositoryhttps://github.com/hugobyte/openwhisk-client-rust
max_upload_size
id598665
size79,786
Shreyas S Bhat (shreyasbhat0)

documentation

https://docs.rs/openwhisk-rust/latest/openwhisk_rust/

README

Openwhisk Client Rust

Description

This project Openwhisk-client-Rust is a Rust client library to access the Openwhisk API. This Project comes with Native and Wasm Support.

Setup

Prerequisites

This Project requies latest verion of rust to be installed and configured.

Configuration

The parameters of API_HOST, NAMESPACE and AUTH_TOKEN will be used to access the OpenWhisk services.

Configure your Openwhisk client by setting the whisk properties.

let wsk_properties = WskProperties::new(
			"<Openwhisk_Auth_Token>",
			"<Openwhisk_API_Host>",
			 <insecure(Bool: for secure or insecure connection )>,
			 "<Namespace>"
 );

Usage

Examples

  • Invoke a deployed Action
 let wsk_properties = WskProperties::new(
			"<Openwhisk_Auth_Token>",
			"<Openwhisk_API_Hosy>",
			 <Bool(true/false)>,
			 "<Namespace>"
	  );
 let client = OpenwhiskClient::<NativeClient>::new(Some(&wsk_properties));

 client.actions().invoke("your action name",serde_json::json!({"key":"value"}),true,true).unwrap();

  • Get list of available triggers
 let wsk_properties = WskProperties::new(
			"<Openwhisk_Auth_Token>",
			"<Openwhisk_API_Hosy>",
			 <Bool(true/false)>,
			 "<Namespace>"
	  );
 let client = OpenwhiskClient::<NativeClient>::new(Some(&wsk_properties));

 let triggers = client.triggers().list().unwrap();
  • Get the properties of the rule
 let wsk_properties = WskProperties::new(
			"<Openwhisk_Auth_Token>",
			"<Openwhisk_API_Hosy>",
			 <Bool(true/false)>,
			 "<Namespace>"
	  );
 let client = OpenwhiskClient::<NativeClient>::new(Some(&wsk_properties));
 let properties = client.rules().list().unwrap();

Contributions

Contributions welcome particularly for enhancement of this library and also adding new functionality which helps in seamless interaction with Openwhisk Apis in rust applications.

Follow these steps for contributing

  • Fork the repository
  • Clone your fork
  • Create a new branch
  • Make changes in local repo
  • commit and push your changes to forked repo
  • Begin and create a pull request
  • Once pull request is review and accepted code changes will be merged to main branch
  • You will get a notification email once the changes have been merged

References

Special thanks to Openwhisk-go-client for inspiring us to develop Openwhisk Client in rust

License

Licensed under Apache-2.0

Commit count: 71

cargo fmt