com.google.cloud.video.livestream.v1.InputOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-live-stream-v1 Show documentation
Show all versions of proto-google-cloud-live-stream-v1 Show documentation
Proto library for google-cloud-live-stream
/*
* 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/livestream/v1/resources.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.video.livestream.v1;
public interface InputOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.video.livestream.v1.Input)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the input, in the form of:
* `projects/{project}/locations/{location}/inputs/{inputId}`.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The resource name of the input, in the form of:
* `projects/{project}/locations/{location}/inputs/{inputId}`.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. The creation time.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The creation time.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The creation time.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The update time.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The update time.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The update time.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* User-defined key/value metadata.
*
*
* map<string, string> labels = 4;
*/
int getLabelsCount();
/**
*
*
*
* User-defined key/value metadata.
*
*
* map<string, string> labels = 4;
*/
boolean containsLabels(java.lang.String key);
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Deprecated
java.util.Map getLabels();
/**
*
*
*
* User-defined key/value metadata.
*
*
* map<string, string> labels = 4;
*/
java.util.Map getLabelsMap();
/**
*
*
*
* User-defined key/value metadata.
*
*
* map<string, string> labels = 4;
*/
/* nullable */
java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* User-defined key/value metadata.
*
*
* map<string, string> labels = 4;
*/
java.lang.String getLabelsOrThrow(java.lang.String key);
/**
*
*
*
* Source type.
*
*
* .google.cloud.video.livestream.v1.Input.Type type = 5;
*
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
*
*
* Source type.
*
*
* .google.cloud.video.livestream.v1.Input.Type type = 5;
*
* @return The type.
*/
com.google.cloud.video.livestream.v1.Input.Type getType();
/**
*
*
*
* Tier defines the maximum input specification that is accepted by the
* video pipeline. The billing is charged based on the tier specified here.
* See [Pricing](https://cloud.google.com/livestream/pricing) for more detail.
* The default is `HD`.
*
*
* .google.cloud.video.livestream.v1.Input.Tier tier = 14;
*
* @return The enum numeric value on the wire for tier.
*/
int getTierValue();
/**
*
*
*
* Tier defines the maximum input specification that is accepted by the
* video pipeline. The billing is charged based on the tier specified here.
* See [Pricing](https://cloud.google.com/livestream/pricing) for more detail.
* The default is `HD`.
*
*
* .google.cloud.video.livestream.v1.Input.Tier tier = 14;
*
* @return The tier.
*/
com.google.cloud.video.livestream.v1.Input.Tier getTier();
/**
*
*
*
* Output only. URI to push the input stream to.
* Its format depends on the input
* [type][google.cloud.video.livestream.v1.Input.type], for example:
*
* * `RTMP_PUSH`: `rtmp://1.2.3.4/live/{STREAM-ID}`
* * `SRT_PUSH`: `srt://1.2.3.4:4201?streamid={STREAM-ID}`
*
*
* string uri = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The uri.
*/
java.lang.String getUri();
/**
*
*
*
* Output only. URI to push the input stream to.
* Its format depends on the input
* [type][google.cloud.video.livestream.v1.Input.type], for example:
*
* * `RTMP_PUSH`: `rtmp://1.2.3.4/live/{STREAM-ID}`
* * `SRT_PUSH`: `srt://1.2.3.4:4201?streamid={STREAM-ID}`
*
*
* string uri = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for uri.
*/
com.google.protobuf.ByteString getUriBytes();
/**
*
*
*
* Preprocessing configurations.
*
*
* .google.cloud.video.livestream.v1.PreprocessingConfig preprocessing_config = 9;
*
* @return Whether the preprocessingConfig field is set.
*/
boolean hasPreprocessingConfig();
/**
*
*
*
* Preprocessing configurations.
*
*
* .google.cloud.video.livestream.v1.PreprocessingConfig preprocessing_config = 9;
*
* @return The preprocessingConfig.
*/
com.google.cloud.video.livestream.v1.PreprocessingConfig getPreprocessingConfig();
/**
*
*
*
* Preprocessing configurations.
*
*
* .google.cloud.video.livestream.v1.PreprocessingConfig preprocessing_config = 9;
*/
com.google.cloud.video.livestream.v1.PreprocessingConfigOrBuilder
getPreprocessingConfigOrBuilder();
/**
*
*
*
* Security rule for access control.
*
*
* .google.cloud.video.livestream.v1.Input.SecurityRule security_rules = 12;
*
* @return Whether the securityRules field is set.
*/
boolean hasSecurityRules();
/**
*
*
*
* Security rule for access control.
*
*
* .google.cloud.video.livestream.v1.Input.SecurityRule security_rules = 12;
*
* @return The securityRules.
*/
com.google.cloud.video.livestream.v1.Input.SecurityRule getSecurityRules();
/**
*
*
*
* Security rule for access control.
*
*
* .google.cloud.video.livestream.v1.Input.SecurityRule security_rules = 12;
*/
com.google.cloud.video.livestream.v1.Input.SecurityRuleOrBuilder getSecurityRulesOrBuilder();
/**
*
*
*
* Output only. The information for the input stream. This field will be
* present only when this input receives the input stream.
*
*
*
* .google.cloud.video.livestream.v1.InputStreamProperty input_stream_property = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the inputStreamProperty field is set.
*/
boolean hasInputStreamProperty();
/**
*
*
*
* Output only. The information for the input stream. This field will be
* present only when this input receives the input stream.
*
*
*
* .google.cloud.video.livestream.v1.InputStreamProperty input_stream_property = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The inputStreamProperty.
*/
com.google.cloud.video.livestream.v1.InputStreamProperty getInputStreamProperty();
/**
*
*
*
* Output only. The information for the input stream. This field will be
* present only when this input receives the input stream.
*
*
*
* .google.cloud.video.livestream.v1.InputStreamProperty input_stream_property = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.video.livestream.v1.InputStreamPropertyOrBuilder
getInputStreamPropertyOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy