Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Release network 20181105 (#1868)
Browse files Browse the repository at this point in the history
* Config changes for network release

* Regen all SDKs & Profiles

* Config changes for 4 other gems

* Skeleton structure for Visual search

* Regen all SDKs & Profiles

* Regen all SDKs & Profiles
  • Loading branch information
sarangan12 authored Nov 6, 2018
1 parent 09ba34b commit 8ce01ee
Show file tree
Hide file tree
Showing 259 changed files with 22,533 additions and 1,383 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2018.11.06 - Azure Ruby SDK Release
* Released new versions for azure_mgmt_network, azure_cognitiveservices_textanalytics, azure_mgmt_container_instance,
azure_cognitiveservices_visualsearch, azure_cognitiveservices_websearch.
* Released 0.19.0 version of azure_sdk to include changes to the above gems.

## 2018.11.05 - Azure Ruby SDK Release
* Released 0.17.0 of azure_mgmt_data_migration.
* Released 0.18.10 of azure_sdk. Includes updates to azure_mgmt_data_migration.
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ gem 'azure_cognitiveservices_spellcheck', path: 'data/azure_cognitiveservi
gem 'azure_cognitiveservices_textanalytics', path: 'data/azure_cognitiveservices_textanalytics'
gem 'azure_cognitiveservices_videosearch', path: 'data/azure_cognitiveservices_videosearch'
gem 'azure_cognitiveservices_websearch', path: 'data/azure_cognitiveservices_websearch'
gem 'azure_cognitiveservices_visualsearch', path: 'data/azure_cognitiveservices_visualsearch'
gem 'azure_event_grid', path: 'data/azure_event_grid'
gem 'azure_key_vault', path: 'data/azure_key_vault'
gem 'azure_sdk', path: 'azure_sdk'
2 changes: 1 addition & 1 deletion azure_sdk/lib/azure_sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Licensed under the MIT License. See License.txt in the project root for license information.

module Azure
VERSION = '0.18.10'
VERSION = '0.19.0'
end
11 changes: 10 additions & 1 deletion azure_sdk/lib/latest/latest_profile_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
require 'latest/modules/textanalytics_profile_module'
require 'latest/modules/videosearch_profile_module'
require 'latest/modules/websearch_profile_module'
require 'latest/modules/visualsearch_profile_module'

module Azure::Profiles::Latest
#
Expand All @@ -85,7 +86,7 @@ module Azure::Profiles::Latest
class Client
include MsRestAzure::Common::Configurable

attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_central, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_central, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search, :visual_search

#
# Initializes a new instance of the Client class.
Expand Down Expand Up @@ -191,6 +192,7 @@ def initialize(options = {})
@text_analytics = TextAnalyticsAdapter.new(self, base_url, sdk_options)
@video_search = VideoSearchAdapter.new(self, base_url, sdk_options)
@web_search = WebSearchAdapter.new(self, base_url, sdk_options)
@visual_search = VisualSearchAdapter.new(self, base_url, sdk_options)
end

class AnalysisServicesAdapter
Expand Down Expand Up @@ -775,5 +777,12 @@ def initialize(context, base_url, options)
end
end

class VisualSearchAdapter < Azure::Profiles::Latest::VisualSearch::VisualSearchDataClass

def initialize(context, base_url, options)
super(context)
end
end

end
end
Loading

0 comments on commit 8ce01ee

Please sign in to comment.