|
4 | 4 |
|
5 | 5 | require 'latest/module_definition' |
6 | 6 | require 'latest/modules/analysisservices_profile_module' |
| 7 | +require 'latest/modules/apimanagement_profile_module' |
7 | 8 | require 'latest/modules/authorization_profile_module' |
8 | 9 | require 'latest/modules/automation_profile_module' |
9 | 10 | require 'latest/modules/batch_profile_module' |
@@ -80,7 +81,7 @@ module Azure::Profiles::Latest |
80 | 81 | class Client |
81 | 82 | include MsRestAzure::Common::Configurable |
82 | 83 |
|
83 | | - attr_reader :analysis_services, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :mobile_engagement, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :server_management, :service_bus, :service_fabric, :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 |
| 84 | + 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, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :mobile_engagement, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :server_management, :service_bus, :service_fabric, :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 |
84 | 85 |
|
85 | 86 | # |
86 | 87 | # Initializes a new instance of the Client class. |
@@ -113,6 +114,7 @@ def initialize(options = {}) |
113 | 114 | sdk_options = options[:options].nil? ? nil:options[:options] |
114 | 115 |
|
115 | 116 | @analysis_services = AnalysisServicesAdapter.new(self, base_url, sdk_options) |
| 117 | + @api_management = ApiManagementAdapter.new(self, base_url, sdk_options) |
116 | 118 | @authorization = AuthorizationAdapter.new(self, base_url, sdk_options) |
117 | 119 | @automation = AutomationAdapter.new(self, base_url, sdk_options) |
118 | 120 | @batch = BatchAdapter.new(self, base_url, sdk_options) |
@@ -191,6 +193,14 @@ def initialize(context, base_url, options) |
191 | 193 | end |
192 | 194 | end |
193 | 195 |
|
| 196 | + class ApiManagementAdapter |
| 197 | + attr_accessor :mgmt |
| 198 | + |
| 199 | + def initialize(context, base_url, options) |
| 200 | + @mgmt = Azure::Profiles::Latest::ApiManagement::Mgmt::ApiManagementManagementClass.new(context, base_url, options) |
| 201 | + end |
| 202 | + end |
| 203 | + |
194 | 204 | class AuthorizationAdapter |
195 | 205 | attr_accessor :mgmt |
196 | 206 |
|
|
0 commit comments