Class: Google::Apis::ToolresultsV1beta3::NonSdkApi
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ToolresultsV1beta3::NonSdkApi
 
 
- 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
A non-sdk API and examples of it being called along with other metadata See https://developer.android.com/distribute/best-practices/develop/restrictions- non-sdk-interfaces
Instance Attribute Summary collapse
- 
  
    
      #api_signature  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The signature of the Non-SDK API Corresponds to the JSON property
apiSignature. - 
  
    
      #example_stack_traces  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Example stack traces of this API being called.
 - 
  
    
      #insights  ⇒ Array<Google::Apis::ToolresultsV1beta3::NonSdkApiInsight> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional debugging insights for non-SDK API violations.
 - 
  
    
      #invocation_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of times this API was observed to have been called.
 - 
  
    
      #list  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Which list this API appears on Corresponds to the JSON property
list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ NonSdkApi 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NonSdkApi.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ NonSdkApi
Returns a new instance of NonSdkApi.
      1907 1908 1909  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1907 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#api_signature ⇒ String
The signature of the Non-SDK API
Corresponds to the JSON property apiSignature
      1885 1886 1887  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1885 def api_signature @api_signature end  | 
  
#example_stack_traces ⇒ Array<String>
Example stack traces of this API being called.
Corresponds to the JSON property exampleStackTraces
      1890 1891 1892  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1890 def example_stack_traces @example_stack_traces end  | 
  
#insights ⇒ Array<Google::Apis::ToolresultsV1beta3::NonSdkApiInsight>
Optional debugging insights for non-SDK API violations.
Corresponds to the JSON property insights
      1895 1896 1897  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1895 def insights @insights end  | 
  
#invocation_count ⇒ Fixnum
The total number of times this API was observed to have been called.
Corresponds to the JSON property invocationCount
      1900 1901 1902  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1900 def invocation_count @invocation_count end  | 
  
#list ⇒ String
Which list this API appears on
Corresponds to the JSON property list
      1905 1906 1907  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1905 def list @list end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1912 1913 1914 1915 1916 1917 1918  | 
    
      # File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1912 def update!(**args) @api_signature = args[:api_signature] if args.key?(:api_signature) @example_stack_traces = args[:example_stack_traces] if args.key?(:example_stack_traces) @insights = args[:insights] if args.key?(:insights) @invocation_count = args[:invocation_count] if args.key?(:invocation_count) @list = args[:list] if args.key?(:list) end  |