< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-0%0%
.ctor(...)-0%0%
get_Host()-0%100%
get_Port()-0%100%
get_AuthenticationType()-0%100%
get_UserName()-0%100%
get_Password()-0%100%
get_EncryptedCredential()-0%100%
get_EnableSsl()-0%100%
get_EnableServerCertificateValidation()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%
DeserializeFtpServerLinkedService(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\FtpServerLinkedService.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> A FTP server Linked Service. </summary>
 14    public partial class FtpServerLinkedService : LinkedService
 15    {
 16        /// <summary> Initializes a new instance of FtpServerLinkedService. </summary>
 17        /// <param name="host"> Host name of the FTP server. Type: string (or Expression with resultType string). </para
 18        /// <exception cref="ArgumentNullException"> <paramref name="host"/> is null. </exception>
 019        public FtpServerLinkedService(object host)
 20        {
 021            if (host == null)
 22            {
 023                throw new ArgumentNullException(nameof(host));
 24            }
 25
 026            Host = host;
 027            Type = "FtpServer";
 028        }
 29
 30        /// <summary> Initializes a new instance of FtpServerLinkedService. </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="host"> Host name of the FTP server. Type: string (or Expression with resultType string). </para
 38        /// <param name="port"> The TCP port number that the FTP server uses to listen for client connections. Default v
 39        /// <param name="authenticationType"> The authentication type to be used to connect to the FTP server. </param>
 40        /// <param name="userName"> Username to logon the FTP server. Type: string (or Expression with resultType string
 41        /// <param name="password"> Password to logon the FTP server. </param>
 42        /// <param name="encryptedCredential"> The encrypted credential used for authentication. Credentials are encrypt
 43        /// <param name="enableSsl"> If true, connect to the FTP server over SSL/TLS channel. Default value is true. Typ
 44        /// <param name="enableServerCertificateValidation"> If true, validate the FTP server SSL certificate when conne
 045        internal FtpServerLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictio
 46        {
 047            Host = host;
 048            Port = port;
 049            AuthenticationType = authenticationType;
 050            UserName = userName;
 051            Password = password;
 052            EncryptedCredential = encryptedCredential;
 053            EnableSsl = enableSsl;
 054            EnableServerCertificateValidation = enableServerCertificateValidation;
 055            Type = type ?? "FtpServer";
 056        }
 57
 58        /// <summary> Host name of the FTP server. Type: string (or Expression with resultType string). </summary>
 059        public object Host { get; set; }
 60        /// <summary> The TCP port number that the FTP server uses to listen for client connections. Default value is 21
 061        public object Port { get; set; }
 62        /// <summary> The authentication type to be used to connect to the FTP server. </summary>
 063        public FtpAuthenticationType? AuthenticationType { get; set; }
 64        /// <summary> Username to logon the FTP server. Type: string (or Expression with resultType string). </summary>
 065        public object UserName { get; set; }
 66        /// <summary> Password to logon the FTP server. </summary>
 067        public SecretBase Password { get; set; }
 68        /// <summary> The encrypted credential used for authentication. Credentials are encrypted using the integration 
 069        public object EncryptedCredential { get; set; }
 70        /// <summary> If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or 
 071        public object EnableSsl { get; set; }
 72        /// <summary> If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value 
 073        public object EnableServerCertificateValidation { get; set; }
 74    }
 75}

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\FtpServerLinkedService.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 FtpServerLinkedService : 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            writer.WritePropertyName("host");
 055            writer.WriteObjectValue(Host);
 056            if (Optional.IsDefined(Port))
 57            {
 058                writer.WritePropertyName("port");
 059                writer.WriteObjectValue(Port);
 60            }
 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            if (Optional.IsDefined(EnableSsl))
 82            {
 083                writer.WritePropertyName("enableSsl");
 084                writer.WriteObjectValue(EnableSsl);
 85            }
 086            if (Optional.IsDefined(EnableServerCertificateValidation))
 87            {
 088                writer.WritePropertyName("enableServerCertificateValidation");
 089                writer.WriteObjectValue(EnableServerCertificateValidation);
 90            }
 091            writer.WriteEndObject();
 092            foreach (var item in AdditionalProperties)
 93            {
 094                writer.WritePropertyName(item.Key);
 095                writer.WriteObjectValue(item.Value);
 96            }
 097            writer.WriteEndObject();
 098        }
 99
 100        internal static FtpServerLinkedService DeserializeFtpServerLinkedService(JsonElement element)
 101        {
 0102            string type = default;
 0103            Optional<IntegrationRuntimeReference> connectVia = default;
 0104            Optional<string> description = default;
 0105            Optional<IDictionary<string, ParameterSpecification>> parameters = default;
 0106            Optional<IList<object>> annotations = default;
 0107            object host = default;
 0108            Optional<object> port = default;
 0109            Optional<FtpAuthenticationType> authenticationType = default;
 0110            Optional<object> userName = default;
 0111            Optional<SecretBase> password = default;
 0112            Optional<object> encryptedCredential = default;
 0113            Optional<object> enableSsl = default;
 0114            Optional<object> enableServerCertificateValidation = default;
 0115            IDictionary<string, object> additionalProperties = default;
 0116            Dictionary<string, object> additionalPropertiesDictionary = default;
 0117            foreach (var property in element.EnumerateObject())
 118            {
 0119                if (property.NameEquals("type"))
 120                {
 0121                    type = property.Value.GetString();
 0122                    continue;
 123                }
 0124                if (property.NameEquals("connectVia"))
 125                {
 0126                    connectVia = IntegrationRuntimeReference.DeserializeIntegrationRuntimeReference(property.Value);
 0127                    continue;
 128                }
 0129                if (property.NameEquals("description"))
 130                {
 0131                    description = property.Value.GetString();
 0132                    continue;
 133                }
 0134                if (property.NameEquals("parameters"))
 135                {
 0136                    Dictionary<string, ParameterSpecification> dictionary = new Dictionary<string, ParameterSpecificatio
 0137                    foreach (var property0 in property.Value.EnumerateObject())
 138                    {
 0139                        dictionary.Add(property0.Name, ParameterSpecification.DeserializeParameterSpecification(property
 140                    }
 0141                    parameters = dictionary;
 0142                    continue;
 143                }
 0144                if (property.NameEquals("annotations"))
 145                {
 0146                    List<object> array = new List<object>();
 0147                    foreach (var item in property.Value.EnumerateArray())
 148                    {
 0149                        array.Add(item.GetObject());
 150                    }
 0151                    annotations = array;
 0152                    continue;
 153                }
 0154                if (property.NameEquals("typeProperties"))
 155                {
 0156                    foreach (var property0 in property.Value.EnumerateObject())
 157                    {
 0158                        if (property0.NameEquals("host"))
 159                        {
 0160                            host = property0.Value.GetObject();
 0161                            continue;
 162                        }
 0163                        if (property0.NameEquals("port"))
 164                        {
 0165                            port = property0.Value.GetObject();
 0166                            continue;
 167                        }
 0168                        if (property0.NameEquals("authenticationType"))
 169                        {
 0170                            authenticationType = new FtpAuthenticationType(property0.Value.GetString());
 0171                            continue;
 172                        }
 0173                        if (property0.NameEquals("userName"))
 174                        {
 0175                            userName = property0.Value.GetObject();
 0176                            continue;
 177                        }
 0178                        if (property0.NameEquals("password"))
 179                        {
 0180                            password = SecretBase.DeserializeSecretBase(property0.Value);
 0181                            continue;
 182                        }
 0183                        if (property0.NameEquals("encryptedCredential"))
 184                        {
 0185                            encryptedCredential = property0.Value.GetObject();
 0186                            continue;
 187                        }
 0188                        if (property0.NameEquals("enableSsl"))
 189                        {
 0190                            enableSsl = property0.Value.GetObject();
 0191                            continue;
 192                        }
 0193                        if (property0.NameEquals("enableServerCertificateValidation"))
 194                        {
 0195                            enableServerCertificateValidation = property0.Value.GetObject();
 196                            continue;
 197                        }
 198                    }
 199                    continue;
 200                }
 0201                additionalPropertiesDictionary ??= new Dictionary<string, object>();
 0202                additionalPropertiesDictionary.Add(property.Name, property.Value.GetObject());
 203            }
 0204            additionalProperties = additionalPropertiesDictionary;
 0205            return new FtpServerLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameter
 206        }
 207    }
 208}