
com.google.cloud.visionai.v1.ProcessorOrBuilder 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/platform.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
public interface ProcessorOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.visionai.v1.Processor)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* name of resource.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* name of resource.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. [Output only] Create timestamp.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. [Output only] Create timestamp.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. [Output only] Create timestamp.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. [Output only] Update timestamp.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. [Output only] Update timestamp.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. [Output only] Update timestamp.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Labels as key value pairs.
*
*
* map<string, string> labels = 4;
*/
int getLabelsCount();
/**
*
*
*
* Labels as key value pairs.
*
*
* map<string, string> labels = 4;
*/
boolean containsLabels(java.lang.String key);
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Deprecated
java.util.Map getLabels();
/**
*
*
*
* Labels as key value pairs.
*
*
* map<string, string> labels = 4;
*/
java.util.Map getLabelsMap();
/**
*
*
*
* Labels as key value pairs.
*
*
* map<string, string> labels = 4;
*/
/* nullable */
java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
*
*
* Labels as key value pairs.
*
*
* map<string, string> labels = 4;
*/
java.lang.String getLabelsOrThrow(java.lang.String key);
/**
*
*
*
* Required. A user friendly display name for the processor.
*
*
* string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* Required. A user friendly display name for the processor.
*
*
* string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* Illustrative sentences for describing the functionality of the processor.
*
*
* string description = 10;
*
* @return The description.
*/
java.lang.String getDescription();
/**
*
*
*
* Illustrative sentences for describing the functionality of the processor.
*
*
* string description = 10;
*
* @return The bytes for description.
*/
com.google.protobuf.ByteString getDescriptionBytes();
/**
*
*
*
* Output only. Processor Type.
*
*
*
* .google.cloud.visionai.v1.Processor.ProcessorType processor_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for processorType.
*/
int getProcessorTypeValue();
/**
*
*
*
* Output only. Processor Type.
*
*
*
* .google.cloud.visionai.v1.Processor.ProcessorType processor_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The processorType.
*/
com.google.cloud.visionai.v1.Processor.ProcessorType getProcessorType();
/**
*
*
*
* Model Type.
*
*
* .google.cloud.visionai.v1.ModelType model_type = 13;
*
* @return The enum numeric value on the wire for modelType.
*/
int getModelTypeValue();
/**
*
*
*
* Model Type.
*
*
* .google.cloud.visionai.v1.ModelType model_type = 13;
*
* @return The modelType.
*/
com.google.cloud.visionai.v1.ModelType getModelType();
/**
*
*
*
* Source info for customer created processor.
*
*
* .google.cloud.visionai.v1.CustomProcessorSourceInfo custom_processor_source_info = 7;
*
*
* @return Whether the customProcessorSourceInfo field is set.
*/
boolean hasCustomProcessorSourceInfo();
/**
*
*
*
* Source info for customer created processor.
*
*
* .google.cloud.visionai.v1.CustomProcessorSourceInfo custom_processor_source_info = 7;
*
*
* @return The customProcessorSourceInfo.
*/
com.google.cloud.visionai.v1.CustomProcessorSourceInfo getCustomProcessorSourceInfo();
/**
*
*
*
* Source info for customer created processor.
*
*
* .google.cloud.visionai.v1.CustomProcessorSourceInfo custom_processor_source_info = 7;
*
*/
com.google.cloud.visionai.v1.CustomProcessorSourceInfoOrBuilder
getCustomProcessorSourceInfoOrBuilder();
/**
*
*
*
* Output only. State of the Processor.
*
*
*
* .google.cloud.visionai.v1.Processor.ProcessorState state = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* Output only. State of the Processor.
*
*
*
* .google.cloud.visionai.v1.Processor.ProcessorState state = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The state.
*/
com.google.cloud.visionai.v1.Processor.ProcessorState getState();
/**
*
*
*
* Output only. [Output only] The input / output specifications of a
* processor, each type of processor has fixed input / output specs which
* cannot be altered by customer.
*
*
*
* .google.cloud.visionai.v1.ProcessorIOSpec processor_io_spec = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the processorIoSpec field is set.
*/
boolean hasProcessorIoSpec();
/**
*
*
*
* Output only. [Output only] The input / output specifications of a
* processor, each type of processor has fixed input / output specs which
* cannot be altered by customer.
*
*
*
* .google.cloud.visionai.v1.ProcessorIOSpec processor_io_spec = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The processorIoSpec.
*/
com.google.cloud.visionai.v1.ProcessorIOSpec getProcessorIoSpec();
/**
*
*
*
* Output only. [Output only] The input / output specifications of a
* processor, each type of processor has fixed input / output specs which
* cannot be altered by customer.
*
*
*
* .google.cloud.visionai.v1.ProcessorIOSpec processor_io_spec = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.visionai.v1.ProcessorIOSpecOrBuilder getProcessorIoSpecOrBuilder();
/**
*
*
*
* Output only. The corresponding configuration can be used in the Application
* to customize the behavior of the processor.
*
*
* string configuration_typeurl = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The configurationTypeurl.
*/
java.lang.String getConfigurationTypeurl();
/**
*
*
*
* Output only. The corresponding configuration can be used in the Application
* to customize the behavior of the processor.
*
*
* string configuration_typeurl = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for configurationTypeurl.
*/
com.google.protobuf.ByteString getConfigurationTypeurlBytes();
/**
*
* repeated .google.cloud.visionai.v1.StreamAnnotationType supported_annotation_types = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return A list containing the supportedAnnotationTypes.
*/
java.util.List
getSupportedAnnotationTypesList();
/**
*
* repeated .google.cloud.visionai.v1.StreamAnnotationType supported_annotation_types = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The count of supportedAnnotationTypes.
*/
int getSupportedAnnotationTypesCount();
/**
*
* repeated .google.cloud.visionai.v1.StreamAnnotationType supported_annotation_types = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @param index The index of the element to return.
* @return The supportedAnnotationTypes at the given index.
*/
com.google.cloud.visionai.v1.StreamAnnotationType getSupportedAnnotationTypes(int index);
/**
*
* repeated .google.cloud.visionai.v1.StreamAnnotationType supported_annotation_types = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return A list containing the enum numeric values on the wire for supportedAnnotationTypes.
*/
java.util.List getSupportedAnnotationTypesValueList();
/**
*
* repeated .google.cloud.visionai.v1.StreamAnnotationType supported_annotation_types = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of supportedAnnotationTypes at the given index.
*/
int getSupportedAnnotationTypesValue(int index);
/**
*
*
*
* Indicates if the processor supports post processing.
*
*
* bool supports_post_processing = 17;
*
* @return The supportsPostProcessing.
*/
boolean getSupportsPostProcessing();
/**
*
*
*
* Which instance types this processor supports; if empty, this default to
* STREAMING_PREDICTION.
*
*
* repeated .google.cloud.visionai.v1.Instance.InstanceType supported_instance_types = 18;
*
*
* @return A list containing the supportedInstanceTypes.
*/
java.util.List
getSupportedInstanceTypesList();
/**
*
*
*
* Which instance types this processor supports; if empty, this default to
* STREAMING_PREDICTION.
*
*
* repeated .google.cloud.visionai.v1.Instance.InstanceType supported_instance_types = 18;
*
*
* @return The count of supportedInstanceTypes.
*/
int getSupportedInstanceTypesCount();
/**
*
*
*
* Which instance types this processor supports; if empty, this default to
* STREAMING_PREDICTION.
*
*
* repeated .google.cloud.visionai.v1.Instance.InstanceType supported_instance_types = 18;
*
*
* @param index The index of the element to return.
* @return The supportedInstanceTypes at the given index.
*/
com.google.cloud.visionai.v1.Instance.InstanceType getSupportedInstanceTypes(int index);
/**
*
*
*
* Which instance types this processor supports; if empty, this default to
* STREAMING_PREDICTION.
*
*
* repeated .google.cloud.visionai.v1.Instance.InstanceType supported_instance_types = 18;
*
*
* @return A list containing the enum numeric values on the wire for supportedInstanceTypes.
*/
java.util.List getSupportedInstanceTypesValueList();
/**
*
*
*
* Which instance types this processor supports; if empty, this default to
* STREAMING_PREDICTION.
*
*
* repeated .google.cloud.visionai.v1.Instance.InstanceType supported_instance_types = 18;
*
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of supportedInstanceTypes at the given index.
*/
int getSupportedInstanceTypesValue(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy