Class: Azure::ARM::Network::Subnets

Inherits:
Object
  • Object
show all
Includes:
Models, MsRestAzure
Defined in:
lib/azure_mgmt_network/subnets.rb

Overview

Subnets

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Subnets

Creates and initializes a new instance of the Subnets class.

Parameters:

  • client

    service class for accessing basic functionality.



18
19
20
# File 'lib/azure_mgmt_network/subnets.rb', line 18

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientObject (readonly)

Returns reference to the NetworkResourceProviderClient.

Returns:

  • reference to the NetworkResourceProviderClient



23
24
25
# File 'lib/azure_mgmt_network/subnets.rb', line 23

def client
  @client
end

Instance Method Details

#begin_create_or_update(resource_group_name, virtual_network_name, subnet_name, subnet_parameters, custom_headers = nil) ⇒ Concurrent::Promise

The Put Subnet operation creates/updates a subnet in thespecified virtual network Subnet operation applied to HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • subnet_name (String)

    The name of the subnet.

  • subnet_parameters (Subnet)

    Parameters supplied to the create/update

  • The (Hash{String => String})

    hash of custom headers need to be

Returns:

  • (Concurrent::Promise)

    Promise object which allows to get HTTP



273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
# File 'lib/azure_mgmt_network/subnets.rb', line 273

def begin_create_or_update(resource_group_name, virtual_network_name, subnet_name, subnet_parameters, custom_headers = nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'virtual_network_name is nil' if virtual_network_name.nil?
  fail ArgumentError, 'subnet_name is nil' if subnet_name.nil?
  fail ArgumentError, 'subnet_parameters is nil' if subnet_parameters.nil?
  subnet_parameters.validate unless subnet_parameters.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  # Construct URL
  path = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}"
  path['{resourceGroupName}'] = ERB::Util.url_encode(resource_group_name) if path.include?('{resourceGroupName}')
  path['{virtualNetworkName}'] = ERB::Util.url_encode(virtual_network_name) if path.include?('{virtualNetworkName}')
  path['{subnetName}'] = ERB::Util.url_encode(subnet_name) if path.include?('{subnetName}')
  path['{subscriptionId}'] = ERB::Util.url_encode(@client.subscription_id) if path.include?('{subscriptionId}')
  url = URI.join(@client.base_url, path)
  properties = {}
  properties['api-version'] = ERB::Util.url_encode(@client.api_version.to_s) unless @client.api_version.nil?
  unless url.query.nil?
    url.query.split('&').each do |url_item|
      url_items_parts = url_item.split('=')
      properties[url_items_parts[0]] = url_items_parts[1]
    end
  end
  properties.reject!{ |key, value| value.nil? }
  url.query = properties.map{ |key, value| "#{key}=#{value}" }.compact.join('&')
  fail URI::Error unless url.to_s =~ /\A#{URI::regexp}\z/
  corrected_url = url.to_s.gsub(/([^:])\/\//, '\1/')
  url = URI.parse(corrected_url)

  connection = Faraday.new(:url => url) do |faraday|
    faraday.use MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02
    faraday.use :cookie_jar
    faraday.adapter Faraday.default_adapter
  end
  request_headers = Hash.new

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers["accept-language"] = @client.accept_language unless @client.accept_language.nil?

  unless custom_headers.nil?
    custom_headers.each do |key, value|
      request_headers[key] = value
    end
  end

  # Serialize Request
  request_headers['Content-Type'] = 'application/json'
  unless subnet_parameters.nil?
    subnet_parameters = Subnet.serialize_object(subnet_parameters)
  end
  request_content = JSON.generate(subnet_parameters, quirks_mode: true)

  # Send Request
  promise = Concurrent::Promise.new do
    connection.put do |request|
      request.headers = request_headers
      request.body = request_content
      @client.credentials.sign_request(request) unless @client.credentials.nil?
    end
  end

  promise = promise.then do |http_response|
    status_code = http_response.status
    response_content = http_response.body
    unless (status_code == 200 || status_code == 201)
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.new(connection, http_response, error_model)
    end

    # Create Result
    result = MsRestAzure::AzureOperationResponse.new(connection, http_response)
    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = JSON.load(response_content) unless response_content.to_s.empty?
        unless parsed_response.nil?
          parsed_response = Subnet.deserialize_object(parsed_response)
        end
        result.body = parsed_response
      rescue Exception => e
        fail MsRest::DeserializationError.new("Error occured in deserializing the response", e.message, e.backtrace, response_content)
      end
    end
    # Deserialize Response
    if status_code == 201
      begin
        parsed_response = JSON.load(response_content) unless response_content.to_s.empty?
        unless parsed_response.nil?
          parsed_response = Subnet.deserialize_object(parsed_response)
        end
        result.body = parsed_response
      rescue Exception => e
        fail MsRest::DeserializationError.new("Error occured in deserializing the response", e.message, e.backtrace, response_content)
      end
    end

    result
  end

  promise.execute
end

#begin_delete(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil) ⇒ Concurrent::Promise

The delete subnet operation deletes the specified subnet. applied to HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • subnet_name (String)

    The name of the subnet.

  • The (Hash{String => String})

    hash of custom headers need to be

Returns:

  • (Concurrent::Promise)

    Promise object which allows to get HTTP



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/azure_mgmt_network/subnets.rb', line 60

def begin_delete(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'virtual_network_name is nil' if virtual_network_name.nil?
  fail ArgumentError, 'subnet_name is nil' if subnet_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  # Construct URL
  path = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}"
  path['{resourceGroupName}'] = ERB::Util.url_encode(resource_group_name) if path.include?('{resourceGroupName}')
  path['{virtualNetworkName}'] = ERB::Util.url_encode(virtual_network_name) if path.include?('{virtualNetworkName}')
  path['{subnetName}'] = ERB::Util.url_encode(subnet_name) if path.include?('{subnetName}')
  path['{subscriptionId}'] = ERB::Util.url_encode(@client.subscription_id) if path.include?('{subscriptionId}')
  url = URI.join(@client.base_url, path)
  properties = {}
  properties['api-version'] = ERB::Util.url_encode(@client.api_version.to_s) unless @client.api_version.nil?
  unless url.query.nil?
    url.query.split('&').each do |url_item|
      url_items_parts = url_item.split('=')
      properties[url_items_parts[0]] = url_items_parts[1]
    end
  end
  properties.reject!{ |key, value| value.nil? }
  url.query = properties.map{ |key, value| "#{key}=#{value}" }.compact.join('&')
  fail URI::Error unless url.to_s =~ /\A#{URI::regexp}\z/
  corrected_url = url.to_s.gsub(/([^:])\/\//, '\1/')
  url = URI.parse(corrected_url)

  connection = Faraday.new(:url => url) do |faraday|
    faraday.use MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02
    faraday.use :cookie_jar
    faraday.adapter Faraday.default_adapter
  end
  request_headers = Hash.new

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers["accept-language"] = @client.accept_language unless @client.accept_language.nil?

  unless custom_headers.nil?
    custom_headers.each do |key, value|
      request_headers[key] = value
    end
  end

  # Send Request
  promise = Concurrent::Promise.new do
    connection.delete do |request|
      request.headers = request_headers
      @client.credentials.sign_request(request) unless @client.credentials.nil?
    end
  end

  promise = promise.then do |http_response|
    status_code = http_response.status
    response_content = http_response.body
    unless (status_code == 204 || status_code == 202 || status_code == 200)
      fail MsRestAzure::AzureOperationError.new(connection, http_response)
    end

    # Create Result
    result = MsRestAzure::AzureOperationResponse.new(connection, http_response)
    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?

    result
  end

  promise.execute
end

#create_or_update(resource_group_name, virtual_network_name, subnet_name, subnet_parameters, custom_headers = nil) ⇒ Concurrent::Promise

The Put Subnet operation creates/updates a subnet in thespecified virtual network Subnet operation uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. for the response.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • subnet_name (String)

    The name of the subnet.

  • subnet_parameters (Subnet)

    Parameters supplied to the create/update

  • @client.api_version (String)

    Client Api Version.

  • @client.subscription_id (String)

    Gets subscription credentials which

  • @client.accept_language (String)

    Gets or sets the preferred language

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/azure_mgmt_network/subnets.rb', line 240

def create_or_update(resource_group_name, virtual_network_name, subnet_name, subnet_parameters, custom_headers = nil)
  # Send request
  promise = begin_create_or_update(resource_group_name, virtual_network_name, subnet_name, subnet_parameters, custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      unless parsed_response.nil?
        parsed_response = Subnet.deserialize_object(parsed_response)
      end
    end

    # Waiting for response.
    @client.get_put_operation_result(response, custom_headers, deserialize_method)
  end

  promise
end

#delete(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil) ⇒ Concurrent::Promise

The delete subnet operation deletes the specified subnet. response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • subnet_name (String)

    The name of the subnet.

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/azure_mgmt_network/subnets.rb', line 33

def delete(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil)
  # Send request
  promise = begin_delete(resource_group_name, virtual_network_name, subnet_name, custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
    end

   # Waiting for response.
   @client.get_post_or_delete_operation_result(response, nil, deserialize_method)
  end

  promise
end

#get(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil) ⇒ Concurrent::Promise

The Get subnet operation retreives information about the specified subnet. applied to HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • subnet_name (String)

    The name of the subnet.

  • The (Hash{String => String})

    hash of custom headers need to be

Returns:

  • (Concurrent::Promise)

    Promise object which allows to get HTTP



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/azure_mgmt_network/subnets.rb', line 140

def get(resource_group_name, virtual_network_name, subnet_name, custom_headers = nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'virtual_network_name is nil' if virtual_network_name.nil?
  fail ArgumentError, 'subnet_name is nil' if subnet_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  # Construct URL
  path = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets/{subnetName}"
  path['{resourceGroupName}'] = ERB::Util.url_encode(resource_group_name) if path.include?('{resourceGroupName}')
  path['{virtualNetworkName}'] = ERB::Util.url_encode(virtual_network_name) if path.include?('{virtualNetworkName}')
  path['{subnetName}'] = ERB::Util.url_encode(subnet_name) if path.include?('{subnetName}')
  path['{subscriptionId}'] = ERB::Util.url_encode(@client.subscription_id) if path.include?('{subscriptionId}')
  url = URI.join(@client.base_url, path)
  properties = {}
  properties['api-version'] = ERB::Util.url_encode(@client.api_version.to_s) unless @client.api_version.nil?
  unless url.query.nil?
    url.query.split('&').each do |url_item|
      url_items_parts = url_item.split('=')
      properties[url_items_parts[0]] = url_items_parts[1]
    end
  end
  properties.reject!{ |key, value| value.nil? }
  url.query = properties.map{ |key, value| "#{key}=#{value}" }.compact.join('&')
  fail URI::Error unless url.to_s =~ /\A#{URI::regexp}\z/
  corrected_url = url.to_s.gsub(/([^:])\/\//, '\1/')
  url = URI.parse(corrected_url)

  connection = Faraday.new(:url => url) do |faraday|
    faraday.use MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02
    faraday.use :cookie_jar
    faraday.adapter Faraday.default_adapter
  end
  request_headers = Hash.new

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers["accept-language"] = @client.accept_language unless @client.accept_language.nil?

  unless custom_headers.nil?
    custom_headers.each do |key, value|
      request_headers[key] = value
    end
  end

  # Send Request
  promise = Concurrent::Promise.new do
    connection.get do |request|
      request.headers = request_headers
      @client.credentials.sign_request(request) unless @client.credentials.nil?
    end
  end

  promise = promise.then do |http_response|
    status_code = http_response.status
    response_content = http_response.body
    unless (status_code == 200)
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.new(connection, http_response, error_model)
    end

    # Create Result
    result = MsRestAzure::AzureOperationResponse.new(connection, http_response)
    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = JSON.load(response_content) unless response_content.to_s.empty?
        unless parsed_response.nil?
          parsed_response = Subnet.deserialize_object(parsed_response)
        end
        result.body = parsed_response
      rescue Exception => e
        fail MsRest::DeserializationError.new("Error occured in deserializing the response", e.message, e.backtrace, response_content)
      end
    end

    result
  end

  promise.execute
end

#list(resource_group_name, virtual_network_name, custom_headers = nil) ⇒ Concurrent::Promise

The List subnets opertion retrieves all the subnets in a virtual network. applied to HTTP request.

response.

Parameters:

  • resource_group_name (String)

    The name of the resource group.

  • virtual_network_name (String)

    The name of the virtual network.

  • The (Hash{String => String})

    hash of custom headers need to be

Returns:

  • (Concurrent::Promise)

    Promise object which allows to get HTTP



387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
# File 'lib/azure_mgmt_network/subnets.rb', line 387

def list(resource_group_name, virtual_network_name, custom_headers = nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'virtual_network_name is nil' if virtual_network_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  # Construct URL
  path = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/virtualnetworks/{virtualNetworkName}/subnets"
  path['{resourceGroupName}'] = ERB::Util.url_encode(resource_group_name) if path.include?('{resourceGroupName}')
  path['{virtualNetworkName}'] = ERB::Util.url_encode(virtual_network_name) if path.include?('{virtualNetworkName}')
  path['{subscriptionId}'] = ERB::Util.url_encode(@client.subscription_id) if path.include?('{subscriptionId}')
  url = URI.join(@client.base_url, path)
  properties = {}
  properties['api-version'] = ERB::Util.url_encode(@client.api_version.to_s) unless @client.api_version.nil?
  unless url.query.nil?
    url.query.split('&').each do |url_item|
      url_items_parts = url_item.split('=')
      properties[url_items_parts[0]] = url_items_parts[1]
    end
  end
  properties.reject!{ |key, value| value.nil? }
  url.query = properties.map{ |key, value| "#{key}=#{value}" }.compact.join('&')
  fail URI::Error unless url.to_s =~ /\A#{URI::regexp}\z/
  corrected_url = url.to_s.gsub(/([^:])\/\//, '\1/')
  url = URI.parse(corrected_url)

  connection = Faraday.new(:url => url) do |faraday|
    faraday.use MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02
    faraday.use :cookie_jar
    faraday.adapter Faraday.default_adapter
  end
  request_headers = Hash.new

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers["accept-language"] = @client.accept_language unless @client.accept_language.nil?

  unless custom_headers.nil?
    custom_headers.each do |key, value|
      request_headers[key] = value
    end
  end

  # Send Request
  promise = Concurrent::Promise.new do
    connection.get do |request|
      request.headers = request_headers
      @client.credentials.sign_request(request) unless @client.credentials.nil?
    end
  end

  promise = promise.then do |http_response|
    status_code = http_response.status
    response_content = http_response.body
    unless (status_code == 200)
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.new(connection, http_response, error_model)
    end

    # Create Result
    result = MsRestAzure::AzureOperationResponse.new(connection, http_response)
    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = JSON.load(response_content) unless response_content.to_s.empty?
        unless parsed_response.nil?
          parsed_response = SubnetListResult.deserialize_object(parsed_response)
        end
        result.body = parsed_response
      rescue Exception => e
        fail MsRest::DeserializationError.new("Error occured in deserializing the response", e.message, e.backtrace, response_content)
      end
    end

    result
  end

  promise.execute
end

#list_next(next_page_link, custom_headers = nil) ⇒ Concurrent::Promise

The List subnets opertion retrieves all the subnets in a virtual network. call to List operation. applied to HTTP request.

response.

Parameters:

  • next_page_link (String)

    The NextLink from the previous successful

  • The (Hash{String => String})

    hash of custom headers need to be

Returns:

  • (Concurrent::Promise)

    Promise object which allows to get HTTP



477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
# File 'lib/azure_mgmt_network/subnets.rb', line 477

def list_next(next_page_link, custom_headers = nil)
  fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?
  # Construct URL
  path = "{nextLink}"
  path['{nextLink}'] = next_page_link if path.include?('{nextLink}')
  url = URI.parse(path)
  properties = {}
  unless url.query.nil?
    url.query.split('&').each do |url_item|
      url_items_parts = url_item.split('=')
      properties[url_items_parts[0]] = url_items_parts[1]
    end
  end
  properties.reject!{ |key, value| value.nil? }
  url.query = properties.map{ |key, value| "#{key}=#{value}" }.compact.join('&')
  fail URI::Error unless url.to_s =~ /\A#{URI::regexp}\z/
  corrected_url = url.to_s.gsub(/([^:])\/\//, '\1/')
  url = URI.parse(corrected_url)

  connection = Faraday.new(:url => url) do |faraday|
    faraday.use MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02
    faraday.use :cookie_jar
    faraday.adapter Faraday.default_adapter
  end
  request_headers = Hash.new

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers["accept-language"] = @client.accept_language unless @client.accept_language.nil?

  unless custom_headers.nil?
    custom_headers.each do |key, value|
      request_headers[key] = value
    end
  end

  # Send Request
  promise = Concurrent::Promise.new do
    connection.get do |request|
      request.headers = request_headers
      @client.credentials.sign_request(request) unless @client.credentials.nil?
    end
  end

  promise = promise.then do |http_response|
    status_code = http_response.status
    response_content = http_response.body
    unless (status_code == 200)
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.new(connection, http_response, error_model)
    end

    # Create Result
    result = MsRestAzure::AzureOperationResponse.new(connection, http_response)
    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = JSON.load(response_content) unless response_content.to_s.empty?
        unless parsed_response.nil?
          parsed_response = SubnetListResult.deserialize_object(parsed_response)
        end
        result.body = parsed_response
      rescue Exception => e
        fail MsRest::DeserializationError.new("Error occured in deserializing the response", e.message, e.backtrace, response_content)
      end
    end

    result
  end

  promise.execute
end