os_updates
Creates, updates, deletes, gets or lists a os_updates
resource.
Overview
Name | os_updates |
Type | Resource |
Id | azure_extras.test_base.os_updates |
Fields
- vw_os_updates
- os_updates
Name | Datatype | Description |
---|---|---|
build_revision | text | field from the properties object |
build_version | text | field from the properties object |
custom_image_display_name | text | field from the properties object |
custom_image_id | text | field from the properties object |
flighting_ring | text | field from the properties object |
inplace_upgrade_baseline_properties | text | field from the properties object |
osUpdateResourceName | text | field from the properties object |
osUpdateType | text | field from the properties object |
os_name | text | field from the properties object |
packageName | text | field from the properties object |
release | text | field from the properties object |
release_version_date | 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 |
type | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Properties of an OS Update. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | osUpdateResourceName, packageName, resourceGroupName, subscriptionId, testBaseAccountName | Gets an OS Update by name in which the package was tested before. |
list | SELECT | osUpdateType, packageName, resourceGroupName, subscriptionId, testBaseAccountName | Lists the OS Updates in which the package were tested before. |
SELECT
examples
Lists the OS Updates in which the package were tested before.
- vw_os_updates
- os_updates
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 }}';
SELECT
properties
FROM azure_extras.test_base.os_updates
WHERE osUpdateType = '{{ osUpdateType }}'
AND packageName = '{{ packageName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND testBaseAccountName = '{{ testBaseAccountName }}';