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

ADF: Web Activity disable cert validation #17588

Merged
merged 11 commits into from
Mar 17, 2022
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@
"type": "object",
"properties": {
"type": {
"type": "object",
"type": "string",
"description": "Copy translator type."
}
},
Expand Down Expand Up @@ -2535,6 +2535,10 @@
"description": "Authentication method used for calling the endpoint.",
"$ref": "#/definitions/WebActivityAuthentication"
},
"disableCertValidation": {
"type": "boolean",
"description": "When set to true, Certificate validation will be disabled."
},
"datasets": {
"type": "array",
"description": "List of datasets passed to web endpoint.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6232,6 +6232,10 @@
"description": "Authentication method used for calling the endpoint.",
"$ref": "#/definitions/WebActivityAuthentication"
},
"disableCertValidation": {
"type": "boolean",
"description": "When set to true, Certificate validation will be disabled."
},
"datasets": {
"type": "array",
"description": "List of datasets passed to web endpoint.",
Expand Down