Skip to content

Commit

Permalink
[AutoPR] datafactory/resource-manager (#5751)
Browse files Browse the repository at this point in the history
* Generated from 5e1bb35d5c3314d8f4fead76c3d69a2522be026b (#5651)

Update review comments

* [AutoPR datafactory/resource-manager] support Express Custom Setup (#5536)

* Generated from 696212c605edef333cba0f0e86d42ba344f4fc42

address the comments

* Generated from 4de64a2262df8e2e971620c95f7c3a2ba91d49d9

address comments

* Generated from fc0bdde313743dbbed8e8c506dd9e07107d04142

Merge branch 'master' into ivan/support-express-custom-setup-for-manged-ir

* Generated from fc0bdde313743dbbed8e8c506dd9e07107d04142

Merge branch 'master' into ivan/support-express-custom-setup-for-manged-ir

* [AutoPR datafactory/resource-manager] [Data Factory]Add ORC Dataset/Copy Source/Copy Sink (#5611)

* Generated from 864a2b3827b7237d7cb60d77069b693dcbaf7001

[DataFactory]Add support for ORC dataset

* Generated from 864a2b3827b7237d7cb60d77069b693dcbaf7001

[DataFactory]Add support for ORC dataset

* Fix CI failure and conflict

* Generated from b07009df21da758efcb13fbbd25ce9e450751586 (#5729)

[DataFactory] Update Databricks linked service swagger related to warm pools.

* Generated from 5cc2c54ac1ba7f41fd2426ff39df46f785ce55f2 (#5748)

Add a clearer description.
  • Loading branch information
AutorestCI authored and ArcturusZhang committed Sep 16, 2019
1 parent c383392 commit 183f8b1
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions services/datafactory/mgmt/2018-06-01/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -47168,6 +47168,8 @@ type CommonDataServiceForAppsSink struct {
WriteBehavior *string `json:"writeBehavior,omitempty"`
// IgnoreNullValues - The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
IgnoreNullValues interface{} `json:"ignoreNullValues,omitempty"`
// AlternateKeyName - The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
AlternateKeyName interface{} `json:"alternateKeyName,omitempty"`
// AdditionalProperties - Unmatched properties from the message are deserialized this collection
AdditionalProperties map[string]interface{} `json:""`
// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
Expand All @@ -47194,6 +47196,9 @@ func (cdsfas CommonDataServiceForAppsSink) MarshalJSON() ([]byte, error) {
if cdsfas.IgnoreNullValues != nil {
objectMap["ignoreNullValues"] = cdsfas.IgnoreNullValues
}
if cdsfas.AlternateKeyName != nil {
objectMap["alternateKeyName"] = cdsfas.AlternateKeyName
}
if cdsfas.WriteBatchSize != nil {
objectMap["writeBatchSize"] = cdsfas.WriteBatchSize
}
Expand Down Expand Up @@ -47420,6 +47425,15 @@ func (cdsfas *CommonDataServiceForAppsSink) UnmarshalJSON(body []byte) error {
}
cdsfas.IgnoreNullValues = ignoreNullValues
}
case "alternateKeyName":
if v != nil {
var alternateKeyName interface{}
err = json.Unmarshal(*v, &alternateKeyName)
if err != nil {
return err
}
cdsfas.AlternateKeyName = alternateKeyName
}
default:
if v != nil {
var additionalProperties interface{}
Expand Down Expand Up @@ -72523,6 +72537,8 @@ type DynamicsCrmSink struct {
WriteBehavior *string `json:"writeBehavior,omitempty"`
// IgnoreNullValues - The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
IgnoreNullValues interface{} `json:"ignoreNullValues,omitempty"`
// AlternateKeyName - The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
AlternateKeyName interface{} `json:"alternateKeyName,omitempty"`
// AdditionalProperties - Unmatched properties from the message are deserialized this collection
AdditionalProperties map[string]interface{} `json:""`
// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
Expand All @@ -72549,6 +72565,9 @@ func (dcs DynamicsCrmSink) MarshalJSON() ([]byte, error) {
if dcs.IgnoreNullValues != nil {
objectMap["ignoreNullValues"] = dcs.IgnoreNullValues
}
if dcs.AlternateKeyName != nil {
objectMap["alternateKeyName"] = dcs.AlternateKeyName
}
if dcs.WriteBatchSize != nil {
objectMap["writeBatchSize"] = dcs.WriteBatchSize
}
Expand Down Expand Up @@ -72775,6 +72794,15 @@ func (dcs *DynamicsCrmSink) UnmarshalJSON(body []byte) error {
}
dcs.IgnoreNullValues = ignoreNullValues
}
case "alternateKeyName":
if v != nil {
var alternateKeyName interface{}
err = json.Unmarshal(*v, &alternateKeyName)
if err != nil {
return err
}
dcs.AlternateKeyName = alternateKeyName
}
default:
if v != nil {
var additionalProperties interface{}
Expand Down Expand Up @@ -74725,6 +74753,8 @@ type DynamicsSink struct {
WriteBehavior *string `json:"writeBehavior,omitempty"`
// IgnoreNullValues - The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
IgnoreNullValues interface{} `json:"ignoreNullValues,omitempty"`
// AlternateKeyName - The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
AlternateKeyName interface{} `json:"alternateKeyName,omitempty"`
// AdditionalProperties - Unmatched properties from the message are deserialized this collection
AdditionalProperties map[string]interface{} `json:""`
// WriteBatchSize - Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
Expand All @@ -74751,6 +74781,9 @@ func (ds DynamicsSink) MarshalJSON() ([]byte, error) {
if ds.IgnoreNullValues != nil {
objectMap["ignoreNullValues"] = ds.IgnoreNullValues
}
if ds.AlternateKeyName != nil {
objectMap["alternateKeyName"] = ds.AlternateKeyName
}
if ds.WriteBatchSize != nil {
objectMap["writeBatchSize"] = ds.WriteBatchSize
}
Expand Down Expand Up @@ -74977,6 +75010,15 @@ func (ds *DynamicsSink) UnmarshalJSON(body []byte) error {
}
ds.IgnoreNullValues = ignoreNullValues
}
case "alternateKeyName":
if v != nil {
var alternateKeyName interface{}
err = json.Unmarshal(*v, &alternateKeyName)
if err != nil {
return err
}
ds.AlternateKeyName = alternateKeyName
}
default:
if v != nil {
var additionalProperties interface{}
Expand Down

0 comments on commit 183f8b1

Please sign in to comment.