Class: Google::Apis::OsloginV1beta::LoginProfile

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/oslogin_v1beta/classes.rb,
generated/google/apis/oslogin_v1beta/representations.rb,
generated/google/apis/oslogin_v1beta/representations.rb

Overview

The user profile information used for logging in to a virtual machine on Google Compute Engine.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LoginProfile

Returns a new instance of LoginProfile.



88
89
90
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 88

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Required. A unique user ID. Corresponds to the JSON property name

Returns:

  • (String)


76
77
78
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 76

def name
  @name
end

#posix_accountsArray<Google::Apis::OsloginV1beta::PosixAccount>

The list of POSIX accounts associated with the user. Corresponds to the JSON property posixAccounts



81
82
83
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 81

def posix_accounts
  @posix_accounts
end

#ssh_public_keysHash<String,Google::Apis::OsloginV1beta::SshPublicKey>

A map from SSH public key fingerprint to the associated key object. Corresponds to the JSON property sshPublicKeys



86
87
88
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 86

def ssh_public_keys
  @ssh_public_keys
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



93
94
95
96
97
# File 'generated/google/apis/oslogin_v1beta/classes.rb', line 93

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