provisioned_networks
Creates, updates, deletes, gets or lists a provisioned_networks resource.
Overview
| Name | provisioned_networks |
| Type | Resource |
| Id | azure_isv.avs.provisioned_networks |
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. |
addressPrefix | string | The address prefixes of the provisioned network in CIDR notation. |
networkType | string | The type of network provisioned. Known values are: "esxManagement", "esxReplication", "hcxManagement", "hcxUplink", "vcenterManagement", "vmotion", and "vsan". (esxManagement, esxReplication, hcxManagement, hcxUplink, vcenterManagement, vmotion, vsan) |
provisioningState | string | The provisioning state of the resource. Known values are: "Succeeded", "Failed", and "Canceled". (Succeeded, Failed, Canceled) |
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. |
addressPrefix | string | The address prefixes of the provisioned network in CIDR notation. |
networkType | string | The type of network provisioned. Known values are: "esxManagement", "esxReplication", "hcxManagement", "hcxUplink", "vcenterManagement", "vmotion", and "vsan". (esxManagement, esxReplication, hcxManagement, hcxUplink, vcenterManagement, vmotion, vsan) |
provisioningState | string | The provisioning state of the resource. Known values are: "Succeeded", "Failed", and "Canceled". (Succeeded, Failed, Canceled) |
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, private_cloud_name, provisioned_network_name, subscription_id | Get a ProvisionedNetwork. | |
list | select | resource_group_name, private_cloud_name, subscription_id | List 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.
| Name | Datatype | Description |
|---|---|---|
private_cloud_name | string | Name of the private cloud. Required. |
provisioned_network_name | string | Name of the cloud link. 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 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
;
List ProvisionedNetwork resources by PrivateCloud.
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 subscription_id = '{{ subscription_id }}' -- required
;