| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> The registry node that generated the event. Put differently, while the actor initiates the event, the |
| | 11 | | public partial class ContainerRegistryEventSource |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ContainerRegistryEventSource. </summary> |
| 0 | 14 | | internal ContainerRegistryEventSource() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ContainerRegistryEventSource. </summary> |
| | 19 | | /// <param name="addr"> The IP or hostname and the port of the registry node that generated the event. Generally |
| | 20 | | /// <param name="instanceID"> The running instance of an application. Changes after each restart. </param> |
| 4 | 21 | | internal ContainerRegistryEventSource(string addr, string instanceID) |
| | 22 | | { |
| 4 | 23 | | Addr = addr; |
| 4 | 24 | | InstanceID = instanceID; |
| 4 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> The IP or hostname and the port of the registry node that generated the event. Generally, this wil |
| 0 | 28 | | public string Addr { get; } |
| | 29 | | /// <summary> The running instance of an application. Changes after each restart. </summary> |
| 0 | 30 | | public string InstanceID { get; } |
| | 31 | | } |
| | 32 | | } |