Class: Azure::DataMigration::Mgmt::V2018_07_15_preview::Files

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb

Overview

Data Migration Client

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Files

Creates and initializes a new instance of the Files class.

Parameters:

  • client

    service class for accessing basic functionality.



17
18
19
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 17

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientDataMigrationServiceClient (readonly)

Returns reference to the DataMigrationServiceClient.

Returns:



22
23
24
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 22

def client
  @client
end

Instance Method Details

#create_or_update(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ ProjectFile

Create a file resource

The PUT method creates a new file or updates an existing one.

will be added to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (ProjectFile)

    operation results.



260
261
262
263
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 260

def create_or_update(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  response = create_or_update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#create_or_update_async(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Create a file resource

The PUT method creates a new file or updates an existing one.

to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 299

def create_or_update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, 'parameters is nil' if parameters.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

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

  # Serialize Request
  request_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
  request_content = @client.serialize(request_mapper,  parameters)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      body: request_content,
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:put, path_template, options)

  promise = promise.then do |result|
    http_response = result.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 MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end
    # Deserialize Response
    if status_code == 201
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#create_or_update_with_http_info(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Create a file resource

The PUT method creates a new file or updates an existing one.

will be added to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



280
281
282
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 280

def create_or_update_with_http_info(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  create_or_update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end

#delete(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Object

Delete file

This method deletes a file.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that



387
388
389
390
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 387

def delete(group_name, service_name, project_name, file_name, custom_headers:nil)
  response = delete_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  nil
end

#delete_async(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Delete file

This method deletes a file.

to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
466
467
468
469
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 424

def delete_async(group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:delete, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200 || status_code == 204
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?

    result
  end

  promise.execute
end

#delete_with_http_info(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Delete file

This method deletes a file.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



406
407
408
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 406

def delete_with_http_info(group_name, service_name, project_name, file_name, custom_headers:nil)
  delete_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end

#get(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ ProjectFile

Get file information

The files resource is a nested, proxy-only resource representing a file stored under the project resource. This method retrieves information about a file.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (ProjectFile)

    operation results.



147
148
149
150
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 147

def get(group_name, service_name, project_name, file_name, custom_headers:nil)
  response = get_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#get_async(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Get file information

The files resource is a nested, proxy-only resource representing a file stored under the project resource. This method retrieves information about a file.

to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 188

def get_async(group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:get, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#get_with_http_info(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Get file information

The files resource is a nested, proxy-only resource representing a file stored under the project resource. This method retrieves information about a file.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



168
169
170
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 168

def get_with_http_info(group_name, service_name, project_name, file_name, custom_headers:nil)
  get_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end

#list(group_name, service_name, project_name, custom_headers: nil) ⇒ Array<ProjectFile>

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (Array<ProjectFile>)

    operation results.



38
39
40
41
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 38

def list(group_name, service_name, project_name, custom_headers:nil)
  first_page = list_as_lazy(group_name, service_name, project_name, custom_headers:custom_headers)
  first_page.get_all_items
end

#list_as_lazy(group_name, service_name, project_name, custom_headers: nil) ⇒ FileList

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (FileList)

    which provide lazy access to pages of the response.



925
926
927
928
929
930
931
932
933
934
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 925

def list_as_lazy(group_name, service_name, project_name, custom_headers:nil)
  response = list_async(group_name, service_name, project_name, custom_headers:custom_headers).value!
  unless response.nil?
    page = response.body
    page.next_method = Proc.new do |next_page_link|
      list_next_async(next_page_link, custom_headers:custom_headers)
    end
    page
  end
end

#list_async(group_name, service_name, project_name, custom_headers: nil) ⇒ Concurrent::Promise

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
128
129
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 75

def list_async(group_name, service_name, project_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name},
      query_params: {'api-version' => @client.api_version},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:get, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::FileList.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#list_next(next_page_link, custom_headers: nil) ⇒ FileList

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

to List operation. will be added to the HTTP request.

Parameters:

  • next_page_link (String)

    The NextLink from the previous successful call

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (FileList)

    operation results.



825
826
827
828
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 825

def list_next(next_page_link, custom_headers:nil)
  response = list_next_async(next_page_link, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

to List operation. to the HTTP request.

Parameters:

  • next_page_link (String)

    The NextLink from the previous successful call

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 860

def list_next_async(next_page_link, custom_headers:nil)
  fail ArgumentError, 'next_page_link is nil' if next_page_link.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

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

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      skip_encoding_path_params: {'nextLink' => next_page_link},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:get, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::FileList.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#list_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

to List operation. will be added to the HTTP request.

Parameters:

  • next_page_link (String)

    The NextLink from the previous successful call

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



843
844
845
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 843

def list_next_with_http_info(next_page_link, custom_headers:nil)
  list_next_async(next_page_link, custom_headers:custom_headers).value!
end

#list_with_http_info(group_name, service_name, project_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Get files in a project

The project resource is a nested resource representing a stored migration project. This method returns a list of files owned by a project resource.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



57
58
59
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 57

def list_with_http_info(group_name, service_name, project_name, custom_headers:nil)
  list_async(group_name, service_name, project_name, custom_headers:custom_headers).value!
end

#read(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ FileStorageInfo

Request storage information for downloading the file content

This method is used for requesting storage information using which contents of the file can be downloaded.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (FileStorageInfo)

    operation results.



605
606
607
608
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 605

def read(group_name, service_name, project_name, file_name, custom_headers:nil)
  response = read_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#read_async(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Request storage information for downloading the file content

This method is used for requesting storage information using which contents of the file can be downloaded.

to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 644

def read_async(group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}/read'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:post, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::FileStorageInfo.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#read_with_http_info(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Request storage information for downloading the file content

This method is used for requesting storage information using which contents of the file can be downloaded.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



625
626
627
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 625

def read_with_http_info(group_name, service_name, project_name, file_name, custom_headers:nil)
  read_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end

#read_write(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ FileStorageInfo

Request information for reading and writing file content.

This method is used for requesting information for reading and writing the file content.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (FileStorageInfo)

    operation results.



716
717
718
719
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 716

def read_write(group_name, service_name, project_name, file_name, custom_headers:nil)
  response = read_write_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#read_write_async(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Request information for reading and writing file content.

This method is used for requesting information for reading and writing the file content.

to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 755

def read_write_async(group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

  # Set Headers
  request_headers['x-ms-client-request-id'] = SecureRandom.uuid
  request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}/readwrite'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:post, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::FileStorageInfo.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#read_write_with_http_info(group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Request information for reading and writing file content.

This method is used for requesting information for reading and writing the file content.

will be added to the HTTP request.

Parameters:

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



736
737
738
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 736

def read_write_with_http_info(group_name, service_name, project_name, file_name, custom_headers:nil)
  read_write_async(group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end

#update(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ ProjectFile

Update a file

This method updates an existing file.

will be added to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (ProjectFile)

    operation results.



486
487
488
489
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 486

def update(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  response = update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#update_async(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ Concurrent::Promise

Update a file

This method updates an existing file.

to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 525

def update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  fail ArgumentError, 'parameters is nil' if parameters.nil?
  fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
  fail ArgumentError, 'group_name is nil' if group_name.nil?
  fail ArgumentError, 'service_name is nil' if service_name.nil?
  fail ArgumentError, 'project_name is nil' if project_name.nil?
  fail ArgumentError, 'file_name is nil' if file_name.nil?
  fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?


  request_headers = {}
  request_headers['Content-Type'] = 'application/json; charset=utf-8'

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

  # Serialize Request
  request_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
  request_content = @client.serialize(request_mapper,  parameters)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id,'groupName' => group_name,'serviceName' => service_name,'projectName' => project_name,'fileName' => file_name},
      query_params: {'api-version' => @client.api_version},
      body: request_content,
      headers: request_headers.merge(custom_headers || {}),
      base_url: request_url
  }
  promise = @client.make_request_async(:patch, path_template, options)

  promise = promise.then do |result|
    http_response = result.response
    status_code = http_response.status
    response_content = http_response.body
    unless status_code == 200
      error_model = JSON.load(response_content)
      fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
    end

    result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
    result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil?
    result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::DataMigration::Mgmt::V2018_07_15_preview::Models::ProjectFile.mapper()
        result.body = @client.deserialize(result_mapper, parsed_response)
      rescue Exception => e
        fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
      end
    end

    result
  end

  promise.execute
end

#update_with_http_info(parameters, group_name, service_name, project_name, file_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Update a file

This method updates an existing file.

will be added to the HTTP request.

Parameters:

  • parameters (ProjectFile)

    Information about the file

  • group_name (String)

    Name of the resource group

  • service_name (String)

    Name of the service

  • project_name (String)

    Name of the project

  • file_name (String)

    Name of the File

  • custom_headers (Hash{String => String}) (defaults to: nil)

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



506
507
508
# File 'lib/2018-07-15-preview/generated/azure_mgmt_data_migration/files.rb', line 506

def update_with_http_info(parameters, group_name, service_name, project_name, file_name, custom_headers:nil)
  update_async(parameters, group_name, service_name, project_name, file_name, custom_headers:custom_headers).value!
end