Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaReport
- Inherits:
-
Object
- Object
- Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaReport
- 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
Privacy report.
Instance Attribute Summary collapse
-
#app_bundle ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaAppBundle
Information about the analyzed app bundle.
-
#base_report ⇒ String
Resource name of the base report used for comparison.
-
#checks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheck>
List of checks that were run on the app bundle.
-
#data_monitoring ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring
Represents the data monitoring section of the report.
-
#name ⇒ String
Resource name of the report.
-
#results_uri ⇒ String
A URL to view results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChecksReportV1alphaReport
constructor
A new instance of GoogleChecksReportV1alphaReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChecksReportV1alphaReport
Returns a new instance of GoogleChecksReportV1alphaReport.
1211 1212 1213 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_bundle ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaAppBundle
Information about the analyzed app bundle.
Corresponds to the JSON property appBundle
1183 1184 1185 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1183 def app_bundle @app_bundle end |
#base_report ⇒ String
Resource name of the base report used for comparison. May be absent if this is
the first report generated for the app.
Corresponds to the JSON property baseReport
1189 1190 1191 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1189 def base_report @base_report end |
#checks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheck>
List of checks that were run on the app bundle.
Corresponds to the JSON property checks
1194 1195 1196 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1194 def checks @checks end |
#data_monitoring ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring
Represents the data monitoring section of the report.
Corresponds to the JSON property dataMonitoring
1199 1200 1201 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1199 def data_monitoring @data_monitoring end |
#name ⇒ String
Resource name of the report.
Corresponds to the JSON property name
1204 1205 1206 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1204 def name @name end |
#results_uri ⇒ String
A URL to view results.
Corresponds to the JSON property resultsUri
1209 1210 1211 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1209 def results_uri @results_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1216 1217 1218 1219 1220 1221 1222 1223 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1216 def update!(**args) @app_bundle = args[:app_bundle] if args.key?(:app_bundle) @base_report = args[:base_report] if args.key?(:base_report) @checks = args[:checks] if args.key?(:checks) @data_monitoring = args[:data_monitoring] if args.key?(:data_monitoring) @name = args[:name] if args.key?(:name) @results_uri = args[:results_uri] if args.key?(:results_uri) end |