exoscale_rs/models/
upgrade_sks_cluster_request.rs

1/*
2 * Exoscale Public API
3 *
4 *  Infrastructure automation API, allowing programmatic access to all Exoscale products and services.  The [OpenAPI Specification](http://spec.openapis.org/oas/v3.0.3.html) source of this documentation can be obtained here:  * [JSON format](https://openapi-v2.exoscale.com/source.json) * [YAML format](https://openapi-v2.exoscale.com/source.yaml)
5 *
6 * The version of the OpenAPI document: 2.0.0
7 * Contact: api@exoscale.com
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 UpgradeSksClusterRequest {
16    /// Control plane Kubernetes version
17    #[serde(rename = "version")]
18    pub version: String,
19}
20
21impl UpgradeSksClusterRequest {
22    pub fn new(version: String) -> UpgradeSksClusterRequest {
23        UpgradeSksClusterRequest {
24            version,
25        }
26    }
27}
28