Skip to main content

os_updates

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

Overview

Nameos_updates
TypeResource
Idazure_extras.test_base.os_updates

Fields

NameDatatypeDescription
build_revisiontextfield from the properties object
build_versiontextfield from the properties object
custom_image_display_nametextfield from the properties object
custom_image_idtextfield from the properties object
flighting_ringtextfield from the properties object
inplace_upgrade_baseline_propertiestextfield from the properties object
osUpdateResourceNametextfield from the properties object
osUpdateTypetextfield from the properties object
os_nametextfield from the properties object
packageNametextfield from the properties object
releasetextfield from the properties object
release_version_datetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
testBaseAccountNametextfield from the properties object
typetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTosUpdateResourceName, packageName, resourceGroupName, subscriptionId, testBaseAccountNameGets an OS Update by name in which the package was tested before.
listSELECTosUpdateType, packageName, resourceGroupName, subscriptionId, testBaseAccountNameLists the OS Updates in which the package were tested before.

SELECT examples

Lists the OS Updates in which the package were tested before.

SELECT
build_revision,
build_version,
custom_image_display_name,
custom_image_id,
flighting_ring,
inplace_upgrade_baseline_properties,
osUpdateResourceName,
osUpdateType,
os_name,
packageName,
release,
release_version_date,
resourceGroupName,
subscriptionId,
testBaseAccountName,
type
FROM azure_extras.test_base.vw_os_updates
WHERE osUpdateType = '{{ osUpdateType }}'
AND packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';