Interface ListJobTemplatesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListJobTemplatesResponse,ListJobTemplatesResponse.Builder
public interface ListJobTemplatesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobTemplategetJobTemplates(int index)List of job templates in the specified region.intgetJobTemplatesCount()List of job templates in the specified region.List<JobTemplate>getJobTemplatesList()List of job templates in the specified region.JobTemplateOrBuildergetJobTemplatesOrBuilder(int index)List of job templates in the specified region.List<? extends JobTemplateOrBuilder>getJobTemplatesOrBuilderList()List of job templates in the specified region.StringgetNextPageToken()The pagination token.com.google.protobuf.ByteStringgetNextPageTokenBytes()The pagination token.StringgetUnreachable(int index)List of regions that could not be reached.com.google.protobuf.ByteStringgetUnreachableBytes(int index)List of regions that could not be reached.intgetUnreachableCount()List of regions that could not be reached.List<String>getUnreachableList()List of regions that could not be reached.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJobTemplatesList
List<JobTemplate> getJobTemplatesList()
List of job templates in the specified region.
repeated .google.cloud.video.transcoder.v1.JobTemplate job_templates = 1;
-
getJobTemplates
JobTemplate getJobTemplates(int index)
List of job templates in the specified region.
repeated .google.cloud.video.transcoder.v1.JobTemplate job_templates = 1;
-
getJobTemplatesCount
int getJobTemplatesCount()
List of job templates in the specified region.
repeated .google.cloud.video.transcoder.v1.JobTemplate job_templates = 1;
-
getJobTemplatesOrBuilderList
List<? extends JobTemplateOrBuilder> getJobTemplatesOrBuilderList()
List of job templates in the specified region.
repeated .google.cloud.video.transcoder.v1.JobTemplate job_templates = 1;
-
getJobTemplatesOrBuilder
JobTemplateOrBuilder getJobTemplatesOrBuilder(int index)
List of job templates in the specified region.
repeated .google.cloud.video.transcoder.v1.JobTemplate job_templates = 1;
-
getNextPageToken
String getNextPageToken()
The pagination token.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The pagination token.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
getUnreachableList
List<String> getUnreachableList()
List of regions that could not be reached.
repeated string unreachable = 3;- Returns:
- A list containing the unreachable.
-
getUnreachableCount
int getUnreachableCount()
List of regions that could not be reached.
repeated string unreachable = 3;- Returns:
- The count of unreachable.
-
getUnreachable
String getUnreachable(int index)
List of regions that could not be reached.
repeated string unreachable = 3;- Parameters:
index- The index of the element to return.- Returns:
- The unreachable at the given index.
-
getUnreachableBytes
com.google.protobuf.ByteString getUnreachableBytes(int index)
List of regions that could not be reached.
repeated string unreachable = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the unreachable at the given index.
-
-