tembo_api_client/models/
action.rs

1/*
2 * Tembo Cloud
3 *
4 * Platform API for Tembo Cloud             </br>             </br>             To find a Tembo Data API, please find it here:             </br>             </br>             [AWS US East 1](https://api.data-1.use1.tembo.io/swagger-ui/)
5 *
6 * The version of the OpenAPI document: v1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct Action {
16    #[serde(rename = "description")]
17    pub description: String,
18    /// A valid Action ID. Available Action IDs include 'CreateInstance' and 'ManagePermissions'. Find all available Actions on the Actions API.
19    #[serde(rename = "id")]
20    pub id: String,
21    #[serde(rename = "name")]
22    pub name: String,
23}
24
25impl Action {
26    pub fn new(description: String, id: String, name: String) -> Action {
27        Action {
28            description,
29            id,
30            name,
31        }
32    }
33}