public AzureLinkedServiceModel GetAzureLinkedService()
        {
            var myLinkedService = new AzureLinkedServiceModel
            {
                Name       = _name,
                Type       = "Microsoft.DataFactory/factories/linkedservices",
                Properties = new PropertiesModel
                {
                    PropertyDescription = _propertyDescription,
                    Type = _azureServiceType.ToString(),

                    TypeProperties = new TypePropertiesModel
                    {
                        ConnectionString    = _connectionString,
                        EncryptedCredential = _encryptedCredentials,
                        BaseUrl             = _baseUrl,
                        Password            = _passwordModel,
                        AccountKey          = _accountKeyModel
                    },
                    Annotations = new string[] { },
                    ConnectVia  = _connectViaModel
                },

                //LinkedServiceDescription = _linkedServiceDescription
            };

            return(myLinkedService);
        }