Skip to main content

provisioned_networks

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

Overview

Nameprovisioned_networks
TypeResource
Idazure_isv.avs.provisioned_networks

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.
addressPrefixstringThe address prefixes of the provisioned network in CIDR notation.
networkTypestringThe type of network provisioned. Known values are: "esxManagement", "esxReplication", "hcxManagement", "hcxUplink", "vcenterManagement", "vmotion", and "vsan". (esxManagement, esxReplication, hcxManagement, hcxUplink, vcenterManagement, vmotion, vsan)
provisioningStatestringThe provisioning state of the resource. Known values are: "Succeeded", "Failed", and "Canceled". (Succeeded, Failed, Canceled)
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, private_cloud_name, provisioned_network_name, subscription_idGet a ProvisionedNetwork.
listselectresource_group_name, private_cloud_name, subscription_idList ProvisionedNetwork resources by PrivateCloud.

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
private_cloud_namestringName of the private cloud. Required.
provisioned_network_namestringName of the cloud link. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Get a ProvisionedNetwork.

SELECT
id,
name,
addressPrefix,
networkType,
provisioningState,
systemData,
type
FROM azure_isv.avs.provisioned_networks
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND private_cloud_name = '{{ private_cloud_name }}' -- required
AND provisioned_network_name = '{{ provisioned_network_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;