< Summary

Class:Azure.Analytics.Synapse.Artifacts.Models.HubspotLinkedService
Assembly:Azure.Analytics.Synapse.Artifacts
File(s):C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\HubspotLinkedService.cs
C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\HubspotLinkedService.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_ClientId()-0%100%
get_ClientSecret()-0%100%
get_AccessToken()-0%100%
get_RefreshToken()-0%100%
get_UseEncryptedEndpoints()-0%100%
get_UseHostVerification()-0%100%
get_UsePeerVerification()-0%100%
get_EncryptedCredential()-0%100%
Azure.Core.IUtf8JsonSerializable.Write(...)-0%0%
DeserializeHubspotLinkedService(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\HubspotLinkedService.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> Hubspot Service linked service. </summary>
 14    public partial class HubspotLinkedService : LinkedService
 15    {
 16        /// <summary> Initializes a new instance of HubspotLinkedService. </summary>
 17        /// <param name="clientId"> The client ID associated with your Hubspot application. </param>
 18        /// <exception cref="ArgumentNullException"> <paramref name="clientId"/> is null. </exception>
 019        public HubspotLinkedService(object clientId)
 20        {
 021            if (clientId == null)
 22            {
 023                throw new ArgumentNullException(nameof(clientId));
 24            }
 25
 026            ClientId = clientId;
 027            Type = "Hubspot";
 028        }
 29
 30        /// <summary> Initializes a new instance of HubspotLinkedService. </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="clientId"> The client ID associated with your Hubspot application. </param>
 38        /// <param name="clientSecret"> The client secret associated with your Hubspot application. </param>
 39        /// <param name="accessToken"> The access token obtained when initially authenticating your OAuth integration. <
 40        /// <param name="refreshToken"> The refresh token obtained when initially authenticating your OAuth integration.
 41        /// <param name="useEncryptedEndpoints"> Specifies whether the data source endpoints are encrypted using HTTPS. 
 42        /// <param name="useHostVerification"> Specifies whether to require the host name in the server&apos;s certifica
 43        /// <param name="usePeerVerification"> Specifies whether to verify the identity of the server when connecting ov
 44        /// <param name="encryptedCredential"> The encrypted credential used for authentication. Credentials are encrypt
 045        internal HubspotLinkedService(string type, IntegrationRuntimeReference connectVia, string description, IDictiona
 46        {
 047            ClientId = clientId;
 048            ClientSecret = clientSecret;
 049            AccessToken = accessToken;
 050            RefreshToken = refreshToken;
 051            UseEncryptedEndpoints = useEncryptedEndpoints;
 052            UseHostVerification = useHostVerification;
 053            UsePeerVerification = usePeerVerification;
 054            EncryptedCredential = encryptedCredential;
 055            Type = type ?? "Hubspot";
 056        }
 57
 58        /// <summary> The client ID associated with your Hubspot application. </summary>
 059        public object ClientId { get; set; }
 60        /// <summary> The client secret associated with your Hubspot application. </summary>
 061        public SecretBase ClientSecret { get; set; }
 62        /// <summary> The access token obtained when initially authenticating your OAuth integration. </summary>
 063        public SecretBase AccessToken { get; set; }
 64        /// <summary> The refresh token obtained when initially authenticating your OAuth integration. </summary>
 065        public SecretBase RefreshToken { get; set; }
 66        /// <summary> Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. 
 067        public object UseEncryptedEndpoints { get; set; }
 68        /// <summary> Specifies whether to require the host name in the server&apos;s certificate to match the host name
 069        public object UseHostVerification { get; set; }
 70        /// <summary> Specifies whether to verify the identity of the server when connecting over SSL. The default value
 071        public object UsePeerVerification { get; set; }
 72        /// <summary> The encrypted credential used for authentication. Credentials are encrypted using the integration 
 073        public object EncryptedCredential { get; set; }
 74    }
 75}

C:\Git\azure-sdk-for-net\sdk\synapse\Azure.Analytics.Synapse.Artifacts\src\Generated\Models\HubspotLinkedService.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 HubspotLinkedService : 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("clientId");
 055            writer.WriteObjectValue(ClientId);
 056            if (Optional.IsDefined(ClientSecret))
 57            {
 058                writer.WritePropertyName("clientSecret");
 059                writer.WriteObjectValue(ClientSecret);
 60            }
 061            if (Optional.IsDefined(AccessToken))
 62            {
 063                writer.WritePropertyName("accessToken");
 064                writer.WriteObjectValue(AccessToken);
 65            }
 066            if (Optional.IsDefined(RefreshToken))
 67            {
 068                writer.WritePropertyName("refreshToken");
 069                writer.WriteObjectValue(RefreshToken);
 70            }
 071            if (Optional.IsDefined(UseEncryptedEndpoints))
 72            {
 073                writer.WritePropertyName("useEncryptedEndpoints");
 074                writer.WriteObjectValue(UseEncryptedEndpoints);
 75            }
 076            if (Optional.IsDefined(UseHostVerification))
 77            {
 078                writer.WritePropertyName("useHostVerification");
 079                writer.WriteObjectValue(UseHostVerification);
 80            }
 081            if (Optional.IsDefined(UsePeerVerification))
 82            {
 083                writer.WritePropertyName("usePeerVerification");
 084                writer.WriteObjectValue(UsePeerVerification);
 85            }
 086            if (Optional.IsDefined(EncryptedCredential))
 87            {
 088                writer.WritePropertyName("encryptedCredential");
 089                writer.WriteObjectValue(EncryptedCredential);
 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 HubspotLinkedService DeserializeHubspotLinkedService(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 clientId = default;
 0108            Optional<SecretBase> clientSecret = default;
 0109            Optional<SecretBase> accessToken = default;
 0110            Optional<SecretBase> refreshToken = default;
 0111            Optional<object> useEncryptedEndpoints = default;
 0112            Optional<object> useHostVerification = default;
 0113            Optional<object> usePeerVerification = default;
 0114            Optional<object> encryptedCredential = 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("clientId"))
 159                        {
 0160                            clientId = property0.Value.GetObject();
 0161                            continue;
 162                        }
 0163                        if (property0.NameEquals("clientSecret"))
 164                        {
 0165                            clientSecret = SecretBase.DeserializeSecretBase(property0.Value);
 0166                            continue;
 167                        }
 0168                        if (property0.NameEquals("accessToken"))
 169                        {
 0170                            accessToken = SecretBase.DeserializeSecretBase(property0.Value);
 0171                            continue;
 172                        }
 0173                        if (property0.NameEquals("refreshToken"))
 174                        {
 0175                            refreshToken = SecretBase.DeserializeSecretBase(property0.Value);
 0176                            continue;
 177                        }
 0178                        if (property0.NameEquals("useEncryptedEndpoints"))
 179                        {
 0180                            useEncryptedEndpoints = property0.Value.GetObject();
 0181                            continue;
 182                        }
 0183                        if (property0.NameEquals("useHostVerification"))
 184                        {
 0185                            useHostVerification = property0.Value.GetObject();
 0186                            continue;
 187                        }
 0188                        if (property0.NameEquals("usePeerVerification"))
 189                        {
 0190                            usePeerVerification = property0.Value.GetObject();
 0191                            continue;
 192                        }
 0193                        if (property0.NameEquals("encryptedCredential"))
 194                        {
 0195                            encryptedCredential = 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 HubspotLinkedService(type, connectVia.Value, description.Value, Optional.ToDictionary(parameters)
 206        }
 207    }
 208}