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.
1197 1198 1199 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1197 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
1180 1181 1182 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1180 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
1185 1186 1187 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1185 def endpoints @endpoints end |
#permissions ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringPermissionResult>
Permissions that your app uses.
Corresponds to the JSON property permissions
1190 1191 1192 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1190 def end |
#sdks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringSdkResult>
SDKs that your app uses.
Corresponds to the JSON property sdks
1195 1196 1197 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1195 def sdks @sdks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1202 1203 1204 1205 1206 1207 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1202 def update!(**args) @data_types = args[:data_types] if args.key?(:data_types) @endpoints = args[:endpoints] if args.key?(:endpoints) = args[:permissions] if args.key?(:permissions) @sdks = args[:sdks] if args.key?(:sdks) end |