Class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Application

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

Overview

Represents an application associated with a finding.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudSecuritycenterV2Application

Returns a new instance of GoogleCloudSecuritycenterV2Application.



2909
2910
2911
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2909

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

Instance Attribute Details

#base_uriString

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

Returns:

  • (String)


2900
2901
2902
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2900

def base_uri
  @base_uri
end

#full_uriString

The full URI with payload that could 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

Returns:

  • (String)


2907
2908
2909
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2907

def full_uri
  @full_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2914
2915
2916
2917
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 2914

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