Class: Google::Apis::WebsecurityscannerV1::Authentication

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

Overview

Scan authentication configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Authentication

Returns a new instance of Authentication.



44
45
46
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 44

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

Instance Attribute Details

#custom_accountGoogle::Apis::WebsecurityscannerV1::CustomAccount

Describes authentication configuration that uses a custom account. Corresponds to the JSON property customAccount



32
33
34
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 32

def 
  @custom_account
end

#google_accountGoogle::Apis::WebsecurityscannerV1::GoogleAccount

Describes authentication configuration that uses a Google account. Corresponds to the JSON property googleAccount



37
38
39
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 37

def 
  @google_account
end

#iap_credentialGoogle::Apis::WebsecurityscannerV1::IapCredential

Describes authentication configuration for Identity-Aware-Proxy (IAP). Corresponds to the JSON property iapCredential



42
43
44
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 42

def iap_credential
  @iap_credential
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



49
50
51
52
53
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 49

def update!(**args)
  @custom_account = args[:custom_account] if args.key?(:custom_account)
  @google_account = args[:google_account] if args.key?(:google_account)
  @iap_credential = args[:iap_credential] if args.key?(:iap_credential)
end