private_clouds
Creates, updates, deletes, gets or lists a private_clouds resource.
Overview
| Name | private_clouds |
| Type | Resource |
| Id | azure_isv.vmware.private_clouds |
Fields
The following fields are returned by SELECT queries:
- get
- list
- list_in_subscription
successful operation
| Name | Datatype | Description |
|---|---|---|
location | string | Resource location |
properties | object | The properties of a private cloud resource |
sku | object | The resource model definition representing SKU |
tags | object | Resource tags |
successful operation
| Name | Datatype | Description |
|---|---|---|
location | string | Resource location |
properties | object | The properties of a private cloud resource |
sku | object | The resource model definition representing SKU |
tags | object | Resource tags |
successful operation
| Name | Datatype | Description |
|---|---|---|
location | string | Resource location |
properties | object | The properties of a private cloud resource |
sku | object | The resource model definition representing SKU |
tags | object | Resource tags |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, privateCloudName | ||
list | select | subscriptionId, resourceGroupName | ||
list_in_subscription | select | subscriptionId | ||
create_or_update | insert | subscriptionId, resourceGroupName, privateCloudName, data__location, data__sku, data__properties | ||
update | update | subscriptionId, resourceGroupName, privateCloudName | ||
delete | delete | subscriptionId, resourceGroupName, privateCloudName |
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 |
|---|---|---|
privateCloudName | string | Name of the private cloud |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
- list
- list_in_subscription
successful operation
SELECT
location,
properties,
sku,
tags
FROM azure_isv.vmware.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND privateCloudName = '{{ privateCloudName }}' -- required
;
successful operation
SELECT
location,
properties,
sku,
tags
FROM azure_isv.vmware.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
successful operation
SELECT
location,
properties,
sku,
tags
FROM azure_isv.vmware.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT examples
- create_or_update
- Manifest
No description available.
INSERT INTO azure_isv.vmware.private_clouds (
data__location,
data__tags,
data__sku,
data__properties,
subscriptionId,
resourceGroupName,
privateCloudName
)
SELECT
'{{ location }}' /* required */,
'{{ tags }}',
'{{ sku }}' /* required */,
'{{ properties }}' /* required */,
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ privateCloudName }}'
RETURNING
location,
properties,
sku,
tags
;
# Description fields are for documentation purposes
- name: private_clouds
props:
- name: subscriptionId
value: string
description: Required parameter for the private_clouds resource.
- name: resourceGroupName
value: string
description: Required parameter for the private_clouds resource.
- name: privateCloudName
value: string
description: Required parameter for the private_clouds resource.
- name: location
value: string
description: |
Resource location
- name: tags
value: object
description: |
Resource tags
- name: sku
value: object
description: |
The resource model definition representing SKU
- name: properties
value: object
description: |
The properties of a private cloud resource
UPDATE examples
- update
No description available.
UPDATE azure_isv.vmware.private_clouds
SET
data__tags = '{{ tags }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND privateCloudName = '{{ privateCloudName }}' --required
RETURNING
location,
properties,
sku,
tags;
DELETE examples
- delete
No description available.
DELETE FROM azure_isv.vmware.private_clouds
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND privateCloudName = '{{ privateCloudName }}' --required
;