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
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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | resourceGroupName , webServiceName , region , subscriptionId | 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. |
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.
Name | Datatype | Description |
---|---|---|
region | string | The region for which encrypted credential parameters are created. |
resourceGroupName | string | Name of the resource group in which the web service is located. |
subscriptionId | string | The Azure subscription ID. |
webServiceName | string | The name of the web service. |
INSERT
examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: web_services_regional_properties
props:
- name: resourceGroupName
value: string
description: Required parameter for the web_services_regional_properties resource.
- name: webServiceName
value: string
description: Required parameter for the web_services_regional_properties resource.
- name: region
value: string
description: Required parameter for the web_services_regional_properties resource.
- name: subscriptionId
value: string
description: Required parameter for the web_services_regional_properties resource.