Class: Google::Apis::WebsecurityscannerV1beta::ScanConfigError

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

Overview

Defines a custom error message used by CreateScanConfig and UpdateScanConfig APIs when scan configuration validation fails. It is also reported as part of a ScanRunErrorTrace message if scan validation fails due to a scan configuration error.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ScanConfigError

Returns a new instance of ScanConfigError.



699
700
701
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 699

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

Instance Attribute Details

#codeString

Indicates the reason code for a configuration failure. Corresponds to the JSON property code

Returns:

  • (String)


690
691
692
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 690

def code
  @code
end

#field_nameString

Indicates the full name of the ScanConfig field that triggers this error, for example "scan_config.max_qps". This field is provided for troubleshooting purposes only and its actual value can change in the future. Corresponds to the JSON property fieldName

Returns:

  • (String)


697
698
699
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 697

def field_name
  @field_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



704
705
706
707
# File 'lib/google/apis/websecurityscanner_v1beta/classes.rb', line 704

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @field_name = args[:field_name] if args.key?(:field_name)
end