< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.ComputeNodeInformation
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\ComputeNodeInformation.cs
Covered lines:8
Uncovered lines:8
Coverable lines:16
Total lines:101
Line coverage:50% (8 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AffinityId()-100%100%
get_NodeUrl()-100%100%
get_PoolId()-100%100%
get_NodeId()-100%100%
get_TaskRootDirectory()-100%100%
get_TaskRootDirectoryUrl()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\ComputeNodeInformation.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Information about the Compute Node on which a Task ran.
 18    /// </summary>
 19    public partial class ComputeNodeInformation
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the ComputeNodeInformation class.
 23        /// </summary>
 48624        public ComputeNodeInformation()
 25        {
 26            CustomInit();
 48627        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the ComputeNodeInformation class.
 31        /// </summary>
 32        /// <param name="affinityId">An identifier for the Node on which the
 33        /// Task ran, which can be passed when adding a Task to request that
 34        /// the Task be scheduled on this Compute Node.</param>
 35        /// <param name="nodeUrl">The URL of the Compute Node on which the Task
 36        /// ran. </param>
 37        /// <param name="poolId">The ID of the Pool on which the Task
 38        /// ran.</param>
 39        /// <param name="nodeId">The ID of the Compute Node on which the Task
 40        /// ran.</param>
 41        /// <param name="taskRootDirectory">The root directory of the Task on
 42        /// the Compute Node.</param>
 43        /// <param name="taskRootDirectoryUrl">The URL to the root directory of
 44        /// the Task on the Compute Node.</param>
 045        public ComputeNodeInformation(string affinityId = default(string), string nodeUrl = default(string), string pool
 46        {
 047            AffinityId = affinityId;
 048            NodeUrl = nodeUrl;
 049            PoolId = poolId;
 050            NodeId = nodeId;
 051            TaskRootDirectory = taskRootDirectory;
 052            TaskRootDirectoryUrl = taskRootDirectoryUrl;
 53            CustomInit();
 054        }
 55
 56        /// <summary>
 57        /// An initialization method that performs custom operations like setting defaults
 58        /// </summary>
 59        partial void CustomInit();
 60
 61        /// <summary>
 62        /// Gets or sets an identifier for the Node on which the Task ran,
 63        /// which can be passed when adding a Task to request that the Task be
 64        /// scheduled on this Compute Node.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "affinityId")]
 123067        public string AffinityId { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets the URL of the Compute Node on which the Task ran.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "nodeUrl")]
 122273        public string NodeUrl { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the ID of the Pool on which the Task ran.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "poolId")]
 123579        public string PoolId { get; set; }
 80
 81        /// <summary>
 82        /// Gets or sets the ID of the Compute Node on which the Task ran.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "nodeId")]
 121185        public string NodeId { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets the root directory of the Task on the Compute Node.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "taskRootDirectory")]
 122691        public string TaskRootDirectory { get; set; }
 92
 93        /// <summary>
 94        /// Gets or sets the URL to the root directory of the Task on the
 95        /// Compute Node.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "taskRootDirectoryUrl")]
 122598        public string TaskRootDirectoryUrl { get; set; }
 99
 100    }
 101}