< Summary

Class:Azure.ResourceManager.Compute.Models.ContainerServiceLinuxProfile
Assembly:Azure.ResourceManager.Compute
File(s):C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ContainerServiceLinuxProfile.cs
C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ContainerServiceLinuxProfile.Serialization.cs
Covered lines:0
Uncovered lines:26
Coverable lines:26
Total lines:83
Line coverage:0% (0 of 26)
Covered branches:0
Total branches:10
Branch coverage:0% (0 of 10)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
get_AdminUsername()-0%100%
get_Ssh()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%100%
DeserializeContainerServiceLinuxProfile(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ContainerServiceLinuxProfile.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;
 9
 10namespace Azure.ResourceManager.Compute.Models
 11{
 12    /// <summary> Profile for Linux VMs in the container service cluster. </summary>
 13    public partial class ContainerServiceLinuxProfile
 14    {
 15        /// <summary> Initializes a new instance of ContainerServiceLinuxProfile. </summary>
 16        /// <param name="adminUsername"> The administrator username to use for Linux VMs. </param>
 17        /// <param name="ssh"> The ssh key configuration for Linux VMs. </param>
 018        public ContainerServiceLinuxProfile(string adminUsername, ContainerServiceSshConfiguration ssh)
 19        {
 020            if (adminUsername == null)
 21            {
 022                throw new ArgumentNullException(nameof(adminUsername));
 23            }
 024            if (ssh == null)
 25            {
 026                throw new ArgumentNullException(nameof(ssh));
 27            }
 28
 029            AdminUsername = adminUsername;
 030            Ssh = ssh;
 031        }
 32
 33        /// <summary> The administrator username to use for Linux VMs. </summary>
 034        public string AdminUsername { get; set; }
 35        /// <summary> The ssh key configuration for Linux VMs. </summary>
 036        public ContainerServiceSshConfiguration Ssh { get; set; }
 37    }
 38}

C:\Git\azure-sdk-for-net\sdk\compute\Azure.ResourceManager.Compute\src\Generated\Models\ContainerServiceLinuxProfile.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.Compute.Models
 12{
 13    public partial class ContainerServiceLinuxProfile : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 017            writer.WriteStartObject();
 018            writer.WritePropertyName("adminUsername");
 019            writer.WriteStringValue(AdminUsername);
 020            writer.WritePropertyName("ssh");
 021            writer.WriteObjectValue(Ssh);
 022            writer.WriteEndObject();
 023        }
 24
 25        internal static ContainerServiceLinuxProfile DeserializeContainerServiceLinuxProfile(JsonElement element)
 26        {
 027            string adminUsername = default;
 028            ContainerServiceSshConfiguration ssh = default;
 029            foreach (var property in element.EnumerateObject())
 30            {
 031                if (property.NameEquals("adminUsername"))
 32                {
 033                    adminUsername = property.Value.GetString();
 034                    continue;
 35                }
 036                if (property.NameEquals("ssh"))
 37                {
 038                    ssh = ContainerServiceSshConfiguration.DeserializeContainerServiceSshConfiguration(property.Value);
 39                    continue;
 40                }
 41            }
 042            return new ContainerServiceLinuxProfile(adminUsername, ssh);
 43        }
 44    }
 45}