Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Generated from f33ee24e7884fc7cdd79dfa4276779dfffcb660e (#4564)
Browse files Browse the repository at this point in the history
removing webhook
  • Loading branch information
AutorestCI authored Jan 18, 2019
1 parent 904aab5 commit 4a1d07b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
33 changes: 0 additions & 33 deletions lib/services/datafactoryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7136,39 +7136,6 @@ export interface IfConditionActivity extends ControlActivity {
ifFalseActivities?: Activity[];
}

/**
* WebHook activity.
*/
export interface WebHookActivity extends ControlActivity {
/**
* WebHook activity target endpoint and path. Type: string (or Expression with resultType
* string).
*/
url: any;
/**
* Specifies the timeout within which the webhook should be called back. If there is no value
* specified, it takes the value of TimeSpan.FromMinutes(10) which is 10 minutes as default.
* Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
timeout?: any;
/**
* Represents the headers that will be sent to the request. For example, to set the language and
* type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type":
* "application/json" }. Type: string (or Expression with resultType string).
*/
headers?: any;
/**
* Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not
* allowed for GET method Type: string (or Expression with resultType string).
*/
body?: any;
/**
* Authentication method used for calling the endpoint.
*/
authentication?: WebActivityAuthentication;
}

/**
* Execute pipeline activity.
*/
Expand Down
2 changes: 0 additions & 2 deletions lib/services/datafactoryManagement/lib/models/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ exports.UntilActivity = require('./untilActivity');
exports.WaitActivity = require('./waitActivity');
exports.ForEachActivity = require('./forEachActivity');
exports.IfConditionActivity = require('./ifConditionActivity');
exports.WebHookActivity = require('./webHookActivity');
exports.ExecutePipelineActivity = require('./executePipelineActivity');
exports.LinkedIntegrationRuntime = require('./linkedIntegrationRuntime');
exports.SelfHostedIntegrationRuntimeNode = require('./selfHostedIntegrationRuntimeNode');
Expand Down Expand Up @@ -649,7 +648,6 @@ exports.discriminators = {
'Activity.Wait' : exports.WaitActivity,
'Activity.ForEach' : exports.ForEachActivity,
'Activity.IfCondition' : exports.IfConditionActivity,
'Activity.WebHook' : exports.WebHookActivity,
'Activity.ExecutePipeline' : exports.ExecutePipelineActivity,
'Activity.Container' : exports.ControlActivity,
'IntegrationRuntimeStatus.SelfHosted' : exports.SelfHostedIntegrationRuntimeStatus,
Expand Down

0 comments on commit 4a1d07b

Please sign in to comment.