Class: Google::Apis::ToolresultsV1::NonSdkApiUsageViolationReport

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/toolresults_v1/classes.rb,
generated/google/apis/toolresults_v1/representations.rb,
generated/google/apis/toolresults_v1/representations.rb

Overview

Contains a summary and examples of non-sdk API usage violations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ NonSdkApiUsageViolationReport

Returns a new instance of NonSdkApiUsageViolationReport.



405
406
407
# File 'generated/google/apis/toolresults_v1/classes.rb', line 405

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

Instance Attribute Details

#example_apisArray<Google::Apis::ToolresultsV1::NonSdkApi>

Examples of the detected API usages. Corresponds to the JSON property exampleApis



388
389
390
# File 'generated/google/apis/toolresults_v1/classes.rb', line 388

def example_apis
  @example_apis
end

#min_sdk_versionFixnum

Minimum API level required for the application to run. Corresponds to the JSON property minSdkVersion

Returns:

  • (Fixnum)


393
394
395
# File 'generated/google/apis/toolresults_v1/classes.rb', line 393

def min_sdk_version
  @min_sdk_version
end

#target_sdk_versionFixnum

Specifies the API Level on which the application is designed to run. Corresponds to the JSON property targetSdkVersion

Returns:

  • (Fixnum)


398
399
400
# File 'generated/google/apis/toolresults_v1/classes.rb', line 398

def target_sdk_version
  @target_sdk_version
end

#unique_apisFixnum

Total number of unique Non-SDK API's accessed. Corresponds to the JSON property uniqueApis

Returns:

  • (Fixnum)


403
404
405
# File 'generated/google/apis/toolresults_v1/classes.rb', line 403

def unique_apis
  @unique_apis
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



410
411
412
413
414
415
# File 'generated/google/apis/toolresults_v1/classes.rb', line 410

def update!(**args)
  @example_apis = args[:example_apis] if args.key?(:example_apis)
  @min_sdk_version = args[:min_sdk_version] if args.key?(:min_sdk_version)
  @target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
  @unique_apis = args[:unique_apis] if args.key?(:unique_apis)
end