Skip to main content

resource_pools

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

Overview

Nameresource_pools
TypeResource
Idazure_isv.vmware_cloud_simple.resource_pools

Fields

NameDatatypeDescription
idtextresource pool id (privateCloudId:vsphereId)
nametext{ResourcePoolName}
full_nametextfield from the properties object
locationtextAzure region
pcNametextfield from the properties object
private_cloud_idtextfield from the properties object
regionIdtextfield from the properties object
resourcePoolNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetext{resourceProviderNamespace}/{resourceType}

Methods

NameAccessible byRequired ParamsDescription
getSELECTpcName, regionId, resourcePoolName, subscriptionIdReturns resource pool templates by its name
listSELECTpcName, regionId, subscriptionIdReturns list of resource pools in region for private cloud

SELECT examples

Returns list of resource pools in region for private cloud

SELECT
id,
name,
full_name,
location,
pcName,
private_cloud_id,
regionId,
resourcePoolName,
subscriptionId,
type
FROM azure_isv.vmware_cloud_simple.vw_resource_pools
WHERE pcName = '{{ pcName }}'
AND regionId = '{{ regionId }}'
AND subscriptionId = '{{ subscriptionId }}';