com.volcengine.service.live.v20230101.LiveConfig 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
package com.volcengine.service.live.v20230101;
import com.volcengine.helper.Const;
import com.volcengine.model.ApiInfo;
import com.volcengine.model.Credentials;
import com.volcengine.model.ServiceInfo;
import org.apache.http.Header;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicHeader;
import org.apache.http.message.BasicNameValuePair;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
/**
* Basic configuration for Live
*/
public class LiveConfig {
/**
* Basic service configuration for Live
*/
public static Map serviceInfoMap = new HashMap() {
{
put("cn-north-1", new ServiceInfo(
new HashMap() {
{
put(Const.CONNECTION_TIMEOUT, 5000);
put(Const.SOCKET_TIMEOUT, 5000);
put(Const.Scheme, "https");
put(Const.Host, "live.volcengineapi.com");
put(Const.Header, new ArrayList() {
{
add(new BasicHeader("Accept", "application/json"));
}
});
put(Const.Credentials, new Credentials("cn-north-1", "live"));
}
}
));
}
};
/**
* Basic api configuration for Live
*/
public static Map apiInfoList = new HashMap() {
{
put("DeleteTranscodePreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteTranscodePreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateTranscodePreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateTranscodePreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListCommonTransPresetDetail", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListCommonTransPresetDetail"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("TranscodingJobStatus", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "TranscodingJobStatus"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostTransCodePreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostTransCodePreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateTranscodePreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateTranscodePreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("RestartTranscodingJob", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "RestartTranscodingJob"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteWatermarkPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteWatermarkPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateWatermarkPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateWatermarkPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListWatermarkPresetDetail", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListWatermarkPresetDetail"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateWatermarkPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateWatermarkPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateWatermarkPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateWatermarkPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateWatermarkPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateWatermarkPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteWatermarkPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteWatermarkPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListWatermarkPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListWatermarkPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostWatermarkPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostWatermarkPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("StopPullRecordTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "StopPullRecordTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateLiveStreamRecordIndexFiles", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateLiveStreamRecordIndexFiles"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreatePullRecordTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreatePullRecordTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteRecordPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteRecordPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateRecordPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateRecordPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("GetPullRecordTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "GetPullRecordTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeRecordTaskFileHistory", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeRecordTaskFileHistory"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostRecordPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostRecordPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListPullRecordTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListPullRecordTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateRecordPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateRecordPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteSnapshotPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteSnapshotPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateSnapshotPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateSnapshotPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateSnapshotPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateSnapshotPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeCDNSnapshotHistory", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeCDNSnapshotHistory"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostSnapshotPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostSnapshotPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostSnapshotPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostSnapshotPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateSnapshotPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateSnapshotPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateSnapshotPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateSnapshotPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteTimeShiftPresetV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteTimeShiftPresetV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateTimeShiftPresetV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateTimeShiftPresetV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListTimeShiftPresetV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListTimeShiftPresetV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateTimeShiftPresetV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateTimeShiftPresetV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteCallback", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteCallback"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeCallback", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeCallback"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateCallback", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateCallback"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteCert", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteCert"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeCertDetailSecretV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeCertDetailSecretV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListCertV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListCertV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateCert", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateCert"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("BindCert", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "BindCert"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UnbindCert", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UnbindCert"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteDomain", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteDomain"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("EnableDomain", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "EnableDomain"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateDomainV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateDomainV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateDomainVhost", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateDomainVhost"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeDomain", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeDomain"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListDomainDetail", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListDomainDetail"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateDomain", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateDomain"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DisableDomain", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DisableDomain"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateLiveVideoQualityAnalysisTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateLiveVideoQualityAnalysisTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteLiveVideoQualityAnalysisTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteLiveVideoQualityAnalysisTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("GetLiveVideoQualityAnalysisTaskDetail", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "GetLiveVideoQualityAnalysisTaskDetail"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListLiveVideoQualityAnalysisTasks", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListLiveVideoQualityAnalysisTasks"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("StopPullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "StopPullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreatePullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreatePullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreatePullToPushGroup", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreatePullToPushGroup"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeletePullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeletePullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeletePullToPushGroup", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeletePullToPushGroup"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("RestartPullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "RestartPullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdatePullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdatePullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdatePullToPushGroup", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdatePullToPushGroup"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListPullToPushGroup", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListPullToPushGroup"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListPullToPushTask", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListPullToPushTask"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListPullToPushTaskV2", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListPullToPushTaskV2"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteRelaySourceV4", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteRelaySourceV4"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteRelaySourceV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteRelaySourceV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateRelaySourceV4", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateRelaySourceV4"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListRelaySourceV4", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListRelaySourceV4"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeRelaySourceV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeRelaySourceV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateRelaySourceV4", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateRelaySourceV4"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateRelaySourceV3", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateRelaySourceV3"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("KillStream", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "KillStream"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeClosedStreamInfoByPage", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeClosedStreamInfoByPage"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveStreamInfoByPage", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveStreamInfoByPage"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveStreamState", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveStreamState"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeForbiddenStreamInfoByPage", new ApiInfo(
new HashMap() {
{
put(Const.Method, "GET");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeForbiddenStreamInfoByPage"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ForbidStream", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ForbidStream"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ResumeStream", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ResumeStream"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("GeneratePlayURL", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "GeneratePlayURL"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("GeneratePushURL", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "GeneratePushURL"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteStreamQuotaConfig", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteStreamQuotaConfig"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeStreamQuotaConfig", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeStreamQuotaConfig"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateStreamQuotaConfig", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateStreamQuotaConfig"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DeleteSnapshotAuditPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DeleteSnapshotAuditPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("UpdateSnapshotAuditPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "UpdateSnapshotAuditPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("ListVhostSnapshotAuditPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "ListVhostSnapshotAuditPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("CreateSnapshotAuditPreset", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "CreateSnapshotAuditPreset"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeIpInfo", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeIpInfo"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveRegionData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveRegionData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveSourceStreamMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveSourceStreamMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePushStreamMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePushStreamMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchStreamSessionData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchStreamSessionData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveStreamSessionData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveStreamSessionData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePlayStatusCodeData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePlayStatusCodeData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchSourceStreamMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchSourceStreamMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchSourceStreamAvgMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchSourceStreamAvgMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchPushStreamMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchPushStreamMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchPushStreamAvgMetrics", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchPushStreamAvgMetrics"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveStreamCountData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveStreamCountData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePushStreamCountData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePushStreamCountData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePushStreamInfoData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePushStreamInfoData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveTranscodeInfoData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveTranscodeInfoData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveSourceBandwidthData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveSourceBandwidthData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveSourceTrafficData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveSourceTrafficData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveMetricBandwidthData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveMetricBandwidthData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveMetricTrafficData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveMetricTrafficData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBatchStreamTrafficData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBatchStreamTrafficData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveISPData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveISPData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveP95PeakBandwidthData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveP95PeakBandwidthData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveAuditData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveAuditData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePullToPushBandwidthData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePullToPushBandwidthData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLivePullToPushData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLivePullToPushData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveBandwidthData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveBandwidthData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveRecordData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveRecordData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveSnapshotData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveSnapshotData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveTrafficData", new ApiInfo(
new HashMap() {
{
put(Const.Method, "POST");
put(Const.Path, "/");
put(Const.Query, new ArrayList() {
{
add(new BasicNameValuePair("Action", "DescribeLiveTrafficData"));
add(new BasicNameValuePair("Version", "2023-01-01"));
}
});
}
}
));
put("DescribeLiveTranscodeData", new ApiInfo(
new HashMap