< Summary

Class:Azure.ResourceManager.Resources.Models.DeploymentProperties
Assembly:Azure.ResourceManager.Resources
File(s):C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\DeploymentProperties.cs
C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\DeploymentProperties.cs
C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\DeploymentProperties.Serialization.cs
Covered lines:32
Uncovered lines:27
Coverable lines:59
Total lines:146
Line coverage:54.2% (32 of 59)
Covered branches:10
Total branches:12
Branch coverage:83.3% (10 of 12)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_OnErrorDeployment()-100%100%
get_TemplateJson()-0%100%
get_ParametersJson()-0%100%
.ctor(...)-100%100%
get_Template()-0%100%
set_Template(...)-100%100%
.ctor(...)-11.11%100%
get_Parameters()-0%100%
set_Parameters(...)-100%100%
get_TemplateLink()-100%100%
get_ParametersLink()-100%100%
get_Mode()-100%100%
get_DebugSetting()-0%100%
.ctor(...)-100%100%
.ctor(...)-0%100%
get_TemplateLink()-100%100%
get_ParametersLink()-100%100%
get_Mode()-100%100%
get_DebugSetting()-0%100%
get_OnErrorDeployment()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-80.95%75%

File(s)

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\DeploymentProperties.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System.Text.Json;
 5
 6using Azure.Core;
 7
 8namespace Azure.ResourceManager.Resources.Models
 9{
 10    public partial class DeploymentProperties
 11    {
 12        [CodeGenMember("Template")]
 013        internal JsonElement TemplateJson { get; set; } = JsonDocument.Parse("null").RootElement;
 14
 15        [CodeGenMember("Parameters")]
 016        internal JsonElement ParametersJson { get; set; } = JsonDocument.Parse("null").RootElement;
 7817
 18        /// <summary>
 7819        /// Template
 7820        /// </summary>
 21        public string Template
 22        {
 023            get => TemplateJson.ToString();
 24            set
 25            {
 10826                if (!string.IsNullOrEmpty(value))
 27                {
 10828                    TemplateJson = JsonDocument.Parse(value).RootElement;
 29                }
 10830            }
 31        }
 032
 033        /// <summary>
 034        /// Parameters
 035        /// </summary>
 036        public string Parameters
 037        {
 038            get => ParametersJson.ToString();
 039            set
 40            {
 30641                if (!string.IsNullOrEmpty(value))
 42                {
 25843                    ParametersJson = JsonDocument.Parse(value).RootElement;
 44                }
 24045            }
 46        }
 047    }
 48}

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\DeploymentProperties.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;
 9
 10namespace Azure.ResourceManager.Resources.Models
 11{
 12    /// <summary> Deployment properties. </summary>
 13    public partial class DeploymentProperties
 14    {
 15        /// <summary> Initializes a new instance of DeploymentProperties. </summary>
 16        /// <param name="mode"> The mode that is used to deploy resources. This value can be either Incremental or Compl
 7817        public DeploymentProperties(DeploymentMode mode)
 18        {
 7819            Mode = mode;
 7820        }
 21
 22        /// <summary> Initializes a new instance of DeploymentProperties. </summary>
 23        /// <param name="templateJson"> The template content. You use this element when you want to pass the template sy
 24        /// <param name="templateLink"> The URI of the template. Use either the templateLink property or the template pr
 25        /// <param name="parametersJson"> Name and value pairs that define the deployment parameters for the template. Y
 26        /// <param name="parametersLink"> The URI of parameters file. You use this element to link to an existing parame
 27        /// <param name="mode"> The mode that is used to deploy resources. This value can be either Incremental or Compl
 28        /// <param name="debugSetting"> The debug setting of the deployment. </param>
 29        /// <param name="onErrorDeployment"> The deployment on error behavior. </param>
 030        internal DeploymentProperties(JsonElement templateJson, TemplateLink templateLink, JsonElement parametersJson, P
 31        {
 032            TemplateJson = templateJson;
 033            TemplateLink = templateLink;
 034            ParametersJson = parametersJson;
 035            ParametersLink = parametersLink;
 036            Mode = mode;
 037            DebugSetting = debugSetting;
 038            OnErrorDeployment = onErrorDeployment;
 039        }
 40        /// <summary> The URI of the template. Use either the templateLink property or the template property, but not bo
 24241        public TemplateLink TemplateLink { get; set; }
 42        /// <summary> The URI of parameters file. You use this element to link to an existing parameters file. Use eithe
 19443        public ParametersLink ParametersLink { get; set; }
 44        /// <summary> The mode that is used to deploy resources. This value can be either Incremental or Complete. In In
 17645        public DeploymentMode Mode { get; }
 46        /// <summary> The debug setting of the deployment. </summary>
 047        public DebugSetting DebugSetting { get; set; }
 48        /// <summary> The deployment on error behavior. </summary>
 049        public OnErrorDeployment OnErrorDeployment { get; set; }
 50    }
 51}

C:\Git\azure-sdk-for-net\sdk\resources\Azure.ResourceManager.Resources\src\Generated\Models\DeploymentProperties.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 DeploymentProperties : IUtf8JsonSerializable
 14    {
 15        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 16        {
 20017            writer.WriteStartObject();
 20018            writer.WritePropertyName("template");
 20019            TemplateJson.WriteTo(writer);
 20020            if (TemplateLink != null)
 21            {
 7222                writer.WritePropertyName("templateLink");
 7223                writer.WriteObjectValue(TemplateLink);
 24            }
 20025            writer.WritePropertyName("parameters");
 20026            ParametersJson.WriteTo(writer);
 20027            if (ParametersLink != null)
 28            {
 829                writer.WritePropertyName("parametersLink");
 830                writer.WriteObjectValue(ParametersLink);
 31            }
 20032            writer.WritePropertyName("mode");
 20033            writer.WriteStringValue(Mode.ToSerialString());
 20034            if (DebugSetting != null)
 35            {
 036                writer.WritePropertyName("debugSetting");
 037                writer.WriteObjectValue(DebugSetting);
 38            }
 20039            if (OnErrorDeployment != null)
 40            {
 041                writer.WritePropertyName("onErrorDeployment");
 042                writer.WriteObjectValue(OnErrorDeployment);
 43            }
 20044            writer.WriteEndObject();
 20045        }
 46    }
 47}