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.



1211
1212
1213
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1211

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



1183
1184
1185
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1183

def app_bundle
  @app_bundle
end

#base_reportString

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

Returns:

  • (String)


1189
1190
1191
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1189

def base_report
  @base_report
end

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

#nameString

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

Returns:

  • (String)


1204
1205
1206
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 1204

def name
  @name
end

#results_uriString

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

Returns:

  • (String)


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