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.



1949
1950
1951
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1949

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


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

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)


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

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



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

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



1947
1948
1949
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1947

def upgrade_insight
  @upgrade_insight
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1954
1955
1956
1957
1958
1959
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1954

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