-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Azure/master
.
- Loading branch information
Showing
77 changed files
with
17,380 additions
and
1,476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4,793 changes: 3,864 additions & 929 deletions
4,793
...ResourceManagement/DataFactory/DataFactoryManagement/Generated/LinkedServiceOperations.cs
Large diffs are not rendered by default.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
src/ResourceManagement/DataFactory/DataFactoryManagement/Generated/Models/Location.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
128 changes: 128 additions & 0 deletions
128
...nagement/DataFactory/DataFactoryManagement/Generated/Models/OnPremisesDb2LinkedService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
{ | ||
} | ||
} | ||
} |
129 changes: 129 additions & 0 deletions
129
...gement/DataFactory/DataFactoryManagement/Generated/Models/OnPremisesMySqlLinkedService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.