com.google.cloud.dialogflow.v2.ImportConversationDataOperationMetadataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* 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/dialogflow/v2/conversation_dataset.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;
public interface ImportConversationDataOperationMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ImportConversationDataOperationMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the imported conversation dataset. Format:
* `projects/<Project ID>/locations/<Location
* ID>/conversationDatasets/<Conversation Dataset Id>`
*
*
* string conversation_dataset = 1 [(.google.api.resource_reference) = { ... }
*
* @return The conversationDataset.
*/
java.lang.String getConversationDataset();
/**
*
*
*
* The resource name of the imported conversation dataset. Format:
* `projects/<Project ID>/locations/<Location
* ID>/conversationDatasets/<Conversation Dataset Id>`
*
*
* string conversation_dataset = 1 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for conversationDataset.
*/
com.google.protobuf.ByteString getConversationDatasetBytes();
/**
*
*
*
* Partial failures are failures that don't fail the whole long running
* operation, e.g. single files that couldn't be read.
*
*
* repeated .google.rpc.Status partial_failures = 2;
*/
java.util.List getPartialFailuresList();
/**
*
*
*
* Partial failures are failures that don't fail the whole long running
* operation, e.g. single files that couldn't be read.
*
*
* repeated .google.rpc.Status partial_failures = 2;
*/
com.google.rpc.Status getPartialFailures(int index);
/**
*
*
*
* Partial failures are failures that don't fail the whole long running
* operation, e.g. single files that couldn't be read.
*
*
* repeated .google.rpc.Status partial_failures = 2;
*/
int getPartialFailuresCount();
/**
*
*
*
* Partial failures are failures that don't fail the whole long running
* operation, e.g. single files that couldn't be read.
*
*
* repeated .google.rpc.Status partial_failures = 2;
*/
java.util.List extends com.google.rpc.StatusOrBuilder> getPartialFailuresOrBuilderList();
/**
*
*
*
* Partial failures are failures that don't fail the whole long running
* operation, e.g. single files that couldn't be read.
*
*
* repeated .google.rpc.Status partial_failures = 2;
*/
com.google.rpc.StatusOrBuilder getPartialFailuresOrBuilder(int index);
/**
*
*
*
* Timestamp when import conversation data request was created. The time is
* measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Timestamp when import conversation data request was created. The time is
* measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Timestamp when import conversation data request was created. The time is
* measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
}