Class: Google::Apis::ToolresultsV1::NonSdkApiInsight

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

Non-SDK API insights (to address debugging solutions).

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) ⇒ NonSdkApiInsight

Returns a new instance of NonSdkApiInsight.



343
344
345
# File 'generated/google/apis/toolresults_v1/classes.rb', line 343

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

Instance Attribute Details

#example_trace_messagesArray<String>

Optional sample stack traces, for which this insight applies (there should be at least one). Corresponds to the JSON property exampleTraceMessages

Returns:

  • (Array<String>)


323
324
325
# File 'generated/google/apis/toolresults_v1/classes.rb', line 323

def example_trace_messages
  @example_trace_messages
end

#matcher_idString

A unique ID, to be used for determining the effectiveness of this particular insight in the context of a matcher. (required) Corresponds to the JSON property matcherId

Returns:

  • (String)


329
330
331
# File 'generated/google/apis/toolresults_v1/classes.rb', line 329

def matcher_id
  @matcher_id
end

#pending_google_update_insightGoogle::Apis::ToolresultsV1::PendingGoogleUpdateInsight

This insight indicates that the hidden API usage originates from a Google-provided library. Users need not take any action. Corresponds to the JSON property pendingGoogleUpdateInsight



335
336
337
# File 'generated/google/apis/toolresults_v1/classes.rb', line 335

def pending_google_update_insight
  @pending_google_update_insight
end

#upgrade_insightGoogle::Apis::ToolresultsV1::UpgradeInsight

This insight is a recommendation to upgrade a given library to the specified version, in order to avoid dependencies on non-SDK APIs. Corresponds to the JSON property upgradeInsight



341
342
343
# File 'generated/google/apis/toolresults_v1/classes.rb', line 341

def upgrade_insight
  @upgrade_insight
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



348
349
350
351
352
353
# File 'generated/google/apis/toolresults_v1/classes.rb', line 348

def update!(**args)
  @example_trace_messages = args[:example_trace_messages] if args.key?(:example_trace_messages)
  @matcher_id = args[:matcher_id] if args.key?(:matcher_id)
  @pending_google_update_insight = args[:pending_google_update_insight] if args.key?(:pending_google_update_insight)
  @upgrade_insight = args[:upgrade_insight] if args.key?(:upgrade_insight)
end