isilon/models/
zone_extended_extended.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct ZoneExtendedExtended {
6    /// Specifies an alternate system provider.
7    #[serde(rename = "alternate_system_provider")]
8    pub alternate_system_provider: Option<String>,
9    /// Specifies the list of authentication providers available on this access zone.
10    #[serde(rename = "auth_providers")]
11    pub auth_providers: Option<Vec<String>>,
12    /// Specifies amount of time in seconds to cache a user/group.
13    #[serde(rename = "cache_entry_expiry")]
14    pub cache_entry_expiry: Option<i32>,
15    /// Determines if a path is created when a path does not exist.
16    #[serde(rename = "create_path")]
17    pub create_path: Option<bool>,
18    /// Groupnet identitier
19    #[serde(rename = "groupnet")]
20    pub groupnet: Option<String>,
21    /// Specifies the permissions set on automatically created user home directories.
22    #[serde(rename = "home_directory_umask")]
23    pub home_directory_umask: Option<i32>,
24    /// Specifies the system-assigned ID for the access zone. This value is returned when an access zone is created through the POST method
25    #[serde(rename = "id")]
26    pub id: Option<String>,
27    /// Specifies a list of users and groups that have read and write access to /ifs.
28    #[serde(rename = "ifs_restricted")]
29    pub ifs_restricted: Option<Vec<crate::models::AuthAccessAccessItemFileGroup>>,
30    /// Maps untrusted domains to this NetBIOS domain during authentication.
31    #[serde(rename = "map_untrusted")]
32    pub map_untrusted: Option<String>,
33    /// Specifies the access zone name.
34    #[serde(rename = "name")]
35    pub name: Option<String>,
36    /// Specifies number of seconds the negative cache entry is valid.
37    #[serde(rename = "negative_cache_entry_expiry")]
38    pub negative_cache_entry_expiry: Option<i32>,
39    /// Specifies the NetBIOS name.
40    #[serde(rename = "netbios_name")]
41    pub netbios_name: Option<String>,
42    /// Specifies the access zone base directory path.
43    #[serde(rename = "path")]
44    pub path: Option<String>,
45    /// Specifies the skeleton directory that is used for user home directories.
46    #[serde(rename = "skeleton_directory")]
47    pub skeleton_directory: Option<String>,
48    /// True if the access zone is built-in.
49    #[serde(rename = "system")]
50    pub system: Option<bool>,
51    /// Specifies the system provider for the access zone.
52    #[serde(rename = "system_provider")]
53    pub system_provider: Option<String>,
54    /// Specifies the current ID mapping rules.
55    #[serde(rename = "user_mapping_rules")]
56    pub user_mapping_rules: Option<Vec<String>>,
57    /// Specifies the access zone ID on the system.
58    #[serde(rename = "zone_id")]
59    pub zone_id: Option<i32>,
60}