< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
get_Id()-0%100%
get_Name()-0%100%
get_Type()-0%100%
get_Location()-0%100%
get_Tags()-0%100%
get_ETag()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\Resource.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.Collections.Generic;
 9using Azure.Core;
 10
 11namespace Azure.Analytics.Synapse.Artifacts.Models
 12{
 13    /// <summary> Azure Synapse top-level resource. </summary>
 14    internal partial class Resource
 15    {
 16        /// <summary> Initializes a new instance of Resource. </summary>
 017        internal Resource()
 18        {
 019            Tags = new ChangeTrackingDictionary<string, string>();
 020        }
 21
 22        /// <summary> The resource identifier. </summary>
 023        public string Id { get; }
 24        /// <summary> The resource name. </summary>
 025        public string Name { get; }
 26        /// <summary> The resource type. </summary>
 027        public string Type { get; }
 28        /// <summary> The resource location. </summary>
 029        public string Location { get; }
 30        /// <summary> The resource tags. </summary>
 031        public IReadOnlyDictionary<string, string> Tags { get; }
 32        /// <summary> Etag identifies change in the resource. </summary>
 033        public string ETag { get; }
 34    }
 35}