Skip to content

Commit 18baf33

Browse files
authored
[DataFactory]Powershell Release (Azure#27425)
1 parent 3d31a05 commit 18baf33

33 files changed

+579
-137
lines changed

src/DataFactory/DataFactory.Management.Sdk/Generated/DataFactoryManagementClient.cs

+3
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,9 @@ public DataFactoryManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceCli
357357
/// <param name='rootHandler'>
358358
/// Optional. The http client handler used to handle http transport.
359359
/// </param>
360+
/// <param name='handlers'>
361+
/// Optional. The delegating handlers to add to the http client pipeline.
362+
/// </param>
360363
/// <exception cref="System.ArgumentNullException">
361364
/// Thrown when a required parameter is null
362365
/// </exception>

src/DataFactory/DataFactory.Management.Sdk/Generated/Models/AzurePostgreSqlSink.cs

+22-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Microsoft.Azure.Management.DataFactory.Models
88
using System.Linq;
99

1010
/// <summary>
11-
/// A copy activity Azure PostgreSQL sink.
11+
/// A copy activity Azure Database for PostgreSQL sink.
1212
/// </summary>
1313
[Newtonsoft.Json.JsonObject("AzurePostgreSqlSink")]
1414
public partial class AzurePostgreSqlSink : CopySink
@@ -54,11 +54,19 @@ public AzurePostgreSqlSink()
5454
/// <param name="preCopyScript">A query to execute before starting the copy. Type: string (or Expression
5555
/// with resultType string).
5656
/// </param>
57-
public AzurePostgreSqlSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object preCopyScript = default(object))
57+
58+
/// <param name="writeMethod">The write behavior for the operation. Default is Bulk Insert.
59+
/// Possible values include: &#39;BulkInsert&#39;, &#39;CopyCommand&#39;, &#39;Upsert&#39;</param>
60+
61+
/// <param name="upsertSettings">Azure Database for PostgreSQL upsert option settings
62+
/// </param>
63+
public AzurePostgreSqlSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object preCopyScript = default(object), string writeMethod = default(string), AzurePostgreSqlSinkUpsertSettings upsertSettings = default(AzurePostgreSqlSinkUpsertSettings))
5864

5965
: base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
6066
{
6167
this.PreCopyScript = preCopyScript;
68+
this.WriteMethod = writeMethod;
69+
this.UpsertSettings = upsertSettings;
6270
CustomInit();
6371
}
6472

@@ -74,5 +82,17 @@ public AzurePostgreSqlSink()
7482
/// </summary>
7583
[Newtonsoft.Json.JsonProperty(PropertyName = "preCopyScript")]
7684
public object PreCopyScript {get; set; }
85+
86+
/// <summary>
87+
/// Gets or sets the write behavior for the operation. Default is Bulk Insert. Possible values include: &#39;BulkInsert&#39;, &#39;CopyCommand&#39;, &#39;Upsert&#39;
88+
/// </summary>
89+
[Newtonsoft.Json.JsonProperty(PropertyName = "writeMethod")]
90+
public string WriteMethod {get; set; }
91+
92+
/// <summary>
93+
/// Gets or sets azure Database for PostgreSQL upsert option settings
94+
/// </summary>
95+
[Newtonsoft.Json.JsonProperty(PropertyName = "upsertSettings")]
96+
public AzurePostgreSqlSinkUpsertSettings UpsertSettings {get; set; }
7797
}
7898
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License. See License.txt in the project root for license information.
3+
// Code generated by Microsoft (R) AutoRest Code Generator.
4+
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
5+
6+
namespace Microsoft.Azure.Management.DataFactory.Models
7+
{
8+
using System.Linq;
9+
10+
/// <summary>
11+
/// Azure Database for PostgreSQL upsert option settings
12+
/// </summary>
13+
public partial class AzurePostgreSqlSinkUpsertSettings
14+
{
15+
/// <summary>
16+
/// Initializes a new instance of the AzurePostgreSqlSinkUpsertSettings class.
17+
/// </summary>
18+
public AzurePostgreSqlSinkUpsertSettings()
19+
{
20+
CustomInit();
21+
}
22+
23+
/// <summary>
24+
/// Initializes a new instance of the AzurePostgreSqlSinkUpsertSettings class.
25+
/// </summary>
26+
27+
/// <param name="keys">Key column names for unique row identification. Type: array of strings (or
28+
/// Expression with resultType array of strings).
29+
/// </param>
30+
public AzurePostgreSqlSinkUpsertSettings(object keys = default(object))
31+
32+
{
33+
this.Keys = keys;
34+
CustomInit();
35+
}
36+
37+
/// <summary>
38+
/// An initialization method that performs custom operations like setting defaults
39+
/// </summary>
40+
partial void CustomInit();
41+
42+
43+
/// <summary>
44+
/// Gets or sets key column names for unique row identification. Type: array of
45+
/// strings (or Expression with resultType array of strings).
46+
/// </summary>
47+
[Newtonsoft.Json.JsonProperty(PropertyName = "keys")]
48+
public object Keys {get; set; }
49+
}
50+
}

src/DataFactory/DataFactory.Management.Sdk/Generated/Models/AzurePostgreSqlSource.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Microsoft.Azure.Management.DataFactory.Models
88
using System.Linq;
99

1010
/// <summary>
11-
/// A copy activity Azure PostgreSQL source.
11+
/// A copy activity Azure Database for PostgreSQL source.
1212
/// </summary>
1313
[Newtonsoft.Json.JsonObject("AzurePostgreSqlSource")]
1414
public partial class AzurePostgreSqlSource : TabularSource
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License. See License.txt in the project root for license information.
3+
// Code generated by Microsoft (R) AutoRest Code Generator.
4+
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
5+
6+
namespace Microsoft.Azure.Management.DataFactory.Models
7+
{
8+
9+
/// <summary>
10+
/// Defines values for AzurePostgreSqlWriteMethodEnum.
11+
/// </summary>
12+
13+
14+
public static class AzurePostgreSqlWriteMethodEnum
15+
{
16+
public const string BulkInsert = "BulkInsert";
17+
public const string CopyCommand = "CopyCommand";
18+
public const string Upsert = "Upsert";
19+
}
20+
}

src/DataFactory/DataFactory.Management.Sdk/Generated/Models/CommonDataServiceForAppsSink.cs

+27-1
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,23 @@ public CommonDataServiceForAppsSink()
5959
/// <param name="alternateKeyName">The logical name of the alternate key which will be used when upserting
6060
/// records. Type: string (or Expression with resultType string).
6161
/// </param>
62-
public CommonDataServiceForAppsSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object))
62+
63+
/// <param name="bypassBusinessLogicExecution">Controls the bypass of Dataverse custom business logic. Type: string (or
64+
/// Expression with resultType string). Type: string (or Expression with
65+
/// resultType string).
66+
/// </param>
67+
68+
/// <param name="bypassPowerAutomateFlows">Controls the bypass of Power Automate flows. Default is false. Type:
69+
/// boolean (or Expression with resultType boolean).
70+
/// </param>
71+
public CommonDataServiceForAppsSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object), object bypassBusinessLogicExecution = default(object), object bypassPowerAutomateFlows = default(object))
6372

6473
: base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
6574
{
6675
this.IgnoreNullValues = ignoreNullValues;
6776
this.AlternateKeyName = alternateKeyName;
77+
this.BypassBusinessLogicExecution = bypassBusinessLogicExecution;
78+
this.BypassPowerAutomateFlows = bypassPowerAutomateFlows;
6879
CustomInit();
6980
}
7081
/// <summary>
@@ -95,6 +106,21 @@ static CommonDataServiceForAppsSink()
95106
/// </summary>
96107
[Newtonsoft.Json.JsonProperty(PropertyName = "alternateKeyName")]
97108
public object AlternateKeyName {get; set; }
109+
110+
/// <summary>
111+
/// Gets or sets controls the bypass of Dataverse custom business logic. Type:
112+
/// string (or Expression with resultType string). Type: string (or Expression
113+
/// with resultType string).
114+
/// </summary>
115+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassBusinessLogicExecution")]
116+
public object BypassBusinessLogicExecution {get; set; }
117+
118+
/// <summary>
119+
/// Gets or sets controls the bypass of Power Automate flows. Default is false.
120+
/// Type: boolean (or Expression with resultType boolean).
121+
/// </summary>
122+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassPowerAutomateFlows")]
123+
public object BypassPowerAutomateFlows {get; set; }
98124
/// <summary>
99125
/// Gets or sets the write behavior for the operation.
100126
/// </summary>

src/DataFactory/DataFactory.Management.Sdk/Generated/Models/DynamicsCrmSink.cs

+27-1
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,23 @@ public DynamicsCrmSink()
5959
/// <param name="alternateKeyName">The logical name of the alternate key which will be used when upserting
6060
/// records. Type: string (or Expression with resultType string).
6161
/// </param>
62-
public DynamicsCrmSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object))
62+
63+
/// <param name="bypassBusinessLogicExecution">Controls the bypass of Dataverse custom business logic. Type: string (or
64+
/// Expression with resultType string). Type: string (or Expression with
65+
/// resultType string).
66+
/// </param>
67+
68+
/// <param name="bypassPowerAutomateFlows">Controls the bypass of Power Automate flows. Default is false. Type:
69+
/// boolean (or Expression with resultType boolean).
70+
/// </param>
71+
public DynamicsCrmSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object), object bypassBusinessLogicExecution = default(object), object bypassPowerAutomateFlows = default(object))
6372

6473
: base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
6574
{
6675
this.IgnoreNullValues = ignoreNullValues;
6776
this.AlternateKeyName = alternateKeyName;
77+
this.BypassBusinessLogicExecution = bypassBusinessLogicExecution;
78+
this.BypassPowerAutomateFlows = bypassPowerAutomateFlows;
6879
CustomInit();
6980
}
7081
/// <summary>
@@ -95,6 +106,21 @@ static DynamicsCrmSink()
95106
/// </summary>
96107
[Newtonsoft.Json.JsonProperty(PropertyName = "alternateKeyName")]
97108
public object AlternateKeyName {get; set; }
109+
110+
/// <summary>
111+
/// Gets or sets controls the bypass of Dataverse custom business logic. Type:
112+
/// string (or Expression with resultType string). Type: string (or Expression
113+
/// with resultType string).
114+
/// </summary>
115+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassBusinessLogicExecution")]
116+
public object BypassBusinessLogicExecution {get; set; }
117+
118+
/// <summary>
119+
/// Gets or sets controls the bypass of Power Automate flows. Default is false.
120+
/// Type: boolean (or Expression with resultType boolean).
121+
/// </summary>
122+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassPowerAutomateFlows")]
123+
public object BypassPowerAutomateFlows {get; set; }
98124
/// <summary>
99125
/// Gets or sets the write behavior for the operation.
100126
/// </summary>

src/DataFactory/DataFactory.Management.Sdk/Generated/Models/DynamicsSink.cs

+27-1
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,23 @@ public DynamicsSink()
5959
/// <param name="alternateKeyName">The logical name of the alternate key which will be used when upserting
6060
/// records. Type: string (or Expression with resultType string).
6161
/// </param>
62-
public DynamicsSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object))
62+
63+
/// <param name="bypassBusinessLogicExecution">Controls the bypass of Dataverse custom business logic. Type: string (or
64+
/// Expression with resultType string). Type: string (or Expression with
65+
/// resultType string).
66+
/// </param>
67+
68+
/// <param name="bypassPowerAutomateFlows">Controls the bypass of Power Automate flows. Default is false. Type:
69+
/// boolean (or Expression with resultType boolean).
70+
/// </param>
71+
public DynamicsSink(System.Collections.Generic.IDictionary<string, object> additionalProperties = default(System.Collections.Generic.IDictionary<string, object>), object writeBatchSize = default(object), object writeBatchTimeout = default(object), object sinkRetryCount = default(object), object sinkRetryWait = default(object), object maxConcurrentConnections = default(object), object disableMetricsCollection = default(object), object ignoreNullValues = default(object), object alternateKeyName = default(object), object bypassBusinessLogicExecution = default(object), object bypassPowerAutomateFlows = default(object))
6372

6473
: base(additionalProperties, writeBatchSize, writeBatchTimeout, sinkRetryCount, sinkRetryWait, maxConcurrentConnections, disableMetricsCollection)
6574
{
6675
this.IgnoreNullValues = ignoreNullValues;
6776
this.AlternateKeyName = alternateKeyName;
77+
this.BypassBusinessLogicExecution = bypassBusinessLogicExecution;
78+
this.BypassPowerAutomateFlows = bypassPowerAutomateFlows;
6879
CustomInit();
6980
}
7081
/// <summary>
@@ -95,6 +106,21 @@ static DynamicsSink()
95106
/// </summary>
96107
[Newtonsoft.Json.JsonProperty(PropertyName = "alternateKeyName")]
97108
public object AlternateKeyName {get; set; }
109+
110+
/// <summary>
111+
/// Gets or sets controls the bypass of Dataverse custom business logic. Type:
112+
/// string (or Expression with resultType string). Type: string (or Expression
113+
/// with resultType string).
114+
/// </summary>
115+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassBusinessLogicExecution")]
116+
public object BypassBusinessLogicExecution {get; set; }
117+
118+
/// <summary>
119+
/// Gets or sets controls the bypass of Power Automate flows. Default is false.
120+
/// Type: boolean (or Expression with resultType boolean).
121+
/// </summary>
122+
[Newtonsoft.Json.JsonProperty(PropertyName = "bypassPowerAutomateFlows")]
123+
public object BypassPowerAutomateFlows {get; set; }
98124
/// <summary>
99125
/// Gets or sets the write behavior for the operation.
100126
/// </summary>

0 commit comments

Comments
 (0)