vh_ds
Creates, updates, deletes, gets or lists a vh_ds
resource.
Overview
Name | vh_ds |
Type | Resource |
Id | azure_extras.test_base.vh_ds |
Fields
- vw_vh_ds
- vh_ds
Name | Datatype | Description |
---|---|---|
creation_time | text | field from the properties object |
file_name | text | field from the properties object |
file_size | text | field from the properties object |
path | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
vhdName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The Test Base VHD properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, testBaseAccountName, vhdName | Gets a Test Base VHD. |
list_by_test_base_account | SELECT | resourceGroupName, subscriptionId, testBaseAccountName | Lists all the VHDs under a test base account. |
delete | DELETE | resourceGroupName, subscriptionId, testBaseAccountName, vhdName | Deletes a Test Base VHD. |
SELECT
examples
Lists all the VHDs under a test base account.
- vw_vh_ds
- vh_ds
SELECT
creation_time,
file_name,
file_size,
path,
provisioning_state,
resourceGroupName,
status,
subscriptionId,
testBaseAccountName,
vhdName
FROM azure_extras.test_base.vw_vh_ds
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';
SELECT
properties
FROM azure_extras.test_base.vh_ds
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';
DELETE
example
Deletes the specified vh_ds
resource.
/*+ delete */
DELETE FROM azure_extras.test_base.vh_ds
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}'
AND vhdName = '{{ vhdName }}';