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
- vw_private_clouds
- private_clouds
Name | Datatype | Description |
---|---|---|
id | text | Azure Id, e.g. "/subscriptions/4da99247-a172-4ed6-8ae9-ebed2d12f839/providers/Microsoft.VMwareCloudSimple/privateClouds/cloud123" |
name | text | Private cloud name |
availability_zone_id | text | field from the properties object |
availability_zone_name | text | field from the properties object |
clusters_number | text | field from the properties object |
created_by | text | field from the properties object |
created_on | text | field from the properties object |
dns_servers | text | field from the properties object |
expires | text | field from the properties object |
location | text | Location where private cloud created, e.g "westus" |
nsx_type | text | field from the properties object |
pcName | text | field from the properties object |
placement_group_id | text | field from the properties object |
placement_group_name | text | field from the properties object |
private_cloud_id | text | field from the properties object |
regionId | text | field from the properties object |
resource_pools | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
total_cpu_cores | text | field from the properties object |
total_nodes | text | field from the properties object |
total_ram | text | field from the properties object |
total_storage | text | field from the properties object |
type | text | Azure Resource type |
v_sphere_version | text | field from the properties object |
vcenter_fqdn | text | field from the properties object |
vcenter_refid | text | field from the properties object |
virtual_machine_templates | text | field from the properties object |
virtual_networks | text | field from the properties object |
vr_ops_enabled | text | field from the properties object |
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 | Properties of private |
type | string | Azure Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | pcName, regionId, subscriptionId | Returns private cloud by its name |
list | SELECT | regionId, subscriptionId | Returns list of private clouds in particular region |
SELECT
examples
Returns list of private clouds in particular region
- vw_private_clouds
- private_clouds
SELECT
id,
name,
availability_zone_id,
availability_zone_name,
clusters_number,
created_by,
created_on,
dns_servers,
expires,
location,
nsx_type,
pcName,
placement_group_id,
placement_group_name,
private_cloud_id,
regionId,
resource_pools,
state,
subscriptionId,
total_cpu_cores,
total_nodes,
total_ram,
total_storage,
type,
v_sphere_version,
vcenter_fqdn,
vcenter_refid,
virtual_machine_templates,
virtual_networks,
vr_ops_enabled
FROM azure_isv.vmware_cloud_simple.vw_private_clouds
WHERE regionId = '{{ regionId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure_isv.vmware_cloud_simple.private_clouds
WHERE regionId = '{{ regionId }}'
AND subscriptionId = '{{ subscriptionId }}';