Skip to content

Commit 147d853

Browse files
authored
[EG] jan sys events (#33731)
* jan sys events * avs events * update * fixes * changelog
1 parent d4445ad commit 147d853

File tree

5 files changed

+34
-8
lines changed

5 files changed

+34
-8
lines changed

.vscode/cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
"AsyncIterable",
174174
"asyncio",
175175
"avroencoder",
176+
"Avs",
176177
"azcmagent",
177178
"azsdk",
178179
"azurecr",

sdk/eventgrid/azure-eventgrid/CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
# Release History
22

3-
## 4.16.1 (Unreleased)
3+
## 4.17.0 (2024-02-08)
44
This version and all future versions will require Python 3.8+.
55

66
### Features Added
77

8-
### Breaking Changes
9-
10-
### Bugs Fixed
11-
12-
### Other Changes
8+
- Added new enums values to `SystemEventNames` related to Azure Storage and Azure VMware Solution.
139

1410
## 4.16.0 (2023-11-08)
1511

sdk/eventgrid/azure-eventgrid/azure/eventgrid/_event_mappings.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,30 @@ class SystemEventNames(str, Enum, metaclass=CaseInsensitiveEnumMeta):
204204

205205
AppConfigurationSnapshotModifiedEventName = 'Microsoft.AppConfiguration.SnapshotModified'
206206

207+
AvsClusterCreatedEventName = 'Microsoft.AVS.ClusterCreated'
208+
209+
AvsClusterDeletedEventName = 'Microsoft.AVS.ClusterDeleted'
210+
211+
AvsClusterFailedEventName = 'Microsoft.AVS.ClusterFailed'
212+
213+
AvsClusterUpdatedEventName = 'Microsoft.AVS.ClusterUpdated'
214+
215+
AvsClusterUpdatingEventName = 'Microsoft.AVS.ClusterUpdating'
216+
217+
AvsPrivateCloudFailedEventName = 'Microsoft.AVS.PrivateCloudFailed'
218+
219+
AvsPrivateCloudUpdatedEventName = 'Microsoft.AVS.PrivateCloudUpdated'
220+
221+
AvsPrivateCloudUpdatingEventName = 'Microsoft.AVS.PrivateCloudUpdating'
222+
223+
AvsScriptExecutionCancelledEventName = 'Microsoft.AVS.ScriptExecutionCancelled'
224+
225+
AvsScriptExecutionFailedEventName = 'Microsoft.AVS.ScriptExecutionFailed'
226+
227+
AvsScriptExecutionFinishedEventName = 'Microsoft.AVS.ScriptExecutionFinished'
228+
229+
AvsScriptExecutionStartedEventName = 'Microsoft.AVS.ScriptExecutionStarted'
230+
207231
ContainerRegistryChartDeletedEventName = 'Microsoft.ContainerRegistry.ChartDeleted'
208232

209233
ContainerRegistryChartPushedEventName = 'Microsoft.ContainerRegistry.ChartPushed'
@@ -420,6 +444,10 @@ class SystemEventNames(str, Enum, metaclass=CaseInsensitiveEnumMeta):
420444

421445
StorageLifecyclePolicyCompletedEventName = 'Microsoft.Storage.LifecyclePolicyCompleted'
422446

447+
StorageTaskAssignmentCompletedEventName = 'Microsoft.Storage.StorageTaskAssignmentCompleted'
448+
449+
StorageTaskAssignmentQueuedEventName = 'Microsoft.Storage.StorageTaskAssignmentQueued'
450+
423451
StorageTaskCompletedEventName = 'Microsoft.Storage.StorageTaskCompleted'
424452

425453
StorageTaskQueuedEventName = 'Microsoft.Storage.StorageTaskQueued'

sdk/eventgrid/azure-eventgrid/azure/eventgrid/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "4.16.1"
12+
VERSION = "4.17.0"

sdk/eventgrid/azure-eventgrid/swagger/_constants.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
####These files are used to extract the enums - update this list as necessary
33
#############################################################################
44
files = [
5-
5+
"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/eventgrid/data-plane/Microsoft.AVS/stable/2018-01-01/PrivateCloud.json",
66
"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/eventgrid/data-plane/Microsoft.Communication/stable/2018-01-01/AzureCommunicationServices.json",
77
"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/eventgrid/data-plane/Microsoft.ApiManagement/stable/2018-01-01/APIManagement.json",
88
"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/main/specification/eventgrid/data-plane/Microsoft.AppConfiguration/stable/2018-01-01/AppConfiguration.json",
@@ -65,4 +65,5 @@
6565

6666
EXCEPTIONS = ['ContainerRegistryArtifactEventData', 'ContainerRegistryEventData', 'ContainerServiceClusterSupportEventData', 'ContainerServiceNodePoolRollingEventData',
6767
'EventGridMQTTClientEventData', 'AppConfigurationSnapshotEventData', 'HealthResourcesResourceEventData', 'AcsRouterJobEventData', 'AcsRouterWorkerEventData', 'AcsRouterEventData',
68+
'AvsClusterEventData', 'AvsPrivateCloudEventData', 'AvsScriptExecutionEventData',
6869
]

0 commit comments

Comments
 (0)