コード例 #1
0
        private void CaptureIntegrationRuntimeNodes_Update()
        {
            interceptor.CurrentExampleName = "IntegrationRuntimeNodes_Update";

            SelfHostedIntegrationRuntimeNode response = client.IntegrationRuntimeNodes.Update(secrets.ResourceGroupName, secrets.FactoryName, integrationRuntimeName, "Node_1",
                                                                                              new UpdateIntegrationRuntimeNodeRequest
            {
                ConcurrentJobsLimit = 2
            });
        }
コード例 #2
0
        public PSSelfHostedIntegrationRuntimeNode(
            string resourceGroupName,
            string factoryName,
            string integrationRuntimeName,
            string name,
            SelfHostedIntegrationRuntimeNode node,
            string ipAddress)
        {
            if (node == null)
            {
                throw new PSArgumentNullException("node");
            }

            ResourceGroupName      = resourceGroupName;
            DataFactoryName        = factoryName;
            IntegrationRuntimeName = integrationRuntimeName;
            Name      = name;
            _node     = node;
            IpAddress = ipAddress;
        }