class Azure::MachineLearning::Mgmt::V2017_01_01::WebServices

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>

Attributes

client[R]

@return [AzureMLWebServicesManagementClient] reference to the AzureMLWebServicesManagementClient

Private Class Methods

new(client) click to toggle source

Creates and initializes a new instance of the WebServices class. @param client service class for accessing basic functionality.

# File lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb, line 22
def initialize(client)
  @client = client
end

Private Instance Methods

begin_create_or_update(resource_group_name, web_service_name, create_or_update_payload, custom_headers:nil) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param create_or_update_payload [WebService] The payload that is used to create or update the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebService] operation results.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param create_or_update_payload [WebService] The payload that is used to create or update the web service. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param create_or_update_payload [WebService] The payload that is used to create or update the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are created. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [AsyncOperationStatus] operation results.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are created. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are created. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param patch_payload [WebService] The payload to use to patch the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebService] operation results.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param patch_payload [WebService] The payload to use to patch the web service. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param patch_payload [WebService] The payload to use to patch the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Deletes the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

# 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) click to toggle source

Deletes the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Deletes the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param create_or_update_payload [WebService] The payload that is used to create or update the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebService] operation results.

# 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) click to toggle source

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param create_or_update_payload [WebService] The payload that is used to create or update the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] promise which provides async access to http response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are created. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [AsyncOperationStatus] operation results.

# 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) click to toggle source

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are created. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] promise which provides async access to http response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are valid. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebService] operation results.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are valid. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are valid. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Array<WebService>] operation results.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [PaginatedWebServicesList] which provide lazy access to pages of the response.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param skiptoken [String] Continuation token for pagination. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [PaginatedWebServicesList] operation results.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Gets the web services in the specified resource group.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Array<WebService>] operation results.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [PaginatedWebServicesList] which provide lazy access to pages of the response.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param skiptoken [String] Continuation token for pagination. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [PaginatedWebServicesList] operation results.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param next_page_link [String] The NextLink from the previous successful call to List operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Gets the web services in the specified subscription.

@param skiptoken [String] Continuation token for pagination. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

Gets the access keys for the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebServiceKeys] operation results.

# 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) click to toggle source

Gets the access keys for the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] Promise object which holds the HTTP response.

# 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) click to toggle source

Gets the access keys for the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [MsRestAzure::AzureOperationResponse] HTTP response information.

# 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) click to toggle source

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.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param patch_payload [WebService] The payload to use to patch the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [WebService] operation results.

# 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) click to toggle source

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param patch_payload [WebService] The payload to use to patch the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] promise which provides async access to http response.

# 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) click to toggle source

Deletes the specified web service.

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

# 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) click to toggle source

@param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.

@return [Concurrent::Promise] promise which provides async access to http response.

# 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