Class: Google::Apis::WebsecurityscannerV1alpha::CustomAccount

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

Overview

Describes authentication configuration that uses a custom account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CustomAccount

Returns a new instance of CustomAccount.



105
106
107
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 105

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

Instance Attribute Details

#login_urlString

Required. The login form URL of the website. Corresponds to the JSON property loginUrl

Returns:

  • (String)


91
92
93
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 91

def 
  @login_url
end

#passwordString

Required. Input only. The password of the custom account. The credential is stored encrypted and not returned in any response nor included in audit logs. Corresponds to the JSON property password

Returns:

  • (String)


98
99
100
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 98

def password
  @password
end

#usernameString

Required. The user name of the custom account. Corresponds to the JSON property username

Returns:

  • (String)


103
104
105
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 103

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



110
111
112
113
114
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 110

def update!(**args)
  @login_url = args[:login_url] if args.key?(:login_url)
  @password = args[:password] if args.key?(:password)
  @username = args[:username] if args.key?(:username)
end