Class: Google::Apis::SecuritycenterV1beta1::Application
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::Application
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb
Overview
Represents an application associated with a finding.
Instance Attribute Summary collapse
-
#base_uri ⇒ String
The base URI that identifies the network location of the application in which the vulnerability was detected.
-
#full_uri ⇒ String
The full URI with payload that can be used to reproduce the vulnerability.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Application
constructor
A new instance of Application.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Application
Returns a new instance of Application.
207 208 209 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 207 def initialize(**args) update!(**args) end |
Instance Attribute Details
#base_uri ⇒ String
The base URI that identifies the network location of the application in which
the vulnerability was detected. Examples: http://11.22.33.44, http://foo.com,
http://11.22.33.44:8080
Corresponds to the JSON property baseUri
198 199 200 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 198 def base_uri @base_uri end |
#full_uri ⇒ String
The full URI with payload that can be used to reproduce the vulnerability.
Example: http://11.22.33.44/reflected/parameter/attribute/singlequoted/js?p=
aMmYgI6H
Corresponds to the JSON property fullUri
205 206 207 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 205 def full_uri @full_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
212 213 214 215 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 212 def update!(**args) @base_uri = args[:base_uri] if args.key?(:base_uri) @full_uri = args[:full_uri] if args.key?(:full_uri) end |