Skip to main content

hcx_enterprise_sites

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

Overview

Namehcx_enterprise_sites
TypeResource
Idazure_isv.vmware.hcx_enterprise_sites

Fields

The following fields are returned by SELECT queries:

successful operation

NameDatatypeDescription
idstringResource ID.
namestringResource name.
propertiesobjectThe properties of an HCX Enterprise Site resource
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, privateCloudName, hcxEnterpriseSiteName
listselectsubscriptionId, resourceGroupName, privateCloudName
create_or_updateinsertsubscriptionId, resourceGroupName, privateCloudName, hcxEnterpriseSiteName
deletedeletesubscriptionId, resourceGroupName, privateCloudName, hcxEnterpriseSiteName

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
hcxEnterpriseSiteNamestringName of the HCX Enterprise Site in the private cloud
privateCloudNamestringName of the private cloud
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

successful operation

SELECT
id,
name,
properties,
type
FROM azure_isv.vmware.hcx_enterprise_sites
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND privateCloudName = '{{ privateCloudName }}' -- required
AND hcxEnterpriseSiteName = '{{ hcxEnterpriseSiteName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure_isv.vmware.hcx_enterprise_sites (
subscriptionId,
resourceGroupName,
privateCloudName,
hcxEnterpriseSiteName
)
SELECT
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ privateCloudName }}',
'{{ hcxEnterpriseSiteName }}'
RETURNING
id,
name,
properties,
type
;

DELETE examples

No description available.

DELETE FROM azure_isv.vmware.hcx_enterprise_sites
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND privateCloudName = '{{ privateCloudName }}' --required
AND hcxEnterpriseSiteName = '{{ hcxEnterpriseSiteName }}' --required
;