Skip to main content

web_services_regional_properties

Creates, updates, deletes, gets or lists a web_services_regional_properties resource.

Overview

Nameweb_services_regional_properties
TypeResource
Idazure.machine_learning.web_services_regional_properties

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertresourceGroupName, webServiceName, region, subscriptionIdCreates 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringThe region for which encrypted credential parameters are created.
resourceGroupNamestringName of the resource group in which the web service is located.
subscriptionIdstringThe Azure subscription ID.
webServiceNamestringThe name of the web service.

INSERT examples

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.

INSERT INTO azure.machine_learning.web_services_regional_properties (
resourceGroupName,
webServiceName,
region,
subscriptionId
)
SELECT
'{{ resourceGroupName }}',
'{{ webServiceName }}',
'{{ region }}',
'{{ subscriptionId }}'
RETURNING
id,
name,
endTime,
errorInfo,
percentComplete,
provisioningState,
startTime
;