azure_cognitiveservices_localsearch 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch.rb +54 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/local.rb +601 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb +128 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/action.rb +424 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/answer.rb +131 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/creative_work.rb +392 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/entities_entity_presentation_info.rb +127 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/entity_scenario.rb +17 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/entity_type.rb +18 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/error.rb +126 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_code.rb +20 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_response.rb +154 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_sub_code.rb +25 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/geo_coordinates.rb +80 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb +62 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/intangible.rb +162 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/place.rb +217 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/places.rb +182 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/postal_address.rb +338 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/query_context.rb +150 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/response.rb +150 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/response_base.rb +60 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/response_format.rb +16 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/safe_search.rb +17 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_action.rb +464 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_response.rb +190 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_results_answer.rb +172 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/structured_value.rb +162 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/models/thing.rb +174 -0
- data/lib/1.0/generated/azure_cognitiveservices_localsearch/module_definition.rb +9 -0
- data/lib/azure_cognitiveservices_localsearch.rb +6 -0
- data/lib/module_definition.rb +7 -0
- data/lib/profiles/latest/localsearch_latest_profile_client.rb +38 -0
- data/lib/profiles/latest/localsearch_module_definition.rb +8 -0
- data/lib/profiles/latest/modules/localsearch_profile_module.rb +163 -0
- data/lib/version.rb +7 -0
- metadata +156 -0
@@ -0,0 +1,174 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure::CognitiveServices::LocalSearch::V1_0
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# Defines a thing.
|
10
|
+
#
|
11
|
+
class Thing < Response
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
|
16
|
+
def initialize
|
17
|
+
@_type = "Thing"
|
18
|
+
end
|
19
|
+
|
20
|
+
attr_accessor :_type
|
21
|
+
|
22
|
+
# @return [String] The name of the thing represented by this object.
|
23
|
+
attr_accessor :name
|
24
|
+
|
25
|
+
# @return [String] The URL to get more information about the thing
|
26
|
+
# represented by this object.
|
27
|
+
attr_accessor :url
|
28
|
+
|
29
|
+
# @return [EntitiesEntityPresentationInfo] Additional information about
|
30
|
+
# the entity such as hints that you can use to determine the entity's
|
31
|
+
# type. To determine the entity's type, use the entityScenario and
|
32
|
+
# entityTypeHint fields.
|
33
|
+
attr_accessor :entity_presentation_info
|
34
|
+
|
35
|
+
|
36
|
+
#
|
37
|
+
# Mapper for Thing class as Ruby Hash.
|
38
|
+
# This will be used for serialization/deserialization.
|
39
|
+
#
|
40
|
+
def self.mapper()
|
41
|
+
{
|
42
|
+
client_side_validation: true,
|
43
|
+
required: false,
|
44
|
+
serialized_name: 'Thing',
|
45
|
+
type: {
|
46
|
+
name: 'Composite',
|
47
|
+
class_name: 'Thing',
|
48
|
+
model_properties: {
|
49
|
+
_type: {
|
50
|
+
client_side_validation: true,
|
51
|
+
required: true,
|
52
|
+
serialized_name: '_type',
|
53
|
+
type: {
|
54
|
+
name: 'String'
|
55
|
+
}
|
56
|
+
},
|
57
|
+
id: {
|
58
|
+
client_side_validation: true,
|
59
|
+
required: false,
|
60
|
+
read_only: true,
|
61
|
+
serialized_name: 'id',
|
62
|
+
type: {
|
63
|
+
name: 'String'
|
64
|
+
}
|
65
|
+
},
|
66
|
+
read_link: {
|
67
|
+
client_side_validation: true,
|
68
|
+
required: false,
|
69
|
+
read_only: true,
|
70
|
+
serialized_name: 'readLink',
|
71
|
+
type: {
|
72
|
+
name: 'String'
|
73
|
+
}
|
74
|
+
},
|
75
|
+
web_search_url: {
|
76
|
+
client_side_validation: true,
|
77
|
+
required: false,
|
78
|
+
read_only: true,
|
79
|
+
serialized_name: 'webSearchUrl',
|
80
|
+
type: {
|
81
|
+
name: 'String'
|
82
|
+
}
|
83
|
+
},
|
84
|
+
potential_action: {
|
85
|
+
client_side_validation: true,
|
86
|
+
required: false,
|
87
|
+
read_only: true,
|
88
|
+
serialized_name: 'potentialAction',
|
89
|
+
type: {
|
90
|
+
name: 'Sequence',
|
91
|
+
element: {
|
92
|
+
client_side_validation: true,
|
93
|
+
required: false,
|
94
|
+
serialized_name: 'ActionElementType',
|
95
|
+
type: {
|
96
|
+
name: 'Composite',
|
97
|
+
class_name: 'Action'
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
},
|
102
|
+
immediate_action: {
|
103
|
+
client_side_validation: true,
|
104
|
+
required: false,
|
105
|
+
read_only: true,
|
106
|
+
serialized_name: 'immediateAction',
|
107
|
+
type: {
|
108
|
+
name: 'Sequence',
|
109
|
+
element: {
|
110
|
+
client_side_validation: true,
|
111
|
+
required: false,
|
112
|
+
serialized_name: 'ActionElementType',
|
113
|
+
type: {
|
114
|
+
name: 'Composite',
|
115
|
+
class_name: 'Action'
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
preferred_clickthrough_url: {
|
121
|
+
client_side_validation: true,
|
122
|
+
required: false,
|
123
|
+
read_only: true,
|
124
|
+
serialized_name: 'preferredClickthroughUrl',
|
125
|
+
type: {
|
126
|
+
name: 'String'
|
127
|
+
}
|
128
|
+
},
|
129
|
+
adaptive_card: {
|
130
|
+
client_side_validation: true,
|
131
|
+
required: false,
|
132
|
+
read_only: true,
|
133
|
+
serialized_name: 'adaptiveCard',
|
134
|
+
type: {
|
135
|
+
name: 'String'
|
136
|
+
}
|
137
|
+
},
|
138
|
+
name: {
|
139
|
+
client_side_validation: true,
|
140
|
+
required: false,
|
141
|
+
read_only: true,
|
142
|
+
serialized_name: 'name',
|
143
|
+
type: {
|
144
|
+
name: 'String'
|
145
|
+
}
|
146
|
+
},
|
147
|
+
url: {
|
148
|
+
client_side_validation: true,
|
149
|
+
required: false,
|
150
|
+
read_only: true,
|
151
|
+
serialized_name: 'url',
|
152
|
+
type: {
|
153
|
+
name: 'String'
|
154
|
+
}
|
155
|
+
},
|
156
|
+
entity_presentation_info: {
|
157
|
+
client_side_validation: true,
|
158
|
+
required: false,
|
159
|
+
read_only: true,
|
160
|
+
serialized_name: 'entityPresentationInfo',
|
161
|
+
type: {
|
162
|
+
name: 'Composite',
|
163
|
+
polymorphic_discriminator: '_type',
|
164
|
+
uber_parent: 'EntitiesEntityPresentationInfo',
|
165
|
+
class_name: 'EntitiesEntityPresentationInfo'
|
166
|
+
}
|
167
|
+
}
|
168
|
+
}
|
169
|
+
}
|
170
|
+
}
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator.
|
3
|
+
# Changes may cause incorrect behavior and will be lost if the code is
|
4
|
+
# regenerated.
|
5
|
+
|
6
|
+
module Azure end
|
7
|
+
module Azure::CognitiveServices end
|
8
|
+
module Azure::CognitiveServices::LocalSearch end
|
9
|
+
module Azure::CognitiveServices::LocalSearch::V1_0 end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require '1.0/generated/azure_cognitiveservices_localsearch'
|
6
|
+
require 'profiles/latest/localsearch_latest_profile_client'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
module Azure end
|
6
|
+
module Azure::CognitiveServices end
|
7
|
+
module Azure::CognitiveServices::LocalSearch end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'profiles/latest/localsearch_module_definition'
|
6
|
+
require 'profiles/latest/modules/localsearch_profile_module'
|
7
|
+
|
8
|
+
module Azure::LocalSearch::Profiles::Latest
|
9
|
+
#
|
10
|
+
# Client class for the Latest profile SDK.
|
11
|
+
#
|
12
|
+
class Client < LocalSearchDataClass
|
13
|
+
include MsRestAzure::Common::Configurable
|
14
|
+
|
15
|
+
#
|
16
|
+
# Initializes a new instance of the Client class.
|
17
|
+
# @param options [Hash] hash of client options.
|
18
|
+
# options = {
|
19
|
+
# tenant_id: 'YOUR TENANT ID',
|
20
|
+
# client_id: 'YOUR CLIENT ID',
|
21
|
+
# client_secret: 'YOUR CLIENT SECRET',
|
22
|
+
# subscription_id: 'YOUR SUBSCRIPTION ID',
|
23
|
+
# credentials: credentials,
|
24
|
+
# active_directory_settings: active_directory_settings,
|
25
|
+
# base_url: 'YOUR BASE URL',
|
26
|
+
# options: options
|
27
|
+
# }
|
28
|
+
# 'credentials' are optional and if not passed in the hash, will be obtained
|
29
|
+
# from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
|
30
|
+
#
|
31
|
+
# Also, base_url, active_directory_settings & options are optional.
|
32
|
+
#
|
33
|
+
def initialize(options = {})
|
34
|
+
super(options)
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
module Azure end
|
6
|
+
module Azure::LocalSearch end
|
7
|
+
module Azure::LocalSearch::Profiles end
|
8
|
+
module Azure::LocalSearch::Profiles::Latest end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_cognitiveservices_localsearch'
|
6
|
+
|
7
|
+
module Azure::LocalSearch::Profiles::Latest
|
8
|
+
Local = Azure::CognitiveServices::LocalSearch::V1_0::Local
|
9
|
+
|
10
|
+
module Models
|
11
|
+
ResponseBase = Azure::CognitiveServices::LocalSearch::V1_0::Models::ResponseBase
|
12
|
+
GeoCoordinates = Azure::CognitiveServices::LocalSearch::V1_0::Models::GeoCoordinates
|
13
|
+
EntitiesEntityPresentationInfo = Azure::CognitiveServices::LocalSearch::V1_0::Models::EntitiesEntityPresentationInfo
|
14
|
+
QueryContext = Azure::CognitiveServices::LocalSearch::V1_0::Models::QueryContext
|
15
|
+
Error = Azure::CognitiveServices::LocalSearch::V1_0::Models::Error
|
16
|
+
SearchResultsAnswer = Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchResultsAnswer
|
17
|
+
Places = Azure::CognitiveServices::LocalSearch::V1_0::Models::Places
|
18
|
+
PostalAddress = Azure::CognitiveServices::LocalSearch::V1_0::Models::PostalAddress
|
19
|
+
Place = Azure::CognitiveServices::LocalSearch::V1_0::Models::Place
|
20
|
+
Action = Azure::CognitiveServices::LocalSearch::V1_0::Models::Action
|
21
|
+
Identifiable = Azure::CognitiveServices::LocalSearch::V1_0::Models::Identifiable
|
22
|
+
Response = Azure::CognitiveServices::LocalSearch::V1_0::Models::Response
|
23
|
+
Thing = Azure::CognitiveServices::LocalSearch::V1_0::Models::Thing
|
24
|
+
SearchResponse = Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchResponse
|
25
|
+
Answer = Azure::CognitiveServices::LocalSearch::V1_0::Models::Answer
|
26
|
+
ErrorResponse = Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorResponse
|
27
|
+
CreativeWork = Azure::CognitiveServices::LocalSearch::V1_0::Models::CreativeWork
|
28
|
+
Intangible = Azure::CognitiveServices::LocalSearch::V1_0::Models::Intangible
|
29
|
+
SearchAction = Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchAction
|
30
|
+
StructuredValue = Azure::CognitiveServices::LocalSearch::V1_0::Models::StructuredValue
|
31
|
+
EntityScenario = Azure::CognitiveServices::LocalSearch::V1_0::Models::EntityScenario
|
32
|
+
EntityType = Azure::CognitiveServices::LocalSearch::V1_0::Models::EntityType
|
33
|
+
ErrorCode = Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorCode
|
34
|
+
ErrorSubCode = Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorSubCode
|
35
|
+
ResponseFormat = Azure::CognitiveServices::LocalSearch::V1_0::Models::ResponseFormat
|
36
|
+
SafeSearch = Azure::CognitiveServices::LocalSearch::V1_0::Models::SafeSearch
|
37
|
+
end
|
38
|
+
|
39
|
+
#
|
40
|
+
# LocalSearchDataClass
|
41
|
+
#
|
42
|
+
class LocalSearchDataClass
|
43
|
+
attr_reader :local, :configurable, :base_url, :options, :model_classes
|
44
|
+
|
45
|
+
def initialize(options = {})
|
46
|
+
if options.is_a?(Hash) && options.length == 0
|
47
|
+
@options = setup_default_options
|
48
|
+
else
|
49
|
+
@options = options
|
50
|
+
end
|
51
|
+
|
52
|
+
reset!(options)
|
53
|
+
|
54
|
+
@configurable = self
|
55
|
+
@base_url = options[:base_url].nil? ? nil:options[:base_url]
|
56
|
+
@options = options[:options].nil? ? nil:options[:options]
|
57
|
+
|
58
|
+
@client_0 = Azure::CognitiveServices::LocalSearch::V1_0::LocalSearchClient.new(configurable.credentials, base_url, options)
|
59
|
+
if(@client_0.respond_to?(:subscription_id))
|
60
|
+
@client_0.subscription_id = configurable.subscription_id
|
61
|
+
end
|
62
|
+
add_telemetry(@client_0)
|
63
|
+
@local = @client_0.local
|
64
|
+
|
65
|
+
@model_classes = ModelClasses.new
|
66
|
+
end
|
67
|
+
|
68
|
+
def add_telemetry(client)
|
69
|
+
profile_information = 'Profiles/Latest/LocalSearch'
|
70
|
+
client.add_user_agent_information(profile_information)
|
71
|
+
end
|
72
|
+
|
73
|
+
def method_missing(method, *args)
|
74
|
+
if @client_0.respond_to?method
|
75
|
+
@client_0.send(method, *args)
|
76
|
+
else
|
77
|
+
super
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
class ModelClasses
|
84
|
+
def response_base
|
85
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::ResponseBase
|
86
|
+
end
|
87
|
+
def geo_coordinates
|
88
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::GeoCoordinates
|
89
|
+
end
|
90
|
+
def entities_entity_presentation_info
|
91
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::EntitiesEntityPresentationInfo
|
92
|
+
end
|
93
|
+
def query_context
|
94
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::QueryContext
|
95
|
+
end
|
96
|
+
def error
|
97
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Error
|
98
|
+
end
|
99
|
+
def search_results_answer
|
100
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchResultsAnswer
|
101
|
+
end
|
102
|
+
def places
|
103
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Places
|
104
|
+
end
|
105
|
+
def postal_address
|
106
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::PostalAddress
|
107
|
+
end
|
108
|
+
def place
|
109
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Place
|
110
|
+
end
|
111
|
+
def action
|
112
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Action
|
113
|
+
end
|
114
|
+
def identifiable
|
115
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Identifiable
|
116
|
+
end
|
117
|
+
def response
|
118
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Response
|
119
|
+
end
|
120
|
+
def thing
|
121
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Thing
|
122
|
+
end
|
123
|
+
def search_response
|
124
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchResponse
|
125
|
+
end
|
126
|
+
def answer
|
127
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Answer
|
128
|
+
end
|
129
|
+
def error_response
|
130
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorResponse
|
131
|
+
end
|
132
|
+
def creative_work
|
133
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::CreativeWork
|
134
|
+
end
|
135
|
+
def intangible
|
136
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::Intangible
|
137
|
+
end
|
138
|
+
def search_action
|
139
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::SearchAction
|
140
|
+
end
|
141
|
+
def structured_value
|
142
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::StructuredValue
|
143
|
+
end
|
144
|
+
def entity_scenario
|
145
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::EntityScenario
|
146
|
+
end
|
147
|
+
def entity_type
|
148
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::EntityType
|
149
|
+
end
|
150
|
+
def error_code
|
151
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorCode
|
152
|
+
end
|
153
|
+
def error_sub_code
|
154
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::ErrorSubCode
|
155
|
+
end
|
156
|
+
def response_format
|
157
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::ResponseFormat
|
158
|
+
end
|
159
|
+
def safe_search
|
160
|
+
Azure::CognitiveServices::LocalSearch::V1_0::Models::SafeSearch
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
data/lib/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,156 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: azure_cognitiveservices_localsearch
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.17.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Microsoft Corporation
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-12-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: dotenv
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: ms_rest_azure
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.11.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.11.0
|
83
|
+
description: Microsoft Azure Cognitive Services Local Search Client Library for Ruby
|
84
|
+
email: azrubyteam@microsoft.com
|
85
|
+
executables: []
|
86
|
+
extensions: []
|
87
|
+
extra_rdoc_files: []
|
88
|
+
files:
|
89
|
+
- LICENSE.txt
|
90
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch.rb
|
91
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/local.rb
|
92
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/local_search_client.rb
|
93
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/action.rb
|
94
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/answer.rb
|
95
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/creative_work.rb
|
96
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/entities_entity_presentation_info.rb
|
97
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/entity_scenario.rb
|
98
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/entity_type.rb
|
99
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/error.rb
|
100
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_code.rb
|
101
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_response.rb
|
102
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/error_sub_code.rb
|
103
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/geo_coordinates.rb
|
104
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/identifiable.rb
|
105
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/intangible.rb
|
106
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/place.rb
|
107
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/places.rb
|
108
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/postal_address.rb
|
109
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/query_context.rb
|
110
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/response.rb
|
111
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/response_base.rb
|
112
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/response_format.rb
|
113
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/safe_search.rb
|
114
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_action.rb
|
115
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_response.rb
|
116
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/search_results_answer.rb
|
117
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/structured_value.rb
|
118
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/models/thing.rb
|
119
|
+
- lib/1.0/generated/azure_cognitiveservices_localsearch/module_definition.rb
|
120
|
+
- lib/azure_cognitiveservices_localsearch.rb
|
121
|
+
- lib/module_definition.rb
|
122
|
+
- lib/profiles/latest/localsearch_latest_profile_client.rb
|
123
|
+
- lib/profiles/latest/localsearch_module_definition.rb
|
124
|
+
- lib/profiles/latest/modules/localsearch_profile_module.rb
|
125
|
+
- lib/version.rb
|
126
|
+
homepage: https://aka.ms/azure-sdk-for-ruby
|
127
|
+
licenses:
|
128
|
+
- MIT
|
129
|
+
metadata:
|
130
|
+
bug_tracker_uri: https://github.com/Azure/azure-sdk-for-ruby/issues
|
131
|
+
changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
|
132
|
+
documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
|
133
|
+
homepage_uri: https://aka.ms/azure-sdk-for-ruby
|
134
|
+
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_localsearch
|
135
|
+
post_install_message:
|
136
|
+
rdoc_options: []
|
137
|
+
require_paths:
|
138
|
+
- lib
|
139
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - ">="
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: 2.0.0
|
144
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
145
|
+
requirements:
|
146
|
+
- - ">="
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
149
|
+
requirements: []
|
150
|
+
rubyforge_project:
|
151
|
+
rubygems_version: 2.5.1
|
152
|
+
signing_key:
|
153
|
+
specification_version: 4
|
154
|
+
summary: Official Ruby client library to consume Microsoft Azure Cognitive Services
|
155
|
+
Local Search.
|
156
|
+
test_files: []
|