Class: Azure::MachineLearning::Mgmt::V2017_01_01::WebServices

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb

Overview

These APIs allow end users to operate on Azure Machine Learning Web Services resources. They support the following operations:<ul><li>Create or update a web service</li><li>Get a web service</li><li>Patch a web service</li><li>Delete a web service</li><li>Get All Web Services in a Resource Group </li><li>Get All Web Services in a Subscription</li><li>Get Web Services Keys</li></ul>

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ WebServices

Creates and initializes a new instance of the WebServices class.

Parameters:

  • client

    service class for accessing basic functionality.



22
23
24
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 22

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientAzureMLWebServicesManagementClient (readonly)

Returns reference to the AzureMLWebServicesManagementClient.

Returns:



27
28
29
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 27

def client
  @client
end

Instance Method Details

#begin_create_or_update(resource_group_name, web_service_name, create_or_update_payload, custom_headers: nil) ⇒ WebService

Create or update a web service. This call will overwrite an existing web service. Note that there is no warning or confirmation. This is a nonrecoverable operation. If your intent is to create a new web service, call the Get operation first to verify that it does not exist.

web service is located. create or update the web service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • create_or_update_payload (WebService)

    The payload that is used to

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

    A hash of custom headers that

Returns:

  • (WebService)

    operation results.



625
626
627
628
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 625

def begin_create_or_update(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil)
  response = begin_create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers: nil) ⇒ Concurrent::Promise

Create or update a web service. This call will overwrite an existing web service. Note that there is no warning or confirmation. This is a nonrecoverable operation. If your intent is to create a new web service, call the Get operation first to verify that it does not exist.

web service is located. create or update the web service. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • create_or_update_payload (WebService)

    The payload that is used to

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 666

def begin_create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_name.nil?
  fail ArgumentError, 'create_or_update_payload is nil' if create_or_update_payload.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?


  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::MachineLearning::Mgmt::V2017_01_01::Models::WebService.mapper()
  request_content = @client.serialize(request_mapper,  create_or_update_payload)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService.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::MachineLearning::Mgmt::V2017_01_01::Models::WebService.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

#begin_create_or_update_with_http_info(resource_group_name, web_service_name, create_or_update_payload, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Create or update a web service. This call will overwrite an existing web service. Note that there is no warning or confirmation. This is a nonrecoverable operation. If your intent is to create a new web service, call the Get operation first to verify that it does not exist.

web service is located. create or update the web service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • create_or_update_payload (WebService)

    The payload that is used to

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



646
647
648
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 646

def begin_create_or_update_with_http_info(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil)
  begin_create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:custom_headers).value!
end

#begin_create_regional_properties(resource_group_name, web_service_name, region, custom_headers: nil) ⇒ AsyncOperationStatus

Creates an encrypted credentials parameter blob for the specified region. To get the web service from a region other than the region in which it has been created, you must first call Create Regional Web Services Properties to create a copy of the encrypted credential parameter blob in that region. You only need to do this before the first time that you get the web service in the new region.

web service is located. are created. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (AsyncOperationStatus)

    operation results.



954
955
956
957
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 954

def begin_create_regional_properties(resource_group_name, web_service_name, region, custom_headers:nil)
  response = begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers: nil) ⇒ Concurrent::Promise

Creates an encrypted credentials parameter blob for the specified region. To get the web service from a region other than the region in which it has been created, you must first call Create Regional Web Services Properties to create a copy of the encrypted credential parameter blob in that region. You only need to do this before the first time that you get the web service in the new region.

web service is located. are created. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String)

    The region for which encrypted credential parameters

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 999

def begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_name.nil?
  fail ArgumentError, 'region is nil' if region.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?


  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/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/CreateRegionalBlob'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      query_params: {'region' => region,'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 == 202 || status_code == 200
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus.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

#begin_create_regional_properties_with_http_info(resource_group_name, web_service_name, region, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Creates an encrypted credentials parameter blob for the specified region. To get the web service from a region other than the region in which it has been created, you must first call Create Regional Web Services Properties to create a copy of the encrypted credential parameter blob in that region. You only need to do this before the first time that you get the web service in the new region.

web service is located. are created. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



977
978
979
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 977

def begin_create_regional_properties_with_http_info(resource_group_name, web_service_name, region, custom_headers:nil)
  begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers).value!
end

#begin_patch(resource_group_name, web_service_name, patch_payload, custom_headers: nil) ⇒ WebService

Modifies an existing web service resource. The PATCH API call is an asynchronous operation. To determine whether it has completed successfully, you must perform a Get operation.

web service is located. service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • patch_payload (WebService)

    The payload to use to patch the web

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

    A hash of custom headers that

Returns:

  • (WebService)

    operation results.



752
753
754
755
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 752

def begin_patch(resource_group_name, web_service_name, patch_payload, custom_headers:nil)
  response = begin_patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#begin_patch_async(resource_group_name, web_service_name, patch_payload, custom_headers: nil) ⇒ Concurrent::Promise

Modifies an existing web service resource. The PATCH API call is an asynchronous operation. To determine whether it has completed successfully, you must perform a Get operation.

web service is located. service. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • patch_payload (WebService)

    The payload to use to patch the web

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 791

def begin_patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_name.nil?
  fail ArgumentError, 'patch_payload is nil' if patch_payload.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?


  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::MachineLearning::Mgmt::V2017_01_01::Models::WebService.mapper()
  request_content = @client.serialize(request_mapper,  patch_payload)
  request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil

  path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService.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

#begin_patch_with_http_info(resource_group_name, web_service_name, patch_payload, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Modifies an existing web service resource. The PATCH API call is an asynchronous operation. To determine whether it has completed successfully, you must perform a Get operation.

web service is located. service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • patch_payload (WebService)

    The payload to use to patch the web

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



772
773
774
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 772

def begin_patch_with_http_info(resource_group_name, web_service_name, patch_payload, custom_headers:nil)
  begin_patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:custom_headers).value!
end

#begin_remove(resource_group_name, web_service_name, custom_headers: nil) ⇒ Object

Deletes the specified web service.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that



862
863
864
865
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 862

def begin_remove(resource_group_name, web_service_name, custom_headers:nil)
  response = begin_remove_async(resource_group_name, web_service_name, custom_headers:custom_headers).value!
  nil
end

#begin_remove_async(resource_group_name, web_service_name, custom_headers: nil) ⇒ Concurrent::Promise

Deletes the specified web service.

web service is located. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 893

def begin_remove_async(resource_group_name, web_service_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_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?


  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/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      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 == 202 || status_code == 204
      error_model = JSON.load(response_content)
      fail MsRestAzure::AzureOperationError.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
  end

  promise.execute
end

#begin_remove_with_http_info(resource_group_name, web_service_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Deletes the specified web service.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



878
879
880
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 878

def begin_remove_with_http_info(resource_group_name, web_service_name, custom_headers:nil)
  begin_remove_async(resource_group_name, web_service_name, custom_headers:custom_headers).value!
end

#create_or_update(resource_group_name, web_service_name, create_or_update_payload, custom_headers: nil) ⇒ WebService

Create or update a web service. This call will overwrite an existing web service. Note that there is no warning or confirmation. This is a nonrecoverable operation. If your intent is to create a new web service, call the Get operation first to verify that it does not exist.

web service is located. create or update the web service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • create_or_update_payload (WebService)

    The payload that is used to

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

    A hash of custom headers that

Returns:

  • (WebService)

    operation results.



45
46
47
48
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 45

def create_or_update(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil)
  response = create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers: nil) ⇒ Concurrent::Promise

web service is located. create or update the web service. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • create_or_update_payload (WebService)

    The payload that is used to

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 62

def create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil)
  # Send request
  promise = begin_create_or_update_async(resource_group_name, web_service_name, create_or_update_payload, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService.mapper()
      parsed_response = @client.deserialize(result_mapper, parsed_response)
    end

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

  promise
end

#create_regional_properties(resource_group_name, web_service_name, region, custom_headers: nil) ⇒ AsyncOperationStatus

Creates an encrypted credentials parameter blob for the specified region. To get the web service from a region other than the region in which it has been created, you must first call Create Regional Web Services Properties to create a copy of the encrypted credential parameter blob in that region. You only need to do this before the first time that you get the web service in the new region.

web service is located. are created. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (AsyncOperationStatus)

    operation results.



298
299
300
301
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 298

def create_regional_properties(resource_group_name, web_service_name, region, custom_headers:nil)
  response = create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers: nil) ⇒ Concurrent::Promise

web service is located. are created. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 315

def create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:nil)
  # Send request
  promise = begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::AsyncOperationStatus.mapper()
      parsed_response = @client.deserialize(result_mapper, parsed_response)
    end

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

  promise
end

#get(resource_group_name, web_service_name, region: nil, custom_headers: nil) ⇒ WebService

Gets the Web Service Definition as specified by a subscription, resource group, and name. Note that the storage credentials and web service keys are not returned by this call. To get the web service access keys, call List Keys.

web service is located. are valid. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String) (defaults to: nil)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (WebService)

    operation results.



96
97
98
99
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 96

def get(resource_group_name, web_service_name, region:nil, custom_headers:nil)
  response = get_async(resource_group_name, web_service_name, region:region, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#get_async(resource_group_name, web_service_name, region: nil, custom_headers: nil) ⇒ Concurrent::Promise

Gets the Web Service Definition as specified by a subscription, resource group, and name. Note that the storage credentials and web service keys are not returned by this call. To get the web service access keys, call List Keys.

web service is located. are valid. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String) (defaults to: nil)

    The region for which encrypted credential parameters

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



137
138
139
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
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 137

def get_async(resource_group_name, web_service_name, region:nil, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_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?


  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/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      query_params: {'region' => region,'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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService.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(resource_group_name, web_service_name, region: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the Web Service Definition as specified by a subscription, resource group, and name. Note that the storage credentials and web service keys are not returned by this call. To get the web service access keys, call List Keys.

web service is located. are valid. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • region (String) (defaults to: nil)

    The region for which encrypted credential parameters

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



117
118
119
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 117

def get_with_http_info(resource_group_name, web_service_name, region:nil, custom_headers:nil)
  get_async(resource_group_name, web_service_name, region:region, custom_headers:custom_headers).value!
end

#list_by_resource_group(resource_group_name, skiptoken: nil, custom_headers: nil) ⇒ Array<WebService>

Gets the web services in the specified resource group.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (Array<WebService>)

    operation results.



439
440
441
442
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 439

def list_by_resource_group(resource_group_name, skiptoken:nil, custom_headers:nil)
  first_page = list_by_resource_group_as_lazy(resource_group_name, skiptoken:skiptoken, custom_headers:custom_headers)
  first_page.get_all_items
end

#list_by_resource_group_as_lazy(resource_group_name, skiptoken: nil, custom_headers: nil) ⇒ PaginatedWebServicesList

Gets the web services in the specified resource group.

web service is located. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (PaginatedWebServicesList)

    which provide lazy access to pages of the



1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1241

def list_by_resource_group_as_lazy(resource_group_name, skiptoken:nil, custom_headers:nil)
  response = list_by_resource_group_async(resource_group_name, skiptoken:skiptoken, custom_headers:custom_headers).value!
  unless response.nil?
    page = response.body
    page.next_method = Proc.new do |next_page_link|
      list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers)
    end
    page
  end
end

#list_by_resource_group_async(resource_group_name, skiptoken: nil, custom_headers: nil) ⇒ Concurrent::Promise

Gets the web services in the specified resource group.

web service is located. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



470
471
472
473
474
475
476
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
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 470

def list_by_resource_group_async(resource_group_name, skiptoken:nil, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_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?


  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/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'subscriptionId' => @client.subscription_id},
      query_params: {'$skiptoken' => skiptoken,'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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList.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_by_resource_group_next(next_page_link, custom_headers: nil) ⇒ PaginatedWebServicesList

Gets the web services in the specified resource group.

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:

  • (PaginatedWebServicesList)

    operation results.



1063
1064
1065
1066
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1063

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

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

Gets the web services in the specified resource group.

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.



1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1092

def list_by_resource_group_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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList.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_by_resource_group_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the web services in the specified resource group.

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.



1078
1079
1080
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1078

def list_by_resource_group_next_with_http_info(next_page_link, custom_headers:nil)
  list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers).value!
end

#list_by_resource_group_with_http_info(resource_group_name, skiptoken: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the web services in the specified resource group.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



455
456
457
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 455

def list_by_resource_group_with_http_info(resource_group_name, skiptoken:nil, custom_headers:nil)
  list_by_resource_group_async(resource_group_name, skiptoken:skiptoken, custom_headers:custom_headers).value!
end

#list_by_subscription_id(skiptoken: nil, custom_headers: nil) ⇒ Array<WebService>

Gets the web services in the specified subscription.

will be added to the HTTP request.

Parameters:

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (Array<WebService>)

    operation results.



531
532
533
534
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 531

def list_by_subscription_id(skiptoken:nil, custom_headers:nil)
  first_page = list_by_subscription_id_as_lazy(skiptoken:skiptoken, custom_headers:custom_headers)
  first_page.get_all_items
end

#list_by_subscription_id_as_lazy(skiptoken: nil, custom_headers: nil) ⇒ PaginatedWebServicesList

Gets the web services in the specified subscription.

will be added to the HTTP request.

response.

Parameters:

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (PaginatedWebServicesList)

    which provide lazy access to pages of the



1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1262

def list_by_subscription_id_as_lazy(skiptoken:nil, custom_headers:nil)
  response = list_by_subscription_id_async(skiptoken:skiptoken, custom_headers:custom_headers).value!
  unless response.nil?
    page = response.body
    page.next_method = Proc.new do |next_page_link|
      list_by_subscription_id_next_async(next_page_link, custom_headers:custom_headers)
    end
    page
  end
end

#list_by_subscription_id_async(skiptoken: nil, custom_headers: nil) ⇒ Concurrent::Promise

Gets the web services in the specified subscription.

to the HTTP request.

Parameters:

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 558

def list_by_subscription_id_async(skiptoken:nil, custom_headers: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?


  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}/providers/Microsoft.MachineLearning/webServices'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'subscriptionId' => @client.subscription_id},
      query_params: {'$skiptoken' => skiptoken,'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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList.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_by_subscription_id_next(next_page_link, custom_headers: nil) ⇒ PaginatedWebServicesList

Gets the web services in the specified subscription.

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:

  • (PaginatedWebServicesList)

    operation results.



1151
1152
1153
1154
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1151

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

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

Gets the web services in the specified subscription.

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.



1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1180

def list_by_subscription_id_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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::PaginatedWebServicesList.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_by_subscription_id_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the web services in the specified subscription.

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.



1166
1167
1168
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 1166

def list_by_subscription_id_next_with_http_info(next_page_link, custom_headers:nil)
  list_by_subscription_id_next_async(next_page_link, custom_headers:custom_headers).value!
end

#list_by_subscription_id_with_http_info(skiptoken: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the web services in the specified subscription.

will be added to the HTTP request.

Parameters:

  • skiptoken (String) (defaults to: nil)

    Continuation token for pagination.

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



545
546
547
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 545

def list_by_subscription_id_with_http_info(skiptoken:nil, custom_headers:nil)
  list_by_subscription_id_async(skiptoken:skiptoken, custom_headers:custom_headers).value!
end

#list_keys(resource_group_name, web_service_name, custom_headers: nil) ⇒ WebServiceKeys

Gets the access keys for the specified web service.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that

Returns:

  • (WebServiceKeys)

    operation results.



344
345
346
347
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 344

def list_keys(resource_group_name, web_service_name, custom_headers:nil)
  response = list_keys_async(resource_group_name, web_service_name, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#list_keys_async(resource_group_name, web_service_name, custom_headers: nil) ⇒ Concurrent::Promise

Gets the access keys for the specified web service.

web service is located. to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • A (Hash{String => String})

    hash of custom headers that will be added

Returns:

  • (Concurrent::Promise)

    Promise object which holds the HTTP response.



375
376
377
378
379
380
381
382
383
384
385
386
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
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 375

def list_keys_async(resource_group_name, web_service_name, custom_headers:nil)
  fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil?
  fail ArgumentError, 'web_service_name is nil' if web_service_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?


  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/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys'

  request_url = @base_url || @client.base_url

  options = {
      middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
      path_params: {'resourceGroupName' => resource_group_name,'webServiceName' => web_service_name,'subscriptionId' => @client.subscription_id},
      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 MsRestAzure::AzureOperationError.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?
    # Deserialize Response
    if status_code == 200
      begin
        parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
        result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebServiceKeys.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_keys_with_http_info(resource_group_name, web_service_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse

Gets the access keys for the specified web service.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that

Returns:

  • (MsRestAzure::AzureOperationResponse)

    HTTP response information.



360
361
362
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 360

def list_keys_with_http_info(resource_group_name, web_service_name, custom_headers:nil)
  list_keys_async(resource_group_name, web_service_name, custom_headers:custom_headers).value!
end

#patch(resource_group_name, web_service_name, patch_payload, custom_headers: nil) ⇒ WebService

Modifies an existing web service resource. The PATCH API call is an asynchronous operation. To determine whether it has completed successfully, you must perform a Get operation.

web service is located. service. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • patch_payload (WebService)

    The payload to use to patch the web

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

    A hash of custom headers that

Returns:

  • (WebService)

    operation results.



205
206
207
208
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 205

def patch(resource_group_name, web_service_name, patch_payload, custom_headers:nil)
  response = patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:custom_headers).value!
  response.body unless response.nil?
end

#patch_async(resource_group_name, web_service_name, patch_payload, custom_headers: nil) ⇒ Concurrent::Promise

web service is located. service. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

  • patch_payload (WebService)

    The payload to use to patch the web

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 222

def patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:nil)
  # Send request
  promise = begin_patch_async(resource_group_name, web_service_name, patch_payload, custom_headers:custom_headers)

  promise = promise.then do |response|
    # Defining deserialization method.
    deserialize_method = lambda do |parsed_response|
      result_mapper = Azure::MachineLearning::Mgmt::V2017_01_01::Models::WebService.mapper()
      parsed_response = @client.deserialize(result_mapper, parsed_response)
    end

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

  promise
end

#remove(resource_group_name, web_service_name, custom_headers: nil) ⇒ Object

Deletes the specified web service.

web service is located. will be added to the HTTP request.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that



249
250
251
252
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 249

def remove(resource_group_name, web_service_name, custom_headers:nil)
  response = remove_async(resource_group_name, web_service_name, custom_headers:custom_headers).value!
  nil
end

#remove_async(resource_group_name, web_service_name, custom_headers: nil) ⇒ Concurrent::Promise

web service is located. will be added to the HTTP request.

response.

Parameters:

  • resource_group_name (String)

    Name of the resource group in which the

  • web_service_name (String)

    The name of the web service.

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

    A hash of custom headers that

Returns:

  • (Concurrent::Promise)

    promise which provides async access to http



264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb', line 264

def remove_async(resource_group_name, web_service_name, custom_headers:nil)
  # Send request
  promise = begin_remove_async(resource_group_name, web_service_name, custom_headers:custom_headers)

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

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

  promise
end