All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.video.transcoder.v1.EditAtomOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.48.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/video/transcoder/v1/resources.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.video.transcoder.v1;

public interface EditAtomOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.video.transcoder.v1.EditAtom)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * A unique key for this atom. Must be specified when using advanced
   * mapping.
   * 
* * string key = 1; * * @return The key. */ java.lang.String getKey(); /** * * *
   * A unique key for this atom. Must be specified when using advanced
   * mapping.
   * 
* * string key = 1; * * @return The bytes for key. */ com.google.protobuf.ByteString getKeyBytes(); /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @return A list containing the inputs. */ java.util.List getInputsList(); /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @return The count of inputs. */ int getInputsCount(); /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @param index The index of the element to return. * @return The inputs at the given index. */ java.lang.String getInputs(int index); /** * * *
   * List of `Input.key`s identifying files that should be used in this atom.
   * The listed `inputs` must have the same timeline.
   * 
* * repeated string inputs = 2; * * @param index The index of the value to return. * @return The bytes of the inputs at the given index. */ com.google.protobuf.ByteString getInputsBytes(int index); /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return Whether the endTimeOffset field is set. */ boolean hasEndTimeOffset(); /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; * * @return The endTimeOffset. */ com.google.protobuf.Duration getEndTimeOffset(); /** * * *
   * End time in seconds for the atom, relative to the input file timeline.
   * When `end_time_offset` is not specified, the `inputs` are used until
   * the end of the atom.
   * 
* * .google.protobuf.Duration end_time_offset = 3; */ com.google.protobuf.DurationOrBuilder getEndTimeOffsetOrBuilder(); /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return Whether the startTimeOffset field is set. */ boolean hasStartTimeOffset(); /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; * * @return The startTimeOffset. */ com.google.protobuf.Duration getStartTimeOffset(); /** * * *
   * Start time in seconds for the atom, relative to the input file timeline.
   * The default is `0s`.
   * 
* * .google.protobuf.Duration start_time_offset = 4; */ com.google.protobuf.DurationOrBuilder getStartTimeOffsetOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy