updates
Creates, updates, deletes, gets or lists a updates
resource.
Overview
Name | updates |
Type | Resource |
Id | azure_stack.update_admin.updates |
Fields
- vw_updates
- updates
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
description | text | field from the properties object |
additional_properties | text | field from the properties object |
availability_type | text | field from the properties object |
display_name | text | field from the properties object |
installed_date | text | field from the properties object |
kb_link | text | field from the properties object |
location | text | Region location of resource. |
min_oem_version_required | text | field from the properties object |
min_version_required | text | field from the properties object |
oem_version | text | field from the properties object |
package_path | text | field from the properties object |
package_size_in_mb | text | field from the properties object |
package_type | text | field from the properties object |
publisher | text | field from the properties object |
release_link | text | field from the properties object |
resourceGroupName | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
updateLocation | text | field from the properties object |
updateName | text | field from the properties object |
update_prerequisites | text | field from the properties object |
update_state_properties | text | field from the properties object |
version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Region location of resource. |
properties | object | Properties of an update. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, updateLocation, updateName | Get a specific update at an update location. |
list | SELECT | resourceGroupName, subscriptionId, updateLocation | Get the list of updates at an update locations |
apply | EXEC | resourceGroupName, subscriptionId, updateLocation, updateName | Apply a specific update at an update location. |
health_check | EXEC | resourceGroupName, subscriptionId, updateLocation, updateName | Run health check for a specified update at an update location. |
prepare | EXEC | resourceGroupName, subscriptionId, updateLocation, updateName | Prepare a specified update at an update location. |
SELECT
examples
Get the list of updates at an update locations
- vw_updates
- updates
SELECT
id,
name,
description,
additional_properties,
availability_type,
display_name,
installed_date,
kb_link,
location,
min_oem_version_required,
min_version_required,
oem_version,
package_path,
package_size_in_mb,
package_type,
publisher,
release_link,
resourceGroupName,
state,
subscriptionId,
tags,
type,
updateLocation,
updateName,
update_prerequisites,
update_state_properties,
version
FROM azure_stack.update_admin.vw_updates
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND updateLocation = '{{ updateLocation }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.update_admin.updates
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND updateLocation = '{{ updateLocation }}';