Skip to main content

managed_network_settings

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

Overview

Namemanaged_network_settings
TypeResource
Idazure.cognitive_services.managed_network_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
managedNetworkobjectManaged Network settings for a cognitive services account.
provisioningStatestringThe 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)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, account_name, managed_network_name, subscription_idGet API for managed network settings of a cognitive services account. Get API for managed network settings of a cognitive services account.
listselectresource_group_name, account_name, subscription_idList API for managed network settings of a cognitive services account. List API for managed network settings of a cognitive services account.
deletedeleteresource_group_name, account_name, managed_network_name, subscription_idDelete API for managed network settings of a cognitive services account. Delete API for managed network settings of a cognitive services account.
putexecresource_group_name, account_name, managed_network_name, subscription_idPUT API for managed network settings of a cognitive services account. PUT API for managed network settings of a cognitive services account.
patchexecresource_group_name, account_name, managed_network_name, subscription_idPatch 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.

NameDatatypeDescription
account_namestringThe name of Cognitive Services account. Required.
managed_network_namestringName of the managedNetwork associated with the cognitive services account. Only 'default' is supported. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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
;

DELETE examples

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 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 }}"
}'
;