forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from f4423b897956eb5728b3476e05e26fd06e3faed6 (#248)
SQL
- Loading branch information
1 parent
5511307
commit d5d6059
Showing
18 changed files
with
497 additions
and
25 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
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
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
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
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
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
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
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
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
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
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
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
22 changes: 22 additions & 0 deletions
22
sdk/datashare/Microsoft.Azure.Management.DataShare/src/Generated/Models/OutputType.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,22 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.DataShare.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Defines values for OutputType. | ||
/// </summary> | ||
public static class OutputType | ||
{ | ||
public const string Csv = "Csv"; | ||
public const string Parquet = "Parquet"; | ||
} | ||
} |
85 changes: 85 additions & 0 deletions
85
sdk/datashare/Microsoft.Azure.Management.DataShare/src/Generated/Models/SqlDBTableDataSet.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,85 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.DataShare.Models | ||
{ | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Serialization; | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// A SQL DB table dataset. | ||
/// </summary> | ||
[Newtonsoft.Json.JsonObject("SqlDBTable")] | ||
[Rest.Serialization.JsonTransformation] | ||
public partial class SqlDBTableDataSet : DataSet | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the SqlDBTableDataSet class. | ||
/// </summary> | ||
public SqlDBTableDataSet() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the SqlDBTableDataSet class. | ||
/// </summary> | ||
/// <param name="id">The resource id of the azure resource</param> | ||
/// <param name="name">Name of the azure resource</param> | ||
/// <param name="type">Type of the azure resource</param> | ||
/// <param name="databaseName">Database name of the source data | ||
/// set</param> | ||
/// <param name="dataSetId">Unique id for identifying a data set | ||
/// resource</param> | ||
/// <param name="sqlServerResourceId">Resource id of SQL server</param> | ||
/// <param name="tableName">SQL DB table name.</param> | ||
public SqlDBTableDataSet(string id = default(string), string name = default(string), string type = default(string), string databaseName = default(string), string dataSetId = default(string), string sqlServerResourceId = default(string), string tableName = default(string)) | ||
: base(id, name, type) | ||
{ | ||
DatabaseName = databaseName; | ||
DataSetId = dataSetId; | ||
SqlServerResourceId = sqlServerResourceId; | ||
TableName = tableName; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets database name of the source data set | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.databaseName")] | ||
public string DatabaseName { get; set; } | ||
|
||
/// <summary> | ||
/// Gets unique id for identifying a data set resource | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.dataSetId")] | ||
public string DataSetId { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets or sets resource id of SQL server | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.sqlServerResourceId")] | ||
public string SqlServerResourceId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets SQL DB table name. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.tableName")] | ||
public string TableName { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.