| | 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> Encoder connection rejected event data. </summary> |
| | 11 | | public partial class MediaLiveEventConnectionRejectedEventData |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of MediaLiveEventConnectionRejectedEventData. </summary> |
| 0 | 14 | | internal MediaLiveEventConnectionRejectedEventData() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of MediaLiveEventConnectionRejectedEventData. </summary> |
| | 19 | | /// <param name="ingestUrl"> Gets the ingest URL provided by the live event. </param> |
| | 20 | | /// <param name="streamId"> Gets the stream Id. </param> |
| | 21 | | /// <param name="encoderIp"> Gets the remote IP. </param> |
| | 22 | | /// <param name="encoderPort"> Gets the remote port. </param> |
| | 23 | | /// <param name="resultCode"> Gets the result code. </param> |
| 2 | 24 | | internal MediaLiveEventConnectionRejectedEventData(string ingestUrl, string streamId, string encoderIp, string e |
| | 25 | | { |
| 2 | 26 | | IngestUrl = ingestUrl; |
| 2 | 27 | | StreamId = streamId; |
| 2 | 28 | | EncoderIp = encoderIp; |
| 2 | 29 | | EncoderPort = encoderPort; |
| 2 | 30 | | ResultCode = resultCode; |
| 2 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> Gets the ingest URL provided by the live event. </summary> |
| 0 | 34 | | public string IngestUrl { get; } |
| | 35 | | /// <summary> Gets the stream Id. </summary> |
| 0 | 36 | | public string StreamId { get; } |
| | 37 | | /// <summary> Gets the remote IP. </summary> |
| 0 | 38 | | public string EncoderIp { get; } |
| | 39 | | /// <summary> Gets the remote port. </summary> |
| 0 | 40 | | public string EncoderPort { get; } |
| | 41 | | /// <summary> Gets the result code. </summary> |
| 0 | 42 | | public string ResultCode { get; } |
| | 43 | | } |
| | 44 | | } |