1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! `clients()`
//! ===========
//! Operate on an individual Chef client.
//!
//! - GET: Retrieve a client
//! - PUT: Update an existing client
//! - DELETE: Delete an existing client
//!
//! ```rust,no_run
//! # use chef_api::api_client::*;
//! # let api = ApiClient::from_credentials(None).unwrap();
//! let client = api.clients().client("my_client").get();
//! ```
//!
//! `keys()`
//! =======
//! Get all of a specified client's keys.
//!
//! Can only be called once a client has been specified with `client()`.
//!
//! - GET: Retrieve a list of keys
//! - POST: Add a new key
//!
//! ```rust,no_run
//! # use chef_api::api_client::*;
//! # let api = ApiClient::from_credentials(None).unwrap();
//! let keys = api.clients().client("my_client").keys().get();
//! ```
//!
//! `key()`
//! =======
//! Get a specified key.
//!
//! Can only be called once a client has been specified with `client()`.
//!
//! - GET: Retrieve a key
//! - PUT: Update a key
//! - DELETE: Delete a key
//!
//! ```rust,no_run
//! # use chef_api::api_client::*;
//! # let api = ApiClient::from_credentials(None).unwrap();
//! let key = api.clients().client("my_client").keys().key("default").get();
//! ```
//!
//! For further details, see https://chef-server-api-docs.chef.io/#organizations__organization__clients
import!;
requests!;