Skip to content

Commit

Permalink
Merge pull request #14 from Azure/master
Browse files Browse the repository at this point in the history
.
  • Loading branch information
huangpf committed May 25, 2015
2 parents ff1d5c9 + 5645732 commit ca518da
Show file tree
Hide file tree
Showing 77 changed files with 17,380 additions and 1,476 deletions.
11 changes: 1 addition & 10 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,10 @@
/p:NuGetKey=NUGET_PUBLISHING_KEY
Provides the key used to publish to a NuGet or MyGet server.
This key should never be committed to source control.
/p:PublishSymbolSourcePackages
A true/false value indicating whether to push the symbol + source
packages to a symbol server.
/p:NuGetPublishingSource=Uri
The NuGet Server to push packages to.
/p:NuGetSymbolPublishingSource=Uri
The NuGet Server to push symbol + source packages to.
-->

<PropertyGroup>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
//
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//

// Warning: This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if the
// code is regenerated.

using System;
using System.Linq;

namespace Microsoft.Azure.Management.DataFactories.Models
{
/// <summary>
/// Data center location of the data factory.
/// </summary>
public static partial class Location
{
/// <summary>
/// West US
/// </summary>
public const string WestUS = "westus";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,19 @@ public string ClassName
set { this._className = value; }
}

private IDictionary<string, string> _extendedProperties;

/// <summary>
/// Optional. User specified property bag. There is no restriction on
/// the keys or values that can be used. These are passed as Defines
/// in the mapreduce job request
/// </summary>
public IDictionary<string, string> ExtendedProperties
{
get { return this._extendedProperties; }
set { this._extendedProperties = value; }
}

private string _jarFilePath;

/// <summary>
Expand Down Expand Up @@ -93,6 +106,7 @@ public string JarLinkedService
public MapReduce()
{
this.Arguments = new LazyList<string>();
this.ExtendedProperties = new LazyDictionary<string, string>();
this.JarLibs = new LazyList<string>();
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
//
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//

// Warning: This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if the
// code is regenerated.

using System;
using System.Linq;
using Microsoft.Azure.Management.DataFactories.Models;

namespace Microsoft.Azure.Management.DataFactories.Models
{
/// <summary>
/// Linked Service for DB2 data source.
/// </summary>
public partial class OnPremisesDb2LinkedService : LinkedServiceProperties
{
private string _authenticationType;

/// <summary>
/// Required. AuthenticationType to be used for connection.
/// </summary>
public string AuthenticationType
{
get { return this._authenticationType; }
set { this._authenticationType = value; }
}

private string _database;

/// <summary>
/// Required. Database name for connection.
/// </summary>
public string Database
{
get { return this._database; }
set { this._database = value; }
}

private string _encryptedCredential;

/// <summary>
/// Optional. The encryptedCredential for authentication.
/// </summary>
public string EncryptedCredential
{
get { return this._encryptedCredential; }
set { this._encryptedCredential = value; }
}

private string _gatewayName;

/// <summary>
/// Required. The on-premises gateway name.
/// </summary>
public string GatewayName
{
get { return this._gatewayName; }
set { this._gatewayName = value; }
}

private string _password;

/// <summary>
/// Optional. Password for authentication.
/// </summary>
public string Password
{
get { return this._password; }
set { this._password = value; }
}

private string _schema;

/// <summary>
/// Optional. Schema name for connection.
/// </summary>
public string Schema
{
get { return this._schema; }
set { this._schema = value; }
}

private string _server;

/// <summary>
/// Required. Server name for connection.
/// </summary>
public string Server
{
get { return this._server; }
set { this._server = value; }
}

private string _username;

/// <summary>
/// Optional. Username for authentication.
/// </summary>
public string Username
{
get { return this._username; }
set { this._username = value; }
}

/// <summary>
/// Initializes a new instance of the OnPremisesDb2LinkedService class.
/// </summary>
public OnPremisesDb2LinkedService()
{
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
//
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//

// Warning: This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if the
// code is regenerated.

using System;
using System.Linq;
using Microsoft.Azure.Management.DataFactories.Models;

namespace Microsoft.Azure.Management.DataFactories.Models
{
/// <summary>
/// Linked Service for MySQL data source.
/// </summary>
public partial class OnPremisesMySqlLinkedService : LinkedServiceProperties
{
private string _authenticationType;

/// <summary>
/// Required. AuthenticationType to be used for connection.
/// </summary>
public string AuthenticationType
{
get { return this._authenticationType; }
set { this._authenticationType = value; }
}

private string _database;

/// <summary>
/// Required. Database name for connection.
/// </summary>
public string Database
{
get { return this._database; }
set { this._database = value; }
}

private string _encryptedCredential;

/// <summary>
/// Optional. The encryptedCredential for authentication.
/// </summary>
public string EncryptedCredential
{
get { return this._encryptedCredential; }
set { this._encryptedCredential = value; }
}

private string _gatewayName;

/// <summary>
/// Required. The on-premises gateway name.
/// </summary>
public string GatewayName
{
get { return this._gatewayName; }
set { this._gatewayName = value; }
}

private string _password;

/// <summary>
/// Optional. Password for authentication.
/// </summary>
public string Password
{
get { return this._password; }
set { this._password = value; }
}

private string _schema;

/// <summary>
/// Optional. Schema name for connection.
/// </summary>
public string Schema
{
get { return this._schema; }
set { this._schema = value; }
}

private string _server;

/// <summary>
/// Required. Server name for connection.
/// </summary>
public string Server
{
get { return this._server; }
set { this._server = value; }
}

private string _username;

/// <summary>
/// Optional. Username for authentication.
/// </summary>
public string Username
{
get { return this._username; }
set { this._username = value; }
}

/// <summary>
/// Initializes a new instance of the OnPremisesMySqlLinkedService
/// class.
/// </summary>
public OnPremisesMySqlLinkedService()
{
}
}
}
Loading

0 comments on commit ca518da

Please sign in to comment.