/// <summary>
 /// Get integration runtime node IP address
 /// </summary>
 /// <remarks>
 /// Get the IP address of an integration runtime node
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='integrationRuntimeName'>
 /// Integration runtime name
 /// </param>
 /// <param name='nodeName'>
 /// Integration runtime node name
 /// </param>
 public static IntegrationRuntimeNodeIpAddress Get(this IIntegrationRuntimeNodeIpAddressOperations operations, string resourceGroupName, string workspaceName, string integrationRuntimeName, string nodeName)
 {
     return(operations.GetAsync(resourceGroupName, workspaceName, integrationRuntimeName, nodeName).GetAwaiter().GetResult());
 }