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
/*
* Hetzner Cloud API
*
* Copied from the official API documentation for the Public Hetzner Cloud.
*
* The version of the OpenAPI document: 0.28.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// SubaccountAccessSetting : Access settings for the Subaccount.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SubaccountAccessSetting {
/// Whether access from outside the Hetzner network is allowed.
#[serde(rename = "reachable_externally")]
pub reachable_externally: bool,
/// Whether the Subaccount is read-only.
#[serde(rename = "readonly")]
pub readonly: bool,
/// Whether the Samba subsystem is enabled.
#[serde(rename = "samba_enabled")]
pub samba_enabled: bool,
/// Whether the SSH subsystem is enabled.
#[serde(rename = "ssh_enabled")]
pub ssh_enabled: bool,
/// Whether the WebDAV subsystem is enabled.
#[serde(rename = "webdav_enabled")]
pub webdav_enabled: bool,
}
impl SubaccountAccessSetting {
/// Access settings for the Subaccount.
pub fn new(
reachable_externally: bool,
readonly: bool,
samba_enabled: bool,
ssh_enabled: bool,
webdav_enabled: bool,
) -> SubaccountAccessSetting {
SubaccountAccessSetting {
reachable_externally,
readonly,
samba_enabled,
ssh_enabled,
webdav_enabled,
}
}
}