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.
-
#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.
1618 1619 1620 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1618 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
1596 1597 1598 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1596 def app_bundle @app_bundle end |
#checks ⇒ Array<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaCheck>
List of checks that were run on the app bundle.
Corresponds to the JSON property checks
1601 1602 1603 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1601 def checks @checks end |
#data_monitoring ⇒ Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring
Represents the data monitoring section of the report.
Corresponds to the JSON property dataMonitoring
1606 1607 1608 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1606 def data_monitoring @data_monitoring end |
#name ⇒ String
Resource name of the report.
Corresponds to the JSON property name
1611 1612 1613 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1611 def name @name end |
#results_uri ⇒ String
A URL to view results.
Corresponds to the JSON property resultsUri
1616 1617 1618 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1616 def results_uri @results_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1623 1624 1625 1626 1627 1628 1629 |
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1623 def update!(**args) @app_bundle = args[:app_bundle] if args.key?(:app_bundle) @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 |