azure_mgmt_machine_learning 0.15.2 → 0.17.3

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.
@@ -5,17 +5,36 @@
5
5
  require 'profiles/latest/machinelearning_module_definition'
6
6
  require 'profiles/latest/modules/machinelearning_profile_module'
7
7
 
8
- module Azure::MachineLearning::Profiles::Latest::Mgmt
9
- #
10
- # Client class for the Latest profile SDK.
11
- #
12
- class Client < MachineLearningClass
13
- include MsRestAzure::Common::Configurable
8
+ module Azure::MachineLearning::Profiles::Latest
9
+ module Mgmt
10
+ #
11
+ # Client class for the Latest profile SDK.
12
+ #
13
+ class Client < MachineLearningManagementClass
14
+ include MsRestAzure::Common::Configurable
14
15
 
16
+ #
17
+ # Initializes a new instance of the Client class.
18
+ # @param options [Hash] hash of client options.
19
+ # options = {
20
+ # tenant_id: 'YOUR TENANT ID',
21
+ # client_id: 'YOUR CLIENT ID',
22
+ # client_secret: 'YOUR CLIENT SECRET',
23
+ # subscription_id: 'YOUR SUBSCRIPTION ID',
24
+ # credentials: credentials,
25
+ # active_directory_settings: active_directory_settings,
26
+ # base_url: 'YOUR BASE URL',
27
+ # options: options
28
+ # }
29
+ # 'credentials' are optional and if not passed in the hash, will be obtained
30
+ # from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
31
+ #
32
+ # Also, base_url, active_directory_settings & options are optional.
33
+ #
34
+ def initialize(options = {})
35
+ super(options)
36
+ end
15
37
 
16
- def initialize(options = {})
17
- super(options)
18
38
  end
19
-
20
39
  end
21
40
  end
@@ -6,4 +6,3 @@ module Azure end
6
6
  module Azure::MachineLearning end
7
7
  module Azure::MachineLearning::Profiles end
8
8
  module Azure::MachineLearning::Profiles::Latest end
9
- module Azure::MachineLearning::Profiles::Latest::Mgmt end
@@ -4,37 +4,42 @@
4
4
 
5
5
  require 'azure_mgmt_machine_learning'
6
6
 
7
- module Azure::MachineLearning::Profiles::Latest::Mgmt
7
+ module Azure::MachineLearning::Profiles::Latest
8
+ module Mgmt
9
+ Operations = Azure::MachineLearning::Mgmt::V2017_01_01::Operations
8
10
  WebServices = Azure::MachineLearning::Mgmt::V2017_01_01::WebServices
9
11
 
10
12
  module Models
11
- ModeValueInfo = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModeValueInfo
12
- ModuleAssetParameter = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModuleAssetParameter
13
- WebServiceKeys = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys
14
13
  AssetItem = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AssetItem
15
- DiagnosticsConfiguration = Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsConfiguration
14
+ Resource = Azure::MachineLearning::Mgmt::V2017_01_01::Models::Resource
16
15
  WebServiceParameter = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceParameter
17
- MachineLearningWorkspace = Azure::MachineLearning::Mgmt::V2017_01_01::Models::MachineLearningWorkspace
16
+ RealtimeConfiguration = Azure::MachineLearning::Mgmt::V2017_01_01::Models::RealtimeConfiguration
18
17
  WebServiceProperties = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceProperties
19
- ColumnSpecification = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnSpecification
18
+ StorageAccount = Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
19
+ MachineLearningWorkspace = Azure::MachineLearning::Mgmt::V2017_01_01::Models::MachineLearningWorkspace
20
+ CommitmentPlan = Azure::MachineLearning::Mgmt::V2017_01_01::Models::CommitmentPlan
20
21
  TableSpecification = Azure::MachineLearning::Mgmt::V2017_01_01::Models::TableSpecification
21
- ServiceInputOutputSpecification = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ServiceInputOutputSpecification
22
- BlobLocation = Azure::MachineLearning::Mgmt::V2017_01_01::Models::BlobLocation
23
22
  GraphNode = Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphNode
24
- OutputPort = Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPort
23
+ ExampleRequest = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ExampleRequest
25
24
  GraphEdge = Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphEdge
26
- RealtimeConfiguration = Azure::MachineLearning::Mgmt::V2017_01_01::Models::RealtimeConfiguration
25
+ InputPort = Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPort
27
26
  GraphParameterLink = Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
28
- CommitmentPlan = Azure::MachineLearning::Mgmt::V2017_01_01::Models::CommitmentPlan
27
+ ModeValueInfo = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModeValueInfo
29
28
  GraphParameter = Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameter
30
- InputPort = Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPort
29
+ WebServiceKeys = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys
31
30
  GraphPackage = Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphPackage
32
- StorageAccount = Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
33
- AsyncOperationStatus = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus
34
- Resource = Azure::MachineLearning::Mgmt::V2017_01_01::Models::Resource
31
+ ColumnSpecification = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnSpecification
32
+ OperationEntityListResult = Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationEntityListResult
33
+ BlobLocation = Azure::MachineLearning::Mgmt::V2017_01_01::Models::BlobLocation
35
34
  PaginatedWebServicesList = Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList
36
- ExampleRequest = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ExampleRequest
35
+ ModuleAssetParameter = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModuleAssetParameter
37
36
  AsyncOperationErrorInfo = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationErrorInfo
37
+ ServiceInputOutputSpecification = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ServiceInputOutputSpecification
38
+ AsyncOperationStatus = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus
39
+ DiagnosticsConfiguration = Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsConfiguration
40
+ OperationDisplayInfo = Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationDisplayInfo
41
+ OutputPort = Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPort
42
+ OperationEntity = Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationEntity
38
43
  WebService = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService
39
44
  WebServicePropertiesForGraph = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServicePropertiesForGraph
40
45
  ProvisioningState = Azure::MachineLearning::Mgmt::V2017_01_01::Models::ProvisioningState
@@ -48,10 +53,10 @@ module Azure::MachineLearning::Profiles::Latest::Mgmt
48
53
  end
49
54
 
50
55
  #
51
- # MachineLearning
56
+ # MachineLearningManagementClass
52
57
  #
53
- class MachineLearningClass
54
- attr_reader :web_services, :configurable, :base_url, :options, :model_classes
58
+ class MachineLearningManagementClass
59
+ attr_reader :operations, :web_services, :configurable, :base_url, :options, :model_classes
55
60
 
56
61
  def initialize(options = {})
57
62
  if options.is_a?(Hash) && options.length == 0
@@ -62,129 +67,157 @@ module Azure::MachineLearning::Profiles::Latest::Mgmt
62
67
 
63
68
  reset!(options)
64
69
 
65
- @configurable, @base_url, @options = self, nil, nil
70
+ @configurable = self
71
+ @base_url = options[:base_url].nil? ? nil:options[:base_url]
72
+ @options = options[:options].nil? ? nil:options[:options]
66
73
 
67
- client_0 = Azure::MachineLearning::Mgmt::V2017_01_01::AzureMLWebServicesManagementClient.new(configurable.credentials, base_url, options)
68
- if(client_0.respond_to?(:subscription_id))
69
- client_0.subscription_id = configurable.subscription_id
74
+ @client_0 = Azure::MachineLearning::Mgmt::V2017_01_01::AzureMLWebServicesManagementClient.new(configurable.credentials, base_url, options)
75
+ if(@client_0.respond_to?(:subscription_id))
76
+ @client_0.subscription_id = configurable.subscription_id
70
77
  end
71
- @web_services = client_0.web_services
78
+ add_telemetry(@client_0)
79
+ @operations = @client_0.operations
80
+ @web_services = @client_0.web_services
72
81
 
73
82
  @model_classes = ModelClasses.new
74
83
  end
75
84
 
76
- class ModelClasses
77
- def mode_value_info
78
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModeValueInfo
79
- end
80
- def module_asset_parameter
81
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModuleAssetParameter
82
- end
83
- def web_service_keys
84
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys
85
- end
86
- def asset_item
87
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::AssetItem
88
- end
89
- def diagnostics_configuration
90
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsConfiguration
91
- end
92
- def web_service_parameter
93
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceParameter
94
- end
95
- def machine_learning_workspace
96
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::MachineLearningWorkspace
97
- end
98
- def web_service_properties
99
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceProperties
100
- end
101
- def column_specification
102
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnSpecification
103
- end
104
- def table_specification
105
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::TableSpecification
106
- end
107
- def service_input_output_specification
108
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ServiceInputOutputSpecification
109
- end
110
- def blob_location
111
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::BlobLocation
112
- end
113
- def graph_node
114
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphNode
115
- end
116
- def output_port
117
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPort
118
- end
119
- def graph_edge
120
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphEdge
121
- end
122
- def realtime_configuration
123
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::RealtimeConfiguration
124
- end
125
- def graph_parameter_link
126
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
127
- end
128
- def commitment_plan
129
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::CommitmentPlan
130
- end
131
- def graph_parameter
132
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameter
133
- end
134
- def input_port
135
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPort
136
- end
137
- def graph_package
138
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphPackage
139
- end
140
- def storage_account
141
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
142
- end
143
- def async_operation_status
144
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus
145
- end
146
- def resource
147
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::Resource
148
- end
149
- def paginated_web_services_list
150
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList
151
- end
152
- def example_request
153
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ExampleRequest
154
- end
155
- def async_operation_error_info
156
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationErrorInfo
157
- end
158
- def web_service
159
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService
160
- end
161
- def web_service_properties_for_graph
162
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServicePropertiesForGraph
163
- end
164
- def provisioning_state
165
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ProvisioningState
166
- end
167
- def diagnostics_level
168
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsLevel
169
- end
170
- def column_type
171
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnType
172
- end
173
- def column_format
174
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnFormat
175
- end
176
- def asset_type
177
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::AssetType
178
- end
179
- def input_port_type
180
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPortType
181
- end
182
- def output_port_type
183
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPortType
184
- end
185
- def parameter_type
186
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::ParameterType
85
+ def add_telemetry(client)
86
+ profile_information = 'Profiles/Latest/MachineLearning/Mgmt'
87
+ client.add_user_agent_information(profile_information)
88
+ end
89
+
90
+ def method_missing(method, *args)
91
+ if @client_0.respond_to?method
92
+ @client_0.send(method, *args)
93
+ else
94
+ super
187
95
  end
188
96
  end
97
+
98
+ end
99
+
100
+ class ModelClasses
101
+ def asset_item
102
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::AssetItem
103
+ end
104
+ def resource
105
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::Resource
106
+ end
107
+ def web_service_parameter
108
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceParameter
109
+ end
110
+ def realtime_configuration
111
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::RealtimeConfiguration
112
+ end
113
+ def web_service_properties
114
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceProperties
115
+ end
116
+ def storage_account
117
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
118
+ end
119
+ def machine_learning_workspace
120
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::MachineLearningWorkspace
121
+ end
122
+ def commitment_plan
123
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::CommitmentPlan
124
+ end
125
+ def table_specification
126
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::TableSpecification
127
+ end
128
+ def graph_node
129
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphNode
130
+ end
131
+ def example_request
132
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ExampleRequest
133
+ end
134
+ def graph_edge
135
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphEdge
136
+ end
137
+ def input_port
138
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPort
139
+ end
140
+ def graph_parameter_link
141
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameterLink
142
+ end
143
+ def mode_value_info
144
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModeValueInfo
145
+ end
146
+ def graph_parameter
147
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphParameter
148
+ end
149
+ def web_service_keys
150
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys
151
+ end
152
+ def graph_package
153
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::GraphPackage
154
+ end
155
+ def column_specification
156
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnSpecification
157
+ end
158
+ def operation_entity_list_result
159
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationEntityListResult
160
+ end
161
+ def blob_location
162
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::BlobLocation
163
+ end
164
+ def paginated_web_services_list
165
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList
166
+ end
167
+ def module_asset_parameter
168
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ModuleAssetParameter
169
+ end
170
+ def async_operation_error_info
171
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationErrorInfo
172
+ end
173
+ def service_input_output_specification
174
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ServiceInputOutputSpecification
175
+ end
176
+ def async_operation_status
177
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus
178
+ end
179
+ def diagnostics_configuration
180
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsConfiguration
181
+ end
182
+ def operation_display_info
183
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationDisplayInfo
184
+ end
185
+ def output_port
186
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPort
187
+ end
188
+ def operation_entity
189
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::OperationEntity
190
+ end
191
+ def web_service
192
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService
193
+ end
194
+ def web_service_properties_for_graph
195
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServicePropertiesForGraph
196
+ end
197
+ def provisioning_state
198
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ProvisioningState
199
+ end
200
+ def diagnostics_level
201
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::DiagnosticsLevel
202
+ end
203
+ def column_type
204
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnType
205
+ end
206
+ def column_format
207
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ColumnFormat
208
+ end
209
+ def asset_type
210
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::AssetType
211
+ end
212
+ def input_port_type
213
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::InputPortType
214
+ end
215
+ def output_port_type
216
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::OutputPortType
217
+ end
218
+ def parameter_type
219
+ Azure::MachineLearning::Mgmt::V2017_01_01::Models::ParameterType
220
+ end
189
221
  end
222
+ end
190
223
  end
@@ -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::MachineLearning::Mgmt
6
- VERSION = '0.15.2'
6
+ VERSION = '0.17.3'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_machine_learning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.2
4
+ version: 0.17.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-19 00:00:00.000000000 Z
11
+ date: 2020-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.10.0
75
+ version: 0.12.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.10.0
82
+ version: 0.12.0
83
83
  description: Microsoft Azure Machine Learning Management Client Library for Ruby
84
84
  email: azrubyteam@microsoft.com
85
85
  executables: []
@@ -111,6 +111,9 @@ files:
111
111
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/machine_learning_workspace.rb
112
112
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/mode_value_info.rb
113
113
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/module_asset_parameter.rb
114
+ - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/operation_display_info.rb
115
+ - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/operation_entity.rb
116
+ - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/operation_entity_list_result.rb
114
117
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/output_port.rb
115
118
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/output_port_type.rb
116
119
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/paginated_web_services_list.rb
@@ -127,6 +130,7 @@ files:
127
130
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_properties.rb
128
131
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/models/web_service_properties_for_graph.rb
129
132
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/module_definition.rb
133
+ - lib/2017-01-01/generated/azure_mgmt_machine_learning/operations.rb
130
134
  - lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb
131
135
  - lib/azure_mgmt_machine_learning.rb
132
136
  - lib/module_definition.rb
@@ -159,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
163
  version: '0'
160
164
  requirements: []
161
165
  rubyforge_project:
162
- rubygems_version: 2.5.1
166
+ rubygems_version: 2.7.8
163
167
  signing_key:
164
168
  specification_version: 4
165
169
  summary: Official Ruby client library to consume Microsoft Azure Machine Learning