update_locations
Creates, updates, deletes, gets or lists a update_locations
resource.
Overview
Name | update_locations |
Type | Resource |
Id | azure_stack.update_admin.update_locations |
Fields
- vw_update_locations
- update_locations
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
current_oem_version | text | field from the properties object |
current_version | text | field from the properties object |
hardware_model | text | field from the properties object |
last_checked | text | field from the properties object |
last_updated | text | field from the properties object |
location | text | Region location of resource. |
oem_family | text | field from the properties object |
package_versions | 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 |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Region location of resource. |
properties | object | Model which holds information related to update location. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, updateLocation | Get an update location based on name. |
list | SELECT | resourceGroupName, subscriptionId | Get the list of update locations. |
SELECT
examples
Get the list of update locations.
- vw_update_locations
- update_locations
SELECT
id,
name,
current_oem_version,
current_version,
hardware_model,
last_checked,
last_updated,
location,
oem_family,
package_versions,
resourceGroupName,
state,
subscriptionId,
tags,
type,
updateLocation
FROM azure_stack.update_admin.vw_update_locations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.update_admin.update_locations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';