Class: Azure::CognitiveServices::LocalSearch::V1_0::LocalSearchClient
- Inherits:
-
MsRestAzure::AzureServiceClient
- Object
- MsRestAzure::AzureServiceClient
- Azure::CognitiveServices::LocalSearch::V1_0::LocalSearchClient
- Includes:
- MsRestAzure, MsRestAzure::Serialization
- Defined in:
- lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb
Overview
A service client - single point of access to the REST API.
Instance Attribute Summary collapse
-
#accept_language ⇒ String
The preferred language for the response.
-
#base_url ⇒ String
The base URI of the service.
-
#credentials ⇒ Object
subscription.
-
#credentials1 ⇒ Object
readonly
Credentials needed for the client to connect to Azure.
-
#generate_client_request_id ⇒ Boolean
generated.
-
#local ⇒ Local
readonly
Local.
-
#long_running_operation_retry_timeout ⇒ Integer
Operations.
Instance Method Summary collapse
-
#initialize(credentials = nil, base_url = nil, options = nil) ⇒ LocalSearchClient
constructor
Creates initializes a new instance of the LocalSearchClient class.
-
#make_request(method, path, options = {}) ⇒ Hash{String=>String}
Makes a request and returns the body of the response.
-
#make_request_async(method, path, options = {}) ⇒ Concurrent::Promise
Makes a request asynchronously.
-
#make_request_with_http_info(method, path, options = {}) ⇒ MsRestAzure::AzureOperationResponse
Makes a request and returns the operation response.
Constructor Details
#initialize(credentials = nil, base_url = nil, options = nil) ⇒ LocalSearchClient
Creates initializes a new instance of the LocalSearchClient class.
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 45 def initialize(credentials = nil, base_url = nil, = nil) super(credentials, ) @base_url = base_url || 'https://api.cognitive.microsoft.com/localbusinesses/v7.0/search' fail ArgumentError, 'invalid type of credentials input parameter' unless credentials.is_a?(MsRest::ServiceClientCredentials) unless credentials.nil? @credentials = credentials @local = Local.new(self) @accept_language = 'en-US' @long_running_operation_retry_timeout = 30 @generate_client_request_id = true add_telemetry end |
Instance Attribute Details
#accept_language ⇒ String
Returns The preferred language for the response.
25 26 27 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 25 def accept_language @accept_language end |
#base_url ⇒ String
Returns the base URI of the service.
15 16 17 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 15 def base_url @base_url end |
#credentials ⇒ Object
subscription.
22 23 24 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 22 def credentials @credentials end |
#credentials1 ⇒ Object (readonly)
Returns Credentials needed for the client to connect to Azure.
18 19 20 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 18 def credentials1 @credentials1 end |
#generate_client_request_id ⇒ Boolean
generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
34 35 36 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 34 def generate_client_request_id @generate_client_request_id end |
#local ⇒ Local (readonly)
Returns local.
37 38 39 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 37 def local @local end |
#long_running_operation_retry_timeout ⇒ Integer
Operations. Default value is 30.
29 30 31 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 29 def long_running_operation_retry_timeout @long_running_operation_retry_timeout end |
Instance Method Details
#make_request(method, path, options = {}) ⇒ Hash{String=>String}
Makes a request and returns the body of the response. Example:
request_content = "{'location':'westus','tags':{'tag1':'val1','tag2':'val2'}}"
path = "/path"
= {
body: request_content,
query_params: {'api-version' => '2016-02-01'}
}
result = @client.make_request(:put, path, )
75 76 77 78 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 75 def make_request(method, path, = {}) result = make_request_with_http_info(method, path, ) result.body unless result.nil? end |
#make_request_async(method, path, options = {}) ⇒ Concurrent::Promise
Makes a request asynchronously.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 100 def make_request_async(method, path, = {}) fail ArgumentError, 'method is nil' if method.nil? fail ArgumentError, 'path is nil' if path.nil? request_url = [:base_url] || @base_url if(![:headers].nil? && ![:headers]['Content-Type'].nil?) @request_headers['Content-Type'] = [:headers]['Content-Type'] end request_headers = @request_headers request_headers.merge!({'accept-language' => @accept_language}) unless @accept_language.nil? .merge!({headers: request_headers.merge([:headers] || {})}) .merge!({credentials: @credentials}) unless @credentials.nil? super(request_url, method, path, ) end |
#make_request_with_http_info(method, path, options = {}) ⇒ MsRestAzure::AzureOperationResponse
Makes a request and returns the operation response.
87 88 89 90 91 |
# File 'lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb', line 87 def make_request_with_http_info(method, path, = {}) result = make_request_async(method, path, ).value! result.body = result.response.body.to_s.empty? ? nil : JSON.load(result.response.body) result end |