Skip to content

Commit

Permalink
Fix open api validation errors for the newly added API's. (Azure#1118)
Browse files Browse the repository at this point in the history
* Fix open api validation errors for the newly added API's.

* Adding missing description
  • Loading branch information
shimedh authored and balajikris committed Apr 13, 2017
1 parent f1786a1 commit e7adb40
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"historyName": "testHistoryName"
},
"responses":{
"200":{}
"202":{}
}
}
20 changes: 12 additions & 8 deletions arm-logic/2016-06-01/examples/WorkflowVersionsListCallbackUrl.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"parameters":{
"api-version":"2016-06-01",
"resourceGroupName":"testResourceGroup",
"subscriptionId":"34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
"workflowName": "testWorkflowName",
"versionId": "testWorkflowVersionId",
"triggerName": "testTriggerName"
},
"parameters": {
"api-version": "2016-06-01",
"resourceGroupName": "testResourceGroup",
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
"workflowName": "testWorkflowName",
"versionId": "testWorkflowVersionId",
"triggerName": "testTriggerName",
"parameters": {
"notAfter": "2017-03-05T08:00:00Z",
"keyType": "Primary"
}
},
"responses":{
"200":{
"body": {
Expand Down
13 changes: 7 additions & 6 deletions arm-logic/2016-06-01/examples/WorkflowsRegenerateAccessKey.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"parameters":{
"api-version":"2016-06-01",
"resourceGroupName":"testResourceGroup",
"subscriptionId":"34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
"workflowName":"testWorkflowName"
},
"parameters": {
"api-version": "2016-06-01",
"resourceGroupName": "testResourceGroup",
"subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
"workflowName": "testWorkflowName",
"keyType": { "keyType": "Primary" }
},
"responses":{
"200":{}
}
Expand Down
48 changes: 48 additions & 0 deletions arm-logic/2016-06-01/swagger/logic.json
Original file line number Diff line number Diff line change
Expand Up @@ -3474,10 +3474,58 @@
"type": "string",
"readOnly": true,
"description": "Gets the workflow trigger callback URL."
},
"method": {
"type": "string",
"readOnly": true,
"description": "Gets the workflow trigger callback URL HTTP method."
},
"basePath": {
"type": "string",
"readOnly": true,
"description": "Gets the workflow trigger callback URL base path."
},
"relativePath": {
"type": "string",
"readOnly": true,
"description": "Gets the workflow trigger callback URL relative path."
},
"relativePathParameters": {
"type": "array",
"items": {
"type": "string"
},
"description": "Gets the workflow trigger callback URL relative path parameters."
},
"queries": {
"$ref": "#/definitions/WorkflowTriggerListCallbackUrlQueries",
"description": "Gets the workflow trigger callback URL query parameters."
}
},
"description": "The workflow trigger callback URL."
},
"WorkflowTriggerListCallbackUrlQueries": {
"type": "object",
"properties": {
"api-version": {
"type": "string",
"description": "The api version."
},
"sp": {
"type": "string",
"description": "The SAS permissions."
},
"sv": {
"type": "string",
"description": "The SAS version."
},
"sig": {
"type": "string",
"description": "The SAS signature."
}
},
"description": "Gets the workflow trigger callback URL query parameters."
},
"WorkflowTriggerHistory": {
"type": "object",
"properties": {
Expand Down

0 comments on commit e7adb40

Please sign in to comment.