Skip to main content

machines

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

Overview

Namemachines
TypeResource
Idazure.aks.machines

Fields

NameDatatypeDescription
idtextResource ID.
nametextThe name of the resource that is unique within a resource group. This name can be used to access the resource.
agentPoolNametextfield from the properties object
machineNametextfield from the properties object
networktextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
resource_idtextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTagentPoolName, machineName, resourceGroupName, resourceName, subscriptionId
listSELECTagentPoolName, resourceGroupName, resourceName, subscriptionId

SELECT examples

SELECT
id,
name,
agentPoolName,
machineName,
network,
resourceGroupName,
resourceName,
resource_id,
subscriptionId,
type
FROM azure.aks.vw_machines
WHERE agentPoolName = '{{ agentPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';