Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactory/resource-manager] [Datafactory] Add Webhook Activity to Azure Data Factory #3834

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions profiles/latest/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ const (
TypeUntil TypeBasicActivity = original.TypeUntil
TypeWait TypeBasicActivity = original.TypeWait
TypeWebActivity TypeBasicActivity = original.TypeWebActivity
TypeWebHook TypeBasicActivity = original.TypeWebHook
)

type TypeBasicCopySink = original.TypeBasicCopySink
Expand Down Expand Up @@ -885,6 +886,12 @@ const (
PUT WebActivityMethod = original.PUT
)

type WebHookActivityMethod = original.WebHookActivityMethod

const (
WebHookActivityMethodPOST WebHookActivityMethod = original.WebHookActivityMethodPOST
)

type AccessPolicyResponse = original.AccessPolicyResponse
type Activity = original.Activity
type ActivityDependency = original.ActivityDependency
Expand Down Expand Up @@ -1431,6 +1438,8 @@ type WebActivityTypeProperties = original.WebActivityTypeProperties
type WebAnonymousAuthentication = original.WebAnonymousAuthentication
type WebBasicAuthentication = original.WebBasicAuthentication
type WebClientCertificateAuthentication = original.WebClientCertificateAuthentication
type WebHookActivity = original.WebHookActivity
type WebHookActivityTypeProperties = original.WebHookActivityTypeProperties
type WebLinkedService = original.WebLinkedService
type WebLinkedServiceTypeProperties = original.WebLinkedServiceTypeProperties
type WebSource = original.WebSource
Expand Down Expand Up @@ -1805,6 +1814,9 @@ func PossibleVariableTypeValues() []VariableType {
func PossibleWebActivityMethodValues() []WebActivityMethod {
return original.PossibleWebActivityMethodValues()
}
func PossibleWebHookActivityMethodValues() []WebHookActivityMethod {
return original.PossibleWebHookActivityMethodValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/latest"
}
Expand Down
12 changes: 12 additions & 0 deletions profiles/preview/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,7 @@ const (
TypeUntil TypeBasicActivity = original.TypeUntil
TypeWait TypeBasicActivity = original.TypeWait
TypeWebActivity TypeBasicActivity = original.TypeWebActivity
TypeWebHook TypeBasicActivity = original.TypeWebHook
)

type TypeBasicCopySink = original.TypeBasicCopySink
Expand Down Expand Up @@ -885,6 +886,12 @@ const (
PUT WebActivityMethod = original.PUT
)

type WebHookActivityMethod = original.WebHookActivityMethod

const (
WebHookActivityMethodPOST WebHookActivityMethod = original.WebHookActivityMethodPOST
)

type AccessPolicyResponse = original.AccessPolicyResponse
type Activity = original.Activity
type ActivityDependency = original.ActivityDependency
Expand Down Expand Up @@ -1431,6 +1438,8 @@ type WebActivityTypeProperties = original.WebActivityTypeProperties
type WebAnonymousAuthentication = original.WebAnonymousAuthentication
type WebBasicAuthentication = original.WebBasicAuthentication
type WebClientCertificateAuthentication = original.WebClientCertificateAuthentication
type WebHookActivity = original.WebHookActivity
type WebHookActivityTypeProperties = original.WebHookActivityTypeProperties
type WebLinkedService = original.WebLinkedService
type WebLinkedServiceTypeProperties = original.WebLinkedServiceTypeProperties
type WebSource = original.WebSource
Expand Down Expand Up @@ -1805,6 +1814,9 @@ func PossibleVariableTypeValues() []VariableType {
func PossibleWebActivityMethodValues() []WebActivityMethod {
return original.PossibleWebActivityMethodValues()
}
func PossibleWebHookActivityMethodValues() []WebHookActivityMethod {
return original.PossibleWebHookActivityMethodValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
Expand Down
Loading