Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEvidence
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEvidence
- 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 collected about a data type.
Instance Attribute Summary collapse
-
#endpoints ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidence>
List of endpoints the data type was sent to.
-
#permissions ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypePermissionEvidence>
List of included permissions that imply collection of the data type.
-
#privacy_policy_texts ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypePrivacyPolicyTextEvidence>
List of privacy policy texts that imply collection of the data type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataTypeEvidence
constructor
A new instance of GoogleChecksReportV1alphaDataTypeEvidence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataTypeEvidence
Returns a new instance of GoogleChecksReportV1alphaDataTypeEvidence.
1450 1451 1452 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1450 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoints ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypeEndpointEvidence>
List of endpoints the data type was sent to.
Corresponds to the JSON property endpoints
1438 1439 1440 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1438 def endpoints @endpoints end |
#permissions ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypePermissionEvidence>
List of included permissions that imply collection of the data type.
Corresponds to the JSON property permissions
1443 1444 1445 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1443 def @permissions end |
#privacy_policy_texts ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataTypePrivacyPolicyTextEvidence>
List of privacy policy texts that imply collection of the data type.
Corresponds to the JSON property privacyPolicyTexts
1448 1449 1450 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1448 def privacy_policy_texts @privacy_policy_texts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1455 1456 1457 1458 1459 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1455 def update!(**args) @endpoints = args[:endpoints] if args.key?(:endpoints) @permissions = args[:permissions] if args.key?(:permissions) @privacy_policy_texts = args[:privacy_policy_texts] if args.key?(:privacy_policy_texts) end |