Class: Google::Apis::WebsecurityscannerV1beta::CustomAccount
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1beta::CustomAccount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/websecurityscanner_v1beta/classes.rb,
generated/google/apis/websecurityscanner_v1beta/representations.rb,
generated/google/apis/websecurityscanner_v1beta/representations.rb
Overview
Describes authentication configuration that uses a custom account.
Instance Attribute Summary collapse
-
#login_url ⇒ String
Required.
-
#password ⇒ String
Required.
-
#username ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomAccount
constructor
A new instance of CustomAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomAccount
Returns a new instance of CustomAccount.
109 110 111 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 109 def initialize(**args) update!(**args) end |
Instance Attribute Details
#login_url ⇒ String
Required. The login form URL of the website.
Corresponds to the JSON property loginUrl
96 97 98 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 96 def login_url @login_url end |
#password ⇒ String
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
102 103 104 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 102 def password @password end |
#username ⇒ String
Required. The user name of the custom account.
Corresponds to the JSON property username
107 108 109 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 107 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
114 115 116 117 118 |
# File 'generated/google/apis/websecurityscanner_v1beta/classes.rb', line 114 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 |