azure_sdk 0.18.10 → 0.19.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 +4 -4
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +10 -1
- data/lib/latest/modules/containerinstance_profile_module.rb +139 -101
- data/lib/latest/modules/network_profile_module.rb +405 -383
- data/lib/latest/modules/textanalytics_profile_module.rb +41 -41
- data/lib/latest/modules/visualsearch_profile_module.rb +235 -0
- metadata +11 -10
@@ -8,24 +8,24 @@ module Azure::Profiles::Latest
|
|
8
8
|
module TextAnalytics
|
9
9
|
|
10
10
|
module Models
|
11
|
-
DetectedLanguage = Azure::CognitiveServices::TextAnalytics::
|
12
|
-
MultiLanguageInput = Azure::CognitiveServices::TextAnalytics::
|
13
|
-
LanguageBatchResultItem = Azure::CognitiveServices::TextAnalytics::
|
14
|
-
KeyPhraseBatchResultItem = Azure::CognitiveServices::TextAnalytics::
|
15
|
-
LanguageBatchResult = Azure::CognitiveServices::TextAnalytics::
|
16
|
-
KeyPhraseBatchResult = Azure::CognitiveServices::TextAnalytics::
|
17
|
-
SentimentBatchResultItem = Azure::CognitiveServices::TextAnalytics::
|
18
|
-
ErrorResponse = Azure::CognitiveServices::TextAnalytics::
|
19
|
-
SentimentBatchResult = Azure::CognitiveServices::TextAnalytics::
|
20
|
-
BatchInput = Azure::CognitiveServices::TextAnalytics::
|
21
|
-
|
22
|
-
ErrorRecord = Azure::CognitiveServices::TextAnalytics::
|
23
|
-
|
24
|
-
Input = Azure::CognitiveServices::TextAnalytics::
|
25
|
-
|
26
|
-
InternalError = Azure::CognitiveServices::TextAnalytics::
|
27
|
-
|
28
|
-
MultiLanguageBatchInput = Azure::CognitiveServices::TextAnalytics::
|
11
|
+
DetectedLanguage = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::DetectedLanguage
|
12
|
+
MultiLanguageInput = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MultiLanguageInput
|
13
|
+
LanguageBatchResultItem = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::LanguageBatchResultItem
|
14
|
+
KeyPhraseBatchResultItem = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::KeyPhraseBatchResultItem
|
15
|
+
LanguageBatchResult = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::LanguageBatchResult
|
16
|
+
KeyPhraseBatchResult = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::KeyPhraseBatchResult
|
17
|
+
SentimentBatchResultItem = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::SentimentBatchResultItem
|
18
|
+
ErrorResponse = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::ErrorResponse
|
19
|
+
SentimentBatchResult = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::SentimentBatchResult
|
20
|
+
BatchInput = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::BatchInput
|
21
|
+
MatchRecordV2dot1 = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MatchRecordV2dot1
|
22
|
+
ErrorRecord = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::ErrorRecord
|
23
|
+
EntityRecordV2dot1 = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntityRecordV2dot1
|
24
|
+
Input = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::Input
|
25
|
+
EntitiesBatchResultItemV2dot1 = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntitiesBatchResultItemV2dot1
|
26
|
+
InternalError = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::InternalError
|
27
|
+
EntitiesBatchResultV2dot1 = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntitiesBatchResultV2dot1
|
28
|
+
MultiLanguageBatchInput = Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MultiLanguageBatchInput
|
29
29
|
end
|
30
30
|
|
31
31
|
class TextAnalyticsDataClass
|
@@ -34,7 +34,7 @@ module Azure::Profiles::Latest
|
|
34
34
|
def initialize(configurable, base_url=nil, options=nil)
|
35
35
|
@configurable, @base_url, @options = configurable, base_url, options
|
36
36
|
|
37
|
-
@client_0 = Azure::CognitiveServices::TextAnalytics::
|
37
|
+
@client_0 = Azure::CognitiveServices::TextAnalytics::V2_1_preview::TextAnalyticsClient.new(configurable.credentials, options)
|
38
38
|
if(@client_0.respond_to?(:subscription_id))
|
39
39
|
@client_0.subscription_id = configurable.subscription_id
|
40
40
|
end
|
@@ -58,58 +58,58 @@ module Azure::Profiles::Latest
|
|
58
58
|
|
59
59
|
class ModelClasses
|
60
60
|
def detected_language
|
61
|
-
Azure::CognitiveServices::TextAnalytics::
|
61
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::DetectedLanguage
|
62
62
|
end
|
63
63
|
def multi_language_input
|
64
|
-
Azure::CognitiveServices::TextAnalytics::
|
64
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MultiLanguageInput
|
65
65
|
end
|
66
66
|
def language_batch_result_item
|
67
|
-
Azure::CognitiveServices::TextAnalytics::
|
67
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::LanguageBatchResultItem
|
68
68
|
end
|
69
69
|
def key_phrase_batch_result_item
|
70
|
-
Azure::CognitiveServices::TextAnalytics::
|
70
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::KeyPhraseBatchResultItem
|
71
71
|
end
|
72
72
|
def language_batch_result
|
73
|
-
Azure::CognitiveServices::TextAnalytics::
|
73
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::LanguageBatchResult
|
74
74
|
end
|
75
75
|
def key_phrase_batch_result
|
76
|
-
Azure::CognitiveServices::TextAnalytics::
|
76
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::KeyPhraseBatchResult
|
77
77
|
end
|
78
78
|
def sentiment_batch_result_item
|
79
|
-
Azure::CognitiveServices::TextAnalytics::
|
79
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::SentimentBatchResultItem
|
80
80
|
end
|
81
81
|
def error_response
|
82
|
-
Azure::CognitiveServices::TextAnalytics::
|
82
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::ErrorResponse
|
83
83
|
end
|
84
84
|
def sentiment_batch_result
|
85
|
-
Azure::CognitiveServices::TextAnalytics::
|
85
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::SentimentBatchResult
|
86
86
|
end
|
87
87
|
def batch_input
|
88
|
-
Azure::CognitiveServices::TextAnalytics::
|
88
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::BatchInput
|
89
89
|
end
|
90
|
-
def
|
91
|
-
Azure::CognitiveServices::TextAnalytics::
|
90
|
+
def match_record_v2dot1
|
91
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MatchRecordV2dot1
|
92
92
|
end
|
93
93
|
def error_record
|
94
|
-
Azure::CognitiveServices::TextAnalytics::
|
94
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::ErrorRecord
|
95
95
|
end
|
96
|
-
def
|
97
|
-
Azure::CognitiveServices::TextAnalytics::
|
96
|
+
def entity_record_v2dot1
|
97
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntityRecordV2dot1
|
98
98
|
end
|
99
99
|
def input
|
100
|
-
Azure::CognitiveServices::TextAnalytics::
|
100
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::Input
|
101
101
|
end
|
102
|
-
def
|
103
|
-
Azure::CognitiveServices::TextAnalytics::
|
102
|
+
def entities_batch_result_item_v2dot1
|
103
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntitiesBatchResultItemV2dot1
|
104
104
|
end
|
105
105
|
def internal_error
|
106
|
-
Azure::CognitiveServices::TextAnalytics::
|
106
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::InternalError
|
107
107
|
end
|
108
|
-
def
|
109
|
-
Azure::CognitiveServices::TextAnalytics::
|
108
|
+
def entities_batch_result_v2dot1
|
109
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::EntitiesBatchResultV2dot1
|
110
110
|
end
|
111
111
|
def multi_language_batch_input
|
112
|
-
Azure::CognitiveServices::TextAnalytics::
|
112
|
+
Azure::CognitiveServices::TextAnalytics::V2_1_preview::Models::MultiLanguageBatchInput
|
113
113
|
end
|
114
114
|
end
|
115
115
|
end
|
@@ -0,0 +1,235 @@
|
|
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_visualsearch'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module VisualSearch
|
9
|
+
Images = Azure::CognitiveServices::VisualSearch::V1_0::Images
|
10
|
+
|
11
|
+
module Models
|
12
|
+
Error = Azure::CognitiveServices::VisualSearch::V1_0::Models::Error
|
13
|
+
CropArea = Azure::CognitiveServices::VisualSearch::V1_0::Models::CropArea
|
14
|
+
ImageInfo = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageInfo
|
15
|
+
ImageTagRegion = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageTagRegion
|
16
|
+
ImagesImageMetadata = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImagesImageMetadata
|
17
|
+
RelatedSearchesModule = Azure::CognitiveServices::VisualSearch::V1_0::Models::RelatedSearchesModule
|
18
|
+
Filters = Azure::CognitiveServices::VisualSearch::V1_0::Models::Filters
|
19
|
+
ImagesModule = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImagesModule
|
20
|
+
KnowledgeRequest = Azure::CognitiveServices::VisualSearch::V1_0::Models::KnowledgeRequest
|
21
|
+
RecipesModule = Azure::CognitiveServices::VisualSearch::V1_0::Models::RecipesModule
|
22
|
+
ResponseBase = Azure::CognitiveServices::VisualSearch::V1_0::Models::ResponseBase
|
23
|
+
Query = Azure::CognitiveServices::VisualSearch::V1_0::Models::Query
|
24
|
+
VisualSearchRequest = Azure::CognitiveServices::VisualSearch::V1_0::Models::VisualSearchRequest
|
25
|
+
PropertiesItem = Azure::CognitiveServices::VisualSearch::V1_0::Models::PropertiesItem
|
26
|
+
Point2D = Azure::CognitiveServices::VisualSearch::V1_0::Models::Point2D
|
27
|
+
NormalizedQuadrilateral = Azure::CognitiveServices::VisualSearch::V1_0::Models::NormalizedQuadrilateral
|
28
|
+
ImageAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageAction
|
29
|
+
ImageTag = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageTag
|
30
|
+
Organization = Azure::CognitiveServices::VisualSearch::V1_0::Models::Organization
|
31
|
+
AggregateRating = Azure::CognitiveServices::VisualSearch::V1_0::Models::AggregateRating
|
32
|
+
Offer = Azure::CognitiveServices::VisualSearch::V1_0::Models::Offer
|
33
|
+
AggregateOffer = Azure::CognitiveServices::VisualSearch::V1_0::Models::AggregateOffer
|
34
|
+
ImageObject = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageObject
|
35
|
+
Identifiable = Azure::CognitiveServices::VisualSearch::V1_0::Models::Identifiable
|
36
|
+
Response = Azure::CognitiveServices::VisualSearch::V1_0::Models::Response
|
37
|
+
ImageKnowledge = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageKnowledge
|
38
|
+
ErrorResponse = Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorResponse
|
39
|
+
Thing = Azure::CognitiveServices::VisualSearch::V1_0::Models::Thing
|
40
|
+
CreativeWork = Azure::CognitiveServices::VisualSearch::V1_0::Models::CreativeWork
|
41
|
+
Action = Azure::CognitiveServices::VisualSearch::V1_0::Models::Action
|
42
|
+
MediaObject = Azure::CognitiveServices::VisualSearch::V1_0::Models::MediaObject
|
43
|
+
Person = Azure::CognitiveServices::VisualSearch::V1_0::Models::Person
|
44
|
+
Intangible = Azure::CognitiveServices::VisualSearch::V1_0::Models::Intangible
|
45
|
+
ImageEntityAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageEntityAction
|
46
|
+
ImageModuleAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageModuleAction
|
47
|
+
Recipe = Azure::CognitiveServices::VisualSearch::V1_0::Models::Recipe
|
48
|
+
ImageRecipesAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageRecipesAction
|
49
|
+
ImageRelatedSearchesAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageRelatedSearchesAction
|
50
|
+
ImageShoppingSourcesAction = Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageShoppingSourcesAction
|
51
|
+
StructuredValue = Azure::CognitiveServices::VisualSearch::V1_0::Models::StructuredValue
|
52
|
+
Rating = Azure::CognitiveServices::VisualSearch::V1_0::Models::Rating
|
53
|
+
Currency = Azure::CognitiveServices::VisualSearch::V1_0::Models::Currency
|
54
|
+
ItemAvailability = Azure::CognitiveServices::VisualSearch::V1_0::Models::ItemAvailability
|
55
|
+
ErrorCode = Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorCode
|
56
|
+
ErrorSubCode = Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorSubCode
|
57
|
+
SafeSearch = Azure::CognitiveServices::VisualSearch::V1_0::Models::SafeSearch
|
58
|
+
ContentTypes = Azure::CognitiveServices::VisualSearch::V1_0::Models::ContentTypes
|
59
|
+
end
|
60
|
+
|
61
|
+
class VisualSearchDataClass
|
62
|
+
attr_reader :images, :configurable, :base_url, :options, :model_classes
|
63
|
+
|
64
|
+
def initialize(configurable, base_url=nil, options=nil)
|
65
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
66
|
+
|
67
|
+
@client_0 = Azure::CognitiveServices::VisualSearch::V1_0::VisualSearchClient.new(configurable.credentials, base_url, options)
|
68
|
+
if(@client_0.respond_to?(:subscription_id))
|
69
|
+
@client_0.subscription_id = configurable.subscription_id
|
70
|
+
end
|
71
|
+
add_telemetry(@client_0)
|
72
|
+
@images = @client_0.images
|
73
|
+
|
74
|
+
@model_classes = ModelClasses.new
|
75
|
+
end
|
76
|
+
|
77
|
+
def add_telemetry(client)
|
78
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/VisualSearch"
|
79
|
+
client.add_user_agent_information(profile_information)
|
80
|
+
end
|
81
|
+
|
82
|
+
def method_missing(method, *args)
|
83
|
+
if @client_0.respond_to?method
|
84
|
+
@client_0.send(method, *args)
|
85
|
+
else
|
86
|
+
super
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
class ModelClasses
|
91
|
+
def error
|
92
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Error
|
93
|
+
end
|
94
|
+
def crop_area
|
95
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::CropArea
|
96
|
+
end
|
97
|
+
def image_info
|
98
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageInfo
|
99
|
+
end
|
100
|
+
def image_tag_region
|
101
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageTagRegion
|
102
|
+
end
|
103
|
+
def images_image_metadata
|
104
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImagesImageMetadata
|
105
|
+
end
|
106
|
+
def related_searches_module
|
107
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::RelatedSearchesModule
|
108
|
+
end
|
109
|
+
def filters
|
110
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Filters
|
111
|
+
end
|
112
|
+
def images_module
|
113
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImagesModule
|
114
|
+
end
|
115
|
+
def knowledge_request
|
116
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::KnowledgeRequest
|
117
|
+
end
|
118
|
+
def recipes_module
|
119
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::RecipesModule
|
120
|
+
end
|
121
|
+
def response_base
|
122
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ResponseBase
|
123
|
+
end
|
124
|
+
def query
|
125
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Query
|
126
|
+
end
|
127
|
+
def visual_search_request
|
128
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::VisualSearchRequest
|
129
|
+
end
|
130
|
+
def properties_item
|
131
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::PropertiesItem
|
132
|
+
end
|
133
|
+
def point2_d
|
134
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Point2D
|
135
|
+
end
|
136
|
+
def normalized_quadrilateral
|
137
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::NormalizedQuadrilateral
|
138
|
+
end
|
139
|
+
def image_action
|
140
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageAction
|
141
|
+
end
|
142
|
+
def image_tag
|
143
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageTag
|
144
|
+
end
|
145
|
+
def organization
|
146
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Organization
|
147
|
+
end
|
148
|
+
def aggregate_rating
|
149
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::AggregateRating
|
150
|
+
end
|
151
|
+
def offer
|
152
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Offer
|
153
|
+
end
|
154
|
+
def aggregate_offer
|
155
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::AggregateOffer
|
156
|
+
end
|
157
|
+
def image_object
|
158
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageObject
|
159
|
+
end
|
160
|
+
def identifiable
|
161
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Identifiable
|
162
|
+
end
|
163
|
+
def response
|
164
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Response
|
165
|
+
end
|
166
|
+
def image_knowledge
|
167
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageKnowledge
|
168
|
+
end
|
169
|
+
def error_response
|
170
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorResponse
|
171
|
+
end
|
172
|
+
def thing
|
173
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Thing
|
174
|
+
end
|
175
|
+
def creative_work
|
176
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::CreativeWork
|
177
|
+
end
|
178
|
+
def action
|
179
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Action
|
180
|
+
end
|
181
|
+
def media_object
|
182
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::MediaObject
|
183
|
+
end
|
184
|
+
def person
|
185
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Person
|
186
|
+
end
|
187
|
+
def intangible
|
188
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Intangible
|
189
|
+
end
|
190
|
+
def image_entity_action
|
191
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageEntityAction
|
192
|
+
end
|
193
|
+
def image_module_action
|
194
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageModuleAction
|
195
|
+
end
|
196
|
+
def recipe
|
197
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Recipe
|
198
|
+
end
|
199
|
+
def image_recipes_action
|
200
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageRecipesAction
|
201
|
+
end
|
202
|
+
def image_related_searches_action
|
203
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageRelatedSearchesAction
|
204
|
+
end
|
205
|
+
def image_shopping_sources_action
|
206
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ImageShoppingSourcesAction
|
207
|
+
end
|
208
|
+
def structured_value
|
209
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::StructuredValue
|
210
|
+
end
|
211
|
+
def rating
|
212
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Rating
|
213
|
+
end
|
214
|
+
def currency
|
215
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::Currency
|
216
|
+
end
|
217
|
+
def item_availability
|
218
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ItemAvailability
|
219
|
+
end
|
220
|
+
def error_code
|
221
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorCode
|
222
|
+
end
|
223
|
+
def error_sub_code
|
224
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ErrorSubCode
|
225
|
+
end
|
226
|
+
def safe_search
|
227
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::SafeSearch
|
228
|
+
end
|
229
|
+
def content_types
|
230
|
+
Azure::CognitiveServices::VisualSearch::V1_0::Models::ContentTypes
|
231
|
+
end
|
232
|
+
end
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Microsoft Corporation
|
@@ -226,14 +226,14 @@ dependencies:
|
|
226
226
|
requirements:
|
227
227
|
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
|
-
version: 0.17.
|
229
|
+
version: 0.17.2
|
230
230
|
type: :runtime
|
231
231
|
prerelease: false
|
232
232
|
version_requirements: !ruby/object:Gem::Requirement
|
233
233
|
requirements:
|
234
234
|
- - "~>"
|
235
235
|
- !ruby/object:Gem::Version
|
236
|
-
version: 0.17.
|
236
|
+
version: 0.17.2
|
237
237
|
- !ruby/object:Gem::Dependency
|
238
238
|
name: azure_mgmt_container_registry
|
239
239
|
requirement: !ruby/object:Gem::Requirement
|
@@ -562,14 +562,14 @@ dependencies:
|
|
562
562
|
requirements:
|
563
563
|
- - "~>"
|
564
564
|
- !ruby/object:Gem::Version
|
565
|
-
version: 0.
|
565
|
+
version: 0.18.0
|
566
566
|
type: :runtime
|
567
567
|
prerelease: false
|
568
568
|
version_requirements: !ruby/object:Gem::Requirement
|
569
569
|
requirements:
|
570
570
|
- - "~>"
|
571
571
|
- !ruby/object:Gem::Version
|
572
|
-
version: 0.
|
572
|
+
version: 0.18.0
|
573
573
|
- !ruby/object:Gem::Dependency
|
574
574
|
name: azure_mgmt_notification_hubs
|
575
575
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1052,14 +1052,14 @@ dependencies:
|
|
1052
1052
|
requirements:
|
1053
1053
|
- - "~>"
|
1054
1054
|
- !ruby/object:Gem::Version
|
1055
|
-
version: 0.17.
|
1055
|
+
version: 0.17.1
|
1056
1056
|
type: :runtime
|
1057
1057
|
prerelease: false
|
1058
1058
|
version_requirements: !ruby/object:Gem::Requirement
|
1059
1059
|
requirements:
|
1060
1060
|
- - "~>"
|
1061
1061
|
- !ruby/object:Gem::Version
|
1062
|
-
version: 0.17.
|
1062
|
+
version: 0.17.1
|
1063
1063
|
- !ruby/object:Gem::Dependency
|
1064
1064
|
name: azure_cognitiveservices_videosearch
|
1065
1065
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1080,14 +1080,14 @@ dependencies:
|
|
1080
1080
|
requirements:
|
1081
1081
|
- - "~>"
|
1082
1082
|
- !ruby/object:Gem::Version
|
1083
|
-
version: 0.17.
|
1083
|
+
version: 0.17.1
|
1084
1084
|
type: :runtime
|
1085
1085
|
prerelease: false
|
1086
1086
|
version_requirements: !ruby/object:Gem::Requirement
|
1087
1087
|
requirements:
|
1088
1088
|
- - "~>"
|
1089
1089
|
- !ruby/object:Gem::Version
|
1090
|
-
version: 0.17.
|
1090
|
+
version: 0.17.1
|
1091
1091
|
- !ruby/object:Gem::Dependency
|
1092
1092
|
name: azure_event_grid
|
1093
1093
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1213,6 +1213,7 @@ files:
|
|
1213
1213
|
- lib/latest/modules/textanalytics_profile_module.rb
|
1214
1214
|
- lib/latest/modules/trafficmanager_profile_module.rb
|
1215
1215
|
- lib/latest/modules/videosearch_profile_module.rb
|
1216
|
+
- lib/latest/modules/visualsearch_profile_module.rb
|
1216
1217
|
- lib/latest/modules/web_profile_module.rb
|
1217
1218
|
- lib/latest/modules/websearch_profile_module.rb
|
1218
1219
|
- lib/v2017_03_09/module_definition.rb
|
@@ -1250,7 +1251,7 @@ metadata:
|
|
1250
1251
|
changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
|
1251
1252
|
documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
|
1252
1253
|
homepage_uri: https://aka.ms/azure-sdk-for-ruby
|
1253
|
-
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.
|
1254
|
+
source_code_uri: https://github.com/Azure/azure-sdk-for-ruby/tree/ARM-0.19.0
|
1254
1255
|
wiki_uri: https://github.com/Azure/azure-sdk-for-ruby/wiki
|
1255
1256
|
post_install_message:
|
1256
1257
|
rdoc_options: []
|