< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Odatatype()-0%100%
get_ClientId()-0%100%
get_ObjectId()-0%100%
get_ConsentType()-0%100%
get_PrincipalId()-0%100%
get_ResourceId()-0%100%
get_Scope()-0%100%
get_StartTime()-0%100%
get_ExpiryTime()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\OAuth2PermissionGrant.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 Newtonsoft.Json;
 14    using System.Linq;
 15
 16    public partial class OAuth2PermissionGrant
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the OAuth2PermissionGrant class.
 20        /// </summary>
 021        public OAuth2PermissionGrant()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the OAuth2PermissionGrant class.
 28        /// </summary>
 29        /// <param
 30        /// name="odatatype">Microsoft.DirectoryServices.OAuth2PermissionGrant</param>
 31        /// <param name="clientId">The id of the resource's service principal
 32        /// granted consent to impersonate the user when accessing the resource
 33        /// (represented by the resourceId property).</param>
 34        /// <param name="objectId">The id of the permission grant</param>
 35        /// <param name="consentType">Indicates if consent was provided by the
 36        /// administrator (on behalf of the organization) or by an individual.
 37        /// Possible values include: 'AllPrincipals', 'Principal'</param>
 38        /// <param name="principalId">When consent type is Principal, this
 39        /// property specifies the id of the user that granted consent and
 40        /// applies only for that user.</param>
 41        /// <param name="resourceId">Object Id of the resource you want to
 42        /// grant</param>
 43        /// <param name="scope">Specifies the value of the scope claim that the
 44        /// resource application should expect in the OAuth 2.0 access token.
 45        /// For example, User.Read</param>
 46        /// <param name="startTime">Start time for TTL</param>
 47        /// <param name="expiryTime">Expiry time for TTL</param>
 048        public OAuth2PermissionGrant(string odatatype = default(string), string clientId = default(string), string objec
 49        {
 050            Odatatype = odatatype;
 051            ClientId = clientId;
 052            ObjectId = objectId;
 053            ConsentType = consentType;
 054            PrincipalId = principalId;
 055            ResourceId = resourceId;
 056            Scope = scope;
 057            StartTime = startTime;
 058            ExpiryTime = expiryTime;
 59            CustomInit();
 060        }
 61
 62        /// <summary>
 63        /// An initialization method that performs custom operations like setting defaults
 64        /// </summary>
 65        partial void CustomInit();
 66
 67        /// <summary>
 68        /// Gets or sets microsoft.DirectoryServices.OAuth2PermissionGrant
 69        /// </summary>
 70        [JsonProperty(PropertyName = "odata.type")]
 071        public string Odatatype { get; set; }
 72
 73        /// <summary>
 74        /// Gets or sets the id of the resource's service principal granted
 75        /// consent to impersonate the user when accessing the resource
 76        /// (represented by the resourceId property).
 77        /// </summary>
 78        [JsonProperty(PropertyName = "clientId")]
 079        public string ClientId { get; set; }
 80
 81        /// <summary>
 82        /// Gets or sets the id of the permission grant
 83        /// </summary>
 84        [JsonProperty(PropertyName = "objectId")]
 085        public string ObjectId { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets indicates if consent was provided by the administrator
 89        /// (on behalf of the organization) or by an individual. Possible
 90        /// values include: 'AllPrincipals', 'Principal'
 91        /// </summary>
 92        [JsonProperty(PropertyName = "consentType")]
 093        public string ConsentType { get; set; }
 94
 95        /// <summary>
 96        /// Gets or sets when consent type is Principal, this property
 97        /// specifies the id of the user that granted consent and applies only
 98        /// for that user.
 99        /// </summary>
 100        [JsonProperty(PropertyName = "principalId")]
 0101        public string PrincipalId { get; set; }
 102
 103        /// <summary>
 104        /// Gets or sets object Id of the resource you want to grant
 105        /// </summary>
 106        [JsonProperty(PropertyName = "resourceId")]
 0107        public string ResourceId { get; set; }
 108
 109        /// <summary>
 110        /// Gets or sets specifies the value of the scope claim that the
 111        /// resource application should expect in the OAuth 2.0 access token.
 112        /// For example, User.Read
 113        /// </summary>
 114        [JsonProperty(PropertyName = "scope")]
 0115        public string Scope { get; set; }
 116
 117        /// <summary>
 118        /// Gets or sets start time for TTL
 119        /// </summary>
 120        [JsonProperty(PropertyName = "startTime")]
 0121        public string StartTime { get; set; }
 122
 123        /// <summary>
 124        /// Gets or sets expiry time for TTL
 125        /// </summary>
 126        [JsonProperty(PropertyName = "expiryTime")]
 0127        public string ExpiryTime { get; set; }
 128
 129    }
 130}