managed_virtual_networks
Creates, updates, deletes, gets or lists a managed_virtual_networks
resource.
Overview
Name | managed_virtual_networks |
Type | Resource |
Id | azure.data_factory.managed_virtual_networks |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_factory
OK.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
etag | string | Etag identifies change in the resource. |
properties | object | Managed Virtual Network properties. |
type | string | The resource type. |
OK.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
etag | string | Etag identifies change in the resource. |
properties | object | Managed Virtual Network properties. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , factoryName , managedVirtualNetworkName | api-version , If-None-Match | Gets a managed Virtual Network. |
list_by_factory | select | subscriptionId , resourceGroupName , factoryName | api-version | Lists managed Virtual Networks. |
create_or_update | insert | subscriptionId , resourceGroupName , factoryName , managedVirtualNetworkName , data__properties | api-version , If-Match | Creates or updates a managed Virtual Network. |
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 |
---|---|---|
factoryName | string | The factory name. |
managedVirtualNetworkName | string | Managed virtual network name |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier. |
If-Match | string | ETag of the managed Virtual Network entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. |
If-None-Match | string | ETag of the managed Virtual Network entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. |
api-version | string | The API version. |
SELECT
examples
- get
- list_by_factory
Gets a managed Virtual Network.
SELECT
id,
name,
etag,
properties,
type
FROM azure.data_factory.managed_virtual_networks
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND managedVirtualNetworkName = '{{ managedVirtualNetworkName }}' -- required
AND api-version = '{{ api-version }}'
AND If-None-Match = '{{ If-None-Match }}'
;
Lists managed Virtual Networks.
SELECT
id,
name,
etag,
properties,
type
FROM azure.data_factory.managed_virtual_networks
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND api-version = '{{ api-version }}'
;
INSERT
examples
- create_or_update
- Manifest
Creates or updates a managed Virtual Network.
INSERT INTO azure.data_factory.managed_virtual_networks (
data__properties,
subscriptionId,
resourceGroupName,
factoryName,
managedVirtualNetworkName,
api-version,
If-Match
)
SELECT
'{{ properties }}' /* required */,
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ factoryName }}',
'{{ managedVirtualNetworkName }}',
'{{ api-version }}',
'{{ If-Match }}'
RETURNING
id,
name,
etag,
properties,
type
;
# Description fields are for documentation purposes
- name: managed_virtual_networks
props:
- name: subscriptionId
value: string
description: Required parameter for the managed_virtual_networks resource.
- name: resourceGroupName
value: string
description: Required parameter for the managed_virtual_networks resource.
- name: factoryName
value: string
description: Required parameter for the managed_virtual_networks resource.
- name: managedVirtualNetworkName
value: string
description: Required parameter for the managed_virtual_networks resource.
- name: properties
value: object
description: |
Managed Virtual Network properties.
- name: api-version
value: string
description: The API version.
- name: If-Match
value: string
description: ETag of the managed Virtual Network entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update.