Skip to content

Commit

Permalink
[AutoPR datafactory/resource-manager] [Datafactory] Webhook activity (#…
Browse files Browse the repository at this point in the history
…4383)

* Generated from 1e5988d39eb2da25f1da3cf97e1b433524e1aa2d

Added webhook activity

* Generated from eaee060e46df3cc4882580e9c92109fb252cb14f

update type to string

* Generated from e66e21c84311006dea2c15b0c874024497edd5bc

Update description
  • Loading branch information
AutorestCI authored Mar 28, 2019
1 parent 4bf4efe commit 2a51519
Show file tree
Hide file tree
Showing 3 changed files with 554 additions and 32 deletions.
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 @@ -615,6 +615,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 @@ -960,6 +961,12 @@ const (
WebActivityMethodPUT WebActivityMethod = original.WebActivityMethodPUT
)

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 @@ -1566,6 +1573,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 @@ -1958,6 +1967,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 @@ -615,6 +615,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 @@ -960,6 +961,12 @@ const (
WebActivityMethodPUT WebActivityMethod = original.WebActivityMethodPUT
)

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 @@ -1566,6 +1573,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 @@ -1958,6 +1967,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

0 comments on commit 2a51519

Please sign in to comment.