Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaReport

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_bundleGoogle::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

#checksArray<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_monitoringGoogle::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

#nameString

Resource name of the report. Corresponds to the JSON property name

Returns:

  • (String)


1611
1612
1613
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1611

def name
  @name
end

#results_uriString

A URL to view results. Corresponds to the JSON property resultsUri

Returns:

  • (String)


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