< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_PoolId()-100%100%
get_AutoPoolSpecification()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\PoolInformation.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    /// Specifies how a Job should be assigned to a Pool.
 18    /// </summary>
 19    public partial class PoolInformation
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the PoolInformation class.
 23        /// </summary>
 180924        public PoolInformation()
 25        {
 26            CustomInit();
 180927        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the PoolInformation class.
 31        /// </summary>
 32        /// <param name="poolId">The ID of an existing Pool. All the Tasks of
 33        /// the Job will run on the specified Pool.</param>
 34        /// <param name="autoPoolSpecification">Characteristics for a temporary
 35        /// 'auto pool'. The Batch service will create this auto Pool when the
 36        /// Job is submitted.</param>
 437        public PoolInformation(string poolId = default(string), AutoPoolSpecification autoPoolSpecification = default(Au
 38        {
 439            PoolId = poolId;
 440            AutoPoolSpecification = autoPoolSpecification;
 41            CustomInit();
 442        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets or sets the ID of an existing Pool. All the Tasks of the Job
 51        /// will run on the specified Pool.
 52        /// </summary>
 53        /// <remarks>
 54        /// You must ensure that the Pool referenced by this property exists.
 55        /// If the Pool does not exist at the time the Batch service tries to
 56        /// schedule a Job, no Tasks for the Job will run until you create a
 57        /// Pool with that id. Note that the Batch service will not reject the
 58        /// Job request; it will simply not run Tasks until the Pool exists.
 59        /// You must specify either the Pool ID or the auto Pool specification,
 60        /// but not both.
 61        /// </remarks>
 62        [JsonProperty(PropertyName = "poolId")]
 283663        public string PoolId { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets characteristics for a temporary 'auto pool'. The Batch
 67        /// service will create this auto Pool when the Job is submitted.
 68        /// </summary>
 69        /// <remarks>
 70        /// If auto Pool creation fails, the Batch service moves the Job to a
 71        /// completed state, and the Pool creation error is set in the Job's
 72        /// scheduling error property. The Batch service manages the lifetime
 73        /// (both creation and, unless keepAlive is specified, deletion) of the
 74        /// auto Pool. Any user actions that affect the lifetime of the auto
 75        /// Pool while the Job is active will result in unexpected behavior.
 76        /// You must specify either the Pool ID or the auto Pool specification,
 77        /// but not both.
 78        /// </remarks>
 79        [JsonProperty(PropertyName = "autoPoolSpecification")]
 280980        public AutoPoolSpecification AutoPoolSpecification { get; set; }
 81
 82    }
 83}