-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
AppConfiguration.json
107 lines (107 loc) · 3.72 KB
/
AppConfiguration.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"swagger": "2.0",
"info": {
"version": "2018-01-01",
"title": "Schema of Azure App Configuration events published to Azure Event Grid",
"description": "Describes the schema of the Azure App Configuration events published to Azure Event Grid. This corresponds to the Data property of an EventGridEvent."
},
"paths": {},
"definitions": {
"AppConfigurationKeyValueModifiedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueModified event.",
"type": "object",
"properties": {
"key": {
"description": "The key used to identify the key-value that was modified.",
"type": "string"
},
"label": {
"description": "The label, if any, used to identify the key-value that was modified.",
"type": "string"
},
"etag": {
"description": "The etag representing the new state of the key-value.",
"type": "string"
},
"syncToken": {
"description": "The sync token representing the server state after the event.",
"type": "string"
}
}
},
"AppConfigurationKeyValueDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.KeyValueDeleted event.",
"type": "object",
"properties": {
"key": {
"description": "The key used to identify the key-value that was deleted.",
"type": "string"
},
"label": {
"description": "The label, if any, used to identify the key-value that was deleted.",
"type": "string"
},
"etag": {
"description": "The etag representing the key-value that was deleted.",
"type": "string"
},
"syncToken": {
"description": "The sync token representing the server state after the event.",
"type": "string"
}
}
},
"AppConfigurationSnapshotEventData": {
"description": "Schema of common properties of snapshot events",
"type": "object",
"properties": {
"name": {
"description": "The name of the snapshot.",
"type": "string"
},
"etag": {
"description": "The etag representing the new state of the snapshot.",
"type": "string"
},
"syncToken": {
"description": "The sync token representing the server state after the event.",
"type": "string"
}
}
},
"AppConfigurationSnapshotCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotCreated event.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AppConfigurationSnapshotEventData"
}
],
"x-ms-examples": {
"snapshotCreatedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/snapshot_created.json"
},
"snapshotCreatedEventGridSchema": {
"$ref": "./examples/event-grid-schema/snapshot_created.json"
}
}
},
"AppConfigurationSnapshotModifiedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.AppConfiguration.SnapshotModified event.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AppConfigurationSnapshotEventData"
}
],
"x-ms-examples": {
"snapshotModifiedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/snapshot_modified.json"
},
"snapshotModifiedEventGridSchema": {
"$ref": "./examples/event-grid-schema/snapshot_modified.json"
}
}
}
}
}