# encoding: utf-8
# Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
module Azure::ARM::MachineLearning
#
# These APIs allow end users to operate on Azure Machine Learning Web
# Services resources. They support the following operations:
- Create or
# update a web service
- Get a web service
- Patch a web
# service
- Delete a web service
- Get All Web Services in a
# Resource Group
- Get All Web Services in a Subscription
- Get
# Web Services Keys
#
class WebServices
include MsRestAzure
#
# Creates and initializes a new instance of the WebServices class.
# @param client service class for accessing basic functionality.
#
def initialize(client)
@client = client
end
# @return [AzureMLWebServicesManagementClient] reference to the AzureMLWebServicesManagementClient
attr_reader :client
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# @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.
#
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)
promise = promise.then do |response|
# Defining deserialization method.
deserialize_method = lambda do |parsed_response|
result_mapper = Azure::ARM::MachineLearning::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
#
# 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.
#
def get(resource_group_name, web_service_name, region = nil, custom_headers = nil)
response = get_async(resource_group_name, web_service_name, region, custom_headers).value!
response.body unless response.nil?
end
#
# 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.
#
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, custom_headers).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# @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.
#
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)
promise = promise.then do |response|
# Defining deserialization method.
deserialize_method = lambda do |parsed_response|
result_mapper = Azure::ARM::MachineLearning::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
#
# 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.
#
def remove(resource_group_name, web_service_name, custom_headers = nil)
response = remove_async(resource_group_name, web_service_name, custom_headers).value!
nil
end
#
# @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.
#
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)
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
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# @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.
#
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)
promise = promise.then do |response|
# Defining deserialization method.
deserialize_method = lambda do |parsed_response|
result_mapper = Azure::ARM::MachineLearning::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
#
# 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.
#
def list_keys(resource_group_name, web_service_name, custom_headers = nil)
response = list_keys_async(resource_group_name, web_service_name, custom_headers).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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] operation results.
#
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, custom_headers)
first_page.get_all_items
end
#
# 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.
#
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, custom_headers).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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] operation results.
#
def list_by_subscription_id(skiptoken = nil, custom_headers = nil)
first_page = list_by_subscription_id_as_lazy(skiptoken, custom_headers)
first_page.get_all_items
end
#
# 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.
#
def list_by_subscription_id_with_http_info(skiptoken = nil, custom_headers = nil)
list_by_subscription_id_async(skiptoken, custom_headers).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# Set Headers
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
request_headers['Content-Type'] = 'application/json; charset=utf-8'
# Serialize Request
request_mapper = Azure::ARM::MachineLearning::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::ARM::MachineLearning::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::ARM::MachineLearning::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
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# Set Headers
request_headers['x-ms-client-request-id'] = SecureRandom.uuid
request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
request_headers['Content-Type'] = 'application/json; charset=utf-8'
# Serialize Request
request_mapper = Azure::ARM::MachineLearning::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::ARM::MachineLearning::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
#
# 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.
#
#
def begin_remove(resource_group_name, web_service_name, custom_headers = nil)
response = begin_remove_async(resource_group_name, web_service_name, custom_headers).value!
nil
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# 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
#
# 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.
#
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).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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.
#
def list_by_resource_group_next(next_page_link, custom_headers = nil)
response = list_by_resource_group_next_async(next_page_link, custom_headers).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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.
#
def list_by_subscription_id_next(next_page_link, custom_headers = nil)
response = list_by_subscription_id_next_async(next_page_link, custom_headers).value!
response.body unless response.nil?
end
#
# 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.
#
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).value!
end
#
# 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.
#
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 = {}
# 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::ARM::MachineLearning::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
#
# 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.
#
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, 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)
end
page
end
end
#
# 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.
#
def list_by_subscription_id_as_lazy(skiptoken = nil, custom_headers = nil)
response = list_by_subscription_id_async(skiptoken, 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)
end
page
end
end
end
end