web_services_regional_properties
Creates, updates, deletes, gets or lists a web_services_regional_properties
resource.
Overview
Name | web_services_regional_properties |
Type | Resource |
Id | azure.machine_learning.web_services_regional_properties |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
create | INSERT | region, resourceGroupName, subscriptionId, webServiceName | 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
example
Use the following StackQL query and manifest file to create a new web_services_regional_properties
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.machine_learning.web_services_regional_properties (
region,
resourceGroupName,
subscriptionId,
webServiceName
)
SELECT
'{{ region }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ webServiceName }}'
;
- name: your_resource_model_name
props: []