Class: Google::Apis::WebsecurityscannerV1::ScanConfigError
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1::ScanConfigError
- 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
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
-
#code ⇒ String
Output only.
-
#field_name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScanConfigError
constructor
A new instance of ScanConfigError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ScanConfigError
Returns a new instance of ScanConfigError
621 622 623 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 621 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code ⇒ String
Output only. Indicates the reason code for a configuration failure.
Corresponds to the JSON property code
610 611 612 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 610 def code @code end |
#field_name ⇒ String
Output only. 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
619 620 621 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 619 def field_name @field_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
626 627 628 629 |
# File 'generated/google/apis/websecurityscanner_v1/classes.rb', line 626 def update!(**args) @code = args[:code] if args.key?(:code) @field_name = args[:field_name] if args.key?(:field_name) end |