-
Notifications
You must be signed in to change notification settings - Fork 1
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
CRH Cloud event update #14
base: main
Are you sure you want to change the base?
Changes from all commits
b608cc3
b919500
4b93455
6d7fe95
e7e3e1c
5be5ab8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,28 +12,52 @@ | |
"properties": { | ||
"resource": { | ||
"$ref": "#/definitions/Resource", | ||
"additionalProperties": true, | ||
"description": "Optional. The Backup event payload. Unset for deletion events." | ||
}, | ||
"message": { | ||
"type": "string", | ||
"description": "Supporting message describing the event" | ||
} | ||
}, | ||
"additionalProperties": true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep this as true since this is an object |
||
"type": "object", | ||
"title": "ChangeEvent Event Data", | ||
"description": "The data within all ChangeEvent events." | ||
}, | ||
"Resource": { | ||
"additionalProperties": true, | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"description": "Equinix assigned unique identifier of the resource generating the event" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"description": "Type of the resource generating the event" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "Name of the resource generating the event" | ||
} | ||
}, | ||
"type": "object", | ||
"title": "Resource", | ||
"description": "Schema of the resource that fired the event" | ||
} | ||
}, | ||
timmy-equinix marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"cloudeventTypes": { | ||
"released": [], | ||
"released": [ | ||
{ | ||
"name": "equinix.resource_manager.event.created", | ||
"description": "Org / Project created event." | ||
}, | ||
{ | ||
"name": "equinix.resource_manager.event.updated", | ||
"description": "Org / Project updated event." | ||
}, | ||
{ | ||
"name": "equinix.resource_manager.event.deleted", | ||
"description": "Org / Project deleted event." | ||
Comment on lines
+49
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those are the comprehensive real event types that resource manager generated. Please check what we agreed to publish. They should look like equinix.resource_manager.organization.state.created, etc. |
||
} | ||
], | ||
"preview": [] | ||
}, | ||
"metricNames": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep this since this is an object.