< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Access()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\AuthenticationTokenSettings.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The settings for an authentication token that the Task can use to
 20    /// perform Batch service operations.
 21    /// </summary>
 22    public partial class AuthenticationTokenSettings
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the AuthenticationTokenSettings
 26        /// class.
 27        /// </summary>
 111828        public AuthenticationTokenSettings()
 29        {
 30            CustomInit();
 111831        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the AuthenticationTokenSettings
 35        /// class.
 36        /// </summary>
 37        /// <param name="access">The Batch resources to which the token grants
 38        /// access.</param>
 039        public AuthenticationTokenSettings(IList<AccessScope> access = default(IList<AccessScope>))
 40        {
 041            Access = access;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets the Batch resources to which the token grants access.
 52        /// </summary>
 53        /// <remarks>
 54        /// The authentication token grants access to a limited set of Batch
 55        /// service operations. Currently the only supported value for the
 56        /// access property is 'job', which grants access to all operations
 57        /// related to the Job which contains the Task.
 58        /// </remarks>
 59        [JsonProperty(PropertyName = "access")]
 395060        public IList<AccessScope> Access { get; set; }
 61
 62    }
 63}

Methods/Properties

.ctor()
.ctor(...)
get_Access()