
com.google.cloud.visionai.v1.AnalyzerDefinitionOrBuilder Maven / Gradle / Ivy
/*
* 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/visionai/v1/lva.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
public interface AnalyzerDefinitionOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.visionai.v1.AnalyzerDefinition)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of this analyzer.
*
* Tentatively [a-z][a-z0-9]*(_[a-z0-9]+)*.
*
*
* string analyzer = 1;
*
* @return The analyzer.
*/
java.lang.String getAnalyzer();
/**
*
*
*
* The name of this analyzer.
*
* Tentatively [a-z][a-z0-9]*(_[a-z0-9]+)*.
*
*
* string analyzer = 1;
*
* @return The bytes for analyzer.
*/
com.google.protobuf.ByteString getAnalyzerBytes();
/**
*
*
*
* The name of the operator that this analyzer runs.
*
* Must match the name of a supported operator.
*
*
* string operator = 2;
*
* @return The operator.
*/
java.lang.String getOperator();
/**
*
*
*
* The name of the operator that this analyzer runs.
*
* Must match the name of a supported operator.
*
*
* string operator = 2;
*
* @return The bytes for operator.
*/
com.google.protobuf.ByteString getOperatorBytes();
/**
*
*
*
* Input streams.
*
*
* repeated .google.cloud.visionai.v1.AnalyzerDefinition.StreamInput inputs = 3;
*/
java.util.List getInputsList();
/**
*
*
*
* Input streams.
*
*
* repeated .google.cloud.visionai.v1.AnalyzerDefinition.StreamInput inputs = 3;
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.StreamInput getInputs(int index);
/**
*
*
*
* Input streams.
*
*
* repeated .google.cloud.visionai.v1.AnalyzerDefinition.StreamInput inputs = 3;
*/
int getInputsCount();
/**
*
*
*
* Input streams.
*
*
* repeated .google.cloud.visionai.v1.AnalyzerDefinition.StreamInput inputs = 3;
*/
java.util.List extends com.google.cloud.visionai.v1.AnalyzerDefinition.StreamInputOrBuilder>
getInputsOrBuilderList();
/**
*
*
*
* Input streams.
*
*
* repeated .google.cloud.visionai.v1.AnalyzerDefinition.StreamInput inputs = 3;
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.StreamInputOrBuilder getInputsOrBuilder(
int index);
/**
*
*
*
* The attribute values that this analyzer applies to the operator.
*
* Supply a mapping between the attribute names and the actual value you wish
* to apply. If an attribute name is omitted, then it will take a
* preconfigured default value.
*
*
* map<string, .google.cloud.visionai.v1.AttributeValue> attrs = 4;
*/
int getAttrsCount();
/**
*
*
*
* The attribute values that this analyzer applies to the operator.
*
* Supply a mapping between the attribute names and the actual value you wish
* to apply. If an attribute name is omitted, then it will take a
* preconfigured default value.
*
*
* map<string, .google.cloud.visionai.v1.AttributeValue> attrs = 4;
*/
boolean containsAttrs(java.lang.String key);
/** Use {@link #getAttrsMap()} instead. */
@java.lang.Deprecated
java.util.Map getAttrs();
/**
*
*
*
* The attribute values that this analyzer applies to the operator.
*
* Supply a mapping between the attribute names and the actual value you wish
* to apply. If an attribute name is omitted, then it will take a
* preconfigured default value.
*
*
* map<string, .google.cloud.visionai.v1.AttributeValue> attrs = 4;
*/
java.util.Map getAttrsMap();
/**
*
*
*
* The attribute values that this analyzer applies to the operator.
*
* Supply a mapping between the attribute names and the actual value you wish
* to apply. If an attribute name is omitted, then it will take a
* preconfigured default value.
*
*
* map<string, .google.cloud.visionai.v1.AttributeValue> attrs = 4;
*/
/* nullable */
com.google.cloud.visionai.v1.AttributeValue getAttrsOrDefault(
java.lang.String key,
/* nullable */
com.google.cloud.visionai.v1.AttributeValue defaultValue);
/**
*
*
*
* The attribute values that this analyzer applies to the operator.
*
* Supply a mapping between the attribute names and the actual value you wish
* to apply. If an attribute name is omitted, then it will take a
* preconfigured default value.
*
*
* map<string, .google.cloud.visionai.v1.AttributeValue> attrs = 4;
*/
com.google.cloud.visionai.v1.AttributeValue getAttrsOrThrow(java.lang.String key);
/**
*
*
*
* Debug options.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.DebugOptions debug_options = 5;
*
* @return Whether the debugOptions field is set.
*/
boolean hasDebugOptions();
/**
*
*
*
* Debug options.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.DebugOptions debug_options = 5;
*
* @return The debugOptions.
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.DebugOptions getDebugOptions();
/**
*
*
*
* Debug options.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.DebugOptions debug_options = 5;
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.DebugOptionsOrBuilder getDebugOptionsOrBuilder();
/**
*
*
*
* Operator option.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.OperatorOption operator_option = 6;
*
* @return Whether the operatorOption field is set.
*/
boolean hasOperatorOption();
/**
*
*
*
* Operator option.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.OperatorOption operator_option = 6;
*
* @return The operatorOption.
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.OperatorOption getOperatorOption();
/**
*
*
*
* Operator option.
*
*
* .google.cloud.visionai.v1.AnalyzerDefinition.OperatorOption operator_option = 6;
*/
com.google.cloud.visionai.v1.AnalyzerDefinition.OperatorOptionOrBuilder
getOperatorOptionOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy