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
/// Zone : Specifies properties for access zones.
#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct Zone {
/// Specifies an alternate system provider.
#[serde(rename = "alternate_system_provider")]
pub alternate_system_provider: Option<String>,
/// Specifies the list of authentication providers available on this access zone.
#[serde(rename = "auth_providers")]
pub auth_providers: Option<Vec<String>>,
/// Specifies amount of time in seconds to cache a user/group.
#[serde(rename = "cache_entry_expiry")]
pub cache_entry_expiry: Option<i32>,
/// Determines if a path is created when a path does not exist.
#[serde(rename = "create_path")]
pub create_path: Option<bool>,
/// Allow for overlapping base path.
#[serde(rename = "force_overlap")]
pub force_overlap: Option<bool>,
/// Specifies the permissions set on automatically created user home directories.
#[serde(rename = "home_directory_umask")]
pub home_directory_umask: Option<i32>,
/// Specifies a list of users and groups that have read and write access to /ifs.
#[serde(rename = "ifs_restricted")]
pub ifs_restricted: Option<Vec <crate::models::AuthAccessAccessItemFileGroup>>,
/// Maps untrusted domains to this NetBIOS domain during authentication.
#[serde(rename = "map_untrusted")]
pub map_untrusted: Option<String>,
/// Specifies the access zone name.
#[serde(rename = "name")]
pub name: Option<String>,
/// Specifies number of seconds the negative cache entry is valid.
#[serde(rename = "negative_cache_entry_expiry")]
pub negative_cache_entry_expiry: Option<i32>,
/// Specifies the NetBIOS name.
#[serde(rename = "netbios_name")]
pub netbios_name: Option<String>,
/// Specifies the access zone base directory path.
#[serde(rename = "path")]
pub path: Option<String>,
/// Specifies the skeleton directory that is used for user home directories.
#[serde(rename = "skeleton_directory")]
pub skeleton_directory: Option<String>,
/// Specifies the system provider for the access zone.
#[serde(rename = "system_provider")]
pub system_provider: Option<String>,
/// Specifies the current ID mapping rules.
#[serde(rename = "user_mapping_rules")]
pub user_mapping_rules: Option<Vec<String>>,
}