Class: TencentCloud::Tke::V20180525::LoginSettings

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180525/models.rb

Overview

描述了实例登录相关配置与信息。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(password = nil, keyids = nil, keepimagelogin = nil) ⇒ LoginSettings

Returns a new instance of LoginSettings.



14511
14512
14513
14514
14515
# File 'lib/v20180525/models.rb', line 14511

def initialize(password=nil, keyids=nil, keepimagelogin=nil)
  @Password = password
  @KeyIds = keyids
  @KeepImageLogin = keepimagelogin
end

Instance Attribute Details

#KeepImageLoginObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:



14509
14510
14511
# File 'lib/v20180525/models.rb', line 14509

def KeepImageLogin
  @KeepImageLogin
end

#KeyIdsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:



14509
14510
14511
# File 'lib/v20180525/models.rb', line 14509

def KeyIds
  @KeyIds
end

#PasswordObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:



14509
14510
14511
# File 'lib/v20180525/models.rb', line 14509

def Password
  @Password
end

Instance Method Details

#deserialize(params) ⇒ Object



14517
14518
14519
14520
14521
# File 'lib/v20180525/models.rb', line 14517

def deserialize(params)
  @Password = params['Password']
  @KeyIds = params['KeyIds']
  @KeepImageLogin = params['KeepImageLogin']
end