available_os
Creates, updates, deletes, gets or lists a available_os
resource.
Overview
Name | available_os |
Type | Resource |
Id | azure_extras.test_base.available_os |
Fields
- vw_available_os
- available_os
Name | Datatype | Description |
---|---|---|
availableOSResourceName | text | field from the properties object |
insider_channel | text | field from the properties object |
osUpdateType | text | field from the properties object |
os_id | text | field from the properties object |
os_name | text | field from the properties object |
os_platform | text | field from the properties object |
os_update_type | text | field from the properties object |
os_version | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
testBaseAccountName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The Available OS properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | availableOSResourceName, resourceGroupName, subscriptionId, testBaseAccountName | Gets an available OS to run a package under a Test Base Account. |
list | SELECT | osUpdateType, resourceGroupName, subscriptionId, testBaseAccountName | Lists all the available OSs to run a package under a Test Base Account. |
SELECT
examples
Lists all the available OSs to run a package under a Test Base Account.
- vw_available_os
- available_os
SELECT
availableOSResourceName,
insider_channel,
osUpdateType,
os_id,
os_name,
os_platform,
os_update_type,
os_version,
resourceGroupName,
subscriptionId,
testBaseAccountName
FROM azure_extras.test_base.vw_available_os
WHERE osUpdateType = '{{ osUpdateType }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';
SELECT
properties
FROM azure_extras.test_base.available_os
WHERE osUpdateType = '{{ osUpdateType }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';