managed_network_settings
Creates, updates, deletes, gets or lists a managed_network_settings resource.
Overview
| Name | managed_network_settings |
| Type | Resource |
| Id | azure.cognitive_services.managed_network_settings |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
managedNetwork | object | Managed Network settings for a cognitive services account. |
provisioningState | string | The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning. Known values are: "Deferred", "Updating", "Succeeded", "Failed", "Deleting", and "Deleted". (Deferred, Updating, Succeeded, Failed, Deleting, Deleted) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
managedNetwork | object | Managed Network settings for a cognitive services account. |
provisioningState | string | The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning. Known values are: "Deferred", "Updating", "Succeeded", "Failed", "Deleting", and "Deleted". (Deferred, Updating, Succeeded, Failed, Deleting, Deleted) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, account_name, managed_network_name, subscription_id | Get API for managed network settings of a cognitive services account. Get API for managed network settings of a cognitive services account. | |
list | select | resource_group_name, account_name, subscription_id | List API for managed network settings of a cognitive services account. List API for managed network settings of a cognitive services account. | |
delete | delete | resource_group_name, account_name, managed_network_name, subscription_id | Delete API for managed network settings of a cognitive services account. Delete API for managed network settings of a cognitive services account. | |
put | exec | resource_group_name, account_name, managed_network_name, subscription_id | PUT API for managed network settings of a cognitive services account. PUT API for managed network settings of a cognitive services account. | |
patch | exec | resource_group_name, account_name, managed_network_name, subscription_id | Patch API for managed network settings of a cognitive services account. Patch API for managed network settings of a cognitive services account. |
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 |
|---|---|---|
account_name | string | The name of Cognitive Services account. Required. |
managed_network_name | string | Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list
Get API for managed network settings of a cognitive services account. Get API for managed network settings of a cognitive services account.
SELECT
id,
name,
managedNetwork,
provisioningState,
systemData,
type
FROM azure.cognitive_services.managed_network_settings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND managed_network_name = '{{ managed_network_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List API for managed network settings of a cognitive services account. List API for managed network settings of a cognitive services account.
SELECT
id,
name,
managedNetwork,
provisioningState,
systemData,
type
FROM azure.cognitive_services.managed_network_settings
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
DELETE examples
- delete
Delete API for managed network settings of a cognitive services account. Delete API for managed network settings of a cognitive services account.
DELETE FROM azure.cognitive_services.managed_network_settings
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND account_name = '{{ account_name }}' --required
AND managed_network_name = '{{ managed_network_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;
Lifecycle Methods
- put
- patch
PUT API for managed network settings of a cognitive services account. PUT API for managed network settings of a cognitive services account.
EXEC azure.cognitive_services.managed_network_settings.put
@resource_group_name='{{ resource_group_name }}' --required,
@account_name='{{ account_name }}' --required,
@managed_network_name='{{ managed_network_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"properties": "{{ properties }}"
}'
;
Patch API for managed network settings of a cognitive services account. Patch API for managed network settings of a cognitive services account.
EXEC azure.cognitive_services.managed_network_settings.patch
@resource_group_name='{{ resource_group_name }}' --required,
@account_name='{{ account_name }}' --required,
@managed_network_name='{{ managed_network_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"properties": "{{ properties }}"
}'
;