Class: Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoring

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

Represents the data monitoring section of the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChecksReportV1alphaDataMonitoring

Returns a new instance of GoogleChecksReportV1alphaDataMonitoring.



784
785
786
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 784

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_typesArray<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringDataTypeResult>

Data types that your app shares or collects. Corresponds to the JSON property dataTypes



767
768
769
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 767

def data_types
  @data_types
end

#endpointsArray<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringEndpointResult>

Endpoints that were found by dynamic analysis of your app. Corresponds to the JSON property endpoints



772
773
774
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 772

def endpoints
  @endpoints
end

#permissionsArray<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringPermissionResult>

Permissions that your app uses. Corresponds to the JSON property permissions



777
778
779
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 777

def permissions
  @permissions
end

#sdksArray<Google::Apis::ChecksV1alpha::GoogleChecksReportV1alphaDataMonitoringSdkResult>

SDKs that your app uses. Corresponds to the JSON property sdks



782
783
784
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 782

def sdks
  @sdks
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



789
790
791
792
793
794
# File 'lib/google/apis/checks_v1alpha/classes.rb', line 789

def update!(**args)
  @data_types = args[:data_types] if args.key?(:data_types)
  @endpoints = args[:endpoints] if args.key?(:endpoints)
  @permissions = args[:permissions] if args.key?(:permissions)
  @sdks = args[:sdks] if args.key?(:sdks)
end