Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidence
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidence
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/checks_v1alpha/classes.rb,
lib/google/apis/checks_v1alpha/representations.rb,
lib/google/apis/checks_v1alpha/representations.rb
Overview
Evidence based on an endpoint that data was sent to.
Instance Attribute Summary collapse
-
#attributed_sdks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidenceAttributedSdk>
Set of SDKs that are attributed to the exfiltration.
-
#endpoint_details ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidenceEndpointDetails>
Endpoints the data type was sent to.
-
#exfiltrated_data_type ⇒ String
Type of data that was exfiltrated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataTypeEndpointEvidence
constructor
A new instance of GoogleChecksReportV1alphaDataTypeEndpointEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataTypeEndpointEvidence
Returns a new instance of GoogleChecksReportV1alphaDataTypeEndpointEvidence.
1381 1382 1383 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1381 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributed_sdks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidenceAttributedSdk>
Set of SDKs that are attributed to the exfiltration.
Corresponds to the JSON property attributedSdks
1369 1370 1371 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1369 def attributed_sdks @attributed_sdks end |
#endpoint_details ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidenceEndpointDetails>
Endpoints the data type was sent to.
Corresponds to the JSON property endpointDetails
1374 1375 1376 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1374 def endpoint_details @endpoint_details end |
#exfiltrated_data_type ⇒ String
Type of data that was exfiltrated.
Corresponds to the JSON property exfiltratedDataType
1379 1380 1381 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1379 def exfiltrated_data_type @exfiltrated_data_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1386 1387 1388 1389 1390 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1386 def update!(**args) @attributed_sdks = args[:attributed_sdks] if args.key?(:attributed_sdks) @endpoint_details = args[:endpoint_details] if args.key?(:endpoint_details) @exfiltrated_data_type = args[:exfiltrated_data_type] if args.key?(:exfiltrated_data_type) end |