Class: Google::Apis::WebsecurityscannerV1alpha::ViolatingResource
- Inherits:
-
Object
- Object
- Google::Apis::WebsecurityscannerV1alpha::ViolatingResource
- 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
Information regarding any resource causing the vulnerability such as JavaScript sources, image, audio files, etc.
Instance Attribute Summary collapse
-
#content_type ⇒ String
The MIME type of this resource.
-
#resource_url ⇒ String
URL of this violating resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ViolatingResource
constructor
A new instance of ViolatingResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ViolatingResource
Returns a new instance of ViolatingResource
735 736 737 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 735 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_type ⇒ String
The MIME type of this resource.
Corresponds to the JSON property contentType
728 729 730 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 728 def content_type @content_type end |
#resource_url ⇒ String
URL of this violating resource.
Corresponds to the JSON property resourceUrl
733 734 735 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 733 def resource_url @resource_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
740 741 742 743 |
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 740 def update!(**args) @content_type = args[:content_type] if args.key?(:content_type) @resource_url = args[:resource_url] if args.key?(:resource_url) end |