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

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTregion, resourceGroupName, subscriptionId, webServiceNameCreates 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 example

Use the following StackQL query and manifest file to create a new web_services_regional_properties resource.

/*+ create */
INSERT INTO azure.machine_learning.web_services_regional_properties (
region,
resourceGroupName,
subscriptionId,
webServiceName
)
SELECT
'{{ region }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ webServiceName }}'
;