< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
.ctor(...)-0%0%
get_ConnectionString()-0%100%
get_Server()-0%100%
get_AuthenticationType()-0%100%
get_UserName()-0%100%
get_Password()-0%100%
get_EncryptedCredential()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%
DeserializeSapHanaLinkedService(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\SapHanaLinkedService.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;
 9using System.Collections.Generic;
 10
 11namespace Azure.Analytics.Synapse.Artifacts.Models
 12{
 13    /// <summary> SAP HANA Linked Service. </summary>
 14    public partial class SapHanaLinkedService : LinkedService
 15    {
 16        /// <summary> Initializes a new instance of SapHanaLinkedService. </summary>
 17        /// <param name="server"> Host name of the SAP HANA server. Type: string (or Expression with resultType string).
 18        /// <exception cref="ArgumentNullException"> <paramref name="server"/> is null. </exception>
 019        public SapHanaLinkedService(object server)
 20        {
 021            if (server == null)
 22            {
 023                throw new ArgumentNullException(nameof(server));
 24            }
 25
 026            Server = server;
 027            Type = "SapHana";
 028        }
 29
 30        /// <summary> Initializes a new instance of SapHanaLinkedService. </summary>
 31        /// <param name="type"> Type of linked service. </param>
 32        /// <param name="connectVia"> The integration runtime reference. </param>
 33        /// <param name="description"> Linked service description. </param>
 34        /// <param name="parameters"> Parameters for linked service. </param>
 35        /// <param name="annotations"> List of tags that can be used for describing the linked service. </param>
 36        /// <param name="additionalProperties"> . </param>
 37        /// <param name="connectionString"> SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVault
 38        /// <param name="server"> Host name of the SAP HANA server. Type: string (or Expression with resultType string).
 39        /// <param name="authenticationType"> The authentication type to be used to connect to the SAP HANA server. </pa
 40        /// <param name="userName"> Username to access the SAP HANA server. Type: string (or Expression with resultType 
 41        /// <param name="password"> Password to access the SAP HANA server. </param>
 42        /// <param name="encryptedCredential"> The encrypted credential used for authentication. Credentials are encrypt
 043        internal SapHanaLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictiona
 44        {
 045            ConnectionString = connectionString;
 046            Server = server;
 047            AuthenticationType = authenticationType;
 048            UserName = userName;
 049            Password = password;
 050            EncryptedCredential = encryptedCredential;
 051            Type = type ?? "SapHana";
 052        }
 53
 54        /// <summary> SAP HANA ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. </sum
 055        public object ConnectionString { get; set; }
 56        /// <summary> Host name of the SAP HANA server. Type: string (or Expression with resultType string). </summary>
 057        public object Server { get; set; }
 58        /// <summary> The authentication type to be used to connect to the SAP HANA server. </summary>
 059        public SapHanaAuthenticationType? AuthenticationType { get; set; }
 60        /// <summary> Username to access the SAP HANA server. Type: string (or Expression with resultType string). </sum
 061        public object UserName { get; set; }
 62        /// <summary> Password to access the SAP HANA server. </summary>
 063        public SecretBase Password { get; set; }
 64        /// <summary> The encrypted credential used for authentication. Credentials are encrypted using the integration 
 065        public object EncryptedCredential { get; set; }
 66    }
 67}

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\SapHanaLinkedService.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.Collections.Generic;
 9using System.Text.Json;
 10using Azure.Core;
 11
 12namespace Azure.Analytics.Synapse.Artifacts.Models
 13{
 14    public partial class SapHanaLinkedService : IUtf8JsonSerializable
 15    {
 16        void IUtf8JsonSerializable.Write(Utf8JsonWriter writer)
 17        {
 018            writer.WriteStartObject();
 019            writer.WritePropertyName("type");
 020            writer.WriteStringValue(Type);
 021            if (Optional.IsDefined(ConnectVia))
 22            {
 023                writer.WritePropertyName("connectVia");
 024                writer.WriteObjectValue(ConnectVia);
 25            }
 026            if (Optional.IsDefined(Description))
 27            {
 028                writer.WritePropertyName("description");
 029                writer.WriteStringValue(Description);
 30            }
 031            if (Optional.IsCollectionDefined(Parameters))
 32            {
 033                writer.WritePropertyName("parameters");
 034                writer.WriteStartObject();
 035                foreach (var item in Parameters)
 36                {
 037                    writer.WritePropertyName(item.Key);
 038                    writer.WriteObjectValue(item.Value);
 39                }
 040                writer.WriteEndObject();
 41            }
 042            if (Optional.IsCollectionDefined(Annotations))
 43            {
 044                writer.WritePropertyName("annotations");
 045                writer.WriteStartArray();
 046                foreach (var item in Annotations)
 47                {
 048                    writer.WriteObjectValue(item);
 49                }
 050                writer.WriteEndArray();
 51            }
 052            writer.WritePropertyName("typeProperties");
 053            writer.WriteStartObject();
 054            if (Optional.IsDefined(ConnectionString))
 55            {
 056                writer.WritePropertyName("connectionString");
 057                writer.WriteObjectValue(ConnectionString);
 58            }
 059            writer.WritePropertyName("server");
 060            writer.WriteObjectValue(Server);
 061            if (Optional.IsDefined(AuthenticationType))
 62            {
 063                writer.WritePropertyName("authenticationType");
 064                writer.WriteStringValue(AuthenticationType.Value.ToString());
 65            }
 066            if (Optional.IsDefined(UserName))
 67            {
 068                writer.WritePropertyName("userName");
 069                writer.WriteObjectValue(UserName);
 70            }
 071            if (Optional.IsDefined(Password))
 72            {
 073                writer.WritePropertyName("password");
 074                writer.WriteObjectValue(Password);
 75            }
 076            if (Optional.IsDefined(EncryptedCredential))
 77            {
 078                writer.WritePropertyName("encryptedCredential");
 079                writer.WriteObjectValue(EncryptedCredential);
 80            }
 081            writer.WriteEndObject();
 082            foreach (var item in AdditionalProperties)
 83            {
 084                writer.WritePropertyName(item.Key);
 085                writer.WriteObjectValue(item.Value);
 86            }
 087            writer.WriteEndObject();
 088        }
 89
 90        internal static SapHanaLinkedService DeserializeSapHanaLinkedService(JsonElement element)
 91        {
 092            string type = default;
 093            Optional<IntegrationRuntimeReference> connectVia = default;
 094            Optional<string> description = default;
 095            Optional<IDictionary<string, ParameterSpecification>> parameters = default;
 096            Optional<IList<object>> annotations = default;
 097            Optional<object> connectionString = default;
 098            object server = default;
 099            Optional<SapHanaAuthenticationType> authenticationType = default;
 0100            Optional<object> userName = default;
 0101            Optional<SecretBase> password = default;
 0102            Optional<object> encryptedCredential = default;
 0103            IDictionary<string, object> additionalProperties = default;
 0104            Dictionary<string, object> additionalPropertiesDictionary = default;
 0105            foreach (var property in element.EnumerateObject())
 106            {
 0107                if (property.NameEquals("type"))
 108                {
 0109                    type = property.Value.GetString();
 0110                    continue;
 111                }
 0112                if (property.NameEquals("connectVia"))
 113                {
 0114                    connectVia = IntegrationRuntimeReference.DeserializeIntegrationRuntimeReference(property.Value);
 0115                    continue;
 116                }
 0117                if (property.NameEquals("description"))
 118                {
 0119                    description = property.Value.GetString();
 0120                    continue;
 121                }
 0122                if (property.NameEquals("parameters"))
 123                {
 0124                    Dictionary<string, ParameterSpecification> dictionary = new Dictionary<string, ParameterSpecificatio
 0125                    foreach (var property0 in property.Value.EnumerateObject())
 126                    {
 0127                        dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property
 128                    }
 0129                    parameters = dictionary;
 0130                    continue;
 131                }
 0132                if (property.NameEquals("annotations"))
 133                {
 0134                    List<object> array = new List<object>();
 0135                    foreach (var item in property.Value.EnumerateArray())
 136                    {
 0137                        array.Add(item.GetObject());
 138                    }
 0139                    annotations = array;
 0140                    continue;
 141                }
 0142                if (property.NameEquals("typeProperties"))
 143                {
 0144                    foreach (var property0 in property.Value.EnumerateObject())
 145                    {
 0146                        if (property0.NameEquals("connectionString"))
 147                        {
 0148                            connectionString = property0.Value.GetObject();
 0149                            continue;
 150                        }
 0151                        if (property0.NameEquals("server"))
 152                        {
 0153                            server = property0.Value.GetObject();
 0154                            continue;
 155                        }
 0156                        if (property0.NameEquals("authenticationType"))
 157                        {
 0158                            authenticationType = new SapHanaAuthenticationType(property0.Value.GetString());
 0159                            continue;
 160                        }
 0161                        if (property0.NameEquals("userName"))
 162                        {
 0163                            userName = property0.Value.GetObject();
 0164                            continue;
 165                        }
 0166                        if (property0.NameEquals("password"))
 167                        {
 0168                            password = SecretBase.DeserializeSecretBase(property0.Value);
 0169                            continue;
 170                        }
 0171                        if (property0.NameEquals("encryptedCredential"))
 172                        {
 0173                            encryptedCredential = property0.Value.GetObject();
 174                            continue;
 175                        }
 176                    }
 177                    continue;
 178                }
 0179                additionalPropertiesDictionary ??= new Dictionary<string, object>();
 0180                additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject());
 181            }
 0182            additionalProperties = additionalPropertiesDictionary;
 0183            return new SapHanaLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters)
 184        }
 185    }
 186}