Class: Google::Apis::OsloginV1::LoginProfile
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::OsloginV1::LoginProfile
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/oslogin_v1/classes.rb,
 generated/google/apis/oslogin_v1/representations.rb,
 generated/google/apis/oslogin_v1/representations.rb
Overview
The user profile information used for logging in to a virtual machine on Google Compute Engine.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique user ID. 
- 
  
    
      #posix_accounts  ⇒ Array<Google::Apis::OsloginV1::PosixAccount> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of POSIX accounts associated with the user. 
- 
  
    
      #ssh_public_keys  ⇒ Hash<String,Google::Apis::OsloginV1::SshPublicKey> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A map from SSH public key fingerprint to the associated key object. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LoginProfile 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LoginProfile. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LoginProfile
Returns a new instance of LoginProfile
| 84 85 86 | # File 'generated/google/apis/oslogin_v1/classes.rb', line 84 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#name ⇒ String
A unique user ID.
Corresponds to the JSON property name
| 72 73 74 | # File 'generated/google/apis/oslogin_v1/classes.rb', line 72 def name @name end | 
#posix_accounts ⇒ Array<Google::Apis::OsloginV1::PosixAccount>
The list of POSIX accounts associated with the user.
Corresponds to the JSON property posixAccounts
| 77 78 79 | # File 'generated/google/apis/oslogin_v1/classes.rb', line 77 def posix_accounts @posix_accounts end | 
#ssh_public_keys ⇒ Hash<String,Google::Apis::OsloginV1::SshPublicKey>
A map from SSH public key fingerprint to the associated key object.
Corresponds to the JSON property sshPublicKeys
| 82 83 84 | # File 'generated/google/apis/oslogin_v1/classes.rb', line 82 def ssh_public_keys @ssh_public_keys end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 89 90 91 92 93 | # File 'generated/google/apis/oslogin_v1/classes.rb', line 89 def update!(**args) @name = args[:name] if args.key?(:name) @posix_accounts = args[:posix_accounts] if args.key?(:posix_accounts) @ssh_public_keys = args[:ssh_public_keys] if args.key?(:ssh_public_keys) end |