< Summary

Class:Azure.Analytics.Synapse.Artifacts.Models.WorkspaceIdentity
Assembly:Azure.Analytics.Synapse.Artifacts
File(s):C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\WorkspaceIdentity.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:26
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
get_Type()-0%100%
get_PrincipalId()-0%100%
get_TenantId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\WorkspaceIdentity.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.Analytics.Synapse.Artifacts.Models
 9{
 10    /// <summary> Identity properties of the workspace resource. </summary>
 11    internal partial class WorkspaceIdentity
 12    {
 13        /// <summary> Initializes a new instance of WorkspaceIdentity. </summary>
 014        internal WorkspaceIdentity()
 15        {
 016            Type = "SystemAssigned";
 017        }
 18
 19        /// <summary> The identity type. Currently the only supported type is &apos;SystemAssigned&apos;. </summary>
 020        public string Type { get; }
 21        /// <summary> The principal id of the identity. </summary>
 022        public string PrincipalId { get; }
 23        /// <summary> The client tenant id of the identity. </summary>
 024        public string TenantId { get; }
 25    }
 26}