Skip to main content

available_os

Creates, updates, deletes, gets or lists a available_os resource.

Overview

Nameavailable_os
TypeResource
Idazure_extras.test_base.available_os

Fields

NameDatatypeDescription
availableOSResourceNametextfield from the properties object
insider_channeltextfield from the properties object
osUpdateTypetextfield from the properties object
os_idtextfield from the properties object
os_nametextfield from the properties object
os_platformtextfield from the properties object
os_update_typetextfield from the properties object
os_versiontextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTavailableOSResourceName, resourceGroupName, subscriptionId, testBaseAccountNameGets an available OS to run a package under a Test Base Account.
listSELECTosUpdateType, resourceGroupName, subscriptionId, testBaseAccountNameLists 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.

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 }}';