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

Add actions to event grid schema #3504

Merged
merged 1 commit into from
Jul 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,156 @@
"type": "string"
}
}
},
"ResourceActionSuccessData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionSuccess event. This is raised when a resource action operation succeeds.",
"type": "object",
"properties": {
"tenantId": {
"description": "The tenant ID of the resource.",
"type": "string"
},
"subscriptionId": {
"description": "The subscription ID of the resource.",
"type": "string"
},
"resourceGroup": {
"description": "The resource group of the resource.",
"type": "string"
},
"resourceProvider": {
"description": "The resource provider performing the operation.",
"type": "string"
},
"resourceUri": {
"description": "The URI of the resource in the operation.",
"type": "string"
},
"operationName": {
"description": "The operation that was performed.",
"type": "string"
},
"status": {
"description": "The status of the operation.",
"type": "string"
},
"authorization": {
"description": "The requested authorization for the operation.",
"type": "string"
},
"claims": {
"description": "The properties of the claims.",
"type": "string"
},
"correlationId": {
"description": "An operation ID used for troubleshooting.",
"type": "string"
},
"httpRequest": {
"description": "The details of the operation.",
"type": "string"
}
}
},
"ResourceActionFailureData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Resources.ResourceActionFailure event. This is raised when a resource action operation fails.",
"type": "object",
"properties": {
"tenantId": {
"description": "The tenant ID of the resource.",
"type": "string"
},
"subscriptionId": {
"description": "The subscription ID of the resource.",
"type": "string"
},
"resourceGroup": {
"description": "The resource group of the resource.",
"type": "string"
},
"resourceProvider": {
"description": "The resource provider performing the operation.",
"type": "string"
},
"resourceUri": {
"description": "The URI of the resource in the operation.",
"type": "string"
},
"operationName": {
"description": "The operation that was performed.",
"type": "string"
},
"status": {
"description": "The status of the operation.",
"type": "string"
},
"authorization": {
"description": "The requested authorization for the operation.",
"type": "string"
},
"claims": {
"description": "The properties of the claims.",
"type": "string"
},
"correlationId": {
"description": "An operation ID used for troubleshooting.",
"type": "string"
},
"httpRequest": {
"description": "The details of the operation.",
"type": "string"
}
}
},
"ResourceActionCancelData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Resources.ResourceActionCancel event. This is raised when a resource action operation is canceled.",
"type": "object",
"properties": {
"tenantId": {
"description": "The tenant ID of the resource.",
"type": "string"
},
"subscriptionId": {
"description": "The subscription ID of the resource.",
"type": "string"
},
"resourceGroup": {
"description": "The resource group of the resource.",
"type": "string"
},
"resourceProvider": {
"description": "The resource provider performing the operation.",
"type": "string"
},
"resourceUri": {
"description": "The URI of the resource in the operation.",
"type": "string"
},
"operationName": {
"description": "The operation that was performed.",
"type": "string"
},
"status": {
"description": "The status of the operation.",
"type": "string"
},
"authorization": {
"description": "The requested authorization for the operation.",
"type": "string"
},
"claims": {
"description": "The properties of the claims.",
"type": "string"
},
"correlationId": {
"description": "An operation ID used for troubleshooting.",
"type": "string"
},
"httpRequest": {
"description": "The details of the operation.",
"type": "string"
}
}
}
}
}
}