Class: Azure::EntitySearch::Profiles::Latest::EntitySearchDataClass

Inherits:
Object
  • Object
show all
Defined in:
lib/profiles/latest/modules/entitysearch_profile_module.rb

Overview

EntitySearchDataClass

Direct Known Subclasses

Client

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ EntitySearchDataClass

Returns a new instance of EntitySearchDataClass.



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 65

def initialize(options = {})
  if options.is_a?(Hash) && options.length == 0
    @options = setup_default_options
  else
    @options = options
  end

  reset!(options)

  @configurable = self
  @base_url = options[:base_url].nil? ? nil:options[:base_url]
  @options = options[:options].nil? ? nil:options[:options]

  @client_0 = Azure::CognitiveServices::EntitySearch::V1_0::EntitySearchClient.new(configurable.credentials, options)
  if(@client_0.respond_to?(:subscription_id))
    @client_0.subscription_id = configurable.subscription_id
  end
  add_telemetry(@client_0)
  @entities_operations = @client_0.entities_operations

  @model_classes = ModelClasses.new
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object



93
94
95
96
97
98
99
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 93

def method_missing(method, *args)
  if @client_0.respond_to?method
    @client_0.send(method, *args)
  else
    super
  end
end

Instance Attribute Details

#base_urlObject (readonly)

Returns the value of attribute base_url.



63
64
65
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 63

def base_url
  @base_url
end

#configurableObject (readonly)

Returns the value of attribute configurable.



63
64
65
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 63

def configurable
  @configurable
end

#entities_operationsObject (readonly)

Returns the value of attribute entities_operations.



63
64
65
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 63

def entities_operations
  @entities_operations
end

#model_classesObject (readonly)

Returns the value of attribute model_classes.



63
64
65
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 63

def model_classes
  @model_classes
end

#optionsObject (readonly)

Returns the value of attribute options.



63
64
65
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 63

def options
  @options
end

Instance Method Details

#add_telemetry(client) ⇒ Object



88
89
90
91
# File 'lib/profiles/latest/modules/entitysearch_profile_module.rb', line 88

def add_telemetry(client)
  profile_information = 'Profiles/Latest/EntitySearch'
  client.add_user_agent_information(profile_information)
end