Class: Google::Apis::ToolresultsV1beta3::NonSdkApiInsight

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NonSdkApiInsight

Returns a new instance of NonSdkApiInsight.



1936
1937
1938
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1936

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


1916
1917
1918
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1916

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)


1922
1923
1924
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1922

def matcher_id
  @matcher_id
end

#pending_google_update_insightGoogle::Apis::ToolresultsV1beta3::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



1928
1929
1930
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1928

def pending_google_update_insight
  @pending_google_update_insight
end

#upgrade_insightGoogle::Apis::ToolresultsV1beta3::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



1934
1935
1936
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1934

def upgrade_insight
  @upgrade_insight
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1941
1942
1943
1944
1945
1946
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1941

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