
com.google.cloud.visionai.v1.ProcessOrBuilder 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_resources.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
public interface ProcessOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.visionai.v1.Process)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The name of resource.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The name of resource.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Output only. The 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. The create timestamp.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The create timestamp.
*
*
* .google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The 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. The update timestamp.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The update timestamp.
*
*
* .google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Required. Reference to an existing Analysis resource.
*
*
*
* string analysis = 4 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The analysis.
*/
java.lang.String getAnalysis();
/**
*
*
*
* Required. Reference to an existing Analysis resource.
*
*
*
* string analysis = 4 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for analysis.
*/
com.google.protobuf.ByteString getAnalysisBytes();
/**
*
*
*
* Optional. Attribute overrides of the Analyzers.
* Format for each single override item:
* "{analyzer_name}:{attribute_key}={value}"
*
*
* repeated string attribute_overrides = 5 [(.google.api.field_behavior) = OPTIONAL];
*
* @return A list containing the attributeOverrides.
*/
java.util.List getAttributeOverridesList();
/**
*
*
*
* Optional. Attribute overrides of the Analyzers.
* Format for each single override item:
* "{analyzer_name}:{attribute_key}={value}"
*
*
* repeated string attribute_overrides = 5 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The count of attributeOverrides.
*/
int getAttributeOverridesCount();
/**
*
*
*
* Optional. Attribute overrides of the Analyzers.
* Format for each single override item:
* "{analyzer_name}:{attribute_key}={value}"
*
*
* repeated string attribute_overrides = 5 [(.google.api.field_behavior) = OPTIONAL];
*
* @param index The index of the element to return.
* @return The attributeOverrides at the given index.
*/
java.lang.String getAttributeOverrides(int index);
/**
*
*
*
* Optional. Attribute overrides of the Analyzers.
* Format for each single override item:
* "{analyzer_name}:{attribute_key}={value}"
*
*
* repeated string attribute_overrides = 5 [(.google.api.field_behavior) = OPTIONAL];
*
* @param index The index of the value to return.
* @return The bytes of the attributeOverrides at the given index.
*/
com.google.protobuf.ByteString getAttributeOverridesBytes(int index);
/**
*
*
*
* Optional. Status of the Process.
*
*
*
* .google.cloud.visionai.v1.RunStatus run_status = 6 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the runStatus field is set.
*/
boolean hasRunStatus();
/**
*
*
*
* Optional. Status of the Process.
*
*
*
* .google.cloud.visionai.v1.RunStatus run_status = 6 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The runStatus.
*/
com.google.cloud.visionai.v1.RunStatus getRunStatus();
/**
*
*
*
* Optional. Status of the Process.
*
*
*
* .google.cloud.visionai.v1.RunStatus run_status = 6 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.visionai.v1.RunStatusOrBuilder getRunStatusOrBuilder();
/**
*
*
*
* Optional. Run mode of the Process.
*
*
* .google.cloud.visionai.v1.RunMode run_mode = 7 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The enum numeric value on the wire for runMode.
*/
int getRunModeValue();
/**
*
*
*
* Optional. Run mode of the Process.
*
*
* .google.cloud.visionai.v1.RunMode run_mode = 7 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The runMode.
*/
com.google.cloud.visionai.v1.RunMode getRunMode();
/**
*
*
*
* Optional. Event ID of the input/output streams.
* This is useful when you have a StreamSource/StreamSink operator in the
* Analysis, and you want to manually specify the Event to read from/write to.
*
*
* string event_id = 8 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The eventId.
*/
java.lang.String getEventId();
/**
*
*
*
* Optional. Event ID of the input/output streams.
* This is useful when you have a StreamSource/StreamSink operator in the
* Analysis, and you want to manually specify the Event to read from/write to.
*
*
* string event_id = 8 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for eventId.
*/
com.google.protobuf.ByteString getEventIdBytes();
/**
*
*
*
* Optional. Optional: Batch ID of the Process.
*
*
* string batch_id = 9 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The batchId.
*/
java.lang.String getBatchId();
/**
*
*
*
* Optional. Optional: Batch ID of the Process.
*
*
* string batch_id = 9 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for batchId.
*/
com.google.protobuf.ByteString getBatchIdBytes();
/**
*
*
*
* Optional. Optional: The number of retries for a process in submission mode
* the system should try before declaring failure. By default, no retry will
* be performed.
*
*
* int32 retry_count = 10 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The retryCount.
*/
int getRetryCount();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy