azure_mgmt_features 0.17.0 → 0.17.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8391af85b3651956d3371bc7946348d3fc55551d
4
- data.tar.gz: 16cb4458eb890f0d04bc27ef34658b5940d2e175
3
+ metadata.gz: 7f5222adfc77220f256be47e9982659030491fa0
4
+ data.tar.gz: c0d00b3f7f82f489f774ba0487b380cfbc07ca10
5
5
  SHA512:
6
- metadata.gz: 1db6bc6ecab9c1d6eca95c9c1a24d9c37c07137fe51ef9c05f5330943fd824d49309bd5bcc16fc1a842c0c72f7eee16f27df0a7b3e85179edadc67a3cecb6867
7
- data.tar.gz: 2ffd577e7d105cb804559c240cc135f651e46ddc0114c49d933de5232b60ad3594855ce91f7ad1a5d92ebae86ca504dd8deedaa643f362b5e5b1563f3cdf5a47
6
+ metadata.gz: 90475c17529a547e3c30d8832679c095f33a66463f37c6a8c593c94414217e42a652db70485b8a3bb2a4eca65ca1d5953a9cc7301665e0a83729feed40a13263
7
+ data.tar.gz: 7ce909ea24f993e5b3b0bace0b6b1a823dcf780c298c182a0ff84f55572f66b969ecc1acd4306d472e170332fc8fc5741bc16a8c731e4764a949fa6577872fed
@@ -24,8 +24,11 @@ module Azure::Features::Mgmt::V2015_12_01
24
24
  autoload :FeatureClient, '2015-12-01/generated/azure_mgmt_features/feature_client.rb'
25
25
 
26
26
  module Models
27
- autoload :FeatureResult, '2015-12-01/generated/azure_mgmt_features/models/feature_result.rb'
28
- autoload :FeatureOperationsListResult, '2015-12-01/generated/azure_mgmt_features/models/feature_operations_list_result.rb'
27
+ autoload :OperationDisplay, '2015-12-01/generated/azure_mgmt_features/models/operation_display.rb'
29
28
  autoload :FeatureProperties, '2015-12-01/generated/azure_mgmt_features/models/feature_properties.rb'
29
+ autoload :Operation, '2015-12-01/generated/azure_mgmt_features/models/operation.rb'
30
+ autoload :FeatureOperationsListResult, '2015-12-01/generated/azure_mgmt_features/models/feature_operations_list_result.rb'
31
+ autoload :OperationListResult, '2015-12-01/generated/azure_mgmt_features/models/operation_list_result.rb'
32
+ autoload :FeatureResult, '2015-12-01/generated/azure_mgmt_features/models/feature_result.rb'
30
33
  end
31
34
  end
@@ -117,6 +117,252 @@ module Azure::Features::Mgmt::V2015_12_01
117
117
  super(request_url, method, path, options)
118
118
  end
119
119
 
120
+ #
121
+ # Lists all of the available Microsoft.Features REST API operations.
122
+ #
123
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
124
+ # will be added to the HTTP request.
125
+ #
126
+ # @return [Array<Operation>] operation results.
127
+ #
128
+ def list_operations(custom_headers:nil)
129
+ first_page = list_operations_as_lazy(custom_headers:custom_headers)
130
+ first_page.get_all_items
131
+ end
132
+
133
+ #
134
+ # Lists all of the available Microsoft.Features REST API operations.
135
+ #
136
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
137
+ # will be added to the HTTP request.
138
+ #
139
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
140
+ #
141
+ def list_operations_with_http_info(custom_headers:nil)
142
+ list_operations_async(custom_headers:custom_headers).value!
143
+ end
144
+
145
+ #
146
+ # Lists all of the available Microsoft.Features REST API operations.
147
+ #
148
+ # @param [Hash{String => String}] A hash of custom headers that will be added
149
+ # to the HTTP request.
150
+ #
151
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
152
+ #
153
+ def list_operations_async(custom_headers:nil)
154
+ fail ArgumentError, 'api_version is nil' if api_version.nil?
155
+
156
+
157
+ request_headers = {}
158
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
159
+
160
+ # Set Headers
161
+ request_headers['x-ms-client-request-id'] = SecureRandom.uuid
162
+ request_headers['accept-language'] = accept_language unless accept_language.nil?
163
+ path_template = 'providers/Microsoft.Features/operations'
164
+
165
+ request_url = @base_url || self.base_url
166
+
167
+ options = {
168
+ middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
169
+ query_params: {'api-version' => api_version},
170
+ headers: request_headers.merge(custom_headers || {}),
171
+ base_url: request_url
172
+ }
173
+ promise = self.make_request_async(:get, path_template, options)
174
+
175
+ promise = promise.then do |result|
176
+ http_response = result.response
177
+ status_code = http_response.status
178
+ response_content = http_response.body
179
+ unless status_code == 200
180
+ error_model = JSON.load(response_content)
181
+ fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model)
182
+ end
183
+
184
+ result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
185
+ # Deserialize Response
186
+ if status_code == 200
187
+ begin
188
+ parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
189
+ result_mapper = Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult.mapper()
190
+ result.body = self.deserialize(result_mapper, parsed_response)
191
+ rescue Exception => e
192
+ fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
193
+ end
194
+ end
195
+
196
+ result
197
+ end
198
+
199
+ promise.execute
200
+ end
201
+
202
+ #
203
+ # Lists all of the available Microsoft.Features REST API operations.
204
+ #
205
+ # @param next_page_link [String] The NextLink from the previous successful call
206
+ # to List operation.
207
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
208
+ # will be added to the HTTP request.
209
+ #
210
+ # @return [OperationListResult] operation results.
211
+ #
212
+ def list_operations_next(next_page_link, custom_headers:nil)
213
+ response = list_operations_next_async(next_page_link, custom_headers:custom_headers).value!
214
+ response.body unless response.nil?
215
+ end
216
+
217
+ #
218
+ # Lists all of the available Microsoft.Features REST API operations.
219
+ #
220
+ # @param next_page_link [String] The NextLink from the previous successful call
221
+ # to List operation.
222
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
223
+ # will be added to the HTTP request.
224
+ #
225
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
226
+ #
227
+ def list_operations_next_with_http_info(next_page_link, custom_headers:nil)
228
+ list_operations_next_async(next_page_link, custom_headers:custom_headers).value!
229
+ end
230
+
231
+ #
232
+ # Lists all of the available Microsoft.Features REST API operations.
233
+ #
234
+ # @param next_page_link [String] The NextLink from the previous successful call
235
+ # to List operation.
236
+ # @param [Hash{String => String}] A hash of custom headers that will be added
237
+ # to the HTTP request.
238
+ #
239
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
240
+ #
241
+ def list_operations_next_async(next_page_link, custom_headers:nil)
242
+ fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
243
+
244
+
245
+ request_headers = {}
246
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
247
+
248
+ # Set Headers
249
+ request_headers['x-ms-client-request-id'] = SecureRandom.uuid
250
+ request_headers['accept-language'] = accept_language unless accept_language.nil?
251
+ path_template = '{nextLink}'
252
+
253
+ request_url = @base_url || self.base_url
254
+
255
+ options = {
256
+ middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
257
+ skip_encoding_path_params: {'nextLink' => next_page_link},
258
+ headers: request_headers.merge(custom_headers || {}),
259
+ base_url: request_url
260
+ }
261
+ promise = self.make_request_async(:get, path_template, options)
262
+
263
+ promise = promise.then do |result|
264
+ http_response = result.response
265
+ status_code = http_response.status
266
+ response_content = http_response.body
267
+ unless status_code == 200
268
+ error_model = JSON.load(response_content)
269
+ fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model)
270
+ end
271
+
272
+ result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
273
+ # Deserialize Response
274
+ if status_code == 200
275
+ begin
276
+ parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
277
+ result_mapper = Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult.mapper()
278
+ result.body = self.deserialize(result_mapper, parsed_response)
279
+ rescue Exception => e
280
+ fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
281
+ end
282
+ end
283
+
284
+ result
285
+ end
286
+
287
+ promise.execute
288
+ end
289
+
290
+ #
291
+ # Lists all of the available Microsoft.Features REST API operations.
292
+ #
293
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
294
+ # will be added to the HTTP request.
295
+ #
296
+ # @return [OperationListResult] operation results.
297
+ #
298
+ def list_operations_as_lazy(custom_headers:nil)
299
+ first_page = list_operations_as_lazy_as_lazy(custom_headers:custom_headers)
300
+ first_page.get_all_items
301
+ end
302
+
303
+ #
304
+ # Lists all of the available Microsoft.Features REST API operations.
305
+ #
306
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
307
+ # will be added to the HTTP request.
308
+ #
309
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
310
+ #
311
+ def list_operations_as_lazy_with_http_info(custom_headers:nil)
312
+ list_operations_as_lazy_async(custom_headers:custom_headers).value!
313
+ end
314
+
315
+ #
316
+ # Lists all of the available Microsoft.Features REST API operations.
317
+ #
318
+ # @param [Hash{String => String}] A hash of custom headers that will be added
319
+ # to the HTTP request.
320
+ #
321
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
322
+ #
323
+ def list_operations_as_lazy_async(custom_headers:nil)
324
+
325
+
326
+ request_headers = {}
327
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
328
+ path_template = 'providers/Microsoft.Features/operations'
329
+
330
+ request_url = @base_url || self.base_url
331
+
332
+ options = {
333
+ middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
334
+ headers: request_headers.merge(custom_headers || {}),
335
+ base_url: request_url
336
+ }
337
+ promise = self.make_request_async(:get, path_template, options)
338
+
339
+ promise = promise.then do |result|
340
+ http_response = result.response
341
+ status_code = http_response.status
342
+ response_content = http_response.body
343
+ unless status_code == 200
344
+ error_model = JSON.load(response_content)
345
+ fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model)
346
+ end
347
+
348
+ result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
349
+ # Deserialize Response
350
+ if status_code == 200
351
+ begin
352
+ parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
353
+ result_mapper = Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult.mapper()
354
+ result.body = self.deserialize(result_mapper, parsed_response)
355
+ rescue Exception => e
356
+ fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
357
+ end
358
+ end
359
+
360
+ result
361
+ end
362
+
363
+ promise.execute
364
+ end
365
+
120
366
 
121
367
  private
122
368
  #
@@ -124,7 +370,7 @@ module Azure::Features::Mgmt::V2015_12_01
124
370
  #
125
371
  def add_telemetry
126
372
  sdk_information = 'azure_mgmt_features'
127
- sdk_information = "#{sdk_information}/0.17.0"
373
+ sdk_information = "#{sdk_information}/0.17.1"
128
374
  add_user_agent_information(sdk_information)
129
375
  end
130
376
  end
@@ -0,0 +1,58 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Features::Mgmt::V2015_12_01
7
+ module Models
8
+ #
9
+ # Microsoft.Features operation
10
+ #
11
+ class Operation
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Operation name: {provider}/{resource}/{operation}
16
+ attr_accessor :name
17
+
18
+ # @return [OperationDisplay] The object that represents the operation.
19
+ attr_accessor :display
20
+
21
+
22
+ #
23
+ # Mapper for Operation class as Ruby Hash.
24
+ # This will be used for serialization/deserialization.
25
+ #
26
+ def self.mapper()
27
+ {
28
+ client_side_validation: true,
29
+ required: false,
30
+ serialized_name: 'Operation',
31
+ type: {
32
+ name: 'Composite',
33
+ class_name: 'Operation',
34
+ model_properties: {
35
+ name: {
36
+ client_side_validation: true,
37
+ required: false,
38
+ serialized_name: 'name',
39
+ type: {
40
+ name: 'String'
41
+ }
42
+ },
43
+ display: {
44
+ client_side_validation: true,
45
+ required: false,
46
+ serialized_name: 'display',
47
+ type: {
48
+ name: 'Composite',
49
+ class_name: 'OperationDisplay'
50
+ }
51
+ }
52
+ }
53
+ }
54
+ }
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,69 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Features::Mgmt::V2015_12_01
7
+ module Models
8
+ #
9
+ # The object that represents the operation.
10
+ #
11
+ class OperationDisplay
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Service provider: Microsoft.Features
16
+ attr_accessor :provider
17
+
18
+ # @return [String] Resource on which the operation is performed: Profile,
19
+ # endpoint, etc.
20
+ attr_accessor :resource
21
+
22
+ # @return [String] Operation type: Read, write, delete, etc.
23
+ attr_accessor :operation
24
+
25
+
26
+ #
27
+ # Mapper for OperationDisplay class as Ruby Hash.
28
+ # This will be used for serialization/deserialization.
29
+ #
30
+ def self.mapper()
31
+ {
32
+ client_side_validation: true,
33
+ required: false,
34
+ serialized_name: 'Operation_display',
35
+ type: {
36
+ name: 'Composite',
37
+ class_name: 'OperationDisplay',
38
+ model_properties: {
39
+ provider: {
40
+ client_side_validation: true,
41
+ required: false,
42
+ serialized_name: 'provider',
43
+ type: {
44
+ name: 'String'
45
+ }
46
+ },
47
+ resource: {
48
+ client_side_validation: true,
49
+ required: false,
50
+ serialized_name: 'resource',
51
+ type: {
52
+ name: 'String'
53
+ }
54
+ },
55
+ operation: {
56
+ client_side_validation: true,
57
+ required: false,
58
+ serialized_name: 'operation',
59
+ type: {
60
+ name: 'String'
61
+ }
62
+ }
63
+ }
64
+ }
65
+ }
66
+ end
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,100 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Features::Mgmt::V2015_12_01
7
+ module Models
8
+ #
9
+ # Result of the request to list Microsoft.Features operations. It contains
10
+ # a list of operations and a URL link to get the next set of results.
11
+ #
12
+ class OperationListResult
13
+
14
+ include MsRestAzure
15
+
16
+ include MsRest::JSONable
17
+ # @return [Array<Operation>] List of Microsoft.Features operations.
18
+ attr_accessor :value
19
+
20
+ # @return [String] URL to get the next set of operation list results if
21
+ # there are any.
22
+ attr_accessor :next_link
23
+
24
+ # return [Proc] with next page method call.
25
+ attr_accessor :next_method
26
+
27
+ #
28
+ # Gets the rest of the items for the request, enabling auto-pagination.
29
+ #
30
+ # @return [Array<Operation>] operation results.
31
+ #
32
+ def get_all_items
33
+ items = @value
34
+ page = self
35
+ while page.next_link != nil do
36
+ page = page.get_next_page
37
+ items.concat(page.value)
38
+ end
39
+ items
40
+ end
41
+
42
+ #
43
+ # Gets the next page of results.
44
+ #
45
+ # @return [OperationListResult] with next page content.
46
+ #
47
+ def get_next_page
48
+ response = @next_method.call(@next_link).value! unless @next_method.nil?
49
+ unless response.nil?
50
+ @next_link = response.body.next_link
51
+ @value = response.body.value
52
+ self
53
+ end
54
+ end
55
+
56
+ #
57
+ # Mapper for OperationListResult class as Ruby Hash.
58
+ # This will be used for serialization/deserialization.
59
+ #
60
+ def self.mapper()
61
+ {
62
+ client_side_validation: true,
63
+ required: false,
64
+ serialized_name: 'OperationListResult',
65
+ type: {
66
+ name: 'Composite',
67
+ class_name: 'OperationListResult',
68
+ model_properties: {
69
+ value: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'value',
73
+ type: {
74
+ name: 'Sequence',
75
+ element: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ serialized_name: 'OperationElementType',
79
+ type: {
80
+ name: 'Composite',
81
+ class_name: 'Operation'
82
+ }
83
+ }
84
+ }
85
+ },
86
+ next_link: {
87
+ client_side_validation: true,
88
+ required: false,
89
+ serialized_name: 'nextLink',
90
+ type: {
91
+ name: 'String'
92
+ }
93
+ }
94
+ }
95
+ }
96
+ }
97
+ end
98
+ end
99
+ end
100
+ end
@@ -9,9 +9,12 @@ module Azure::Features::Profiles::Latest
9
9
  Features = Azure::Features::Mgmt::V2015_12_01::Features
10
10
 
11
11
  module Models
12
- FeatureResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
13
- FeatureOperationsListResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
12
+ OperationDisplay = Azure::Features::Mgmt::V2015_12_01::Models::OperationDisplay
14
13
  FeatureProperties = Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
14
+ Operation = Azure::Features::Mgmt::V2015_12_01::Models::Operation
15
+ FeatureOperationsListResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
16
+ OperationListResult = Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult
17
+ FeatureResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
15
18
  end
16
19
 
17
20
  #
@@ -59,14 +62,23 @@ module Azure::Features::Profiles::Latest
59
62
  end
60
63
 
61
64
  class ModelClasses
62
- def feature_result
63
- Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
65
+ def operation_display
66
+ Azure::Features::Mgmt::V2015_12_01::Models::OperationDisplay
67
+ end
68
+ def feature_properties
69
+ Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
70
+ end
71
+ def operation
72
+ Azure::Features::Mgmt::V2015_12_01::Models::Operation
64
73
  end
65
74
  def feature_operations_list_result
66
75
  Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
67
76
  end
68
- def feature_properties
69
- Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
77
+ def operation_list_result
78
+ Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult
79
+ end
80
+ def feature_result
81
+ Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
70
82
  end
71
83
  end
72
84
  end
@@ -9,9 +9,12 @@ module Azure::Features::Profiles::V2017_03_09
9
9
  Features = Azure::Features::Mgmt::V2015_12_01::Features
10
10
 
11
11
  module Models
12
- FeatureResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
13
- FeatureOperationsListResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
12
+ OperationDisplay = Azure::Features::Mgmt::V2015_12_01::Models::OperationDisplay
14
13
  FeatureProperties = Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
14
+ Operation = Azure::Features::Mgmt::V2015_12_01::Models::Operation
15
+ FeatureOperationsListResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
16
+ OperationListResult = Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult
17
+ FeatureResult = Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
15
18
  end
16
19
 
17
20
  #
@@ -59,14 +62,23 @@ module Azure::Features::Profiles::V2017_03_09
59
62
  end
60
63
 
61
64
  class ModelClasses
62
- def feature_result
63
- Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
65
+ def operation_display
66
+ Azure::Features::Mgmt::V2015_12_01::Models::OperationDisplay
67
+ end
68
+ def feature_properties
69
+ Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
70
+ end
71
+ def operation
72
+ Azure::Features::Mgmt::V2015_12_01::Models::Operation
64
73
  end
65
74
  def feature_operations_list_result
66
75
  Azure::Features::Mgmt::V2015_12_01::Models::FeatureOperationsListResult
67
76
  end
68
- def feature_properties
69
- Azure::Features::Mgmt::V2015_12_01::Models::FeatureProperties
77
+ def operation_list_result
78
+ Azure::Features::Mgmt::V2015_12_01::Models::OperationListResult
79
+ end
80
+ def feature_result
81
+ Azure::Features::Mgmt::V2015_12_01::Models::FeatureResult
70
82
  end
71
83
  end
72
84
  end
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::Features::Mgmt
6
- VERSION = '0.17.0'
6
+ VERSION = '0.17.1'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_features
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.1
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-07-31 00:00:00.000000000 Z
11
+ date: 2018-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -94,6 +94,9 @@ files:
94
94
  - lib/2015-12-01/generated/azure_mgmt_features/models/feature_operations_list_result.rb
95
95
  - lib/2015-12-01/generated/azure_mgmt_features/models/feature_properties.rb
96
96
  - lib/2015-12-01/generated/azure_mgmt_features/models/feature_result.rb
97
+ - lib/2015-12-01/generated/azure_mgmt_features/models/operation.rb
98
+ - lib/2015-12-01/generated/azure_mgmt_features/models/operation_display.rb
99
+ - lib/2015-12-01/generated/azure_mgmt_features/models/operation_list_result.rb
97
100
  - lib/2015-12-01/generated/azure_mgmt_features/module_definition.rb
98
101
  - lib/azure_mgmt_features.rb
99
102
  - lib/module_definition.rb