Class: Google::Apis::AlloydbV1beta::User

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

Overview

Message describing User object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ User

Returns a new instance of User.



3342
3343
3344
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3342

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

Instance Attribute Details

#database_rolesArray<String>

Optional. List of database roles this user has. The database role strings are subject to the PostgreSQL naming conventions. Corresponds to the JSON property databaseRoles

Returns:

  • (Array<String>)


3324
3325
3326
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3324

def database_roles
  @database_roles
end

#nameString

Output only. Name of the resource in the form of projects/project/locations/ location/cluster/cluster/users/user. Corresponds to the JSON property name

Returns:

  • (String)


3330
3331
3332
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3330

def name
  @name
end

#passwordString

Input only. Password for the user. Corresponds to the JSON property password

Returns:

  • (String)


3335
3336
3337
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3335

def password
  @password
end

#user_typeString

Optional. Type of this user. Corresponds to the JSON property userType

Returns:

  • (String)


3340
3341
3342
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3340

def user_type
  @user_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3347
3348
3349
3350
3351
3352
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 3347

def update!(**args)
  @database_roles = args[:database_roles] if args.key?(:database_roles)
  @name = args[:name] if args.key?(:name)
  @password = args[:password] if args.key?(:password)
  @user_type = args[:user_type] if args.key?(:user_type)
end