com.volcengine.service.vod.model.request.VodGetContentBlockTasksRequestOrBuilder 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: volcengine/vod/request/request_vod.proto
package com.volcengine.service.vod.model.request;
public interface VodGetContentBlockTasksRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:Volcengine.Vod.Models.Request.VodGetContentBlockTasksRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*指定一个内容URL
*
*
* string Url = 1;
* @return The url.
*/
java.lang.String getUrl();
/**
*
*指定一个内容URL
*
*
* string Url = 1;
* @return The bytes for url.
*/
com.google.protobuf.ByteString
getUrlBytes();
/**
*
*指定一个加速域名以包含属于该加速域名的内容 URL。
*
*
* string Domain = 2;
* @return The domain.
*/
java.lang.String getDomain();
/**
*
*指定一个加速域名以包含属于该加速域名的内容 URL。
*
*
* string Domain = 2;
* @return The bytes for domain.
*/
com.google.protobuf.ByteString
getDomainBytes();
/**
*
*指定一个任务 ID,任务 ID 精确匹配。
*
*
* string TaskID = 3;
* @return The taskID.
*/
java.lang.String getTaskID();
/**
*
*指定一个任务 ID,任务 ID 精确匹配。
*
*
* string TaskID = 3;
* @return The bytes for taskID.
*/
com.google.protobuf.ByteString
getTaskIDBytes();
/**
*
*指定一个任务类型,该参数的可用值如下:
*block_url:封禁任务。
*unblock_url:解封任务。
*必填
*
*
* string TaskType = 4;
* @return The taskType.
*/
java.lang.String getTaskType();
/**
*
*指定一个任务类型,该参数的可用值如下:
*block_url:封禁任务。
*unblock_url:解封任务。
*必填
*
*
* string TaskType = 4;
* @return The bytes for taskType.
*/
com.google.protobuf.ByteString
getTaskTypeBytes();
/**
*
*指定一个内容 URL 的状态。该参数的可用值如下:
*complete:已完成。
*running:执行中。
*failed:执行失败。
*
*
* string Status = 5;
* @return The status.
*/
java.lang.String getStatus();
/**
*
*指定一个内容 URL 的状态。该参数的可用值如下:
*complete:已完成。
*running:执行中。
*failed:执行失败。
*
*
* string Status = 5;
* @return The bytes for status.
*/
com.google.protobuf.ByteString
getStatusBytes();
/**
*
*指定一个时间,时间格式是 Unix
*时间戳。该时间用以包含提交时间大于或等于该时间的任务。您无法查询超过 7
*天的任务。
*
*
* int64 StartTime = 6;
* @return The startTime.
*/
long getStartTime();
/**
*
*指定一个时间,时间格式是 Unix
*时间戳。该时间用以包含提交时间小于或等于该时间的任务。您无法查询超过 7
*天的任务。
*
*
* int64 EndTime = 7;
* @return The endTime.
*/
long getEndTime();
/**
*
*指定一个页码。系统只返回该页面上的那些任务。
*
*
* int64 PageNum = 8;
* @return The pageNum.
*/
long getPageNum();
/**
*
*指定响应正文中每页包含的任务数量。
*
*
* int64 PageSize = 9;
* @return The pageSize.
*/
long getPageSize();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy