private_clouds
Creates, updates, deletes, gets or lists a private_clouds
resource.
Overview
Name | private_clouds |
Type | Resource |
Id | azure_isv.vmware_cloud_simple.private_clouds |
Fields
The following fields are returned by SELECT
queries:
- get
- list
successful operation
Name | Datatype | Description |
---|---|---|
id | string | Azure Id, e.g. "/subscriptions/4da99247-a172-4ed6-8ae9-ebed2d12f839/providers/Microsoft.VMwareCloudSimple/privateClouds/cloud123" |
name | string | Private cloud name |
location | string | Location where private cloud created, e.g "westus" |
properties | object | Private cloud properties |
type | string | Azure Resource type |
successful operation
Name | Datatype | Description |
---|---|---|
id | string | Azure Id, e.g. "/subscriptions/4da99247-a172-4ed6-8ae9-ebed2d12f839/providers/Microsoft.VMwareCloudSimple/privateClouds/cloud123" |
name | string | Private cloud name |
location | string | Location where private cloud created, e.g "westus" |
properties | object | Private cloud properties |
type | string | Azure Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , pcName , regionId | api-version | Returns private cloud by its name |
list | select | subscriptionId , regionId | api-version | Returns list of private clouds in particular region |
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 |
---|---|---|
pcName | string | The private cloud name |
regionId | string | The region Id (westus, eastus) |
subscriptionId | string | The subscription ID. |
api-version | string | Client API version. |
SELECT
examples
- get
- list
Returns private cloud by its name
SELECT
id,
name,
location,
properties,
type
FROM azure_isv.vmware_cloud_simple.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND pcName = '{{ pcName }}' -- required
AND regionId = '{{ regionId }}' -- required
AND api-version = '{{ api-version }}'
;
Returns list of private clouds in particular region
SELECT
id,
name,
location,
properties,
type
FROM azure_isv.vmware_cloud_simple.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND regionId = '{{ regionId }}' -- required
AND api-version = '{{ api-version }}'
;