< Summary

Class:Microsoft.Azure.Graph.RBAC.Models.ResourceAccess
Assembly:Microsoft.Azure.Graph.RBAC
File(s):C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\ResourceAccess.cs
Covered lines:0
Uncovered lines:13
Coverable lines:13
Total lines:94
Line coverage:0% (0 of 13)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_AdditionalProperties()-0%100%
get_Id()-0%100%
get_Type()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\ResourceAccess.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.Graph.RBAC.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// Specifies an OAuth 2.0 permission scope or an app role that an
 21    /// application requires. The resourceAccess property of the
 22    /// RequiredResourceAccess type is a collection of ResourceAccess.
 23    /// </summary>
 24    public partial class ResourceAccess
 25    {
 26        /// <summary>
 27        /// Initializes a new instance of the ResourceAccess class.
 28        /// </summary>
 029        public ResourceAccess()
 30        {
 31            CustomInit();
 032        }
 33
 34        /// <summary>
 35        /// Initializes a new instance of the ResourceAccess class.
 36        /// </summary>
 37        /// <param name="id">The unique identifier for one of the
 38        /// OAuth2Permission or AppRole instances that the resource application
 39        /// exposes.</param>
 40        /// <param name="additionalProperties">Unmatched properties from the
 41        /// message are deserialized this collection</param>
 42        /// <param name="type">Specifies whether the id property references an
 43        /// OAuth2Permission or an AppRole. Possible values are "scope" or
 44        /// "role".</param>
 045        public ResourceAccess(string id, IDictionary<string, object> additionalProperties = default(IDictionary<string, 
 46        {
 047            AdditionalProperties = additionalProperties;
 048            Id = id;
 049            Type = type;
 50            CustomInit();
 051        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58        /// <summary>
 59        /// Gets or sets unmatched properties from the message are deserialized
 60        /// this collection
 61        /// </summary>
 62        [JsonExtensionData]
 063        public IDictionary<string, object> AdditionalProperties { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets the unique identifier for one of the OAuth2Permission
 67        /// or AppRole instances that the resource application exposes.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "id")]
 070        public string Id { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets specifies whether the id property references an
 74        /// OAuth2Permission or an AppRole. Possible values are "scope" or
 75        /// "role".
 76        /// </summary>
 77        [JsonProperty(PropertyName = "type")]
 078        public string Type { get; set; }
 79
 80        /// <summary>
 81        /// Validate the object.
 82        /// </summary>
 83        /// <exception cref="ValidationException">
 84        /// Thrown if validation fails
 85        /// </exception>
 86        public virtual void Validate()
 87        {
 088            if (Id == null)
 89            {
 090                throw new ValidationException(ValidationRules.CannotBeNull, "Id");
 91            }
 092        }
 93    }
 94}