Skip to main content

node_extensions

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

Overview

Namenode_extensions
TypeResource
Idazure.batch_dataplane.node_extensions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
instanceViewobjectThe vm extension instance view.
provisioningStatestringThe provisioning state of the virtual machine extension.
vmExtensionobjectThe configuration for virtual machine extensions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_node_extensionselectpool_id, node_id, extension_name, endpointtimeOut, ocp-date, $selectGets information about the specified Compute Node Extension. Gets information about the specified Compute Node Extension.
list_node_extensionsselectpool_id, node_id, endpointtimeOut, ocp-date, maxresults, $selectLists the Compute Nodes Extensions in the specified Pool. Lists the Compute Nodes Extensions in the specified Pool.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )
extension_namestringThe name of the Compute Node Extension that you want to get information about. Required.
node_idstringThe ID of the Compute Node that you want to list extensions. Required.
pool_idstringThe ID of the Pool that contains Compute Node. Required.
$selectarrayAn OData $select clause. Default value is None.
maxresultsintegerThe maximum number of items to return in the response. A maximum of 1000 applications can be returned. Default value is None.
ocp-datestringThe time the request was issued. Client libraries typically set this to the current system clock time; set it explicitly if you are calling the REST API directly. Default value is None.
timeOutintegerThe maximum time that the server can spend processing the request, in seconds. The default is 30 seconds. If the value is larger than 30, the default will be used instead.". Default value is None.

SELECT examples

Gets information about the specified Compute Node Extension. Gets information about the specified Compute Node Extension.

SELECT
instanceView,
provisioningState,
vmExtension
FROM azure.batch_dataplane.node_extensions
WHERE pool_id = '{{ pool_id }}' -- required
AND node_id = '{{ node_id }}' -- required
AND extension_name = '{{ extension_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeOut = '{{ timeOut }}'
AND ocp-date = '{{ ocp-date }}'
AND $select = '{{ $select }}'
;