azure_mgmt_event_grid 0.15.3 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -59,15 +59,15 @@ module Azure::EventGrid::Profiles::Latest
59
59
  @base_url = options[:base_url].nil? ? nil:options[:base_url]
60
60
  @options = options[:options].nil? ? nil:options[:options]
61
61
 
62
- client_0 = Azure::EventGrid::Mgmt::V2018_01_01::EventGridManagementClient.new(configurable.credentials, base_url, options)
63
- if(client_0.respond_to?(:subscription_id))
64
- client_0.subscription_id = configurable.subscription_id
62
+ @client_0 = Azure::EventGrid::Mgmt::V2018_01_01::EventGridManagementClient.new(configurable.credentials, base_url, options)
63
+ if(@client_0.respond_to?(:subscription_id))
64
+ @client_0.subscription_id = configurable.subscription_id
65
65
  end
66
- add_telemetry(client_0)
67
- @event_subscriptions = client_0.event_subscriptions
68
- @operations = client_0.operations
69
- @topics = client_0.topics
70
- @topic_types = client_0.topic_types
66
+ add_telemetry(@client_0)
67
+ @event_subscriptions = @client_0.event_subscriptions
68
+ @operations = @client_0.operations
69
+ @topics = @client_0.topics
70
+ @topic_types = @client_0.topic_types
71
71
 
72
72
  @model_classes = ModelClasses.new
73
73
  end
@@ -77,6 +77,14 @@ module Azure::EventGrid::Profiles::Latest
77
77
  client.add_user_agent_information(profile_information)
78
78
  end
79
79
 
80
+ def method_missing(method, *args)
81
+ if @client_0.respond_to?method
82
+ @client_0.send(method, *args)
83
+ else
84
+ super
85
+ end
86
+ end
87
+
80
88
  end
81
89
 
82
90
  class ModelClasses
data/lib/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  # Licensed under the MIT License. See License.txt in the project root for license information.
4
4
 
5
5
  module Azure::EventGrid::Mgmt
6
- VERSION = '0.15.3'
6
+ VERSION = '0.16.0'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_event_grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.3
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-30 00:00:00.000000000 Z
11
+ date: 2018-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
217
  version: '0'
218
218
  requirements: []
219
219
  rubyforge_project:
220
- rubygems_version: 2.6.10
220
+ rubygems_version: 2.7.5
221
221
  signing_key:
222
222
  specification_version: 4
223
223
  summary: Official Ruby client library to consume Microsoft Azure Event Grid.