Struct google_clouduseraccountsvm_beta::LinuxUserView[][src]

pub struct LinuxUserView {
    pub username: Option<String>,
    pub shell: Option<String>,
    pub gecos: Option<String>,
    pub uid: Option<u32>,
    pub home_directory: Option<String>,
    pub gid: Option<u32>,
}

A detailed view of a Linux user account.

This type is not used in any activity, and only used as part of another schema.

Fields

[Output Only] The username of the account.

[Output Only] The path to the login shell for this account.

[Output Only] The GECOS (user information) entry for this account.

[Output Only] User ID.

[Output Only] The path to the home directory for this account.

[Output Only] User's default group ID.

Trait Implementations

impl Default for LinuxUserView
[src]

Returns the "default value" for a type. Read more

impl Clone for LinuxUserView
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LinuxUserView
[src]

Formats the value using the given formatter. Read more

impl Part for LinuxUserView
[src]

Auto Trait Implementations