com.volcengine.service.live.model.request.UpdateRelaySourceRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: live/request/request_live.proto
package com.volcengine.service.live.model.request;
public interface UpdateRelaySourceRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:Volcengine.Live.Models.Request.UpdateRelaySourceRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* 域名空间名称。
*
*
* string Vhost = 1;
* @return The vhost.
*/
String getVhost();
/**
*
* 域名空间名称。
*
*
* string Vhost = 1;
* @return The bytes for vhost.
*/
com.google.protobuf.ByteString
getVhostBytes();
/**
*
* 应用名称,由 1 到 30 位数字、字母、下划线及"-"和"."组成。
*
*
* string App = 2;
* @return The app.
*/
String getApp();
/**
*
* 应用名称,由 1 到 30 位数字、字母、下划线及"-"和"."组成。
*
*
* string App = 2;
* @return The bytes for app.
*/
com.google.protobuf.ByteString
getAppBytes();
/**
*
* 回源地址数组。
*
*
* repeated string RelaySourceDomainList = 3;
* @return A list containing the relaySourceDomainList.
*/
java.util.List
getRelaySourceDomainListList();
/**
*
* 回源地址数组。
*
*
* repeated string RelaySourceDomainList = 3;
* @return The count of relaySourceDomainList.
*/
int getRelaySourceDomainListCount();
/**
*
* 回源地址数组。
*
*
* repeated string RelaySourceDomainList = 3;
* @param index The index of the element to return.
* @return The relaySourceDomainList at the given index.
*/
String getRelaySourceDomainList(int index);
/**
*
* 回源地址数组。
*
*
* repeated string RelaySourceDomainList = 3;
* @param index The index of the value to return.
* @return The bytes of the relaySourceDomainList at the given index.
*/
com.google.protobuf.ByteString
getRelaySourceDomainListBytes(int index);
/**
*
* 回源参数。
*
*
* map<string, string> RelaySourceParams = 4;
*/
int getRelaySourceParamsCount();
/**
*
* 回源参数。
*
*
* map<string, string> RelaySourceParams = 4;
*/
boolean containsRelaySourceParams(
String key);
/**
* Use {@link #getRelaySourceParamsMap()} instead.
*/
@Deprecated
java.util.Map
getRelaySourceParams();
/**
*
* 回源参数。
*
*
* map<string, string> RelaySourceParams = 4;
*/
java.util.Map
getRelaySourceParamsMap();
/**
*
* 回源参数。
*
*
* map<string, string> RelaySourceParams = 4;
*/
String getRelaySourceParamsOrDefault(
String key,
String defaultValue);
/**
*
* 回源参数。
*
*
* map<string, string> RelaySourceParams = 4;
*/
String getRelaySourceParamsOrThrow(
String key);
/**
*
* 回源协议,目前只支持以下两种:<li>rmtp <li>flv。
*
*
* string RelaySourceProtocol = 5;
* @return The relaySourceProtocol.
*/
String getRelaySourceProtocol();
/**
*
* 回源协议,目前只支持以下两种:<li>rmtp <li>flv。
*
*
* string RelaySourceProtocol = 5;
* @return The bytes for relaySourceProtocol.
*/
com.google.protobuf.ByteString
getRelaySourceProtocolBytes();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy