Interface InputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Input
,Input.Builder
public interface InputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
A unique key for this input.com.google.protobuf.ByteString
getKeyBytes()
A unique key for this input.PreprocessingConfig
getPreprocessingConfig()
Preprocessing configurations.PreprocessingConfigOrBuilder
getPreprocessingConfigOrBuilder()
Preprocessing configurations.String
getUri()
URI of the media.com.google.protobuf.ByteString
getUriBytes()
URI of the media.boolean
hasPreprocessingConfig()
Preprocessing configurations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKey
String getKey()
A unique key for this input. Must be specified when using advanced mapping and edit lists.
string key = 1;
- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
A unique key for this input. Must be specified when using advanced mapping and edit lists.
string key = 1;
- Returns:
- The bytes for key.
-
getUri
String getUri()
URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). If empty, the value is populated from `Job.input_uri`. See [Supported input and output formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
string uri = 2;
- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). If empty, the value is populated from `Job.input_uri`. See [Supported input and output formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
string uri = 2;
- Returns:
- The bytes for uri.
-
hasPreprocessingConfig
boolean hasPreprocessingConfig()
Preprocessing configurations.
.google.cloud.video.transcoder.v1.PreprocessingConfig preprocessing_config = 3;
- Returns:
- Whether the preprocessingConfig field is set.
-
getPreprocessingConfig
PreprocessingConfig getPreprocessingConfig()
Preprocessing configurations.
.google.cloud.video.transcoder.v1.PreprocessingConfig preprocessing_config = 3;
- Returns:
- The preprocessingConfig.
-
getPreprocessingConfigOrBuilder
PreprocessingConfigOrBuilder getPreprocessingConfigOrBuilder()
Preprocessing configurations.
.google.cloud.video.transcoder.v1.PreprocessingConfig preprocessing_config = 3;
-
-