com.microsoft.azure.eventgrid.models.MediaLiveEventEncoderConnectedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-eventgrid Show documentation
Show all versions of azure-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.eventgrid.models;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Encoder connect event data.
*/
public class MediaLiveEventEncoderConnectedEventData {
/**
* Gets the ingest URL provided by the live event.
*/
@JsonProperty(value = "ingestUrl", access = JsonProperty.Access.WRITE_ONLY)
private String ingestUrl;
/**
* Gets the stream Id.
*/
@JsonProperty(value = "streamId", access = JsonProperty.Access.WRITE_ONLY)
private String streamId;
/**
* Gets the remote IP.
*/
@JsonProperty(value = "encoderIp", access = JsonProperty.Access.WRITE_ONLY)
private String encoderIp;
/**
* Gets the remote port.
*/
@JsonProperty(value = "encoderPort", access = JsonProperty.Access.WRITE_ONLY)
private String encoderPort;
/**
* Get gets the ingest URL provided by the live event.
*
* @return the ingestUrl value
*/
public String ingestUrl() {
return this.ingestUrl;
}
/**
* Get gets the stream Id.
*
* @return the streamId value
*/
public String streamId() {
return this.streamId;
}
/**
* Get gets the remote IP.
*
* @return the encoderIp value
*/
public String encoderIp() {
return this.encoderIp;
}
/**
* Get gets the remote port.
*
* @return the encoderPort value
*/
public String encoderPort() {
return this.encoderPort;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy