Skip to main content

node_infos

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

Overview

Namenode_infos
TypeResource
Idazure.service_fabric_dataplane.node_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
CodeVersionstring
ConfigVersionstring
FaultDomainstring
HealthStatestring
IdobjectAn internal ID used by Service Fabric to uniquely identify a node. Node Id is deterministically generated from node name.
InfrastructurePlacementIDstring
InstanceIdstring
IpAddressOrFQDNstring
IsNodeByNodeUpgradeInProgressboolean
IsSeedNodeboolean
IsStoppedboolean
Namestring
NodeDeactivationInfoobjectInformation about the node deactivation. This information is valid for a node that is undergoing deactivation or has already been deactivated.
NodeDownAtstring (date-time)
NodeDownTimeInSecondsstring
NodeStatusstring
NodeTagsarray
NodeUpAtstring (date-time)
NodeUpTimeInSecondsstring
Typestring
UpgradeDomainstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_node_infoselectnode_name, endpointtimeoutGets the information about a specific node in the Service Fabric cluster. The response includes the name, status, ID, health, uptime, and other details about the node.

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). (default: )
node_namestringThe name of the node.
timeoutinteger (int64)The server timeout for performing the operation in seconds. This timeout specifies the time duration that the client is willing to wait for the requested operation to complete. The default value for this parameter is 60 seconds.

SELECT examples

Gets the information about a specific node in the Service Fabric cluster. The response includes the name, status, ID, health, uptime, and other details about the node.

SELECT
CodeVersion,
ConfigVersion,
FaultDomain,
HealthState,
Id,
InfrastructurePlacementID,
InstanceId,
IpAddressOrFQDN,
IsNodeByNodeUpgradeInProgress,
IsSeedNode,
IsStopped,
Name,
NodeDeactivationInfo,
NodeDownAt,
NodeDownTimeInSeconds,
NodeStatus,
NodeTags,
NodeUpAt,
NodeUpTimeInSeconds,
Type,
UpgradeDomain
FROM azure.service_fabric_dataplane.node_infos
WHERE node_name = '{{ node_name }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND timeout = '{{ timeout }}'
;