Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring
- 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
Represents the data monitoring section of the report.
Instance Attribute Summary collapse
-
#data_types ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringDataTypeResult>
Data types that your app shares or collects.
-
#endpoints ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringEndpointResult>
Endpoints that were found by dynamic analysis of your app.
-
#permissions ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringPermissionResult>
Permissions that your app uses.
-
#sdks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringSdkResult>
SDKs that your app uses.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataMonitoring
constructor
A new instance of GoogleChecksReportV1alphaDataMonitoring.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChecksReportV1alphaDataMonitoring
Returns a new instance of GoogleChecksReportV1alphaDataMonitoring.
784 785 786 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_types ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringDataTypeResult>
Data types that your app shares or collects.
Corresponds to the JSON property dataTypes
767 768 769 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 767 def data_types @data_types end |
#endpoints ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringEndpointResult>
Endpoints that were found by dynamic analysis of your app.
Corresponds to the JSON property endpoints
772 773 774 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 772 def endpoints @endpoints end |
#permissions ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringPermissionResult>
Permissions that your app uses.
Corresponds to the JSON property permissions
777 778 779 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 777 def @permissions end |
#sdks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringSdkResult>
SDKs that your app uses.
Corresponds to the JSON property sdks
782 783 784 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 782 def sdks @sdks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
789 790 791 792 793 794 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 789 def update!(**args) @data_types = args[:data_types] if args.key?(:data_types) @endpoints = args[:endpoints] if args.key?(:endpoints) @permissions = args[:permissions] if args.key?(:permissions) @sdks = args[:sdks] if args.key?(:sdks) end |