forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 284e49e67e41e6fa010e4ec05c0213a92e28738d
Update GoogleAdWords and GoogleBigQuery clientId for fix issue
- Loading branch information
SDK Automation
committed
Dec 5, 2019
1 parent
024ebaa
commit ce03041
Showing
7 changed files
with
124 additions
and
10 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
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
...ory/Microsoft.Azure.Management.DataFactory/src/Generated/Models/SapHanaPartitionOption.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,23 @@ | ||
// <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.DataFactory.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Defines values for SapHanaPartitionOption. | ||
/// </summary> | ||
public static class SapHanaPartitionOption | ||
{ | ||
public const string None = "None"; | ||
public const string PhysicalPartitionsOfTable = "PhysicalPartitionsOfTable"; | ||
public const string SapHanaDynamicRange = "SapHanaDynamicRange"; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...y/Microsoft.Azure.Management.DataFactory/src/Generated/Models/SapHanaPartitionSettings.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,55 @@ | ||
// <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.DataFactory.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// The settings that will be leveraged for SAP HANA source partitioning. | ||
/// </summary> | ||
public partial class SapHanaPartitionSettings | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the SapHanaPartitionSettings class. | ||
/// </summary> | ||
public SapHanaPartitionSettings() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the SapHanaPartitionSettings class. | ||
/// </summary> | ||
/// <param name="partitionColumnName">The name of the column that will | ||
/// be used for proceeding range partitioning. Type: string (or | ||
/// Expression with resultType string).</param> | ||
public SapHanaPartitionSettings(object partitionColumnName = default(object)) | ||
{ | ||
PartitionColumnName = partitionColumnName; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets the name of the column that will be used for | ||
/// proceeding range partitioning. Type: string (or Expression with | ||
/// resultType string). | ||
/// </summary> | ||
[JsonProperty(PropertyName = "partitionColumnName")] | ||
public object PartitionColumnName { get; set; } | ||
|
||
} | ||
} |
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