< Summary

Class:Azure.ResourceManager.Resources.Models.ManagedByTenant
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ManagedByTenant.cs
C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ManagedByTenant.Serialization.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:61
Line coverage:0% (0 of 12)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ManagedByTenant.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.ResourceManager.Resources.Models
 9{
 10    /// <summary> Information about a tenant managing the subscription. </summary>
 11    public partial class ManagedByTenant
 12    {
 13        /// <summary> Initializes a new instance of ManagedByTenant. </summary>
 014        internal ManagedByTenant()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of ManagedByTenant. </summary>
 19        /// <param name="tenantId"> The tenant ID of the managing tenant. This is a GUID. </param>
 020        internal ManagedByTenant(string tenantId)
 21        {
 022            TenantId = tenantId;
 023        }
 24
 25        /// <summary> The tenant ID of the managing tenant. This is a GUID. </summary>
 026        public string TenantId { get; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\ManagedByTenant.Serialization.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
 8using System.Text.Json;
 9using Azure.Core;
 10
 11namespace Azure.ResourceManager.Resources.Models
 12{
 13    public partial class ManagedByTenant
 14    {
 15        internal static ManagedByTenant DeserializeManagedByTenant(JsonElement element)
 16        {
 017            string tenantId = default;
 018            foreach (var property in element.EnumerateObject())
 19            {
 020                if (property.NameEquals("tenantId"))
 21                {
 022                    if (property.Value.ValueKind == JsonValueKind.Null)
 23                    {
 24                        continue;
 25                    }
 026                    tenantId = property.Value.GetString();
 27                    continue;
 28                }
 29            }
 030            return new ManagedByTenant(tenantId);
 31        }
 32    }
 33}