Skip to content

Commit

Permalink
Merge pull request #25 from tonytang-microsoft-com/master
Browse files Browse the repository at this point in the history
Added ProvisioningState property to workflow trigger properties and w…
  • Loading branch information
devigned committed Oct 15, 2015
2 parents 934feb3 + 5a3cd14 commit 1995758
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions arm-logic/2015-02-01-preview/swagger/logic.json
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,11 @@
"WorkflowProperties": {
"type": "object",
"properties": {
"provisioningState": {
"$ref": "#/definitions/WorkflowProvisioningState",
"readOnly": true,
"description": "Gets the provisioning state."
},
"createdTime": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -1611,6 +1616,11 @@
"WorkflowTriggerProperties": {
"type": "object",
"properties": {
"provisioningState": {
"$ref": "#/definitions/WorkflowTriggerProvisioningState",
"readOnly": true,
"description": "Gets the provisioning state."
},
"createdTime": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -2259,6 +2269,25 @@
"description": "Gets the error."
}
}
},
"WorkflowTriggerProvisioningState": {
"type": "string",
"enum": [
"NotSpecified",
"Creating",
"Succeeded",
"Updating"
],
"x-ms-enum": "WorkflowTriggerProvisioningState"
},
"WorkflowProvisioningState": {
"type": "string",
"enum": [
"NotSpecified",
"Moving",
"Succeeded"
],
"x-ms-enum": "WorkflowProvisioningState"
}
},
"parameters": {
Expand Down

0 comments on commit 1995758

Please sign in to comment.