Package version:

Interface IntegrationRuntimeNodes

Interface representing a IntegrationRuntimeNodes.

interface IntegrationRuntimeNodes {
    delete(resourceGroupName: string, factoryName: string, integrationRuntimeName: string, nodeName: string, options?: IntegrationRuntimeNodesDeleteOptionalParams): Promise<void>;
    get(resourceGroupName: string, factoryName: string, integrationRuntimeName: string, nodeName: string, options?: IntegrationRuntimeNodesGetOptionalParams): Promise<SelfHostedIntegrationRuntimeNode>;
    getIpAddress(resourceGroupName: string, factoryName: string, integrationRuntimeName: string, nodeName: string, options?: IntegrationRuntimeNodesGetIpAddressOptionalParams): Promise<IntegrationRuntimeNodeIpAddress>;
    update(resourceGroupName: string, factoryName: string, integrationRuntimeName: string, nodeName: string, updateIntegrationRuntimeNodeRequest: UpdateIntegrationRuntimeNodeRequest, options?: IntegrationRuntimeNodesUpdateOptionalParams): Promise<SelfHostedIntegrationRuntimeNode>;
}

Methods

  • Deletes a self-hosted integration runtime node.

    Parameters

    • resourceGroupName: string

      The resource group name.

    • factoryName: string

      The factory name.

    • integrationRuntimeName: string

      The integration runtime name.

    • nodeName: string

      The integration runtime node name.

    • Optionaloptions: IntegrationRuntimeNodesDeleteOptionalParams

      The options parameters.

    Returns Promise<void>