< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_AdditionalProperties()-0%100%
get_ResourceAccess()-0%100%
get_ResourceAppId()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\RequiredResourceAccess.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 the set of OAuth 2.0 permission scopes and app roles under
 21    /// the specified resource that an application requires access to. The
 22    /// specified OAuth 2.0 permission scopes may be requested by client
 23    /// applications (through the requiredResourceAccess collection) when
 24    /// calling a resource application. The requiredResourceAccess property of
 25    /// the Application entity is a collection of RequiredResourceAccess.
 26    /// </summary>
 27    public partial class RequiredResourceAccess
 28    {
 29        /// <summary>
 30        /// Initializes a new instance of the RequiredResourceAccess class.
 31        /// </summary>
 032        public RequiredResourceAccess()
 33        {
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// Initializes a new instance of the RequiredResourceAccess class.
 39        /// </summary>
 40        /// <param name="resourceAccess">The list of OAuth2.0 permission scopes
 41        /// and app roles that the application requires from the specified
 42        /// resource.</param>
 43        /// <param name="additionalProperties">Unmatched properties from the
 44        /// message are deserialized this collection</param>
 45        /// <param name="resourceAppId">The unique identifier for the resource
 46        /// that the application requires access to. This should be equal to
 47        /// the appId declared on the target resource application.</param>
 048        public RequiredResourceAccess(IList<ResourceAccess> resourceAccess, IDictionary<string, object> additionalProper
 49        {
 050            AdditionalProperties = additionalProperties;
 051            ResourceAccess = resourceAccess;
 052            ResourceAppId = resourceAppId;
 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 unmatched properties from the message are deserialized
 63        /// this collection
 64        /// </summary>
 65        [JsonExtensionData]
 066        public IDictionary<string, object> AdditionalProperties { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the list of OAuth2.0 permission scopes and app roles
 70        /// that the application requires from the specified resource.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "resourceAccess")]
 073        public IList<ResourceAccess> ResourceAccess { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the unique identifier for the resource that the
 77        /// application requires access to. This should be equal to the appId
 78        /// declared on the target resource application.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "resourceAppId")]
 081        public string ResourceAppId { get; set; }
 82
 83        /// <summary>
 84        /// Validate the object.
 85        /// </summary>
 86        /// <exception cref="ValidationException">
 87        /// Thrown if validation fails
 88        /// </exception>
 89        public virtual void Validate()
 90        {
 091            if (ResourceAccess == null)
 92            {
 093                throw new ValidationException(ValidationRules.CannotBeNull, "ResourceAccess");
 94            }
 095            if (ResourceAccess != null)
 96            {
 097                foreach (var element in ResourceAccess)
 98                {
 099                    if (element != null)
 100                    {
 0101                        element.Validate();
 102                    }
 103                }
 104            }
 0105        }
 106    }
 107}